aboutsummaryrefslogtreecommitdiffstats
path: root/src/repository.cpp
blob: 8a2a2fb96e9a90449cb1e07ae56f91a4c16475f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/*
 *  Copyright (C) 2007  Thiago Macieira <thiago@kde.org>
 *  Copyright (C) 2009 Thomas Zander <zander@kde.org>
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "repository.h"
#include "CommandLineParser.h"
#include <QTextStream>
#include <QDebug>
#include <QDir>
#include <QLinkedList>

static const int maxSimultaneousProcesses = 100;

class ProcessCache: QLinkedList<Repository *>
{
public:
    void touch(Repository *repo)
    {
        remove(repo);

        // if the cache is too big, remove from the front
        while (size() >= maxSimultaneousProcesses)
            takeFirst()->closeFastImport();

        // append to the end
        append(repo);
    }

    inline void remove(Repository *repo)
    {
#if QT_VERSION >= 0x040400
        removeOne(repo);
#else
        removeAll(repo);
#endif
    }
};
static ProcessCache processCache;

Repository::Repository(const Rules::Repository &rule)
    : name(rule.name), commitCount(0), outstandingTransactions(0), lastmark(0), processHasStarted(false)
{
    foreach (Rules::Repository::Branch branchRule, rule.branches) {
        Branch branch;
        branch.created = 0;     // not created

        branches.insert(branchRule.name, branch);
    }

    // create the default branch
    branches["master"].created = 1;

    fastImport.setWorkingDirectory(name);
    if (!CommandLineParser::instance()->contains("dry-run")) {
        if (!QDir(name).exists()) { // repo doesn't exist yet.
            qDebug() << "Creating new repositoryn" << name;
            QDir::current().mkpath(name);
            QProcess init;
            init.setWorkingDirectory(name);
            init.start("git", QStringList() << "--bare" << "init");
            init.waitForFinished(-1);
        }
    }
}

Repository::~Repository()
{
    Q_ASSERT(outstandingTransactions == 0);
    closeFastImport();
}

void Repository::closeFastImport()
{
    if (fastImport.state() != QProcess::NotRunning) {
        fastImport.write("checkpoint\n");
        fastImport.waitForBytesWritten(-1);
        fastImport.closeWriteChannel();
        if (!fastImport.waitForFinished()) {
            fastImport.terminate();
            if (!fastImport.waitForFinished(200))
                qWarning() << "git-fast-import for repository" << name << "did not die";
        }
    }
    processHasStarted = false;
    processCache.remove(this);
}

void Repository::reloadBranches()
{
    QProcess revParse;
    revParse.setWorkingDirectory(name);
    revParse.start("git", QStringList() << "rev-parse" << "--symbolic" << "--branches");
    revParse.waitForFinished(-1);

    if (revParse.exitCode() == 0 && revParse.bytesAvailable()) {
        while (revParse.canReadLine()) {
            QByteArray branchName = revParse.readLine().trimmed();

            //qDebug() << "Repo" << name << "reloaded branch" << branchName;
            branches[branchName].created = 1;
            fastImport.write("reset refs/heads/" + branchName +
                             "\nfrom refs/heads/" + branchName + "^0\n\n"
                             "progress Branch refs/heads/" + branchName + " reloaded\n");
        }
    }
}

void Repository::createBranch(const QString &branch, int revnum,
                              const QString &branchFrom, int branchRevNum)
{
    startFastImport();
    if (!branches.contains(branch)) {
        qWarning() << branch << "is not a known branch in repository" << name << endl
                   << "Going to create it automatically";
    }

    QByteArray branchRef = branch.toUtf8();
        if (!branchRef.startsWith("refs/"))
            branchRef.prepend("refs/heads/");


    Branch &br = branches[branch];
    if (br.created && br.created != revnum) {
        QByteArray backupBranch = branchRef + '_' + QByteArray::number(revnum);
        qWarning() << branch << "already exists; backing up to" << backupBranch;

        fastImport.write("reset " + backupBranch + "\nfrom " + branchRef + "\n\n");
    }

    // now create the branch
    br.created = revnum;
    QByteArray branchFromRef;
    const int closestCommit = *qLowerBound(exportedCommits, branchRevNum);
    if(commitMarks.contains(closestCommit))
    {
        branchFromRef = ":" + QByteArray::number(commitMarks.value(closestCommit));
        qDebug() << "branching from" << closestCommit << "(svn reports r" << branchRevNum << ")";
    } else {
        qWarning() << branch << "in repository" << name << "is branching but no exported commits exist in repository"
                << "creating an empty branch.";
        branchFromRef = branchFrom.toUtf8();
        if (!branchFromRef.startsWith("refs/"))
            branchFromRef.prepend("refs/heads/");
    }

    if (!branches.contains(branchFrom) || !branches.value(branchFrom).created) {
        qCritical() << branch << "in repository" << name
                    << "is branching from branch" << branchFrom
                    << "but the latter doesn't exist. Can't continue.";
        exit(1);
    }

    fastImport.write("reset " + branchRef + "\nfrom " + branchFromRef + "\n\n"
                     "progress Branch " + branchRef + " created from "
                     + branchFromRef + " r" + QByteArray::number(branchRevNum) + "\n\n");
}

Repository::Transaction *Repository::newTransaction(const QString &branch, const QString &svnprefix,
                                                    int revnum)
{
    startFastImport();
    if (!branches.contains(branch)) {
        qWarning() << branch << "is not a known branch in repository" << name << endl
                   << "Going to create it automatically";
    }

    Transaction *txn = new Transaction;
    txn->repository = this;
    txn->branch = branch.toUtf8();
    txn->svnprefix = svnprefix.toUtf8();
    txn->datetime = 0;
    txn->revnum = revnum;

    if ((++commitCount % CommandLineParser::instance()->optionArgument(QLatin1String("commit-interval"), QLatin1String("10000")).toInt()) == 0)
        // write everything to disk every 10000 commits
        fastImport.write("checkpoint\n");
    outstandingTransactions++;
    return txn;
}

void Repository::createAnnotatedTag(const QString &ref, const QString &svnprefix,
                                    int revnum,
                                    const QByteArray &author, uint dt,
                                    const QByteArray &log)
{
    QString tagName = ref;
    if (tagName.startsWith("refs/tags/"))
        tagName.remove(0, 10);

    if (!annotatedTags.contains(tagName))
        printf("Creating annotated tag %s (%s)\n", qPrintable(tagName), qPrintable(ref));
    else
        printf("Re-creating annotated tag %s\n", qPrintable(tagName));

    AnnotatedTag &tag = annotatedTags[tagName];
    tag.supportingRef = ref;
    tag.svnprefix = svnprefix.toUtf8();
    tag.revnum = revnum;
    tag.author = author;
    tag.log = log;
    tag.dt = dt;
}

void Repository::finalizeTags()
{
    if (annotatedTags.isEmpty())
        return;

    printf("Finalising tags for %s...", qPrintable(name));
    startFastImport();

    QHash<QString, AnnotatedTag>::ConstIterator it = annotatedTags.constBegin();
    for ( ; it != annotatedTags.constEnd(); ++it) {
        const QString &tagName = it.key();
        const AnnotatedTag &tag = it.value();

        QByteArray message = tag.log;
        if (!message.endsWith('\n'))
            message += '\n';
        if (CommandLineParser::instance()->contains("add-metadata"))
            message += "\nsvn path=" + tag.svnprefix + "; revision=" + QByteArray::number(tag.revnum) + "\n";

        {
            QByteArray branchRef = tag.supportingRef.toUtf8();
            if (!branchRef.startsWith("refs/"))
                branchRef.prepend("refs/heads/");

            QTextStream s(&fastImport);
            s << "progress Creating annotated tag " << tagName << " from ref " << branchRef << endl
              << "tag " << tagName << endl
              << "from " << branchRef << endl
              << "tagger " << QString::fromUtf8(tag.author) << ' ' << tag.dt << " -0000" << endl
              << "data " << message.length() << endl;
        }

        fastImport.write(message);
        fastImport.putChar('\n');
        if (!fastImport.waitForBytesWritten(-1))
            qFatal("Failed to write to process: %s", qPrintable(fastImport.errorString()));

        printf(" %s", qPrintable(tagName));
        fflush(stdout);
    }

    while (fastImport.bytesToWrite())
        if (!fastImport.waitForBytesWritten(-1))
            qFatal("Failed to write to process: %s", qPrintable(fastImport.errorString()));
    printf("\n");
}

void Repository::startFastImport()
{
    if (fastImport.state() == QProcess::NotRunning) {
        if (processHasStarted)
            qFatal("git-fast-import has been started once and crashed?");
        processHasStarted = true;

        // start the process
        QString outputFile = name;
        outputFile.replace('/', '_');
        outputFile.prepend("log-");
        fastImport.setStandardOutputFile(outputFile, QIODevice::Append);
        fastImport.setProcessChannelMode(QProcess::MergedChannels);

        if (!CommandLineParser::instance()->contains("dry-run")) {
            fastImport.start("git", QStringList() << "fast-import");
        } else {
            fastImport.start("/bin/cat", QStringList());
        }

        reloadBranches();
    }
}

Repository::Transaction::~Transaction()
{
    --repository->outstandingTransactions;
}

void Repository::Transaction::setAuthor(const QByteArray &a)
{
    author = a;
}

void Repository::Transaction::setDateTime(uint dt)
{
    datetime = dt;
}

void Repository::Transaction::setLog(const QByteArray &l)
{
    log = l;
}

void Repository::Transaction::deleteFile(const QString &path)
{
    QString pathNoSlash = path;
    if(pathNoSlash.endsWith('/'))
        pathNoSlash.chop(1);
    deletedFiles.append(pathNoSlash);
}

QIODevice *Repository::Transaction::addFile(const QString &path, int mode, qint64 length)
{
    int mark = ++repository->lastmark;

    if (modifiedFiles.capacity() == 0)
        modifiedFiles.reserve(2048);
    modifiedFiles.append("M ");
    modifiedFiles.append(QByteArray::number(mode, 8));
    modifiedFiles.append(" :");
    modifiedFiles.append(QByteArray::number(mark));
    modifiedFiles.append(' ');
    modifiedFiles.append(path.toUtf8());
    modifiedFiles.append("\n");

    if (!CommandLineParser::instance()->contains("dry-run")) {
        repository->fastImport.write("blob\nmark :");
        repository->fastImport.write(QByteArray::number(mark));
        repository->fastImport.write("\ndata ");
        repository->fastImport.write(QByteArray::number(length));
        repository->fastImport.write("\n", 1);
    }

    return &repository->fastImport;
}

void Repository::Transaction::commit()
{
    processCache.touch(repository);

    // create the commit message
    QByteArray message = log;
    if (!message.endsWith('\n'))
        message += '\n';
    if (CommandLineParser::instance()->contains("add-metadata"))
        message += "\nsvn path=" + svnprefix + "; revision=" + QByteArray::number(revnum) + "\n";

    {
        QByteArray branchRef = branch;
        if (!branchRef.startsWith("refs/"))
            branchRef.prepend("refs/heads/");

        QTextStream s(&repository->fastImport);
        s << "commit " << branchRef << endl;
        s << "mark :" << QByteArray::number(++repository->lastmark) << endl;
        repository->commitMarks.insert(revnum, repository->lastmark);
        repository->exportedCommits.append(revnum);
        s << "committer " << QString::fromUtf8(author) << ' ' << datetime << " -0000" << endl;

        Branch &br = repository->branches[branch];
        if (!br.created) {
            qWarning() << "Branch" << branch << "in repository" << repository->name << "doesn't exist at revision"
                       << revnum << "-- did you resume from the wrong revision?";
            br.created = revnum;
        }

        s << "data " << message.length() << endl;
    }

    repository->fastImport.write(message);
    repository->fastImport.putChar('\n');

    // write the file deletions
    if (deletedFiles.contains(""))
        repository->fastImport.write("deleteall\n");
    else
        foreach (QString df, deletedFiles)
            repository->fastImport.write("D " + df.toUtf8() + "\n");

    // write the file modifications
    repository->fastImport.write(modifiedFiles);

    repository->fastImport.write("\nprogress Commit #" +
                                 QByteArray::number(repository->commitCount) +
                                 " branch " + branch +
                                 " = SVN r" + QByteArray::number(revnum) + "\n\n");
    printf(" %d modifications from SVN %s to %s/%s",
           deletedFiles.count() + modifiedFiles.count(), svnprefix.data(),
           qPrintable(repository->name), branch.data());

    while (repository->fastImport.bytesToWrite())
        if (!repository->fastImport.waitForBytesWritten(-1))
            qFatal("Failed to write to process: %s", qPrintable(repository->fastImport.errorString()));
}
href='#n1976'>1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880
# Turkish translation of DrakX
# Copyright (C) 1999 MandrakeSof
# Hakan Terzioglu <hakan@gelecek.com.tr>, 1999
# AHMET SEZEN <ahmet@gelecek.com.tr>, 1999
# Görkem Çetin <gorkem@gelecek.com.tr>, 2000
# Nazmi Savga <savga@catlover.com>, 2000
msgid ""
msgstr ""
"Project-Id-Version: DrakX 1.0\n"
"POT-Creation-Date: 2000-11-11 21:39+0100\n"
"PO-Revision-Date: 2000-10-28 03:04+0200\n"
"Last-Translator: Nazmi Savga <savga@catlover.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../../Xconfigurator.pm_.c:179
msgid "Graphic card"
msgstr "Ekran kartı"

#: ../../Xconfigurator.pm_.c:179
msgid "Select a graphic card"
msgstr "Ekran kartınızı seçin"

#
#: ../../Xconfigurator.pm_.c:180
msgid "Choose a X server"
msgstr "Bir X sunucusu seçin"

#: ../../Xconfigurator.pm_.c:180
msgid "X server"
msgstr "X sunucusu"

#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../Xconfigurator.pm_.c:220
msgid "Which configuration of XFree do you want to have?"
msgstr "Hangi XFree86 ayarına sahip olmak istiyorsunuz?"

#: ../../Xconfigurator.pm_.c:232
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Ekran kartınız 3 boyutlu donanım hızlandırması desteğine sahip olabilir,\n"
"fakat bu özellik sadece XFree %s'de geçerlidir. Kartınız 2 boyutta daha\n"
"iyi destek vermekte olan XFree %s tarafından destekleniyor."

#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ekran kartınız XFree %s sunucusuyla çalıştırıldığında 3 boyutlu\n"
"donanım hızlandırması desteğine sahip olabilir."

#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s'le birlikte 3 boyutlu donanım hızlandırması"

#: ../../Xconfigurator.pm_.c:245
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Ekran kartınız sadece XFree %s sunucusuyla çalıştırıldığında 3 boyutlu\n"
"donanım hızlandırması desteğine sahip olabilir, BU DENEYSEL BİR DESTEKTİR\n"
"VE MAKİNANIZI KİLİTLEYEBİLİR. Kartınıza XFree %s tarafından verilen 2 boyut\n"
"desteği daha iyi durumdadır."

#: ../../Xconfigurator.pm_.c:248
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"Ekran kartınız XFree %s sunucusuyla çalıştırıldığında 3 boyutlu\n"
"donanım hızlandırması desteğine sahip olabilir, BU DENEYSEL BİR DESTEKTİR\n"
"VE MAKİNANIZI KİLİTLEYEBİLİR."

#: ../../Xconfigurator.pm_.c:250
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "3 boyutlu donanım hızlandırması ile XFree %s"

#: ../../Xconfigurator.pm_.c:265
msgid "XFree configuration"
msgstr "XFree ayarları"

#: ../../Xconfigurator.pm_.c:303
msgid "Select the memory size of your graphic card"
msgstr "Ekran kartınızın bellek boyutunu seçin"

#
#: ../../Xconfigurator.pm_.c:347
msgid "Choose options for server"
msgstr "X sunucusu için seçenekleri belirtin"

#: ../../Xconfigurator.pm_.c:358
msgid "Choose a monitor"
msgstr "Monitörünüzü seçin"

#: ../../Xconfigurator.pm_.c:358
msgid "Monitor"
msgstr "Monitör"

#: ../../Xconfigurator.pm_.c:361
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Buradaki iki önemli parametre dikey ve yatay tazeleme hızlarıdır.\n"
"Seçiminizi yaparken monitörünüzün kapasitesinin üstünde bir seçim\n"
"yapmamanız oldukça önemlidir, aksi takdirde monitör zarar görebilir.\n"
"Seçerken bir ikileme düşerseniz, düşük çözünürlükte bir ayar seçin."

#: ../../Xconfigurator.pm_.c:368
msgid "Horizontal refresh rate"
msgstr "Yatay tazeleme hızı"

#: ../../Xconfigurator.pm_.c:368
msgid "Vertical refresh rate"
msgstr "Dikey tazeleme hızı"

#: ../../Xconfigurator.pm_.c:407
msgid "Monitor not configured"
msgstr "Monitor ayarlanmamış"

#: ../../Xconfigurator.pm_.c:410
msgid "Graphic card not configured yet"
msgstr "Ekran kartı henüz yapılandırılmadı"

#: ../../Xconfigurator.pm_.c:413
msgid "Resolutions not chosen yet"
msgstr "Çözünürlük henüz seçilmedi"

#: ../../Xconfigurator.pm_.c:429
msgid "Do you want to test the configuration?"
msgstr "Ayarları test etmek istiyor musunuz?"

#: ../../Xconfigurator.pm_.c:433
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Uyarı: Bu grafik kartıni test etmek bilgisayarınızı kilitleyebilir"

#: ../../Xconfigurator.pm_.c:436
msgid "Test of the configuration"
msgstr "Test ayarları"

#: ../../Xconfigurator.pm_.c:475
msgid ""
"\n"
"try to change some parameters"
msgstr ""
"\n"
"bazı parametreleri değiştirin"

#: ../../Xconfigurator.pm_.c:475
msgid "An error has occurred:"
msgstr "Bir hata oluştu:"

#: ../../Xconfigurator.pm_.c:497
#, c-format
msgid "Leaving in %d seconds"
msgstr "%d saniye sonra çıkılıyor"

#: ../../Xconfigurator.pm_.c:507
msgid "Is this the correct setting?"
msgstr "Bu ayarlar doğru mu?"

#: ../../Xconfigurator.pm_.c:515
msgid "An error has occurred, try to change some parameters"
msgstr "Bir hata oluştu, parametreleri değiştirin"

#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
msgid "Resolution"
msgstr "Çözünürlük"

#: ../../Xconfigurator.pm_.c:587
msgid "Choose the resolution and the color depth"
msgstr "Çözünürlük ve renk derinliğini seçin"

#: ../../Xconfigurator.pm_.c:589
#, c-format
msgid "Graphic card: %s"
msgstr "Ekran kartı: %s"

#: ../../Xconfigurator.pm_.c:590
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 sunucusu: %s"

#: ../../Xconfigurator.pm_.c:599
msgid "Show all"
msgstr "Hepsini Göster"

#: ../../Xconfigurator.pm_.c:623
msgid "Resolutions"
msgstr "Çözünürlükler"

#: ../../Xconfigurator.pm_.c:1021
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavye düzeni: %s\n"

#: ../../Xconfigurator.pm_.c:1022
#, c-format
msgid "Mouse type: %s\n"
msgstr "Fare tipi: %s\n"

#: ../../Xconfigurator.pm_.c:1023
#, c-format
msgid "Mouse device: %s\n"
msgstr "Fare aygıtı: %s\n"

#: ../../Xconfigurator.pm_.c:1024
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitör: %s\n"

#: ../../Xconfigurator.pm_.c:1025
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitörün Yatay Taraması: %s\n"

#: ../../Xconfigurator.pm_.c:1026
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitörün Dikey Tazelemesi: %s\n"

#: ../../Xconfigurator.pm_.c:1027
#, c-format
msgid "Graphic card: %s\n"
msgstr "Ekran kartı: %s\n"

#: ../../Xconfigurator.pm_.c:1028
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Ekran kartı belleği: %s KB\n"

#: ../../Xconfigurator.pm_.c:1030
#, c-format
msgid "Color depth: %s\n"
msgstr "Renk derinliği: %s\n"

#: ../../Xconfigurator.pm_.c:1031
#, c-format
msgid "Resolution: %s\n"
msgstr "Çözünürlük: %s\n"

#: ../../Xconfigurator.pm_.c:1033
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 sunucusu: %s\n"

#: ../../Xconfigurator.pm_.c:1034
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sürücüsü: %s\n"

#: ../../Xconfigurator.pm_.c:1053
msgid "Preparing X-Window configuration"
msgstr "X-Window ayarlarına hazırlık yapılıyor"

#: ../../Xconfigurator.pm_.c:1067
msgid "Change Monitor"
msgstr "Monitörü Değiştir"

#: ../../Xconfigurator.pm_.c:1068
msgid "Change Graphic card"
msgstr "Ekran kartını değiştir"

#: ../../Xconfigurator.pm_.c:1069
msgid "Change Server options"
msgstr "Sunucu seçeneklerini değiştir"

#: ../../Xconfigurator.pm_.c:1070
msgid "Change Resolution"
msgstr "Çözünürlüğü değiştir"

#: ../../Xconfigurator.pm_.c:1071
msgid "Show information"
msgstr "Bilgileri göster"

#: ../../Xconfigurator.pm_.c:1072
msgid "Test again"
msgstr "Tekrar test et"

#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
msgid "Quit"
msgstr "Çık"

#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
msgid "What do you want to do?"
msgstr "Ne yapmak istiyorsunuz?"

#: ../../Xconfigurator.pm_.c:1084
#, c-format
msgid ""
"Keep the changes?\n"
"Current configuration is:\n"
"\n"
"%s"
msgstr ""
"Değişiklikler kaydedilsin mi?\n"
"Şu andaki yapılandırma:\n"
"\n"
"%s"

#: ../../Xconfigurator.pm_.c:1105
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "%s'e tekrar girin ve değişiklikleri etkin hale getirin"

#: ../../Xconfigurator.pm_.c:1125
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Lütfen çıkın ve Ctrl-Alt-BackSpace tuşlarına basın"

#: ../../Xconfigurator.pm_.c:1128
msgid "X at startup"
msgstr "Açılışta X"

#: ../../Xconfigurator.pm_.c:1129
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
"Bilgisayarınızı otomatik olarak X'le açılması için kurabilirim.\n"
"Açılışta X Window ile başlamak istermisiniz?"

#: ../../Xconfigurator.pm_.c:1153
msgid "Autologin"
msgstr "Otomatik login"

#: ../../Xconfigurator.pm_.c:1154
msgid ""
"I can set up your computer to automatically log on one user.\n"
"If you don't want to use this feature, click on the cancel button."
msgstr ""
"Bilgisayarınız açıldığında otomatik olarak bir kullanıcı girişi\n"
"olmasını sağlayabilirim. Bu özelliği kullanmak istemiyorsanız\n"
"vazgeç düğmesine basın."

#: ../../Xconfigurator.pm_.c:1156
msgid "Choose the default user:"
msgstr "Varsayılan kullanıcıyı seçin:"

#: ../../Xconfigurator.pm_.c:1157
msgid "Choose the window manager to run:"
msgstr "Çalıştırmak istediğiniz pencere yöneticisini seçin:"

#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 renk (8 bit)"

#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
msgstr "32 bin renk (15 bit)"

#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
msgstr "65 bin renk (16 bit)"

#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
msgstr "16 milyon renk (24 bit)"

#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
msgstr "4 milyar renk (32 bit)"

#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
msgstr "256 kB"

#: ../../Xconfigurator_consts.pm_.c:107
msgid "512 kB"
msgstr "512 kB"

#: ../../Xconfigurator_consts.pm_.c:108
msgid "1 MB"
msgstr "1 MB"

#: ../../Xconfigurator_consts.pm_.c:109
msgid "2 MB"
msgstr "2 MB"

#: ../../Xconfigurator_consts.pm_.c:110
msgid "4 MB"
msgstr "4 MB"

#: ../../Xconfigurator_consts.pm_.c:111
msgid "8 MB"
msgstr "8 MB"

#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
msgstr "16 MB veya daha fazla"

#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standart VGA, 60 Hz'de 640x480 "

#: ../../Xconfigurator_consts.pm_.c:119
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Süper VGA, 56 Hz'de 800x600"

#: ../../Xconfigurator_consts.pm_.c:120
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514 Uyumlu, 87 Hz'de titreşimli 1024x768 (800x600 yok)"

#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Süper VGA, 87 Hz'de titreşimli 1024x768, 56 Hz'de 800x600"

#: ../../Xconfigurator_consts.pm_.c:122
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Geliştirilmiş Süper VGA, 60 Hz'de 800x600, 72 Hz'de 640x480"

#: ../../Xconfigurator_consts.pm_.c:123
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Titreşimsiz SVGA, 60 Hz'de 1024x768, 72 Hz'de 800x600"

#: ../../Xconfigurator_consts.pm_.c:124
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Yüksek Frekanslı SVGA, 70 Hz'de 1024x768"

#: ../../Xconfigurator_consts.pm_.c:125
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Çoklu Frekans yapabilen 60 Hz'de 1280x1024"

#: ../../Xconfigurator_consts.pm_.c:126
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Çoklu Frekans yapabilen 74 Hz'de 1280x1024"

#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Çoklu Frekans yapabilen 76 Hz'de 1280x1024"

#: ../../Xconfigurator_consts.pm_.c:128
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "70 Hz de 1600x1200 yapabilen Mönitor"

#: ../../Xconfigurator_consts.pm_.c:129
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "76 Hz de 1600x1200 yapabilen Monitör"

#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
#: ../../any_new.pm_.c:121
msgid "First sector of boot partition"
msgstr "Açılış bölümünün ilk sektörü"

#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektörü (MBR)"

#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
msgid "SILO Installation"
msgstr "SILO Kurulumu"

#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
#: ../../any_new.pm_.c:102
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükleyiciyi nereye kurmak istiyorsunuz?"

#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
msgid "LILO/grub Installation"
msgstr "LILO/grub Kurulumu"

#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
#: ../../install_steps_interactive.pm_.c:736
msgid "None"
msgstr "Hiçbiri"

#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
msgid "Which bootloader(s) do you want to use?"
msgstr "Hangi açılış yükleyicilerini kullanmak istiyorsunuz?"

#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
msgid "Bootloader installation"
msgstr "Açılış yükleyici kurulumu"

#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
msgid "Boot device"
msgstr "Açılış aygıtı"

#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (eski BIOS'larda çalışmaz)"

#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
msgid "Compact"
msgstr "Basit"

#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
msgid "compact"
msgstr "basit"

#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
#: ../../any_new.pm_.c:199
msgid "Video mode"
msgstr "Ekran kipi"

#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
msgid "Delay before booting default image"
msgstr "Açılışta gecikme süresi"

#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
#: ../../install_steps_interactive.pm_.c:764
#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
msgid "Password"
msgstr "Parola"

#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
#: ../../install_steps_interactive.pm_.c:765
#: ../../install_steps_interactive.pm_.c:816
#: ../../standalone/adduserdrake_.c:43
msgid "Password (again)"
msgstr "Parola (tekrar)"

#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
msgid "Restrict command line options"
msgstr "Komut satırı seçeneklerini kısıtla"

#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
msgid "restrict"
msgstr "kısıtla"

#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
msgid "Bootloader main options"
msgstr "Sistem yükleyici ana seçenekleri"

#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"\"Komut satırı seçeneklerini kısıtla\" seçeneği parolasız bir işe yaramaz"

#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
#: ../../install_steps_interactive.pm_.c:774
#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:56
msgid "Please try again"
msgstr "Lütfen tekrar deneyin"

#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
#: ../../install_steps_interactive.pm_.c:774
#: ../../install_steps_interactive.pm_.c:829
#: ../../standalone/adduserdrake_.c:56
msgid "The passwords do not match"
msgstr "Parolalar uyuşmuyor"

#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
"Buradaki birbirinden farklı seçeneklere yenilerini ekleyebilir,\n"
"ya da mevcut olanları değiştirebilirsiniz."

#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
#: ../../standalone/rpmdrake_.c:302
msgid "Add"
msgstr "Ekle"

#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
#: ../../standalone/adduserdrake_.c:36
msgid "Done"
msgstr "Bitti"

#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
msgid "Which type of entry do you want to add?"
msgstr "Ne tür bir giriş yapmak istiyorsunuz?"

#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
msgid "Linux"
msgstr "Linux"

#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
msgid "Other OS (SunOS...)"
msgstr "Diğer işletim sistemleri (SunOS...)"

#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
msgid "Other OS (windows...)"
msgstr "Diğer işletim sistemleri (Windows...)"

#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
msgid "Image"
msgstr "Görüntü"

#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
#: ../../any_new.pm_.c:206
msgid "Root"
msgstr "Kök"

#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
msgid "Append"
msgstr "Sonuna ekle"

#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
msgid "Initrd"
msgstr "Initrd"

#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
msgid "Read-write"
msgstr "Oku-yaz"

#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
msgid "Table"
msgstr "Tablo"

#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
msgid "Unsafe"
msgstr "Güvensiz"

#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
msgid "Label"
msgstr "Etiket"

#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
msgid "Default"
msgstr "Öntanımlı"

#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
#: ../../printerdrake.pm_.c:464
msgid "Ok"
msgstr "Tamam"

#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
msgid "Remove entry"
msgstr "Girdiyi sil"

#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
msgid "Empty label not allowed"
msgstr "Boş etiket kabul edilemez"

#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
msgid "This label is already used"
msgstr "Bu etiket kullanımda"

#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s arayüzü bulundu"

#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
msgid "Do you have another one?"
msgstr "Başka var mı?"

#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hiç %s arayüzü var mı?"

#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
#: ../../printerdrake.pm_.c:233
msgid "No"
msgstr "Hayır"

#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
msgid "Yes"
msgstr "Evet"

#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
msgid "See hardware info"
msgstr "Donanım bilgilerine bak"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) için sürücü yükleniyor"

#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
#, c-format
msgid "(module %s)"
msgstr "(modül %s)"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hangi %s sürücüsü denensin?"

#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"Bazı durumlarda, %s sürücü düzgün çalışmak için fazladan bilgi isteyebilir.\n"
"Sürücüler için fazladan bir özellik belirtmek mi istersiniz, yoksa\n"
"sürücülerin gerekli bilgiler için donanımınızı tanımasını mı istersiniz? \n"
"Bazen tanımlama makinanızı kilitleyebilir ama kilitlenmeden dolayı \n"
"makinanıza herhangi bir zarar gelmez."

#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
msgid "Autoprobe"
msgstr "Otomatik Tara"

#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
msgid "Specify options"
msgstr "Seçenekleri belirt"

#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Şimdi %s modülüne parametreler girebilirsiniz."

#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"İsterseniz şimdi %s modülünün parametrelerini belirtebilirsiniz.\n"
"Parametreler``isim=değer isim2=değer2...'' şeklinde olmalıdır.\n"
"Örneğin ``io=0x300 irq=7''"

#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
msgid "Module options:"
msgstr "Modül seçenekleri:"

#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"%s modülünün yüklenmesi başarısız oldu.\n"
"Tekrar başka bir parametre ile denemek ister misiniz?"

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
# 
#: ../../bootloader.pm_.c:234
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
"Choose an operating system in the list above or\n"
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
"%s isletim sistemi secim programina hos geldiniz!\n"
"\n"
"Yukaridaki listedeki isletim sistemlerinden birini seçin\n"
"ya da ontanimli olanın acilmasi icin %d saniye bekleyin.\n"
"\n"

# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#: ../../bootloader.pm_.c:596
msgid "Welcome to GRUB the operating system chooser!"
msgstr "İsletim sistemi secici GRUB'a hos geldiniz!"

# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#: ../../bootloader.pm_.c:597
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
"Bir secenegi isaretli duruma getirmek icin %c ve %c tuslarini kullanin."

# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#: ../../bootloader.pm_.c:598
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili isletim sistemiyle acmak icin entere,"

# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#: ../../bootloader.pm_.c:599
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilistan once komutlari duzenlemek icin 'e', komutsatiri icin ise 'c' basin"

# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
# transliteration be used; or maybe the english text be used; as it is best
#
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
#: ../../bootloader.pm_.c:600
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacak."

#: ../../bootloader.pm_.c:604
msgid "not enough room in /boot"
msgstr "/boot içinde yeterli yer yok"

#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#: ../../bootloader.pm_.c:696
msgid "Desktop"
msgstr "Masaüstü"

#: ../../bootloader.pm_.c:696
msgid "Start Menu"
msgstr "Başlat Menüsü"

#: ../../common.pm_.c:610
#, c-format
msgid "%d minutes"
msgstr "%d dakika"

#: ../../common.pm_.c:612
msgid "1 minute"
msgstr "1 dakika"

#: ../../common.pm_.c:614
#, c-format
msgid "%d seconds"
msgstr "%d saniye"

#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
msgid "Create"
msgstr "Yarat"

#: ../../diskdrake.pm_.c:22
msgid "Unmount"
msgstr "Ayır"

#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
msgid "Delete"
msgstr "Sil"

#: ../../diskdrake.pm_.c:23
msgid "Format"
msgstr "Biçimle"

#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
msgid "Resize"
msgstr "Yeniden Boyutlandır"

#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
#: ../../diskdrake.pm_.c:480
msgid "Type"
msgstr "Tip"

#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
msgid "Mount point"
msgstr "Bağlama noktası"

#: ../../diskdrake.pm_.c:38
msgid "Write /etc/fstab"
msgstr "/etc/fstab'a Yaz"

#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
msgstr "Uzman kipine geç"

#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
msgstr "Normal kipe geç"

#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
msgstr "Dosyadan geri çağır"

#: ../../diskdrake.pm_.c:42
msgid "Save in file"
msgstr "Dosyaya kaydet"

#: ../../diskdrake.pm_.c:43
msgid "Wizard"
msgstr "Sihirbaz"

#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
msgstr "Disketten geri çağır"

#: ../../diskdrake.pm_.c:45
msgid "Save on floppy"
msgstr "Diskete kaydet"

#: ../../diskdrake.pm_.c:49
msgid "Clear all"
msgstr "Hepsini temizle"

#: ../../diskdrake.pm_.c:50
msgid "Format all"
msgstr "Hepsini biçimlendir"

#: ../../diskdrake.pm_.c:51
msgid "Auto allocate"
msgstr "Otomatik ayır"

#: ../../diskdrake.pm_.c:54
msgid "All primary partitions are used"
msgstr "Tüm birincil bölümler kullanıldı"

#: ../../diskdrake.pm_.c:54
msgid "I can't add any more partition"
msgstr "Daha fazla bölüm eklenemez"

#: ../../diskdrake.pm_.c:54
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Daha fazla bölüm yaratmak için, bir bölümü silip mantıksal bölüm yaratın"

#: ../../diskdrake.pm_.c:57
msgid "Rescue partition table"
msgstr "Bölüm tablosunu kurtar"

#: ../../diskdrake.pm_.c:58
msgid "Undo"
msgstr "Geri al"

#: ../../diskdrake.pm_.c:59
msgid "Write partition table"
msgstr "Bölüm tablosunu Yaz"

#: ../../diskdrake.pm_.c:60
msgid "Reload"
msgstr "Tekrar yükle"

#: ../../diskdrake.pm_.c:101
msgid "loopback"
msgstr "loopback"

#: ../../diskdrake.pm_.c:114
msgid "Ext2"
msgstr "Ext2"

#: ../../diskdrake.pm_.c:114
msgid "FAT"
msgstr "FAT"

#: ../../diskdrake.pm_.c:114
msgid "HFS"
msgstr "HFS"

#: ../../diskdrake.pm_.c:114
msgid "SunOS"
msgstr "SunOS"

#: ../../diskdrake.pm_.c:114
msgid "Swap"
msgstr "Takas"

#: ../../diskdrake.pm_.c:115
msgid "Empty"
msgstr "Boş"

#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
msgid "Other"
msgstr "Diğer"

#: ../../diskdrake.pm_.c:121
msgid "Filesystem types:"
msgstr "Dosya sistemi tipi:"

#: ../../diskdrake.pm_.c:130
msgid "Details"
msgstr "Ayrıntılar"

#: ../../diskdrake.pm_.c:144
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Tek bir büyük disk bölümünüz var\n"
"(genellikle MS DOS/Windows tarafından kullanılır).\n"
"Öncelikle bu disk bölümünün boyutunu değiştirmenizi\n"
"öneriyoruz. Önce bölümün üzerine, sonra \"Yeniden\n"
"Boyutlandır\" düğmesine tıklayınız"

#: ../../diskdrake.pm_.c:149
msgid "Please make a backup of your data first"
msgstr "Önce verinizin yedeğini alınız"

#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
#: ../../diskdrake.pm_.c:554
msgid "Read carefully!"
msgstr "Dikkatli Okuyun!"

#: ../../diskdrake.pm_.c:152
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Aboot'u kullanmayı planlıyorsanız, boş disk alanı (2048 sektör yeterlidir.)\n"
"bırakmayı ihmal etmeyin."

#: ../../diskdrake.pm_.c:166
msgid "Be careful: this operation is dangerous."
msgstr "Dikkatlı olun: bu operasyon tehlikelidir."

#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
#: ../../install_steps_interactive.pm_.c:38
#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
msgid "Error"
msgstr "Hata"

#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
msgid "Mount point: "
msgstr "Bağlama noktası: "

#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
msgid "Device: "
msgstr "Aygıt: "

#: ../../diskdrake.pm_.c:229
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü harfi: %s (sadece tahmin)\n"

#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
msgid "Type: "
msgstr "Tip: "

#: ../../diskdrake.pm_.c:231
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlangıç: sektör %s\n"

#: ../../diskdrake.pm_.c:232
#, c-format
msgid "Size: %d MB"
msgstr "Boyut: %d MB"

#: ../../diskdrake.pm_.c:234
#, c-format
msgid ", %s sectors"
msgstr ", %s sektör"

#: ../../diskdrake.pm_.c:236
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Silindir %d 'den silindir %d'ye\n"

#: ../../diskdrake.pm_.c:237
msgid "Formatted\n"
msgstr "Biçimlendirilmiş\n"

#: ../../diskdrake.pm_.c:238
msgid "Not formatted\n"
msgstr "Biçimlendirilmemiş\n"

#: ../../diskdrake.pm_.c:239
msgid "Mounted\n"
msgstr "Bağlı\n"

#: ../../diskdrake.pm_.c:240
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"

#: ../../diskdrake.pm_.c:241
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback dosyası: %s\n"

#: ../../diskdrake.pm_.c:242
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Öntanımlı olarak açılacak bölüm\n"
"    (MS-DOS açılışı için)\n"

#: ../../diskdrake.pm_.c:244
#, c-format
msgid "Level %s\n"
msgstr "Seviye %s\n"

#: ../../diskdrake.pm_.c:245
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça boyutu %s\n"

#: ../../diskdrake.pm_.c:246
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskleri %s\n"

#: ../../diskdrake.pm_.c:248
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback dosyası ismi: %s"

#: ../../diskdrake.pm_.c:265
msgid "Please click on a partition"
msgstr "Lütfen bir bölüm üzerine tıklayın"

#: ../../diskdrake.pm_.c:270
#, c-format
msgid "Size: %d MB\n"
msgstr "Boyut: %d MB\n"

#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometri: %s silindir, %s kafa, %s sektör\n"

#: ../../diskdrake.pm_.c:273
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölüm tablosu tipi: %s\n"

#: ../../diskdrake.pm_.c:274
#, c-format
msgid "on bus %d id %d\n"
msgstr "%d veriyolunda, %d no'lu\n"

#: ../../diskdrake.pm_.c:290
msgid "Mount"
msgstr "Bağla"

#: ../../diskdrake.pm_.c:292
msgid "Active"
msgstr "Etkin"

#: ../../diskdrake.pm_.c:294
msgid "Add to RAID"
msgstr "RAID'e ekle"

#: ../../diskdrake.pm_.c:296
msgid "Remove from RAID"
msgstr "RAID'den ayır"

#: ../../diskdrake.pm_.c:298
msgid "Modify RAID"
msgstr "RAID'i değiştir"

#: ../../diskdrake.pm_.c:300
msgid "Use for loopback"
msgstr "Loopback için kullan"

#: ../../diskdrake.pm_.c:307
msgid "Choose action"
msgstr "Monitörünüzü seçin"

#: ../../diskdrake.pm_.c:400
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
"Üzgünüm, /boot bölümünü bu sürücünün üstünde yaratamayacağım. \n"
"Bu durumda ya LILO kullanmayacaksınız ve /boot bölümüne ihtiyacınız \n"
"yok, veya LILO kullanmayı denersiniz ancak LILO çalışmayabilir."

#: ../../diskdrake.pm_.c:404
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
"Seçtiğiniz bölüm fiziksel alanın üstünde (1024. silindirin dışında) ve hiç \n"
"/boot bölümünüz yok. Lilo açılış yöneticisini kullanmak istiyorsanız, \n"
"/boot bölümünü eklerken dikkatli olmalısınız."

#: ../../diskdrake.pm_.c:410
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
"Bir yazılımsal RAID bölümünü kök dizini (/) olarak atadınız.\n"
"Böyle bir durumda hiçbir açılış yükleyici /boot bölümü olmadan çalışamaz.\n"
"Bu nedenle bir /boot bölümü eklemeyi ihmal etmeyiniz."

#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
#, c-format
msgid "Use ``%s'' instead"
msgstr "Yerine ``%s'' kullan"

#: ../../diskdrake.pm_.c:432
msgid "Use ``Unmount'' first"
msgstr "Önce ``Ayır''ı kullan"

#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"%s bölümünün tipini değiştirdikten sonra, bu bölümdeki tüm bilgiler "
"silinecektir"

#: ../../diskdrake.pm_.c:445
msgid "Continue anyway?"
msgstr "Devam edilsin mi?"

#: ../../diskdrake.pm_.c:450
msgid "Quit without saving"
msgstr "Kaydetmeden Çık"

#: ../../diskdrake.pm_.c:450
msgid "Quit without writing the partition table?"
msgstr "Bölüm tablosunu kaydetmeden mi çıkıyorsunuz?"

#: ../../diskdrake.pm_.c:478
msgid "Change partition type"
msgstr "Bölüm tipini Değiştir"

#: ../../diskdrake.pm_.c:479
msgid "Which filesystem do you want?"
msgstr "Hangi dosya sistemini istiyorsunuz?"

#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB den küçük disk bölümlerinde ReiserFS kullanamazsınız"

#: ../../diskdrake.pm_.c:498
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback aygıtınnereye bağlamak istiyorsunuz?"

#: ../../diskdrake.pm_.c:499
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s aygıtını nereye bağlamak istiyorsunuz?"

#: ../../diskdrake.pm_.c:504
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Bu disk bölümü loopback için kullanıldığından bağlanma noktasından "
"vazgeçilemiyor.\n"
"Önce loopback'i kaldırın."

#: ../../diskdrake.pm_.c:523
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "%s bölümü formatlandıktan sonra bu bölümdeki tüm bilgiler silinecektir"

#: ../../diskdrake.pm_.c:525
msgid "Formatting"
msgstr "Biçimleniyor"

#: ../../diskdrake.pm_.c:526
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback dosyası biçimlendiriliyor: %s"

#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
#, c-format
msgid "Formatting partition %s"
msgstr "Biçimlendirilen bölüm: %s"

#: ../../diskdrake.pm_.c:532
msgid "After formatting all partitions,"
msgstr "Tüm bölümleri biçimledikten sonra, "

#: ../../diskdrake.pm_.c:532
msgid "all data on these partitions will be lost"
msgstr "bu bölümlerdeki tüm veriler kaybolacaktır"

#: ../../diskdrake.pm_.c:538
msgid "Move"
msgstr "Taşı"

#: ../../diskdrake.pm_.c:539
msgid "Which disk do you want to move it to?"
msgstr "Hangi diske taşımak istiyorsunuz?"

#: ../../diskdrake.pm_.c:540
msgid "Sector"
msgstr "Sektör"

#: ../../diskdrake.pm_.c:541
msgid "Which sector do you want to move it to?"
msgstr "Hangi sektöre taşımak istiyorsunuz?"

#: ../../diskdrake.pm_.c:544
msgid "Moving"
msgstr "Taşınıyor"

#: ../../diskdrake.pm_.c:544
msgid "Moving partition..."
msgstr "Bölüm taşınıyor..."

#: ../../diskdrake.pm_.c:554
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölüm tablosu diske yazılacak!"

#: ../../diskdrake.pm_.c:556
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni ayarların etkinleşmesi için sistemi yeniden başlatmanız gerekiyor"

#: ../../diskdrake.pm_.c:577
msgid "Computing FAT filesystem bounds"
msgstr "Fat dosya sistemi uçları hesaplanıyor"

#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Yeniden boyutlandırılıyor"

#: ../../diskdrake.pm_.c:600
msgid "This partition is not resizeable"
msgstr "Bu bölüm tekrar boyutlandırılabilir değil"

#: ../../diskdrake.pm_.c:605
msgid "All data on this partition should be backed-up"
msgstr "Bu bölümedeki tüm bilgiler yedeklenmelidir"

#: ../../diskdrake.pm_.c:607
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölümü yeniden boyutlandırıldıktan sonra bu bölümdeki tüm bilgiler "
"silinecektir"

#: ../../diskdrake.pm_.c:617
msgid "Choose the new size"
msgstr "Yeni boyutu seçin"

#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
#: ../../install_steps_graphical.pm_.c:334
#: ../../install_steps_interactive.pm_.c:518
#: ../../partition_table_raw.pm_.c:101
msgid "MB"
msgstr "MB"

#: ../../diskdrake.pm_.c:674
msgid "Create a new partition"
msgstr "Yeni bölüm yarat"

#: ../../diskdrake.pm_.c:700
msgid "Start sector: "
msgstr "Başlangıç sektörü: "

#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
msgid "Size in MB: "
msgstr "MB cinsinden boyut: "

#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
msgid "Filesystem type: "
msgstr "Dosya sistemi tipi: "

#: ../../diskdrake.pm_.c:710
msgid "Preference: "
msgstr "Özellik: "

#: ../../diskdrake.pm_.c:758
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölümü loopback için kullanılamaz"

#: ../../diskdrake.pm_.c:768
msgid "Loopback"
msgstr "Loopback"

#: ../../diskdrake.pm_.c:778
msgid "Loopback file name: "
msgstr "Loopback dosya ismi: "

#: ../../diskdrake.pm_.c:804
msgid "File already used by another loopback, choose another one"
msgstr ""
"Dosya başka bir loopback tarafından kullanılıyor, başka\n"
"bir tane seçin"

#: ../../diskdrake.pm_.c:805
msgid "File already exists. Use it?"
msgstr "Dosya zaten var. Kullanılsın mı?"

#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
msgid "Select file"
msgstr "Dosya seç"

#: ../../diskdrake.pm_.c:836
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Yedek bölüm tablosu aynı ölçüye sahip değil\n"
"Devam etmek istiyor musunuz?"

#: ../../diskdrake.pm_.c:844
msgid "Warning"
msgstr "Uyarı"

#: ../../diskdrake.pm_.c:845
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Dİsket sürücüye bir disket yerleştirin\n"
"Bu disketteki tüm bilgiler yok olacaktır"

#: ../../diskdrake.pm_.c:856
msgid "Trying to rescue partition table"
msgstr "Bölüm tablosunu kurtarılmaya çalışılıyor"

#: ../../diskdrake.pm_.c:867
msgid "device"
msgstr "aygıt"

#: ../../diskdrake.pm_.c:868
msgid "level"
msgstr "seviye"

#: ../../diskdrake.pm_.c:869
msgid "chunk size"
msgstr "parça boyutu"

#: ../../diskdrake.pm_.c:881
msgid "Choose an existing RAID to add to"
msgstr "Eklemek için mevcut bir RAID seçin"

#: ../../diskdrake.pm_.c:882
msgid "new"
msgstr "yeni"

#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s biçimlemesinde %s bölüm hatası"

#: ../../fs.pm_.c:133
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i nasıl biçimlendireceğimi bilmiyorum (Tip: %s)"

#: ../../fs.pm_.c:218
msgid "mount failed: "
msgstr "bağlama başarısız: "

#: ../../fs.pm_.c:230
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırken hata oluştu: %s"

#: ../../fsedit.pm_.c:235
msgid "Mount points must begin with a leading /"
msgstr "Bağlama noktaları / ile başlamalıdır"

#: ../../fsedit.pm_.c:238
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Zaten bağlama noktası %s olan bir bölüm bulunmakta\n"

#: ../../fsedit.pm_.c:246
#, c-format
msgid "Circular mounts %s\n"
msgstr "Döngüsel bağlama %s\n"

#: ../../fsedit.pm_.c:258
msgid "This directory should remain within the root filesystem"
msgstr "Bu dizin kök dosya sistemi içinde kalmalı"

#: ../../fsedit.pm_.c:259
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Bu bağlama noktası için gerçek bir dosya sistemine (ext2, reisrfs)\n"
"ihtiyaç var.\n"

#: ../../fsedit.pm_.c:335
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmak için açılan %s'de hata: %s"

#: ../../fsedit.pm_.c:417
msgid ""
"An error has occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Bir hata oluştu. Yeni dosya sisteminin yaratılacağı geçerli bir sürücü "
"bulunamadı. Bu problemin kaynağı için donanımınızı kontrol edin"

#: ../../fsedit.pm_.c:431
msgid "You don't have any partitions!"
msgstr "Hiç disk bölümünüz yok!"

#: ../../help.pm_.c:9
msgid ""
"Please choose your preferred language for installation and system usage."
msgstr "Kurulum ve sistem kullanımı için istediğiniz dili seçin."

#: ../../help.pm_.c:12
msgid ""
"You need to accept the terms of the above license to continue installation.\n"
"\n"
"\n"
"Please click on \"Accept\" if you agree with its terms.\n"
"\n"
"\n"
"Please click on \"Refuse\" if you disagree with its terms. Installation will "
"end without modifying your current\n"
"configuration."
msgstr ""
"Kuruluma devam etmek için yukarıdaki lisansın şartlarını kabul etmelisiniz.\n"
"\n"
"\n"
"Eğer şartları kabul ediyorsanız lütfen \"Kabul et\" düğmesine basın.\n"
"\n"
"\n"
"Şartları kabul etmiyorsanız lütfen \"Kabul etme\" düğmesine basın.\n"
"Kurulum şu andaki ayarlarınızı değiştirmeden kapanacaktır."

#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
msgstr "Yukarıdaki listeden klavyenize uyan düzenini seçiniz"

#: ../../help.pm_.c:25
msgid ""
"If you wish other languages (than the one you choose at\n"
"beginning of installation) will be available after installation, please "
"chose\n"
"them in list above. If you want select all, you just need to select \"All\"."
msgstr ""
"Diğer dillerin (kuruluma başladığınız sırada seçtiğinizden başka) "
"kurulumdan\n"
"sonra kullanılabilmesini istiyorsanız, lütfen o dilleri yukarıdaki listeden\n"
"seçin. Tümünü seçmek isterseniz, sadece \"Tümü\" düğmesine "
"klikleyebilirsiniz."

#: ../../help.pm_.c:30
msgid ""
"Please choose \"Install\" if there are no previous version of "
"Linux-Mandrake\n"
"installed or if you wish to use several operating systems.\n"
"\n"
"\n"
"Please choose \"Update\" if you wish to update an already installed version "
"of Linux-Mandrake.\n"
"\n"
"\n"
"Depend of your knowledge in GNU/Linux, you can choose one of the following "
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
"\t* Recommanded: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t  be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
"\t  development) of your sytem. You will need to answer to more questions "
"than in \"Recommanded\" installation\n"
"\t  class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
"\n"
"\t* Expert: if you have a good knowledge in GNU/Linux, you can choose this "
"installation class. As in \"Customized\"\n"
"\t  installation class, you will be able to choose the primary usage "
"(workstation, server, development). Be very\n"
"\t  careful before choose this installation class. You will be able to "
"perform a higly customized installation.\n"
"\t  Answer to some questions can be very difficult if you haven't a good "
"knowledge in GNU/Linux. So, don't choose\n"
"\t  this installation class unless you know what you are doing."
msgstr ""
"Eğer sisteminizde Linux-Mandrake'nin eski bir sürümü yoksa, ya da \n"
"birden çok sistem kullanmak istiyorsanız lütfen\"Kurulum\"'a klikleyin\n"
"\n"
"\n"
"Linux-Mandrake'nin eski bir sürümünü güncellemek istiyorsanız lütfen\n"
"\"Güncelleme\"'ye klikleyin.\n"
"\n"
"\n"
"Linux-Mandrake işletim sistemini kurmak ya da güncellemek için GNU/Linux\n"
"hakkındaki deneyiminize bağlı olarak aşağıdaki düzeylerden birini\n"
"seçebilirsiniz:\n"
"\n"
"\t* Tavsiye edilen: Daha önce hiçbir GNU/Linux işletim sistemi "
"kurmadıysanız\n"
"\t  bunu seçin. Kurulum size çok az soru soracak ve çok kolay olacaktır.\n"
"\n"
"\n"
"\t* Özel: GNU/Linux hakkında bir miktar bilginiz ve deneyiminiz varsa bunu\n"
"\t  seçebilirsiniz. Bu kurulum sırasında kullanacağınız sistemin türünü (iş\n"
"\t  istasyonu, sunucu, uygulama geliştirme ortamı) seçmeniz istenecektir.\n"
"\t  \"Tavsiye edilen\" kurulum sınıfında sorulan sorulardan daha fazlası\n"
"\t  karşınıza çıkacaktır.\n"
"\n"
"\n"
"\t* Uzman: GNU/Linux hakkında yeterli bilgi ve deneyiminiz varsa bu sınıfı\n"
"\t  seçin. \"Özel\" kurulum sınıfında olduğu gibi burada da sistemi hangi\n"
"\t  amaçla (iş istasyonu, sunucu, uygulama geliştirme ortamı) "
"kullanacağınız\n"
"\t  sorulacaktır. Bu sınıfı seçerken dikkatli olun. Oldukça özelleşmiş bir\n"
"\t  kurulum yapacaksınız ve sorulan bazı sorular GNU/Linux hakkında yeterli\n"
"\t  deneyiminiz yoksa hayli zor olacaktır. Ne yaptığınızdan emin değilseniz\n"
"\t  asla bu sınıfı seçmeyin."

#: ../../help.pm_.c:56
msgid ""
"Select:\n"
"\n"
"  - Customized: If you are familiar enough with GNU/Linux, you may then "
"choose\n"
"    the primary usage for your machine. See below for details.\n"
"\n"
"\n"
"  - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
"    perform a highly customized installation. As for a \"Customized\"\n"
"    installation class, you will be able to select the usage for your "
"system.\n"
"    But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
"DOING!"
msgstr ""
"Seçim:\n"
"\n"
"  - Özel: Eğer Linux'a aşina iseniz ve ağırlıklı olarak yazılım\n"
"    geliştirme ile uğraşacaksanız bu seçeneğe tıklayın. Sistemi genel "
"amaçlı\n"
"    kullanacaksanız \"Normal\", yazılım geliştirme amaçlı kullanacaksanız\n"
"    \"Geliştirme\" ve genel amaçlı sunucu olarak kullanacaksanız \"Sunucu\"\n"
"    seçeneklerinden birisini seçiniz\n"
"\n"
"\n"
"  - Uzman: Eğer GNU/Linux'u biliyorsanız ve tamamen özel bir kurulum\n"
"    istiyorsanız bu kurulum sınıfı sizin için."

#: ../../help.pm_.c:68
msgid ""
"You must now define your machine usage. Choices are:\n"
"\n"
"\t* Workstation: this the ideal choice if you intend to use your machine "
"primarily for everyday use, at office or\n"
"\t  at home.\n"
"\n"
"\n"
"\t* Development: if you intend to use your machine primarily for software "
"development, it is the good choice. You\n"
"\t  will then have a complete collection of software installed in order to "
"compile, debug and format source code,\n"
"\t  or create software packages.\n"
"\n"
"\n"
"\t* Server: if you intend to use this machine as a server, it is the good "
"choice. Either a file server (NFS or\n"
"\t  SMB), a print server (Unix style or Microsoft Windows style), an "
"authentication server (NIS), a database\n"
"\t  server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
"to be installed."
msgstr ""
"Makinanızı kullanacağınız amaca göre yapabileceğiniz seçimler aşağıdadır: \n"
"  - İş istasyonu: makinanızı öncelikle günlük kullanım (ofis uygulamaları, "
"grafik işleme \n"
"    ve benzeri işler) için kullanacaksanız bunu seçin.\n"
"\n"
"  - Geliştirme: Adı üstünde. Makinanızı öncelikle yazılım geliştirmek için\n"
"    kullanacaksanız bunu seçin. Böylece kaynak kodlarını derlemek, debug ve "
"\n"
"    düzenlemek, uygulama paketleri hazırlamak için gerekli her türlü "
"uygulamadan\n"
"    oluşan bir koleksiyon makinanıza kurulacaktır.\n"
"\n"
"    Sunucu: Makinanıza Linux-Mandrake'yi sunucu olarak çalıştırmak için "
"kuracaksanız\n"
"    bunu seçin. Bir dosya sunucusu (NFS ya da SMB), \n"
"    yazıcı sunucusu (Unix'in lp protokolü ya da Windows tarzı SMB "
"yazdırma),\n"
"    authantication sunucusu (NIS), veri tabanı sunucusu ve benzeri...\n"
"    Bu durumda KDE, GNOME gibi çekici şeylerin kurulmasını beklemeyin."

#: ../../help.pm_.c:84
msgid ""
"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
"finds an SCSI adapter and knows which driver to use, it will be "
"automatically\n"
"installed.\n"
"\n"
"\n"
"If you have no SCSI adapter, an ISA SCSI adapter or a PCI SCSI adapter that\n"
"DrakX doesn't recognize, you will be asked if a SCSI adapter is present in "
"your\n"
"system. If there is no adapter present, you can click on \"No\". If you "
"click on\n"
"\"Yes\", a list of drivers will be presented from which you can select your\n"
"specific adapter.\n"
"\n"
"\n"
"If you have to manually specify your adapter, DrakX will ask if you want to\n"
"specify options for it. You should allow DrakX to probe the hardware for "
"the\n"
"options. This usually works well.\n"
"\n"
"\n"
"If not, you will need to provide options to the driver. Please review the "
"User\n"
"Guide (chapter 3, section \"Collective informations on your hardware) for "
"hints\n"
"on retrieving this information from hardware documentation, from the\n"
"manufacturer's Web site (if you have Internet access) or from Microsoft "
"Windows\n"
"(if you have it on your system)."
msgstr ""
"DrakX PCI SCSI arabirim(ler)inizi bulmaya çalışacak. Eğer bir SCSI\n"
"arabirimi bulursa ve hangi sürücüyle çalıştığını da biliyorsa otomatik\n"
"olarak bunu kuracaktır.\n"
"\n"
"\n"
"Hiç SCSI arabiriminiz yoksa, bir ISA SCSI kartınız varsa, ya da\n"
"DrakX'in tanımadığı bir PCI SCSI kartınız bulunuyorsa, sisteminizde bir "
"SCSI\n"
"kartınızın olup olmadığı sorulacaktır. Bir SCSI kartına sahip değilseniz "
"\"Hayır\"\n"
"düğmesine tıklayın. Eğer \"Evet\" düğmesine tıklarsanız, sürücüler "
"listesinden\n"
"kartınıza uygun bir sürücü seçebilirsiniz.\n"
"\n"
"\n"
"Kartınızı elle tanıtmak zorundaysanız DrakX sizden kartınıza uygun "
"opsiyonları\n"
"belirlemenizi isteyecektir. Bu, genelde çalışır.\n"
"\n"
"\n"
"Eğer çalışmazsa, sürücü opsiyonlarını öğrenmeniz gereklidir. İnternet\n"
"bağlantınız bulunuyorsa, üreticinin veb sitesindeki donanım\n"
"dokümanlarından ya da (eğer sisteminizde bulunuyorsa) Microsoft\n"
"Windows'dan bu bilgileri bulabilme ipuçları \n"
"için Kullanma Kılavuzu'nu (3. Kısım, \"Donanım Üzerine Bilgi Toplanması\"\n"
"bölümünü) okuyun."

#: ../../help.pm_.c:108
msgid ""
"At this point, you need to choose where to install your\n"
"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
"existing operating system uses all the space available on it, you need to\n"
"partition it. Basically, partitioning a hard drive consists of logically\n"
"dividing it to create space to install your new Linux-Mandrake system.\n"
"\n"
"\n"
"Because the effects of the partitioning process are usually irreversible,\n"
"partitioning can be intimidating and stressful if you are an inexperienced "
"user.\n"
"This wizard simplifies this process. Before beginning, please consult the "
"manual\n"
"and take your time.\n"
"\n"
"\n"
"You need at least two partitions. One is for the operating system itself and "
"the\n"
"other is for the virtual memory (also called Swap).\n"
"\n"
"\n"
"If partitions have been already defined (from a previous installation or "
"from\n"
"another partitioning tool), you just need choose those to use to install "
"your\n"
"Linux system.\n"
"\n"
"\n"
"If partitions haven't been already defined, you need to create them. \n"
"To do that, use the wizard available above. Depending of your hard drive\n"
"configuration, several solutions can be available:\n"
"\n"
"\t* Use existing partition: the wizard has detected one or more existing "
"Linux partitions on your hard drive. If\n"
"\t  you want to keep them, choose this option. \n"
"\n"
"\n"
"\t* Erase entire disk: if you want delete all data and all partitions "
"present on your hard drive and replace them by\n"
"\t  your new Linux-Mandrake system, you can choose this option. Be careful "
"with this solution, you will not be\n"
"\t  able to revert your choice after confirmation.\n"
"\n"
"\n"
"\t* Use the free space on the Windows partition: if Microsoft Windows is "
"installed on your hard drive and takes\n"
"\t  all space available on it, you have to create free space for Linux data. "
"To do that you can delete your\n"
"\t  Microsoft Windows partition and data (see \"Erase entire disk\" or "
"\"Expert mode\" solutions) or resize your\n"
"\t  Microsoft Windows partition. Resizing can be performed without loss of "
"any data. This solution is\n"
"\t  recommended if you want use both Linux-Mandrake and Microsoft Windows on "
"same computer.\n"
"\n"
"\n"
"\t  Before choosing this solution, please understand that the size of your "
"Microsoft\n"
"\t  Windows partition will be smaller than at present time. It means that "
"you will have less free space under\n"
"\t  Microsoft Windows to store your data or install new software.\n"
"\n"
"\n"
"\t* Expert mode: if you want to partition manually your hard drive, you can "
"choose this option. Be careful before\n"
"\t  choosing this solution. It is powerful but it is very dangerous. You can "
"lose all your data very easily. So,\n"
"\t  don't choose this solution unless you know what you are doing."
msgstr ""
"Bu noktada, Linux-Mandrake işletim sisteminizi sabit diskinizde\n"
"nereye kuracağınızı seçmeniz gerekiyor. Diskiniz boşsa, ya da\n"
"halihazırda bir işletim sistemi diskin tamamını kullanıyorsa\n"
"diski bölümlendirmeniz gerekmektedir. Temel olarak, bir diski\n"
"bölümlendirmek, Linux-Mandrake sistemini kurabilmek için onu\n"
"mantıksal olarak bölmek ve böylece boş alan yaratmak anlamına\n"
"gelir.\n"
"\n"
"\n"
"Bölümlendirme işleminin etkilerinin geri dönülmezliği yüzünden\n"
"bu işlem, eğer tecrübesizseniz, korkutucu ve stresli bir iş olabilir.\n"
"Bu sihirbaz bu işlemi basitleştirmektedir. Başlamadan önce lütfen kılavuza\n"
"başvurun.\n"
"\n"
"\n"
"En az iki bölüme ihtiyacınız var. Biri işletim sisteminin kendisi, diğeri "
"de\n"
"sanal hafıza (takas alanı) için.\n"
"\n"
"\n"
"Bölümler halihazırda tanımlıysa (önceki bir kurulumdan ya da başka bir\n"
"bölümlendirme aracından), Linux sisteminizi kurmak için sadece bunları\n"
"seçmeniz yeterli olacaktır.\n"
"\n"
"\n"
"Bölümler tanımlanmamışsa, onları yaratmalısınız. Bunu gerçekleştirmek\n"
"için yukarıdaki sihirbazı kullanın. Sabit diskinizin özelliklerine göre\n"
"birçok çözüm bulunmaktadır:\n"
"\n"
"\t* Hazırdaki bölümleri kullan: Sihirbaz, sabit diskinizde hazırda bir\n"
"\t  ya da daha çok bölüm buldu. Bunları korumak istiyorsanız bunu seçin.\n"
"\n"
"\n"
"\t* Tüm diski temizle: Diskinizdeki tüm veriyi ve bölümleri yok etmek\n"
"\t  ve bunların yerine Linux-Mandrake sistemini kurmak istiyorsanız bunu\n"
"\t  seçin. Bu çözümü kullanırken dikkatli olun, doğruladıktan sonra geri\n"
"\t  dönüşü olmayacaktır.\n"
"\n"
"\n"
"\t* Windows bölümündeki boş alanı kullan: Sabit diskinizde Microsoft Windoz\n"
"\t  bulunyorsa ve eldeki tüm alanı o kullanıyorsa, Linux verileri için boş\n"
"\t  alan yaratmanız gereklidir. Bunu yapabilmek için Windows bölümünüzü ve\n"
"\t  verilerini silebilir, (\"Tüm diski temizle\" ya da \"Uzman Kipi\" "
"çözümlerine\n"
"\t  bakınız) ya da Windows bölümünün boyutunu değiştirebilirsiniz. Boyutun\n"
"\t  değiştirilmesi işlemi hiçbir veri kaybına neden olmadan yapılabilir.\n"
"\t  Bu çözüm, aynı makinada hem Linux-Mandrake, hem de Windows "
"kullanılacaksa\n"
"\t  tavsiye edilmektedir.\n"
"\n"
"\n"
"\t  Bu çözümü seçmeden önce, lütfen Windows bölümünüzün eskisinden daha "
"küçük\n"
"\t  kalacağını anlayın. Bu, windows'da verilerinizi saklamak ve yeni "
"uygulamalar\n"
"\t  yüklemek için daha az boş alana sahip olacağınız anlamına gelmektedir.\n"
"\n"
"\n"
"\t* Uzman Kipi: Sabit diskiniz kendiniz elle bölümlendirmek istiyorsanız "
"bunu\n"
"\t  seçebilirsiniz. Bu çözümü seçmeden önce dikkatli olun. Güçlü bir çözüm\n"
"\t  olduğu kadar tehlikelidir de. Tüm verilerinizi kolayca "
"kaybedebilirsiniz.\n"
"\t  Bu nedenle ne yaptığınızı tam olarak bilmediğiniz sürece bunu seçmeyin."

#: ../../help.pm_.c:160
msgid ""
"At this point, you need to choose what\n"
"partition(s) to use to install your new Linux-Mandrake system. If "
"partitions\n"
"have been already defined (from a previous installation of GNU/Linux or "
"from\n"
"another partitioning tool), you can use existing partitions. In other "
"cases,\n"
"hard drive partitions must be defined.\n"
"\n"
"\n"
"To create partitions, you must first select a hard drive. You can select "
"the\n"
"disk for partitioning by clicking on \"hda\" for the first IDE drive, "
"\"hdb\" for\n"
"the second or \"sda\" for the first SCSI drive and so on.\n"
"\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
"   * Clear all: this option deletes all partitions available on the selected "
"hard drive.\n"
"\n"
"\n"
"   * Auto allocate:: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
"     hard drive.\n"
"\n"
"\n"
"   * Rescue partition table: if your partition table is damaged, you can try "
"to recover it using this option. Please\n"
"     be careful and remember that it can fail.\n"
"\n"
"\n"
"   * Undo: you can use this option to cancel your changes.\n"
"\n"
"\n"
"   * Reload: you can use this option if you wish to undo all changes and "
"load your initial partitions table\n"
"\n"
"\n"
"   * Wizard: If you wish to use a wizard to partition your hard drive, you "
"can use this option. It is recommended if\n"
"     you do not have a good knowledge in partitioning.\n"
"\n"
"\n"
"   * Restore from floppy: if you have saved your partition table on a floppy "
"during a previous installation, you can\n"
"     recover it using this option.\n"
"\n"
"\n"
"   * Save on floppy: if you wish to save your partition table on a floppy to "
"be able to recover it, you can use this\n"
"     option. It is strongly recommended to use this option\n"
"\n"
"\n"
"   * Done: when you have finished partitioning your hard drive, use this "
"option to save your changes.\n"
"\n"
"\n"
"For information, you can reach any option using the keyboard: navigate "
"trough the partitions using Tab and Up/Down arrows.\n"
"\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
"           * Ctrl-c to create a new partition (when a empty partition is "
"selected)\n"
"\n"
"           * Ctrl-d to delete a partition\n"
"\n"
"           * Ctrl-m to set the mount point"
msgstr ""
"Bu noktada, Linux-Mandrake işletim sisteminizi sabit diskinizde\n"
"nereye kuracağınızı seçmeniz gerekiyor.Bölümler önceki bir kurulum\n"
"ya da bir başka bölümlendirme aracından dolayı önceden tanımlıysa\n"
"eski bölümlerinizi kullanabilirsiniz. Diğer durumlarda, sabit disk\n"
"bölümlerinin tanımlanması gerekir.\n"
"\n"
"\n"
"Bölümleri yaratmak için bir sabit disk seçmelisiniz. \"hda\"'ya klikleyerek\n"
"ilk, \"hdb\"'ye klikleyerek ikinci IDE sürücüsünü, ya da \"sda\"'ya "
"klikleyerek\n"
"birinci SCSI sürücüsünü bölümlendirmek için seçebilirsiniz.\n"
"\n"
"\n"
"Seçili sürücüyü bölümlendirmek için, aşağıdaki seçenekleri "
"kullanabilirsiniz:\n"
"\n"
"   * Tümünü temizle: Bu seçenek seçili sürücüdeki tüm bölümleri silecektir.\n"
"\n"
"\n"
"   * Otomatik bölümlendir: Bu seçenek sabit diskinizdeki boş alanda otomatik "
"olarak\n"
"ext2 ve takas bölümleri tanımlanmasını sağlayacaktır.\n"
"\n"
"\n"
"   * Bölümlendirme tablosunu kurtar: Bölümlendirme tablosu hasar gördüyse "
"bu\n"
"seçeneği kullanarak onu kurtarabilirsiniz. Lütfen dikkatli olun ve "
"başarısız\n"
"olma ihtimali olduğunu hatırlayın.\n"
"\n"
"\n"
"   * Geri al: Bu seçeneği kullanarak, daha önce yaptığınız değişikliklerden\n"
"vazgeçebilirsiniz.\n"
"\n"
"\n"
"   * Tekrar yükle: Bu seçeneği kullanarak, yaptığınız tüm değişiklikleri "
"geri\n"
"alıp eski bölümlendirme tablosunu yükleyebilirsiniz.\n"
"\n"
"\n"
"   * Sihirbaz: Sabit diskinizi bölümlendirme işlemi için sihirbazı "
"kullanmak\n"
"isterseniz, bu seçeneği kullanabilirsiniz. Bölümlendirme hakkında fazla bir\n"
"bilgiye sahip değilseniz bu seçeneği kullanmanızı öneririz.\n"
"\n"
"\n"
"   * Disketten geri çağır: Önceki bir kurulumda bölümlendirme tablonuzu bir\n"
"diskete kaydettiyseniz, bu seçeneği kullanarak onu geri çağırabilirsiniz.\n"
"\n"
"\n"
"   * Diskete kaydet: Bölümlendirme tablonuzu diskete kaydetmek isterseniz "
"bu\n"
"seçeneği kullanın. İleride geri çağırmak isteme ihtimaliniz nedeniyle bu "
"seçeneği\n"
"şiddetle öneririz.\n"
"\n"
"\n"
"   * Bitti: Sabit diskinizi bölümlendirme işlemi bittiğinde "
"değişikliklerinizin\n"
"kaydedilebilmesi için bu seçeneği kullanın.\n"
"\n"
"\n"
"Klavyeyi kullanarak herhangi bir seçeneğe gidebilirsiniz: Bölümler\n"
"arasında gezinmek için Tab ve Yukarı/Aşağı ok tuşlarını kullanabilirsiniz.\n"
"\n"
"\n"
"Bir bölüm seçildiğinde, aşağıdaki tuşları kullanabilirsiniz:\n"
"\n"
"           * yeni bir bölüm yaratmak için (boş bir bölüm seçildiğinde) "
"Ctrl-c,\n"
"\n"
"           * bir bölümü silmek için Ctrl-d,\n"
"\n"
"           * ekleme noktasını atamak için Ctrl-m"

#: ../../help.pm_.c:218
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
"a\n"
"common usage. If you change these choices, you must at least define a root\n"
"partition (\"/\"). Don't choose a too little partition or you will not be "
"able\n"
"to install enough software. If you want store your data on a separate "
"partition,\n"
"you need also to choose a \"/home\" (only possible if you have more than "
"one\n"
"Linux partition available).\n"
"\n"
"\n"
"For information, each partition is listed as follows: \"Name\", "
"\"Capacity\".\n"
"\n"
"\n"
"\"Name\" is coded as follow: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and "
"\"sd\"\n"
"if it is an SCSI hard drive.\n"
"\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE "
"hard drives:\n"
"\n"
"   * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
"   * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
"   * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
"   * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"\n"
"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
"\"secondary hard drive\", etc..."
msgstr ""
"Yukarıdakiler, sabit diskinizde bulunan Linux bölümleridir. Genel kullanım "
"için\n"
"sihirbazın sunduğu seçenekleri değiştirmeden bırakabilirsiniz. Seçenekleri \n"
"değiştirirseniz, en azından bir kök dizini (\"/\") tanımlamak zorundasınız.\n"
"Lütfen çok küçük bir bölüm seçmeyin, istediğiniz tüm uygulamaları "
"kurabilmek\n"
"için yeterli yer bulamayabilirsiniz. Verilerinizi ayrı bir bölümde saklamak\n"
"isterseniz, ayrıca bir \"/home\" bölümü tanımlamanız gerekecektir. (Birden\n"
"fazla Linux bölümü tanımlıysa bu işlem gerçekleşebilir.)\n"
"\n"
"\n"
"Her bir bölüm şöyle listelenmiştir: \"İsim\", \"Sığa\".\n"
"\n"
"\n"
"\"İsim\" şöyle kodlanmıştır: \"sabit disk türü\", \"sabit disk numarası\"\n"
"\"bölüm numarası\" (örneğin \"hda1\").\n"
"\n"
"\n"
"\"Sabit disk türü\", diskiniz bir IDE sürücüsüyse \"hd\", bir SCSI "
"sürücüsüyse\n"
"\"sd\"'dir.\n"
"\n"
"\n"
"\"Sabit disk numarası\" her zaman \"hd\" ya da \"sd\"'den sonra gelir. IDE\n"
"sürücüleri için:\n"
"\n"
"   * \"a\" \"birincil IDE denetleyicisindeki master sabit disk \",\n"
"\n"
"   * \"b\" means \"birincil IDE denetleyicisindeki slave sabit disk \",\n"
"\n"
"   * \"c\" means \"ikincil IDE denetleyicisindeki master sabit disk \",\n"
"\n"
"   * \"d\" means \"ikincil IDE denetleyicisindeki slave sabit disk \",\n"
"\n"
"\n"
"SCSI sürücüleri için \"a\" \"birincil sabit disk\", \"b\" \"ikincil sabit \n"
"disk\" ... anlamına gelir."

#: ../../help.pm_.c:252
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
"lost\n"
"and will not be recoverable."
msgstr ""
"Lütfen yeni Linux-Mandrake disk bölümünüzü kurmak için silmek istediğiniz\n"
"sabit diski seçin. Dikkatli olun, üzerindeki tüm veriler yok olacaktır ve\n"
"geriye dönüş mümkün olmayacaktır."

#: ../../help.pm_.c:257
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
"you\n"
"will not be able to recover any data and partitions present on this hard "
"drive,\n"
"including any Windows data.\n"
"\n"
"\n"
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"Bu sabit disk üzerindeki tüm verinin ve bölümlerin silinmesini istiyorsanız\n"
"\"Tamam\"'a tıklayın. Dikkatli olun, tıkladıktan sonra Windows verileri de\n"
"dahil hiçbir veri kurtarılamayacaktır.\n"
"\n"
"Sabit diskinizdeki hiçbir veriyi ya da bölümü silmeden bu işlemden "
"vazgeçmek\n"
"istiyorsanız lütfen \"Vazgeç\"'i klikleyin."

#: ../../help.pm_.c:267
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
"install\n"
"your new Linux-Mandrake operating system.\n"
"\n"
"\n"
"For information, each partition is listed as follow; \"Linux name\", "
"\"Windows\n"
"name\" \"Capacity\".\n"
"\n"
"\"Linux name\" is coded as follow: \"hard drive type\", \"hard drive "
"number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and "
"\"sd\"\n"
"if it is an SCSI hard drive.\n"
"\n"
"\n"
"\"Hard drive number\" is always a letter putted after \"hd\" or \"sd\". With "
"IDE hard drives:\n"
"\n"
"   * \"a\" means \"master hard drive on the primary IDE controller\",\n"
"\n"
"   * \"b\" means \"slave hard drive on the primary IDE controller\",\n"
"\n"
"   * \"c\" means \"master hard drive on the secondary IDE controller\",\n"
"\n"
"   * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
"\"secondary hard drive\", etc.\n"
"\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first "
"disk\n"
"or partition is called \"C:\")."
msgstr ""
"Sabit diskinizde birden fazla Windows bölümü bulundu. Yeni Linux-Mandrake\n"
"işletim sisteminizi kurmak için hangi bölümün boyutunu değiştirmek "
"istiyorsunuz?\n"
"\n"
"\n"
"Her bir bölüm şöyle listelenmiştir; \"Linux adı\", \"Windows adı\", "
"\"Sığa\".\n"
"\n"
"\"Linux adı\" şöyle kodlanır: \"sabit disk türü\", \"sabit disk numarası\", "
"\n"
"\"bölüm numarası\" (örneğin \"hda1\").\n"
"\n"
"\n"
"\"Sabit disk türü\", diskiniz bir IDE sürücüsüyse \"hd\", bir SCSI "
"sürücüsüyse\n"
"\"sd\"'dir.\n"
"\n"
"\n"
"\"Sabit disk numarası\" her zaman \"hd\" ya da \"sd\"'den sonra gelir. IDE\n"
"sürücüleri için:\n"
"\n"
"   * \"a\" \"birincil IDE denetleyicisindeki master sabit disk \",\n"
"\n"
"   * \"b\" means \"birincil IDE denetleyicisindeki slave sabit disk \",\n"
"\n"
"   * \"c\" means \"ikincil IDE denetleyicisindeki master sabit disk \",\n"
"\n"
"   * \"d\" means \"ikincil IDE denetleyicisindeki slave sabit disk \",\n"
"\n"
"\n"
"SCSI sürücüleri için \"a\" \"birincil sabit disk\", \"b\" \"ikincil sabit \n"
"disk\" ... anlamına gelir.\n"
"\n"
"\"Windows adı\" ise diskinizin windows altındayken kullandığı sürücü "
"harfidir.\n"
"(Örneğin ilk disk ya da bölüm \"C:\"'dir."

#: ../../help.pm_.c:300
msgid "Please be patient. This operation can take several minutes."
msgstr "Lütfen bekleyin. Bu işlem birkaç dakika sürecektir."

#: ../../help.pm_.c:303
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
"\n"
"\n"
"At this time, you may wish to reformat some already existing partitions to "
"erase\n"
"the data they contain. If you wish do that, please also select the "
"partitions\n"
"you want to format.\n"
"\n"
"\n"
"Please note that it is not necessary to reformat all pre-existing "
"partitions.\n"
"You must reformat the partitions containing the operating system (such as "
"\"/\",\n"
"\"/usr\" or \"/var\") but do you no have to reformat partitions containing "
"data\n"
"that you wish to keep (typically /home).\n"
"\n"
"\n"
"Please be careful selecting partitions, after formatting, all data will be\n"
"deleted and you will not be able to recover any of them.\n"
"\n"
"\n"
"Click on \"OK\" when you are ready to format partitions.\n"
"\n"
"\n"
"Click on \"Cancel\" if you want to choose other partitions to install your "
"new\n"
"Linux-Mandrake operating system."
msgstr ""
"Yeni tanımlanmış her bölüm, kullanım için biçimlendirilmelidir. "
"(Biçimlendirmek\n"
"bir dosya sistemi yaratmak anlamına gelir.)\n"
"\n"
"\n"
"Şimdi, halihazırda bulunan bölümlerinizdeki verileri silmek için onları "
"tekrar\n"
"biçimlendirmek isteyebilirsiniz. Bunu istiyorsanız, biçimlendirmek "
"istediğiniz\n"
"bu bölümleri de ayrıca seçili duruma getirin.\n"
"\n"
"\n"
"Eskiden kalma tüm bölümlerin biçimlendirilmesi gerekmediğini lütfen "
"unutmayın.\n"
"İşletim sistemi içeren (örneğin \"/\", \"/usr\" ya da \"/var\" gibi) "
"bölümlendirmeniz\n"
"gereklidir, ama sadece verilerinizin bulunduğu bölümleri "
"biçimlendirmeyebilirsiniz.\n"
"(örneğin \"/home\".)\n"
"\n"
"\n"
"Biçimlendireceğiniz bölümleri seçerken dikkatli olun, içlerindeki tüm veri "
"yok\n"
"olacaktır ve biçimlendirildikten sonra geri dönülmesi mümkün değildir.\n"
"\n"
"\n"
"Bölümleri biçimlendirmeye hazır olduğunuzda \"Tamam\"'a tıklayın.\n"
"\n"
"\n"
"Linux-Mandrake sisteminizi kurmak isteyeceğiniz başka bölümler de seçmek "
"isterseniz\n"
"\"Vazgeç\"'e basın."

#: ../../help.pm_.c:329
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
"\n"
"\n"
"DrakX will then check whether you have enough room to install them all. If "
"not,\n"
"it will warn you about it. If you want to go on anyway, it will proceed onto "
"the\n"
"installation of all selected groups but will drop some packages of lesser\n"
"interest. At the bottom of the list you can select the option \n"
"\"Individual package selection\"; in this case you will have to browse "
"through\n"
"more than 1000 packages..."
msgstr ""
"Şimdi kurmak ya da güncellemek istediğiniz paketler grubunu\n"
"seçebilirsiniz.\n"
"\n"
"\n"
"Sonra DrakX seçtiklerinizi kurmak ya da güncellemek için yeterli \n"
"boş yerinizin olup olmadığını kontrol edecek. Eğer yoksa, size bunu \n"
"söyleyecek. Ne olursa olsun devam etmek isterseniz, seçili grupların\n"
"kurulumuna başlayacak, fakat bazı önemsiz paketleri atlayacak. En \n"
"aşağıdaki \"Tek tek paket seçimi\" seçeneğini işaretleyebilirsiniz; bu\n"
"durumda 1000'e yakın paket arasından seçim yapmanız gerekecektir..."

#: ../../help.pm_.c:341
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
"\n"
"\n"
"You can expand or collapse the tree by clicking on options in the left "
"corner of\n"
"the packages window.\n"
"\n"
"\n"
"If you prefer to see packages sorted in alphabetic order, click on the icon\n"
"\"Toggle flat and group sorted\".\n"
"\n"
"\n"
"If you want not to be warned on dependencies, click on \"Automatic\n"
"dependencies\". If you do this, note that unselecting one package may "
"silently\n"
"unselect several other packages which depend on it."
msgstr ""
"Kurmak istediğiniz paketleri tek tek seçebilirsiniz.\n"
"\n"
"\n"
"Paketler penceresinin sol köşesindeki seçeneklere tıklayarak ağacı açıp\n"
"kapatabilirsiniz.\n"
"\n"
"\n"
"Paketlerin alfabetik olarak sıralanmasını isterseniz, \"Düzgün bağla ve "
"sıralı\n"
"grupla\" simgesine tıklamalısınız.\n"
"\n"
"\n"
"Bağımlılıklarda uyarılmak istemiyorsanız, \"Otomatik bağımlılık\"'a "
"tıklayın.\n"
"Bunu yaparsanız, bir paketi bırakmak, o pakete bağımlı birçok başka paketten "
"de\n"
"sessizce vazgeçilmesine neden olabilir."

#: ../../help.pm_.c:358
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
"none of those CDs, click Cancel. If only some CDs are missing, unselect "
"them,\n"
"then click Ok."
msgstr ""
"Yukarıdaki listedeki tüm CD'lere sahipseniz, Tamam'ı tıklayın.\n"
"Bu CD'lerin hiçbirine sahip değilseniz, Vazgeç'i tıklayın.\n"
"CD'lerden sadece bazıları eksikse, bunları listeden çıkarıp\n"
"Tamam'ı tıklayın."

#: ../../help.pm_.c:363
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
"choose to install and the speed of your computer).\n"
"\n"
"\n"
"Please be patient."
msgstr ""
"Yeni Linux-Mandrake işletim sisteminiz şu anda kuruluyor. Bu işlem\n"
"birkaç dakika sürecektir. (Bu süre, seçtiğiniz kurulumun büyüklüğüne\n"
"ve bilgisayarınızın hızına bağlıdır.)\n"
"\n"
"\n"
"Lütfen bekleyin."

#: ../../help.pm_.c:371
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
"driver."
msgstr ""
"Şimdi farenizi deneyebilirsiniz. Ayarların düzgün olup olmadığını anlamak\n"
"için lütfen düğmeleri ve tekeri kullanın. Ayarlar düzgün değilse "
"\"Vazgeç\"'e\n"
"basarak başka bir sürücü seçin."

#: ../../help.pm_.c:376
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
"Lütfen doğru kapıyı seçiniz. Örneğin, MS Windows'taki\n"
"COM1'in karşılığı GNU/Linux'ta ttyS0'dır."

#: ../../help.pm_.c:380
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
"device\n"
"before choosing the correct option to let DrakX detect it automatically.\n"
"\n"
"\n"
"If you do not have any connection to the Internet or a local network, "
"choose\n"
"\"Disable networking\".\n"
"\n"
"\n"
"If you wish to configure the network later after installation or if you "
"have\n"
"finished to configure your network connection, choose \"Done\"."
msgstr ""
"Bilgisayarınızı internete ya da yerel bir ağa bağlamak istiyorsanız lütfen\n"
"uygun bir seçeneği işaretleyin. Seçeneği işaretlemeden önce DrakX'in "
"bağlanmanıza\n"
"yarayacak aygıtı otomatik olarak bulmasını sağlamak için o aygıtı açmayı "
"unutmayın.\n"
"\n"
"\n"
"İnternete ya da yerel bir ağa bağlanmak istemiyorsanız lütfen \"Ağı iptal "
"et\"'i\n"
"seçin.\n"
"\n"
"\n"
"Ağınızı kurulumdan sonra ayarlamak istiyorsanız, ya da ağ bağlantısı "
"ayarlarını\n"
"bitirdiyseniz lütfen \"Bitti\"'ye basın."

#: ../../help.pm_.c:393
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
"\n"
"\n"
"For information, the first serial port (called \"COM1\" under Microsoft\n"
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
"Modem bulunamadı. Lütfen modemin bağlı bulunduğu kapıyı seçin.\n"
"\n"
"\n"
"İlk seri kapı (Windows altında \"COM1\") Linux altında \"ttyS0\"'dır."

#: ../../help.pm_.c:400
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
"from\n"
"your Internet Service Provider. If you do not enter the DNS (name server)\n"
"information here, this information will be obtained from your Internet "
"Service\n"
"Provider at connection time."
msgstr ""
"Çevirmeli ağ seçeneklerini girebilirsiniz. Bu seçenekleri bilmiyorsanız,\n"
"ya da emin değilseniz, doğru bilgileri İnternet servis sağlayıcınızdan\n"
"edinebilirsiniz. DNS (alan adı sunucusu) bilgilerini şu anda girmezseniz,\n"
"bu bilgiler bağlantı sırasında servis sağlayıcınızdan alınacaktır."

#: ../../help.pm_.c:407
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
"Modeminiz dışsal bir modem, DrakX'in onu otomatik olarak bulması için lütfen "
"açın."

#: ../../help.pm_.c:410
msgid "Please turn on your modem and choose the correct one."
msgstr "Lütfen modeminizi açın ve doğru olan seçeneğe klikleyin."

#: ../../help.pm_.c:413
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
"informations can be obtained from your Internet Service Provider. If you do "
"not\n"
"enter the DNS (name server) information here, this information will be "
"obtained\n"
"from your Internet Service Provider at connection time."
msgstr ""
"Yukarıdaki bilgilerin doğruluğundan emin değilseniz, ya da gireceğiniz "
"bilgileri\n"
"bilmiyorsanız, doğru bilgileri internet servis sağlayıcınızdan "
"edinebilirsiniz.\n"
"DNS (alan adı sunucusu) bilgilerini şimdi girmezseniz, bağlantı sırasında "
"bunlar\n"
"servis sağlayıcınızdan alınacaktır."

#: ../../help.pm_.c:420
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, the correct informations can be\n"
"obtained from your Internet Service Provider."
msgstr ""
"Gerekli olduğu takdirde sunucu ismini girebilirsiniz. Eğer gireceğiniz "
"isimden emin\n"
"değilseniz internet servis sağlayıcınıza başvurarak doğru bilgileri "
"alabilirsiniz."

#: ../../help.pm_.c:425
msgid ""
"You may now configure your network device.\n"
"\n"
"   * IP address: if you don't know or are not sure what to enter, ask your "
"network administrator.\n"
"     You should not enter an IP address if you select the option \"Automatic "
"IP\" below.\n"
"\n"
"   * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
"know or are not sure what to enter,\n"
"     ask your network administrator.\n"
"\n"
"   * Automatic IP: if your network uses BOOTP or DHCP protocol, select this "
"option. If selected, no value is needed in\n"
"    \"IP address\". If you don't know or are not sure if you need to select "
"this option, ask your network administrator."
msgstr ""
"Şimdi ağ kartınızı yapılandırabilirsiniz:\n"
"\n"
"   * IP adresi: Eğer IP adresinizi bilmiyorsanız ya da emin değilseniz,\n"
"     ağ yöneticinize danışın. \"Otomatik IP\" seçeneğini işaretlerseniz bir\n"
"     IP adresi girmemeniz gerekmektedir.\n"
"\n"
"   * Ağ maskesi: Genellikle \"255.255.255.0\" iyi bir seçimdir. Eğer emin \n"
"değilseniz, yine ağ yöneticinize ya da servis sağlayıcınıza sorun.\n"
"\n"
"\n"
"   * Otomatik IP : Eğer ağınız BOOTP ya da DHCP protokollerinden bir "
"tanesini      kullanıyorsa bu seçeneği işaretleyin. Bu seçenek işaretlenirse "
"\"IP adresi\"\n"
"     için bir değer gerekmeyecektir. Emin değilseniz ağ yöneticinize "
"başvurun."

#: ../../help.pm_.c:437
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
msgstr ""
"Şimdi sunucu isminizi girebilirsiniz. Eğer gireceğiniz isim hakkında bir\n"
"şüpheniz varsa ağ yöneticinizden bilgi alın."

#: ../../help.pm_.c:441
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr ""
"Eğer gerekliyse şimdi sunucu adını girebilirsiniz. Bilmiyor,\n"
"ya da emin değilseniz boş bırakın."

#: ../../help.pm_.c:445
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
"Şimdi çevirmeli ağ seçeneklerini girebilirsiniz. Eğer ne yazılması "
"gerektiğini\n"
"bilmiyorsanız İnternet servis sağlayıcınızdan gerekli bilgileri edinin."

#: ../../help.pm_.c:449
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr "Eğer vekil (proxy) sunucu kullanılacaksa bunları girin."

#: ../../help.pm_.c:453
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
"and\n"
"after that select the packages to install.\n"
"\n"
"\n"
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
"Eğer İnternet bağlantınız doğru şekilde ayarlanmışsa kriptografik paketi \n"
"kurabilirsiniz. Önce paketleri indireceğiniz bir yansı adresi seçin,\n"
"ve\n"
"daha sonra kurulacak paketleri seçin.\n"
"\n"
"\n"
"Unutmayın ki, ülkenizdeki kanunlara göre bir yansı ve kriptografik paketler "
"kümesi\n"
"seçmelisiniz."

#: ../../help.pm_.c:462
msgid "You can now select your timezone according to where you live."
msgstr "Şimdi, yaşadığınız yerin zaman dilimi ayarını seçebilirsiniz."

#: ../../help.pm_.c:465
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
"selected.\n"
"\n"
"\n"
"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
"GNU/Linux zamanı GMT'ye (Greenwich Mean Time) göre ayarlar ve bulunduğunuz \n"
"bölgedeki zamana göre gerekli değişiklikleri yapar.\n"
"\n"
"Bu bilgisayarda Microsoft Windows kullanıyorsanız \"Hayır\"'ı seçin."

#: ../../help.pm_.c:473
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
"\n"
"When your mouse comes over an item, a small balloon help will popup which\n"
"describes the role of the service.\n"
"\n"
"\n"
"Be very careful in this step if you intend to use your machine as a server: "
"you\n"
"will probably want not to start any services that you don't need. Please\n"
"remember that several services can be dangerous if they are enable on a "
"server.\n"
"In general, select only the services that you really need."
msgstr ""
"Şimdi, açılış sırasında otomatik olarak başlamasını istediğiniz servisleri\n"
"seçebilirsiniz.\n"
"\n"
"\n"
"Fare bir maddenin üzerine geldiğinde o servisin rolünü açıklayan küçük bir\n"
"baloncuk ortaya çıkacaktır.\n"
"\n"
"\n"
"Eğer makinanızı bir sunucu olarak kullanacaksanız bu adımda dikkatli "
"olmalısınız:\n"
"Muhtemelen kullanmak istemediğiniz hiçbir servisi başlatmak istemezsiniz. "
"Lütfen\n"
"bir sunucuda açık duruma getirilen servislerin tehlikeli olabileceğini "
"unutmayınız.\n"
"Genel olarak, sadece ihtiyacınız olan servisleri seçmeye dikkat edin."

#: ../../help.pm_.c:486
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
"Yerel bir yazıcı (bilgisayarınıza bağlı) ya da uzak bir yazıcı (bir Unix,\n"
"Netware ya da Microsoft Windows ağıyla erişilebilen) ayarlayabilirsiniz."

#: ../../help.pm_.c:490
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
"\n"
"\n"
"CUPS is a new, powerful and flexible printing system for Unix systems (CUPS\n"
"means \"Common Unix Printing System\"). It is the default printing system "
"in\n"
"Linux-Mandrake.\n"
"\n"
"\n"
"LPR is the old printing system used in previous Linux-Mandrake "
"distributions.\n"
"\n"
"\n"
"If you don't have printer, click on \"None\"."
msgstr ""
"Yazıcınızdan çıktı alabilmek için CUPS ve LPR adlı yazdırma sistemlerinden\n"
"birini seçmeniz gerekiyor.\n"
"\n"
"\n"
"CUPS, UNIX sistemler için, güçlü ve esnek olan yeni bir yazdırma "
"sistemidir.\n"
"(CUPS \"Ortak Unix Yazdırma Sistemi\" anlamına gelmektedir.) "
"Linux-Mandrake'de\n"
"öntanımlı olarak gelir.\n"
"\n"
"\n"
"LPR ise eski Linux-Mandrake dağıtımlarında kullanınan eski yazdırma "
"sistemidir.\n"
"\n"
"\n"
"Bir yazıcınız yoksa lütfen \"Hiçbiri\"'ni tıklayın."

#: ../../help.pm_.c:505
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
"\n"
"\n"
"If your printer is physically connected to your computer, select \"Local\n"
"printer\".\n"
"\n"
"\n"
"If you want to access a printer located on a remote Unix machine, select\n"
"\"Remote printer\".\n"
"\n"
"\n"
"If you want to access a printer located on a remote Microsoft Windows "
"machine\n"
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
"GNU/Linux çok çeşitli yazıcı türlerini çalıştırabilir. Bu türlerin her biri\n"
"ayrı ayarlar gerektirir.\n"
"\n"
"\n"
"Yazıcınız fiziksel olarak bilgisarınıza doğrudan bağlıysa \"Yerel "
"yazıcı\"'yı\n"
"seçin.\n"
"\n"
"\n"
"Uzaktaki bir Unix makinasına bağlı bir yazıcıya erişmek için, \"Uzak "
"yazıcı\"'yı\n"
"seçin.\n"
"\n"
"\n"
"Eğer uzaktaki bir Windows makinasına bağlı bir yazıcıya erişim sağlamak\n"
"istiyorsanız (ya da SMB protokolünü kullanan bir Unix makinaya bağlı),\n"
"lütfen \"SMB/Windows 95/98/NT\"'ye tıklayın."

#: ../../help.pm_.c:521
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
"You have to enter some informations here.\n"
"\n"
"\n"
"   * Name of printer: the print spooler uses \"lp\" as default printer name. "
"So, you must have a printer named \"lp\".\n"
"     If you have only one printer, you can use several names for it. You "
"just need to separate them by a pipe\n"
"     character (a \"|\"). So, if you prefer a more meaningful name, you have "
"to put it first, eg: \"My printer|lp\".\n"
"     The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"\n"
"   * Description: this is optional but can be useful if several printers are "
"connected to your computer or if you allow\n"
"     other computers to access to this printer.\n"
"\n"
"\n"
"   * Location: if you want to put some information on your\n"
"     printer location, put it here (you are free to write what\n"
"     you want, for example \"2nd floor\").\n"
msgstr ""
"Lütfen DrakX onu tanımaya çalışmadan önce yazıcınızı açın.\n"
"\n"
"Buraya bazı bilgiler girmeniz gerekiyor.\n"
"\n"
"\n"
"   * Yazıcının adı: Yazdırma sıralayıcısı öntanımlı yazıcı adı olarak\n"
"\"lp\"'yi kullanır. Sadece bir tane yazıcıya sahip olsanız bile ona birçok "
"isim\n"
"verebilirsiniz. Ancak verdiğiniz isimleri \"|\" (boru) ile ayırmalısınız.\n"
"Anlamlı bir isim seçerseniz onu önce yazın. Örneğin; \"Yazicim|lp\" gibi. "
"İsimleri\n"
"arasında \"lp\" adı olan yazıcı öntanımlı yazıcı olacktır.\n"
"\n"
"\n"
"   * Açıklama: Bu, seçenek isteğe bağlıdır. Ancak makinanıza birden çok "
"yazıcı bağlıysa\n"
"ya da başka bilgisayarın ağ üzerinden bu yazıcıya erişim yapabilmesine izin "
"verecekseniz\n"
"kullanışlı olabilir.\n"
"\n"
"\n"
"   * Konum: Yazıcınızın konumu hakkında bilgi girmek istiyorsanız, "
"istediğiniz türde\n"
"bilgiyi buraya yazabilirsiniz. Örneğin \"İkinci katta\" gibi.\n"

#: ../../help.pm_.c:542
msgid ""
"You need to enter some informations here.\n"
"\n"
"\n"
"   * Name of queue: the print spooler uses \"lp\" as default printer name. "
"So, you need have a printer named \"lp\".\n"
"    If you have only one printer, you can use several names for it. You just "
"need to separate them by a pipe\n"
"    character (a \"|\"). So, if you prefer to have a more meaningful name, "
"you have to put it first, eg: \"My printer|lp\".\n"
"    The printer having \"lp\" in its name(s) will be the default printer.\n"
"\n"
"  \n"
"   * Spool directory: it is in this directory that printing jobs are stored. "
"Keep the default choice\n"
"     if you don't know what to use\n"
"\n"
"\n"
"   * Printer Connection: If your printer is physically connected to your "
"computer, select \"Local printer\".\n"
"     If you want to access a printer located on a remote Unix machine, "
"select \"Remote lpd printer\".\n"
"\n"
"\n"
"     If you want to access a printer located on a remote Microsoft Windows "
"machine (or on Unix machine using SMB\n"
"     protocol), select \"SMB/Windows 95/98/NT\".\n"
"\n"
"\n"
"     If you want to acces a printer located on NetWare network, select "
"\"NetWare\".\n"
msgstr ""
"Buraya bazı bilgiler girmeniz gerekiyor.\n"
"\n"
"\n"
"   * Kuyruğun ismi: yazıcı kuyruğu öntanımlı yazıcı adı olarak \"lp\"yi \n"
"kullanır. Bu nedenle \"lp\" adında bir yazıcınız olmalıdır.\n"
"   Sadece bir yazıcıya sahipseniz, ona birden fazla isim de verebilirsiniz.\n"
"Kullandığınız bu isimleri boru karakteri (\"|\") ile birbirinden ayırın.\n"
"Daha anlamlı isiml tercih etmişseniz onu önce yazın: örneğin, "
"\"Yazicim|lp\".\n"
"   \"lp\" adını alan yazıcı varsayılan yazıcı olarak kullanılacaktır.\n"
"\n"
"\n"
"   * Kuyruk dizini: yazdırma işleri bu dizinde saklanacaktır. Nereyi "
"kullanacağınızı\n"
"bilmiyorsanız öntanımlı seçeneği kullanın.\n"
"\n"
"\n"
"   * Yazıcı Bağlantısı: Bilgisayarınıza fiziksel olarak bağlanmış bir "
"yazıcıya\n"
"sahipseniz \"Yerel yazıcı\"yı seçin.\n"
"   Uzaktaki bir Unix makinesi üzerindeki bir yazıcıya erişim sağlamak için "
"\"Uzaktaki\n"
"lpd yazıcısı\"nı seçin.\n"
"\n"
"\n"
"   Uzaktaki bir Microsoft Windows makinasında (ya da SMB protokolünü "
"kullanan bir\n"
"Unix makinasında) bulunan bir yazıcıya erişmek için ise \"SMB/Windows "
"95/98/NT\"yi\n"
"seçin.\n"
"\n"
"\n"
"   Eğer bir Novell (NetWare) ağında bulunan bir yazıcıya erişmek "
"istiyorsanız,\n"
"\"NetWare\"i seçin.\n"

#: ../../help.pm_.c:567
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
"\n"
"\n"
"For information, most printers are connected on the first parallel port. "
"This\n"
"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
"Windows."
msgstr ""
"Yazıcınız bulunamadı. Lütfen makinanıza bağlı aygıtın adını girin.\n"
"\n"
"\n"
"Çoğu yazıcı, birinci paralel kapıya bağlıdır. Bu kapı GNU/Linux altında\n"
"\"/dev/lp0\", ve Windows altında \"LPT1\"'dir."

#: ../../help.pm_.c:575
msgid "You must now select your printer in the above list."
msgstr "Şimdi yukarıdaki listeden yazıcınızı seçin."

#: ../../help.pm_.c:578
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
"\n"
"\n"
"You will be able to test your configuration in next step and you will be "
"able to modify it if it doesn't work as you want."
msgstr ""
"Lütfen yazıcınıza uygun seçenekleri işaretleyin.\n"
"İşaretleyeceğiniz seçenekleri bilmiyorsanız lütfen yazıcınızın "
"dokümanlarına\n"
"başvurun.\n"
"\n"
"\n"
"Bir sonraki adımda ayarlarınızı test edebilecek ve istediğiniz sonuçları\n"
"alamazsanız yeniden düzenleyebilirsiniz."

#: ../../help.pm_.c:585
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
"identical.\n"
"\n"
"\n"
"Root is the system's administrator and is the only user allowed to modify "
"the\n"
"system configuration. Therefore, choose this password carefully. \n"
"Unauthorized use of the root account can be extemely dangerous to the "
"integrity\n"
"of the system, its data and other system connected to it.\n"
"\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
"characters long. It should never be written down.\n"
"\n"
"\n"
"Do not make the password too long or complicated, though: you must be able "
"to\n"
"remember it without too much effort."
msgstr ""
"Linux sisteminiz için bir yönetici parolası verilmelidir. Bu parola\n"
"yazım hatalarına meydan vermemesi ve emin olunması açısından iki kere\n"
"girilmelidir.\n"
"\n"
"\n"
"Bu parolayı dikkatli seçmelisiniz. Sadece yönetici parolasını bilen\n"
"kişiler sistemi yönetebilir ve değişiklik yapabilir. Ayrıca yönetici\n"
"parolası ile sisteme giren bir kişi tüm verileri silip, sisteme zarar\n"
"verebilir. Seçtiğiniz parola alfanumerik karakterler içerip en az 8 karakter "
"uzunluğunda olmalıdır. Herhangi bir kağıda, deftere not\n"
"alınmamalıdır. Çok uzun bir parola veya çok karmaşık bir parola "
"kullanılırsa\n"
"parolanın hatırlanması zorlaşır.\n"
"\n"
"\n"
"Yönetici olarak sisteme gireceğiniz zaman, giriş sırasında \"login\"\n"
"yazan kısma \"root\" ve \"password\" yazan kısma yönetici parolasını\n"
"yazmalısınız."

#: ../../help.pm_.c:603
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
"Daha güvenli bir sistem için \"Gölge parola kullan\" ve \"MD5 şifreleme \n"
"kullan\" seçeneklerini işaretleyin."

#: ../../help.pm_.c:607
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
"Eğer ağda NIS kullanılıyorsa, \"NIS kullan\" seçeneğini işaretleyin. Eğer \n"
"bilmiyorsanız sistem yöneticinize danışın."

#: ../../help.pm_.c:611
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
"one or more account(s) for each person you want to allow to use\n"
"the computer. Note that each user account will have its own\n"
"preferences (graphical environment, program settings, etc.)\n"
"and its own \"home directory\", in which these preferences are\n"
"stored.\n"
"\n"
"\n"
"First of all, create an account for yourself! Even if you will be the only "
"user\n"
"of the machine, you may NOT connect as root for daily use of the system: "
"it's a\n"
"very high security risk. Making the system unusable is very often a typo "
"away.\n"
"\n"
"\n"
"Therefore, you should connect to the system using the user account\n"
"you will have created here, and login as root only for administration\n"
"and maintenance purposes."
msgstr ""
"Şimdi bir ya da daha çok kişinin Linux sisteminizi kullanmasına izin\n"
"verebilirsiniz. Her kullanıcı hesabı için yapılan değişiklikler sadece\n"
"o kullanıcı ve kullanıcının \"kullanıcı dizini\" için geçerli olur.\n"
"\n"
"\n"
"Sistemi sadece siz kullanacaksanız bile ayrı bir kullanıcı hesabı açarak\n"
"normal işlemler için bu hesabı kullanmalısınız. Yönetici \"root\" hesabı\n"
"günlük işlemlerde kullanılmamalıdır. Bu bir güvenlik riski teşkil eder.\n"
"Normal bir kullanıcı hesabı ile çalışmak sizi ve sistemi size karşı\n"
"korur. Yönetici hesabı olan \"root\" sadece, normal bir kullanıcı hesabı\n"
"ile yapamayacağınız yönetim ve bakım işleri için kullanılmalıdır."

#: ../../help.pm_.c:630
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
"Bir açılış disketi yaratmanız şiddetle önerilir. Sisteminiz açılmazsa\n"
"bu disket sisteminizi tekrar kurmadan kurtarmanız için tek seçenektir."

#: ../../help.pm_.c:635
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
"\n"
"\n"
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
"GNU/Linux'u açmak için gereken bilgilerin nerde tutulacağını belirlemeniz\n"
"gerekiyor.\n"
"\n"
"\n"
"Ne yaptığınızdan emin değilseniz, \"Diskin ilk sektörü (MBR)\" seçin."

#: ../../help.pm_.c:643
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
msgstr ""
"Başka bir şekilde belirtilmezse, genellikle bu seçim \"/dev/hda\" \n"
"(Birincil master IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
"olacaktır."

#: ../../help.pm_.c:647
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
"You may also want not to give access to these other operating systems to\n"
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (Linux Yükleyici) ve Grub açılış yükleyicileridir: sistemi GNU/Linux\n"
"ya da makinanızda bulunan başka bir işletim sistemiyle açabilirler.\n"
"Normalde bu diğer işletim sistemleri doğru bir şekilde tespit edilip "
"açılışa\n"
"kurulabilirler. Eğer bir aksilik olursa, buradan elle eklenebilirler.\n"
"Parametreler konusunda dikkatli olun."

#: ../../help.pm_.c:659
msgid ""
"LILO and grub main options are:\n"
"  - Boot device: Sets the name of the device (e.g. a hard disk\n"
"partition) that contains the boot sector. Unless you know specifically\n"
"otherwise, choose \"/dev/hda\".\n"
"\n"
"\n"
"  - Delay before booting default image: Specifies the number in tenths\n"
"of a second the boot loader should wait before booting the first image.\n"
"This is useful on systems that immediately boot from the hard disk after\n"
"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
"omitted or is set to zero.\n"
"\n"
"\n"
"  - Video mode: This specifies the VGA text mode that should be selected\n"
"when booting. The following values are available: \n"
"\n"
"    * normal: select normal 80x25 text mode.\n"
"\n"
"    * <number>:  use the corresponding text mode."
msgstr ""
"LILO ve grub ana seçenekleri şunlardır: \n"
"  - Açılış aygıtı: Açılış sektörünü bulunduğu sabit disk bölmesini içeren "
"aygıtın\n"
"adını tayin eder. Eğer hiçbir şey bilmiyorsanız \"/dev/hda\"yı seçin.\n"
"\n"
"\n"
"  - Varsayılan görüntüyle açmadan önce geçen süre: Açılış yükleyicisinin ilk "
"\n"
"görüntüyü açmadan önce bekleyeceği sürenin, saniyenin onda biri cinsinden\n"
"miktarıdır. Bu, klavyenin etkinleşmesinden hemen sonra sabit diskten açılan\n"
"sistemler için yararlıdır. Eğer \"bekleme süresi\" atlanırsa ya da sıfır\n"
"değeri alırsa açılış yükleyicisi sistemi açmak için beklemez\n"
"\n"
"\n"
" - Ekran kipi: Bu, açılışta kullanılacak VGA metin ekran kipini belirler.\n"
"Aşağıdaki değerleri alabilir:\n"
"\n"
"   * normal: 80x25 metin ekran kipi açılır.\n"
"   * <sayı>: Karşılık gelen metin modunu kullanın."

#: ../../help.pm_.c:680
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
"Normally, these other operating systems are correctly detected and\n"
"installed. If this is not the case, you can add an entry by hand in this\n"
"screen. Be careful as to choose the correct parameters.\n"
"\n"
"\n"
"You may also want not to give access to these other operating systems to\n"
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"SILO, SPARC'lar için bir açılış yükleyicidir: sistemi GNU/Linux'la ya da\n"
"ya da makinanızda bulunan başka bir işletimiyle açabilir. Normalde bu diğer\n"
"işletim sistemleri doğru bir şekilde tespit edilip açılışa kurulabilirler.\n"
"Eğer bir aksilik olursa, buradan elle eklenebilirler.\n"
"Parametreler konusunda dikkatli olun.\n"
"Bu diğer işletim sistemlerini başkalarının kullanmasını istemeyebilirsiniz.\n"
"Böyle bir durumda onlara karşılık gelen haneleri silebilirsiniz. Fakat o "
"zaman\n"
"makinanızı bu işletim sistemleriyle açabilmek için birer açma disketine\n"
"ihtiyacınız olacaktır."

#: ../../help.pm_.c:692
msgid ""
"SILO main options are:\n"
"  - Bootloader installation: Indicate where you want to place the\n"
"information required to boot to GNU/Linux. Unless you know exactly\n"
"what you are doing, choose \"First sector of drive (MBR)\".\n"
"\n"
"\n"
"  - Delay before booting default image: Specifies the number in tenths\n"
"of a second the boot loader should wait before booting the first image.\n"
"This is useful on systems that immediately boot from the hard disk after\n"
"enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
"omitted or is set to zero."
msgstr ""
"SILO ana seçenekleri şunlardır: \n"
"  - Açılışyükleyicisi kurulumu: GNU/Linux'u açmak için gerekli bilgiyi "
"nerede\n"
"tutmak istediğinizi gösterir. Ne yaptığınızı tam olarak bilmiyorsanız\n"
"\"Sürücünün ilk sektörünu (MBR)\" seçin.\n"
"\n"
"\n"
"  - Varsayılan çekirdek görüntüsünün açılmasından önceki bekleme: Saniyenin\n"
"onda biri olarak, açılış yükleyicisin ilk çekirdek görüntüsünü yüklemeden\n"
"önce bekleyeceği süreyi belirler. klavyenin etkinleşmesinden hemen sonra "
"sabit\n"
"diskten açılan sistemler için yararlıdır. Eğer \"bekleme\" geçilir ya da "
"sıfır\n"
"değeri alırsa sistem yükleyicisi hiç beklemez.\n"
"\n"
"- Çizgisel: Bazı SCSI disklerde (nadiren) kullanılır.\n"
"\n"
"\n"
" - Basit: Bir disketten açılış yaparken kullanılır, sistemin daha hızlı \n"
"açılmasını sağlayabilir.\n"
"\n"
" - Açılışta gecikme süresi: Saniyenin onda biri olarak belirtilir ve LILO "
"okunduktan\n"
"sonra herhangi bir tuşa basılmadığı zaman öntanımlı açılacak olan sistemin\n"
"bekleme süresini tayin eder.\n"
"\n"
" - Ekran kipi: Açılışta bir kaç metin ekran kipi seçilebilir:\n"
"   * normal: 80x25 metin ekran açılır.\n"
"   * <sayı>: Belirtilen sayılara göre metin ekran çözünürlüğü ayarlanır."

#: ../../help.pm_.c:705
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
"you must configure your video card and monitor. Most of these\n"
"steps are automated, though, therefore your work may only consist\n"
"of verifying what has been done and accept the settings :)\n"
"\n"
"\n"
"When the configuration is over, X will be started (unless you\n"
"ask DrakX not to) so that you can check and see if the\n"
"settings suit you. If they don't, you can come back and\n"
"change them, as many times as necessary."
msgstr ""
"Bu aşamadan itibaren, Linux GUI (Grafiksel Kullanıcı Arabirimi) çekirdeğini\n"
"oluşturan X Window sistemini düzenleyeceğiz. Bu nedenle ekran kartınızı\n"
"ve monitorünüzü ayarlamalısınız. Bu adımların çoğu zaten otomatik olarak\n"
"yapılacak ve size sadece yapılanları incelemek ve ayarları kabul etmek\n"
"düşecek. :-)\n"
"\n"
"\n"
"Düzenlemeler bittiği anda eğer DrakX'e aksini belirtmediyseniz X Window \n"
"başlayacaktır. Böylece yapılan ayarların isteklerinize uygun olup "
"olmadığını\n"
"kontrol edebileceksiniz. Eğer uygun değillerse istediğiniz kadar geri dönüp\n"
"ayarları değiştirin."

#: ../../help.pm_.c:718
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr "X ayarlarında sorun yaşarsanız aşağıdaki seçenekleri kullanın."

#: ../../help.pm_.c:722
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
"Eğer sisteme giriş yaparken grafik arayüzünün gelmesini istiyorsanız "
"\"Evet\",aksi halde \"Hayır\" tuşuna basın."

#: ../../help.pm_.c:726
msgid ""
"You can now select some miscellaneous options for your system.\n"
"\n"
"* Use hard drive optimizations: this option can improve hard disk "
"performance but is only for advanced users. Some buggy\n"
"  chipsets can ruin your data, so beware. Note that the kernel has a builtin "
"blacklist of drives and chipsets, but if\n"
"  you want to avoid bad surprises, leave this option unset.\n"
"\n"
"\n"
"* Choose security level: you can choose a security level for your system. "
"Please refer to the manual for complete\n"
"  information. Basically, if you don't know what to choose, keep the default "
"option.\n"
"\n"
"\n"
"* Precise RAM if needed: unfortunately, there is no standard method to ask "
"the BIOS about the amount of RAM present in\n"
"  your computer. As consequence, Linux may fail to detect your amount of RAM "
"correctly. If this is the case, you can\n"
"  specify the correct amount or RAM here. Please note that a difference of 2 "
"or 4 MB between detected memory and memory\n"
"  present in your system is normal.\n"
"\n"
"\n"
"* Removable media automounting: if you would prefer not to manually mount "
"removable media (CD-Rom, floppy, Zip, etc.) by\n"
"  typing \"mount\" and \"umount\", select this option.\n"
"\n"
"\n"
"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
"stored in \"/tmp\" when you boot your system,\n"
"  select this option.\n"
"\n"
"\n"
"* Enable num lock at startup: if you want NumLock key enabled after booting, "
"select this option. Please note that you\n"
"  should not enable this option on laptops and that NumLock may or may not "
"work under X."
msgstr ""
"Şimdi sisteminizde çeşitli ayarlamalar yapabilirsiniz.\n"
"\n"
"  - Sabit disk optimizasyonu: Sabit diskin performansını artırmak \n"
"için kullanılabilir, fakat sadece deneyimli kullanıcılar için önerilir: \n"
"bazı hatalı chipsetler datalarınızın bozulmasına neden olabilir, bu \n"
"yüzden dikkatli olun. Dikkat edilmelidir, çekirdekle birlikte\n"
"sürücüler ve chipsetler için bir kara liste gelmektedir. İsterseniz\n"
"kötü sürprizlerle karşılaşmamak için bu seçeneği boş bırakabilirsiniz.\n"
"\n"
"  - Güvenlik seviyesi: Sisteminiz için bir güvenlik seviyesi "
"seçebilirsiniz.\n"
"Tam bir bilgi için gerekli man sayfalarına bakabilirsiniz. Temel olarak:\n"
"bilmiyorsanız \"orta\"'yıseçin; eğer gerçekten güvenli bir makinaya sahip \n"
"olmak istiyorsanız, \"paranoyak\"'ı seçin. Fakat unutmayın ki, BU SEVİYEDE \n"
"SİSTEME KONSOLDAN ROOT OLARAK GİRMENİZE İZİN YOKTUR: Sıradan bir kullanıcı \n"
"olarak girip, sonra \"su\" komutu yardımıyla root olabilirsiniz. Daha genel "
"\n"
"olarak makinenizi sunucu olarak kullanmak dışında başka bir alanda "
"kullanmayı \n"
"beklemeyin. Uyarıldınız.\n"
"\n"
"  - Toplam bellek miktarı: Günümüz PC dünyasında BIOS'a bilgisayarınızdaki \n"
"toplam bellek miktarını soracak belirli bir yöntem bulunmamaktadır. Sonuç \n"
"olarak Linux gerçek RAM miktarını bulmakta yanılabilir. Böyle bir durumda\n"
"doğru RAM miktarını buraya girebilirsiniz. 2 ya da 4 MB'lik bir fark normal\n"
"sayılabilir.\n"
"\n"
"  - Takılıp sökülebilen araçların otomatik bağlanması: \"mount\" ve "
"\"umount\"\n"
"komutları yardımıyla elle disk, CD sürücü gibi araçları bağlamak "
"istemiyorsanız \n"
"bu seçeneği işaretleyin.\n"
"\n"
"  - Açılışta Num Lock ışığını yak: Açılışta Num Lock ışığının yanmasını \n"
"isterseniz bu seçeneği işaretleyin. Bu seçeneği dizüstü bilgisayarlarda\n"
"kullanmamalısınız ve X altında çalışmayabilir."

#: ../../help.pm_.c:755
msgid ""
"Your system is going to reboot.\n"
"\n"
"After rebooting, your new Linux Mandrake system will load automatically.\n"
"If you want to boot into another existing operating system, please read\n"
"the additional instructions."
msgstr ""
"Şimdi sistem tekrar açılacaktır.\n"
"\n"
"Açıldıktan sonra Linux Mandrake otomatik olarak yüklenecektir. Eğer başka \n"
"bir işletim sistemi çalıştıracaksanız ek uyarıları okuyun."

#: ../../install2.pm_.c:40
msgid "Choose your language"
msgstr "Kullanacağınız dili seçin"

#: ../../install2.pm_.c:41
msgid "Select installation class"
msgstr "Kurulum sınıfını seçin"

#: ../../install2.pm_.c:42
msgid "Hard drive detection"
msgstr "Sabit disk seçimi"

#: ../../install2.pm_.c:43
msgid "Configure mouse"
msgstr "Fare ayarları"

#: ../../install2.pm_.c:44
msgid "Choose your keyboard"
msgstr "Klavyenizi seçin"

#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
msgid "Miscellaneous"
msgstr "Çeşitli"

#: ../../install2.pm_.c:46
msgid "Setup filesystems"
msgstr "Dosya sistemleri Ayarları"

#: ../../install2.pm_.c:47
msgid "Format partitions"
msgstr "Bölümleri biçimlendirme"

#: ../../install2.pm_.c:48
msgid "Choose packages to install"
msgstr "Kurulacak paketleri seçin"

#: ../../install2.pm_.c:49
msgid "Install system"
msgstr "Sistem kurulumu"

#: ../../install2.pm_.c:50
msgid "Configure networking"
msgstr "Ağ ayarları"

#: ../../install2.pm_.c:52
msgid "Configure timezone"
msgstr "Zaman dilimi ayarları"

#: ../../install2.pm_.c:53
msgid "Configure services"
msgstr "Servis ayarları"

#: ../../install2.pm_.c:54
msgid "Configure printer"
msgstr "Yazıcı ayarları"

#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
#: ../../install_steps_interactive.pm_.c:763
msgid "Set root password"
msgstr "Root parolasını düzenle"

#: ../../install2.pm_.c:56
msgid "Add a user"
msgstr "Kullanıcı ekle"

#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Açılış disketi yarat"

#: ../../install2.pm_.c:60
msgid "Install bootloader"
msgstr "Sistem yükleyiciyi Kur"

#: ../../install2.pm_.c:61
msgid "Configure X"
msgstr "X'i Ayarla"

#: ../../install2.pm_.c:63
msgid "Auto install floppy"
msgstr "Otomatik kurulum disketi"

#: ../../install2.pm_.c:65
msgid "Exit install"
msgstr "Kurulumdan Çık"

#: ../../install_any.pm_.c:578
msgid "Error reading file $f"
msgstr "$f dosyası okunurken hata "

#: ../../install_gtk.pm_.c:426
msgid "Please test the mouse"
msgstr "Lütfen farenizi test edin"

#: ../../install_gtk.pm_.c:427
msgid "To activate the mouse,"
msgstr "Fareyi aktif hale getirmek için"

#: ../../install_gtk.pm_.c:428
msgid "MOVE YOUR WHEEL!"
msgstr "FARENİZİN TEKERİNİ HAREKET ETTİRİN!"

#: ../../install_interactive.pm_.c:23
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"Bilgisayarınızdaki bazı donanımlar çalışmak için \"özgün\" sürücüler\n"
"gerektiriyor. Bunlar hakkında bazı bilgiler bulabileceğiniz yer: %s"

#: ../../install_interactive.pm_.c:41
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Bir root disk bölümüne ihtiyacınız var.\n"
"Bunun için ister mevcut bir disk bölümü üzerine tıklayın, \n"
"isterseniz yeni bir tanesini baştan yaratın. Daha sonra \"Bağlama \n"
"Noktası\"na gelin ve burayı '/' olarak değiştirin."

#: ../../install_interactive.pm_.c:46 ../../install_steps_graphical.pm_.c:259
msgid "You must have a swap partition"
msgstr "Bir takas alanına ihtiyacınız var"

#: ../../install_interactive.pm_.c:47 ../../install_steps_graphical.pm_.c:261
msgid ""
"You don't have a swap partition\n"
"\n"
"Continue anyway?"
msgstr ""
"Bir takas alanınız yok\n"
"Devam edeyim mi?"

#: ../../install_interactive.pm_.c:68
msgid "Use free space"
msgstr "Boş alanı kullan"

#: ../../install_interactive.pm_.c:70
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölümler açmak için yeterli boş alan yok"

#: ../../install_interactive.pm_.c:78
msgid "Use existing partition"
msgstr "Hazırdaki bölümleri kullan"

#: ../../install_interactive.pm_.c:80
msgid "There is no existing partition to use"
msgstr "Hazırda bölüm bulunamadı"

#: ../../install_interactive.pm_.c:87
msgid "Use the Windows partition for loopback"
msgstr "Loopback için Windows bölümünü kullan"

#: ../../install_interactive.pm_.c:90
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linux4Win için hangi disk bölümünü kullanmak istiyorsunuz?"

#: ../../install_interactive.pm_.c:92
msgid "Choose the sizes"
msgstr "Boyutları seçin"

#: ../../install_interactive.pm_.c:93
msgid "Root partition size in MB: "
msgstr "Kök (root) bölümü boyutu (Mb): "

#: ../../install_interactive.pm_.c:94
msgid "Swap partition size in MB: "
msgstr "Takas alanı boyutu (Mb): "

#: ../../install_interactive.pm_.c:102
msgid "Use the free space on the Windows partition"
msgstr "Windows bölümündeki boş alanı kullan"

#: ../../install_interactive.pm_.c:105
msgid "Which partition do you want to resize?"
msgstr "Hangi bölümü yeniden boyutlandırmak istiyorsunuz?"

#: ../../install_interactive.pm_.c:107
msgid "Computing Windows filesystem bounds"
msgstr "Windows dosya sistemi sınırları hesaplanıyor"

#: ../../install_interactive.pm_.c:110
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
"FAT yeniden boyutlandırıcısı bölümü boyutlandıramıyor,\n"
"şu hata oluştu: %s"

#: ../../install_interactive.pm_.c:113
msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
msgstr ""
"Windows bölümünüz çok dağınık, lütfen önce \"disk birleştirme\" aracını "
"kullanın"

#: ../../install_interactive.pm_.c:114
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful: this operation is\n"
"dangerous. If you have not already done so, you should first exit the\n"
"installation, run scandisk under Windows (and optionally run defrag), then\n"
"restart the installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"UYARI!\n"
"DrakX Windows disk bölümünüzü yeniden boyutlandıracaktır. Bu işlem\n"
"tehlikeli olabilir. Daha önce yapmamışsanız kurulumdan çıkın ve Windows\n"
"altında Scandisk (ve seçimli olarak defrag) programını çalıştırın. Ardından\n"
"kuruluma tekrar devam edin. Verilerinizin yedeğini almayı da unutmayın!\n"
"Emin olduğunuzda Tamam'a basın."

#: ../../install_interactive.pm_.c:123
msgid "Which size do you want to keep for windows on"
msgstr "Windows için ne kadar yer bırakmak istiyorsunuz?"

#: ../../install_interactive.pm_.c:124
#, c-format
msgid "partition %s"
msgstr "(%s bölümünde)"

#: ../../install_interactive.pm_.c:130
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT yeniden boyutlandırması başarısız: %s"

#: ../../install_interactive.pm_.c:145
msgid ""
"There is no FAT partitions to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Yeniden boyutlandırılacak ya da loopback olarak kullanılacak \n"
"hiç FAT bölümü yok (ya da boş alan kalmamış)"

#: ../../install_interactive.pm_.c:151
msgid "Erase entire disk"
msgstr "Tüm diski temizle"

#: ../../install_interactive.pm_.c:151
msgid "Remove Windows(TM)"
msgstr "Windows'u Sil"

#: ../../install_interactive.pm_.c:154
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Birden çok sabit diskiniz var, hangisine linux kurmak istiyorsunuz?"

#: ../../install_interactive.pm_.c:157
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "%s sürücüsü üzerindeki TÜM bölümler ve veriler silinecektir"

#: ../../install_interactive.pm_.c:165
msgid "Expert mode"
msgstr "Uzman kipi"

#: ../../install_interactive.pm_.c:165
msgid "Use diskdrake"
msgstr "Diskdrake'i kullan"

#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
msgstr "Fdisk'i kullan"

#: ../../install_interactive.pm_.c:172
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
"Şimdi %s'i bölümlendirebilirsiniz.\n"
"İşiniz bittiğinde `w'yi kullanarak değişiklikleri saklamayı unutmayın."

#: ../../install_interactive.pm_.c:196
msgid "You don't have enough free space on your Windows partition"
msgstr "Windows bölümünüzde yeterli boş yeriniz yok"

#: ../../install_interactive.pm_.c:211
msgid "I can't find any room for installing"
msgstr "Kurulum için boş yer bulamıyorum"

#: ../../install_interactive.pm_.c:214
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Bölümlendirme sihirbazı şu çözümleri buldu:"

#: ../../install_interactive.pm_.c:219
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölümlendirme başarısız: %s"

#: ../../install_interactive.pm_.c:234
msgid "Bringing up the network"
msgstr "Ağ ayarları etkinleştiriliyor"

#: ../../install_interactive.pm_.c:239
msgid "Bringing down the network"
msgstr "Ağ kapatılıyor"

#: ../../install_steps.pm_.c:74
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Bir hata oluştu, fakat tam olarak nasıl düzeltileceğini bilmiyorum.\n"
"Devam edebilirsiniz, risk size ait!"

#: ../../install_steps.pm_.c:202
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama noktasını çoğalt"

#: ../../install_steps.pm_.c:385
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
"Bazı paketler doğru olarak kurulumu tamamlamadı.\n"
"cdrom sürücünüz ya da cdromunuz düzgün çalışamaz durumda.\n"
"Önceden Linux kurulu bir sistemde \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"kullanarak Cd-Rom'u kontrol edin.\n"

#: ../../install_steps.pm_.c:458
#, c-format
msgid "Welcome to %s"
msgstr "%s'e Hoş Geldiniz"

#: ../../install_steps.pm_.c:670
msgid "No floppy drive available"
msgstr "Disket sürücü yok"

#: ../../install_steps_auto_install.pm_.c:43
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
msgstr "Başlangıç adımı `%s'\n"

#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
msgstr "Kurmak istediğiniz paketleri seçin"

#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Toplam boyut: "

#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
#: ../../standalone/rpmdrake_.c:136
#, c-format
msgid "Version: %s\n"
msgstr "Sürüm: %s\n"

#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
#: ../../standalone/rpmdrake_.c:137
#, c-format
msgid "Size: %d KB\n"
msgstr "Boyut: %d KB\n"

#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
msgid "Choose the packages you want to install"
msgstr "Kurmak istediğiniz paketleri seçin"

#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
msgid "Info"
msgstr "Bilgi"

#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
msgid "Install"
msgstr "Kurulum"

#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
#: ../../install_steps_interactive.pm_.c:594
msgid "Installing"
msgstr "Kuruluyor"

#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
msgid "Please wait, "
msgstr "Lütfen bekleyin, "

#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
msgid "Time remaining "
msgstr "Kalan süre"

#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
msgid "Total time "
msgstr "Toplam süre"

#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
#: ../../install_steps_interactive.pm_.c:594
msgid "Preparing installation"
msgstr "Kurulum hazırlanıyor"

#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
#, c-format
msgid "Installing package %s"
msgstr "%s paketi kuruluyor"

#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
#: ../../install_steps_gtk.pm_.c:573
msgid "Go on anyway?"
msgstr "Yine de devam edelim mi?"

#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
msgid "There was an error ordering packages:"
msgstr "Paketleri düzenlerken bir hata oluştu:"

#: ../../install_steps_graphical.pm_.c:577
#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "X11 ayarları için mevcut ayarları kullanalım mı?"

#: ../../install_steps_gtk.pm_.c:136
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"Sistem kaynaklarınız kısıtlı. Linux-Mandrake'yi kurarken sorunlarınız\n"
"olabilir. Bu durum oluşursa, metin tabanlı kurulumu deneyebilirsiniz.\n"
"Bunun için CDROM'dan açtıktan sonra `F1'e basın, ve komut satırına\n"
"`text' yazın."

#: ../../install_steps_gtk.pm_.c:150
msgid "Please, choose one of the following classes of installation:"
msgstr "Lütfen aşağıdaki kurulum sınıflarından birisini seçiniz:"

#: ../../install_steps_gtk.pm_.c:215
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Seçtiğiniz paket gruplarının toplam boyu aşağı yukarı %d MB.\n"

#: ../../install_steps_gtk.pm_.c:217
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
"\n"
"A low percentage will install only the most important packages;\n"
"a percentage of 100%% will install all selected packages."
msgstr ""
"Bu boyuttan daha azını yüklemek isterseniz,\n"
"kurmak istediğiniz paket yüzdesini seçin.\n"
"100%%'ü seçerseniz bütün paketler kurulacaktır."

#: ../../install_steps_gtk.pm_.c:222
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
"If you wish to install less than this,\n"
"select the percentage of packages that you want to install.\n"
"A low percentage will install only the most important packages;\n"
"a percentage of %d%% will install as many packages as possible."
msgstr ""
"Sabit diskinizde bu paketlerin sadece %d%%'sini kuracak kadar yer var.\n"
"Bundan daha azını kurmak isterseniz,\n"
"daha az bir yüzde sadece en önemli paketleri paketleri;\n"
"%d%% ise kurulabilecek tüm paketleri kuracaktır."

#: ../../install_steps_gtk.pm_.c:228
msgid "You will be able to choose them more specifically in the next step."
msgstr "Sonraki adımda daha ayrıntılı bir seçim karşınıza gelecektir."

#: ../../install_steps_gtk.pm_.c:230
msgid "Percentage of packages to install"
msgstr "Kurulacak paketlerin yüzdesi"

#: ../../install_steps_gtk.pm_.c:272
msgid "Automatic dependencies"
msgstr "Otomatik bağımlılık denetimi"

#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
msgid "Expand Tree"
msgstr "Ağacı Aç"

#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
msgid "Collapse Tree"
msgstr "Ağacı Kapat"

#: ../../install_steps_gtk.pm_.c:334
msgid "Toggle between flat and group sorted"
msgstr "Birbirine bağla ve sıralı grupla"

#: ../../install_steps_gtk.pm_.c:351
msgid "Bad package"
msgstr "Hatalı paket"

#: ../../install_steps_gtk.pm_.c:352
#, c-format
msgid "Name: %s\n"
msgstr "İsim: %s\n"

#: ../../install_steps_gtk.pm_.c:355
#, c-format
msgid "Importance: %s\n"
msgstr "Önem seviyesi: %s\n"

#: ../../install_steps_gtk.pm_.c:363
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Toplam boyut: %d / %d Mb"

#: ../../install_steps_gtk.pm_.c:382
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçemezsiniz çünkü kurmak için yeterli yeriniz yok."

#: ../../install_steps_gtk.pm_.c:386
msgid "The following packages are going to be installed"
msgstr "Aşağıdaki paketler kurulacaktır"

#: ../../install_steps_gtk.pm_.c:387
msgid "The following packages are going to be removed"
msgstr "Aşağıdaki paketler sistemden silinecekler"

#: ../../install_steps_gtk.pm_.c:397
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçemezsiniz/sistemden çıkaramazsınız"

#: ../../install_steps_gtk.pm_.c:416
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu gerekli bir pakettir, sistemden çıkarılamaz"

#: ../../install_steps_gtk.pm_.c:418
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemden çıkaramazsınız. Kurulu durumda."

#: ../../install_steps_gtk.pm_.c:422
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
"Bu paket yenilenmek zorunda\n"
"Sistemden çıkarmak için emin misiniz?"

#: ../../install_steps_gtk.pm_.c:425
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemden çıkaramazsınız. Yenilenmek zorunda"

#: ../../install_steps_gtk.pm_.c:469
msgid "Estimating"
msgstr "Tahmin ediliyor"

#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
msgid "Cancel"
msgstr "İptal"

#: ../../install_steps_gtk.pm_.c:495
#, c-format
msgid "%d packages"
msgstr "%d paket"

#: ../../install_steps_gtk.pm_.c:531
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Uyarı\n"
"Aşağıdaki maddeleri lütfen dikkatle okuyun. Herhangi birine\n"
"katılmıyorsanız, bir sonraki CD ortamından kurulum yapmanız mümkün\n"
"değildir. Bu ortamdan kurulum yapmadan devam edebilmek için 'Reddet'e\n"
"basınız.\n"
"\n"
"\n"
"Bir sonraki CD'deki bazı uygulamalar GPL Lisansı'na ya da benzer "
"anlaşmalara\n"
"tabi değildir. Her parça kendine ait bir lisansın şartları ve durumları\n"
"tarafından yönlendirilir. Lütfen ilgili lisansı dikkatle okuyup kabul "
"etmeden\n"
"bu parçaların dağıtımını yapmayınız.\n"
"Genel olarak bu tür lisanslar ilgili uygulamanın transferi, kopyalanması "
"(yedekleme\n"
"amacı dışında nedenlerle), dağıtımı, kodlarının incelenmesi ve "
"değiştirilmesini\n"
"engeller. Herhangi bir anlaşmazlık, ilgili lisans tarafından verilen "
"haklarınızı yok\n"
"eder. Özel bir lisans anlaşmasıyla hak sahibi olmadıysanız, ilgili parçaları "
"birden\n"
"fazla sisteme kuramaz, ağ ortamında çalışmaya adapte edemezsiniz. Herhangi "
"bir\n"
"şüphe durumunda doğrudan dağıtıcı, ya da uygulamanın yazarıyla iletişim "
"kurunuz.\n"
"Üçüncü şahıslara transfer ya da dokümanlar da dahil herhangi bir "
"kopyalanması\n"
"genel olarak mümkün değildir.\n"
"\n"
"\n"
"Bir sonraki CD ortamındaki parçaların tüm hakları her bir uygulamanın kendi "
"yazarına\n"
"aittir, ve entellektüel özgünlük yasaları tarafından korunmaktadır.\n"

#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
msgid "Accept"
msgstr "Kabul et"

#: ../../install_steps_gtk.pm_.c:559
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Cd-Rom'u değiştirin!\n"
"\n"
"\"%s\" etiketli Cd-Rom'u sürücünüze takın ve TAMAM'a basın.\n"
"Eğer Cd-Rom elinizde yoksa bu Cd-Rom'dan kurmamak için VAZGEÇ'e basın."

#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
msgid "Refuse"
msgstr "Reddet"

#: ../../install_steps_gtk.pm_.c:573
msgid "There was an error installing packages:"
msgstr "Paketler kurulurken bir hata oluştu:"

#: ../../install_steps_interactive.pm_.c:38
msgid "An error occurred"
msgstr "Bir hata oluştu"

#: ../../install_steps_interactive.pm_.c:54
msgid "Please, choose a language to use."
msgstr "Lütfen kullanmak üzere bir dil seçin."

#: ../../install_steps_interactive.pm_.c:70
msgid "License agreement"
msgstr "Lisans anlaşması"

#: ../../install_steps_interactive.pm_.c:71
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the "
"Linux-Mandrake distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Linux-Mandrake distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read carefully this document. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurance of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Linux-Mandrake sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"
msgstr ""
"Giriş\n"
"\n"
"İşletim sistemi, ve Linux-Mandrake dağıtımında bulunan farklı parçalar "
"buradan\n"
"itibaren \"Yazılım Ürünleri\" olarak adlandırılacaktır. Yazılım ürünleri; "
"işletim\n"
"sistemiyle ilgili program kümeleri, yötemleri, kuralları ve dokümanları, "
"Linux-\n"
"Mandrake'nin farklı parçalarını içermektedir, fakat bunlarla "
"sınırlandırılmamaktadır.\n"
"\n"
"\n"
"1. Lisans Anlaşması\n"
"\n"
"Lütfen bu dokümanı dikkatle okuyun. Bu doküman yazılım ürünlerini uygulayan\n"
"MandrakeSoft S.A. ile sizin aranızdaki lisans anlaşmasıdır. Yazılım "
"ürünlerini,\n"
"kurulum yaparak, çoğaltarak, ya da herhangi bir amaçla kullanarak bu "
"Lisans'ın\n"
"şartlarına uyacağınızı açık ve tam olarak kabul etmiş bulunuyorsunuz. Eğer "
"bu\n"
"Lisans'ın şartlarını kabul etmiyorsanız, yazılım ürünlerini kurma, çoğaltma "
"ve\n"
"kullanma hakkınız yoktur. Yazılım ürünlerini lisansın şartlarına uymayacak\n"
"herhangi bir şekilde kurma, çoğaltma ya da kullanma teşebbüsü, bu lisans "
"altındaki\n"
"haklarınızı yok edecektir. Lisansın anlaşmasının bozulması durumunda, "
"yazılım\n"
"ürünlerinin tüm kopyalarını derhal yok etmeniz gerekmektedir.\n"
"\n"
"\n"
"2. Sınırlı Garanti\n"
"\n"
"Yazılım Ürünleri ve yanlarında gelen dokümanlar \"oldukları gibi\"dirler, ve "
"kanunların izin verdiği\n"
"açılımda garantisizdirler. MandrakeSoft S.A.,  kullanıcının yazılım "
"ürünlerini kullanmak konusunda yetkin\n"
"olmaması nedeniyle oluşan (iş kaybı, işin aksaması, maddi kayıp, hukuki "
"cezalara çarptırılma\n"
"vb. neden olacak) doğrudan ya da dolaylı (MandrakeSoft S.A. bu tür "
"zararların oluşabileceğini duyursa bile)\n"
"hiçbir zarar nedeniyle sorumluluk taşımaz.\n"
"\n"
"BAZI ÜLKELERDE YASAKLANMIŞ YAZILIMA SAHİP OLMAYA YA DA ONU KULLANMAYA BAĞLI "
"SINIRLI SORUMLULUK\n"
"\n"
"Kanunların verdiği yetkilere göre, MandrakeSoft S.A. ya da dağıtımcıları "
"kullanıcının, bulunduğu ülkede yasak olduğu halde, yazılım "
"ürünlerinikullanması, onlara sahip olması, onları Linux-Mandrake "
"sitelerinden indirmesi\n"
"nedeniyle oluşan (iş kaybı, işin aksaması, maddi kayıp, hukuki cezalara "
"çarptırılma\n"
"vb. neden olacak) doğrudan ya da dolaylı (MandrakeSoft S.A. bu tür "
"zararların oluşabileceğini duyursa bile)\n"
"hiçbir zarar nedeniyle sorumluluk taşımaz. Bu sınırlı sorumluluk, yazılım "
"ürünleri içindeki güçlü kriptografi araçlarını kapsar, fakat\n"
"bunlarla sınırlı değildir.\n"
"\n"
"\n"
"3. GPL Lisansı ve İlgili Lisanslar\n"
"\n"
"Yazılım ürünleri farklı birçok kişi tarafından yaratılmış parçalardan "
"oluşmaktadır. Bu parçaların\n"
"çoğu GNU Genel Kamu Lisansı (GPL) ya da benzer lisanslara tabidirler. Bu "
"lisansların çoğu, parçaların\n"
"kullanımına, çoğaltılmasına, değiştirilmesine ya da tekrar dağıtımının "
"yapılmasına izin vermektedir.\n"
"Lütfen kullanımdan önce her bir yazılım ürünü için, onu ilgilendiren "
"lisans(lar)ın tüm şartlarını\n"
"okuyunuz. Bir yazılım ürünü hakkındaki herhangi bir soru, MandrakeSoft'a "
"değil, o ürünün geliştiricisine\n"
"yöneltilmelidir. MandrakeSoft tarafından geliştirilmiş yazılımlar GPL "
"lisansıyla korunmaktadır. MandrakeSoft\n"
"tarafından hazırlanan dokümanlar da özel bir lisansa tabidir. Daha fazla "
"bilgi için lütfen dokümanlara\n"
"göz atınız.\n"
"\n"
"\n"
"4. Entellektüel Özellik Hakları\n"
"\n"
"Yazılım ürünleri üzerindeki tüm haklar bu yazılımın geliştiricisine aittir; "
"yazılıma uygulanan entellektüel özellik ve kopyalama\n"
"kanunlarıyla korunmaktadırlar. MandrakeSoft, yazılım ürünlerinin, bütün "
"olarak ya da parça parça, herhangi bir amaç için\n"
"değiştirilme ya da adapte edilme haklarını saklamaktadır. \"Mandrake\", ve "
"\"Linux-Mandrake\" ve ilgili logolar MandrakeSoft S.A.'ya\n"
"ait tescilli markalardır.\n"
"\n"
"\n"
"5. Yönetim Kanunları\n"
"\n"
"Bu lisansın herhangi bir kısmı, bir mahkeme tarafından kanunsuz ya da "
"uygunsuz bulunursa, o kısım bu kontrata dahil edilmemiş olacaktır.\n"
"Diğer kısımların sınırlamaları devam edecektir. Bu lisansın şartları Fransa "
"Kanunları altındadır. Bu lisansın şartlarına her türlü itiraz\n"
"Paris Mahkemesi tarafından görüşülecektir. Bu doküman hakkında herhangi bir "
"soru için lütfen MandrakeSoft S.A'ya başvurun.\n"

#: ../../install_steps_interactive.pm_.c:154
#: ../../standalone/keyboarddrake_.c:21
msgid "Keyboard"
msgstr "Klavye"

#: ../../install_steps_interactive.pm_.c:155
#: ../../standalone/keyboarddrake_.c:22
msgid "Please, choose your keyboard layout."
msgstr "Klavye düzenini seçiniz."

#: ../../install_steps_interactive.pm_.c:166
msgid "You can choose other languages that will be available after install"
msgstr "Kurulumdan sonra kullanabileceğiniz başka diller seçebilirsiniz"

#: ../../install_steps_interactive.pm_.c:173
#: ../../install_steps_interactive.pm_.c:520
msgid "All"
msgstr "Tümü"

#: ../../install_steps_interactive.pm_.c:181
#: ../../install_steps_interactive.pm_.c:227
msgid "Install Class"
msgstr "Kurulum Sınıfı"

#: ../../install_steps_interactive.pm_.c:181
msgid "Which installation class do you want?"
msgstr "Hangi kurulum sınıfını istiyorsunuz?"

#: ../../install_steps_interactive.pm_.c:183
msgid "Install/Update"
msgstr "Kurulum/Güncelleme"

#: ../../install_steps_interactive.pm_.c:183
msgid "Is this an install or an update?"
msgstr "Bu bir kurulum mu, yoksa bir güncelleme mi?"

#: ../../install_steps_interactive.pm_.c:192
msgid "Recommended"
msgstr "Önerilen"

#: ../../install_steps_interactive.pm_.c:195
#: ../../install_steps_interactive.pm_.c:211
msgid "Customized"
msgstr "Özel"

#: ../../install_steps_interactive.pm_.c:196
#: ../../install_steps_interactive.pm_.c:211
msgid "Expert"
msgstr "Uzman"

#: ../../install_steps_interactive.pm_.c:206
msgid ""
"Are you sure you are an expert? \n"
"You will be allowed to make powerful but dangerous things here.\n"
"\n"
"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
"are you ready to answer that kind of questions?"
msgstr ""
"Bir uzman olduğunuzdan emin misiniz? \n"
"Burada güçlü fakat tehlikeli olabilecek işlemler yapmanıza izin "
"verilecektir.\n"
"\n"
"Şu tarz sorularla karşılaşacaksınız: \"Şifreler için gölge dosyasını "
"kullan?\"\n"
"Bu tür sorulara hazır mısınız?"

#: ../../install_steps_interactive.pm_.c:216
msgid "Update"
msgstr "Güncelleme"

#: ../../install_steps_interactive.pm_.c:222
msgid "Workstation"
msgstr "İş istasyonu"

#: ../../install_steps_interactive.pm_.c:223
msgid "Development"
msgstr "Geliştirme"

#: ../../install_steps_interactive.pm_.c:224
msgid "Server"
msgstr "Sunucu"

#: ../../install_steps_interactive.pm_.c:228
msgid "What is your system used for?"
msgstr "Sisteminiz hangi amaçla kullanılacak?"

#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
msgid "Please, choose the type of your mouse."
msgstr "Lütfen farenizin türünü seçin."

#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
msgid "Mouse Port"
msgstr "Fare Kapısı"

#: ../../install_steps_interactive.pm_.c:252
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Farenizin bağlı olduğu seri portu seçiniz."

#: ../../install_steps_interactive.pm_.c:271
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar yapılandırılıyor..."

#: ../../install_steps_interactive.pm_.c:271
msgid "PCMCIA"
msgstr "PCMCIA"

#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring IDE"
msgstr "IDE yapılandırılıyor"

#: ../../install_steps_interactive.pm_.c:275
msgid "IDE"
msgstr "IDE"

#: ../../install_steps_interactive.pm_.c:288
msgid "no available partitions"
msgstr "hiç bölüm bulunamadı"

#: ../../install_steps_interactive.pm_.c:291
msgid "Scanning partitions to find mount points"
msgstr "Bağlama noktalarını bulmak için bölümler taranıyor"

#: ../../install_steps_interactive.pm_.c:299
msgid "Choose the mount points"
msgstr "Bağlama noktalarını seçin"

#: ../../install_steps_interactive.pm_.c:316
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
"The other solution is to disallow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
"Bölümlendirme tablonuzu okuyamıyorum, sanırım biraz bozulmuş :-(\n"
"Bozulmuş bölümleri düzeltmeye çalışabilirim (TÜM VERİLERİNİZ yok olacak!)\n"
"Diğer bir çözüm de DrakX'in bölümlendirme tablosunu değiştirmesine izin\n"
"vermemektir. (hata: %s)\n"
"\n"
"Tüm bölümleri kaybetmeye razı mısınız?\n"

#: ../../install_steps_interactive.pm_.c:329
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake bölüm tablosunu okumakta başarısız oldu.\n"
"Kendiniz devam edebilirsiniz."

#: ../../install_steps_interactive.pm_.c:337
msgid "Root Partition"
msgstr "Kök (root) Bölümü"

#: ../../install_steps_interactive.pm_.c:338
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölümü hangisidir?"

#: ../../install_steps_interactive.pm_.c:352
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölüm tablosundaki değişikliklerin geçerli olması için bilgisayarınızı "
"yeniden başlatmalısınız."

#: ../../install_steps_interactive.pm_.c:376
msgid "Choose the partitions you want to format"
msgstr "Biçimlendirilecek disk bölümlerini seçin"

#: ../../install_steps_interactive.pm_.c:386
msgid "Check bad blocks?"
msgstr "Hatalı bloklar sınansın mı?"

#: ../../install_steps_interactive.pm_.c:397
msgid "Formatting partitions"
msgstr "Bölümler biçimlendiriliyor"

#: ../../install_steps_interactive.pm_.c:401
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s dosyası yaratılıyor ve biçimlendiriliyor"

#: ../../install_steps_interactive.pm_.c:404
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Kurulumu tamamlamak için yeterli alan yok, lütfen ekleme yapın"

#: ../../install_steps_interactive.pm_.c:410
msgid "Looking for available packages"
msgstr "Mevcut paketler taranıyor."

#: ../../install_steps_interactive.pm_.c:416
msgid "Finding packages to upgrade"
msgstr "Güncellenecek paketler bulunuyor"

#: ../../install_steps_interactive.pm_.c:433
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"Sisteminizde kurulum ya da güncelleme için yeterli boş yer yok (%d > %d)"

#: ../../install_steps_interactive.pm_.c:449
#, c-format
msgid "Complete (%dMB)"
msgstr "Tamamlanan (%dMB)"

#: ../../install_steps_interactive.pm_.c:449
#, c-format
msgid "Minimum (%dMB)"
msgstr "Minimum (%dMB)"

#: ../../install_steps_interactive.pm_.c:449
#, c-format
msgid "Recommended (%dMB)"
msgstr "Önerilen (%dMB)"

#: ../../install_steps_interactive.pm_.c:455
msgid "Custom"
msgstr "Özel"

#: ../../install_steps_interactive.pm_.c:462
msgid "Select the size you want to install"
msgstr "İstediğiniz kurulum boyutunu seçin"

#: ../../install_steps_interactive.pm_.c:508
msgid "Package Group Selection"
msgstr "Paket Grubu Seçimi"

#: ../../install_steps_interactive.pm_.c:521
msgid "Individual package selection"
msgstr "Tek tek paket seçimi"

#: ../../install_steps_interactive.pm_.c:570
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"Aşağıdaki listedeki tüm CD'lere sahipseniz TAMAM'a basın.\n"
"CD'lerin hiçbirine sahip değiseniz VAZGEÇ'e v,basın.\n"
"CD'lerden birkaçı eksikse onları seçili durumdan çıkarıp TAMAM'a basın."

#: ../../install_steps_interactive.pm_.c:575
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" etiketli Cd-Rom"

#: ../../install_steps_interactive.pm_.c:603
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"%s paketi kuruluyor\n"
"%d%%"

#: ../../install_steps_interactive.pm_.c:612
msgid "Post-install configuration"
msgstr "Kurulum sonrası ayarlar"

#: ../../install_steps_interactive.pm_.c:637
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
"WARNING:\n"
"\n"
"Due to different general requirements applicable to these software and "
"imposed\n"
"by various jurisdictions, customer and/or end user of theses software "
"should\n"
"ensure that the laws of his/their jurisdiction allow him/them to download, "
"stock\n"
"and/or use these software.\n"
"\n"
"In addition customer and/or end user shall particularly be aware to not "
"infringe\n"
"the laws of his/their jurisdiction. Should customer and/or end user not\n"
"respect the provision of these applicable laws, he/they will incure serious\n"
"sanctions.\n"
"\n"
"In no event shall Mandrakesoft nor its manufacturers and/or suppliers be "
"liable\n"
"for special, indirect or incidental damages whatsoever (including, but not\n"
"limited to loss of profits, business interruption, loss of commercial data "
"and\n"
"other pecuniary losses, and eventual liabilities and indemnification to be "
"paid\n"
"pursuant to a court decision) arising out of use, possession, or the sole\n"
"downloading of these software, to which customer and/or end user could\n"
"eventually have access after having sign up the present agreement.\n"
"\n"
"\n"
"For any queries relating to these agreement, please contact \n"
"Mandrakesoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
msgstr ""
"Şimdi şifreleme için kullanılacak yazılımı indirebilirsiniz.\n"
"UYARI:\n"
"\n"
"Bu yazılıma uygulanabilir farklı genel gereksinimler nedeniyle ve çeşitli\n"
"yargı haklarından dolayı, bu yazılımın son kullanıcısı, kanunların ona bu\n"
"yazılımı internetten indirme ve saklama hakkını verdiğinden emin olmalıdır.\n"
"\n"
"Buna ek olarak, müşteri ve/veya son kullanıcı özellikle, bulunduğu yargı "
"bölgesinin\n"
"yasalarını çiğnemediğinden emin olmalıdır. Müşteri ve/veya son kullanıcı \n"
"kanunların uyguladığı yasal koşullara saygı göstermediğinde ciddi "
"yaptırımlara\n"
"maruz kalacaktır.\n"
"\n"
"Özel ya da dolaylı zararlara (kar azalması, işin sekteye uğraması, ticari "
"bilgi\n"
"kaybı ve diğer maddi kayıplar) yol açan hiçbir olayda ne Mandrakesoft, ne de "
"\n"
"üreticileri ve/veya kaynak sağlayanları sorumlu tutulamaz. Bu yazılımı\n"
"internetten indirirken son kullanıcı işbu sözleşmeyi kabul ettiğini \n"
"beyan etmiş sayılır.\n"
"\n"
"\n"
"Bu sözleşmeyle ilgili her türlü soru için lütfen\n"
"Mandrakesoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USAadresine yazınız."

#: ../../install_steps_interactive.pm_.c:669
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almak için bir yansı adresi seçin"

#: ../../install_steps_interactive.pm_.c:680
msgid "Contacting the mirror to get the list of available packages"
msgstr "Yansı adresine bağlantı kuruluyor"

#: ../../install_steps_interactive.pm_.c:683
msgid "Please choose the packages you want to install."
msgstr "Lütfen kurmak istediğiniz paketleri seçin."

#: ../../install_steps_interactive.pm_.c:695
msgid "Which is your timezone?"
msgstr "Bulunduğunuz zaman dilimi hangisi?"

#: ../../install_steps_interactive.pm_.c:697
msgid "Is your hardware clock set to GMT?"
msgstr "Donanım saatiniz GMT'ye göre ayarlı mı?"

#: ../../install_steps_interactive.pm_.c:735
msgid "Which printing system do you want to use?"
msgstr "Hangi yazdırma sistemini kullanmak istiyorsunuz?"

#: ../../install_steps_interactive.pm_.c:762
msgid "No password"
msgstr "Parola yok"

#: ../../install_steps_interactive.pm_.c:767
msgid "Use shadow file"
msgstr "Gölge dosyası kullan"

#: ../../install_steps_interactive.pm_.c:767
msgid "shadow"
msgstr "gölge"

#: ../../install_steps_interactive.pm_.c:768
msgid "MD5"
msgstr "MD5"

#: ../../install_steps_interactive.pm_.c:768
msgid "Use MD5 passwords"
msgstr "MD5 şifreleme kullan"

#: ../../install_steps_interactive.pm_.c:770
msgid "Use NIS"
msgstr "NIS kullan"

#: ../../install_steps_interactive.pm_.c:770
msgid "yellow pages"
msgstr "sarı sayfalar"

#: ../../install_steps_interactive.pm_.c:776
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Bu parola çok basit (en az %d karakter boyunda olmalıdı)"

#: ../../install_steps_interactive.pm_.c:783
msgid "Authentification NIS"
msgstr "NIS"

#: ../../install_steps_interactive.pm_.c:784
msgid "NIS Domain"
msgstr "NIS alanı"

#: ../../install_steps_interactive.pm_.c:784
msgid "NIS Server"
msgstr "NIS sunucu "

#: ../../install_steps_interactive.pm_.c:809
#: ../../standalone/adduserdrake_.c:36
msgid "Accept user"
msgstr "Kullanıcıyı etkinleştir"

#: ../../install_steps_interactive.pm_.c:809
#: ../../standalone/adduserdrake_.c:36
msgid "Add user"
msgstr "Kullanıcı ekle"

#: ../../install_steps_interactive.pm_.c:810
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid "(already added %s)"
msgstr "(%s zaten ekli)"

#: ../../install_steps_interactive.pm_.c:810
#: ../../standalone/adduserdrake_.c:37
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"Bir kullanıcı girin\n"
"%s"

#: ../../install_steps_interactive.pm_.c:812
#: ../../standalone/adduserdrake_.c:39
msgid "Real name"
msgstr "Gerçek adı"

#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
msgid "User name"
msgstr "Kullanıcı adı"

#: ../../install_steps_interactive.pm_.c:818
#: ../../standalone/adduserdrake_.c:45
msgid "Shell"
msgstr "Kabuk"

#: ../../install_steps_interactive.pm_.c:820
#: ../../standalone/adduserdrake_.c:47
msgid "Icon"
msgstr "İkon"

#: ../../install_steps_interactive.pm_.c:830
#: ../../standalone/adduserdrake_.c:57
msgid "This password is too simple"
msgstr "Zayıf bir parola seçtiniz!"

#: ../../install_steps_interactive.pm_.c:831
#: ../../standalone/adduserdrake_.c:58
msgid "Please give a user name"
msgstr "Lütfen bir kullanıcı adı verin"

#: ../../install_steps_interactive.pm_.c:832
#: ../../standalone/adduserdrake_.c:59
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Kullanıcı adında sadece küçük harfler, sayılar, `-' ve `_' karakterlerib "
"bulunabilir"

#: ../../install_steps_interactive.pm_.c:833
#: ../../standalone/adduserdrake_.c:60
msgid "This user name is already added"
msgstr "Bu kullanıcı adı daha önce eklenmiş"

#: ../../install_steps_interactive.pm_.c:857
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"SILO on your system, or another operating system removes SILO, or SILO "
"doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures.\n"
"\n"
"If you want to create a bootdisk for your system, insert a floppy in the "
"first\n"
"drive and press \"Ok\"."
msgstr ""
"Özel bir açılış disketi, Linux sisteminizin normal bir sistem yükleyiciye "
"gerek\n"
"kalmadan açılmasını sağlar. Eğer sisteminize SILO kurmayacaksanız,\n"
"ya da başka bir işletim sistemi SILO'yu silerse ya da SILO donanımınızla "
"çalışmazsa\n"
"bu disket size yardımcı olacaktır. Sonradan Mandrake kurtarma disketi "
"görüntüsünü\n"
"kullanarak da bu disket oluşturulabilir.\n"
"Açılış disketi yaratmak istiyorsanız, lütfen sürücüye boş bir disket "
"yerleştirip \"Tamam\"'a basın.?"

#: ../../install_steps_interactive.pm_.c:873
msgid "First floppy drive"
msgstr "İlk disket sürücü"

#: ../../install_steps_interactive.pm_.c:874
msgid "Second floppy drive"
msgstr "İkinci disket sürücü"

#: ../../install_steps_interactive.pm_.c:875
msgid "Skip"
msgstr "Atla"

#: ../../install_steps_interactive.pm_.c:880
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
"Özel bir açılış disketi, Linux sisteminizin normal bir sistem yükleyiciye "
"gerek\n"
"kalmadan açılmasını sağlar. Eğer sisteminize lilo (ya da grub) "
"kurmayacaksanız,\n"
"ya da başka bir işletim sistemi lilo'yu silerse ya da lilo donanımınızla "
"çalışmazsa\n"
"bu disket size yardımcı olacaktır. Sonradan Mandrake kurtarma disketi "
"görüntüsünü\n"
"kullanarak da bu disket oluşturulabilir.\n"
"Açılış disketi yaratmak istiyor musunuz?"

#: ../../install_steps_interactive.pm_.c:889
msgid "Sorry, no floppy drive available"
msgstr "Disket sürücü yok"

#: ../../install_steps_interactive.pm_.c:892
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yapmak için kullanılacak disket sürücüyü seçin"

#: ../../install_steps_interactive.pm_.c:898
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "%s sürücüsüne bir disket takın"

#: ../../install_steps_interactive.pm_.c:901
msgid "Creating bootdisk"
msgstr "Açılış disketi oluşturuluyor"

#: ../../install_steps_interactive.pm_.c:908
msgid "Preparing bootloader"
msgstr "Açılış yükleyici hazırlanıyor"

#: ../../install_steps_interactive.pm_.c:917
msgid "Do you want to use aboot?"
msgstr "aboot'u kullanmak istiyor musunuz?"

#: ../../install_steps_interactive.pm_.c:920
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"aboot kurulumunda hata, \n"
"ilk disk bölmesini yok etse bile ille de kurulmasını istiyor musunuz?"

#: ../../install_steps_interactive.pm_.c:929
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükleyicisi kurulumu başarısız. Oluşan hata:"

#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
msgid "Welcome To Crackers"
msgstr "Crackerlar hoşgeldiniz"

#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
msgid "Poor"
msgstr "Zayıf"

#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
msgid "Low"
msgstr "Düşük"

#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
msgid "Medium"
msgstr "Orta"

#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
msgid "High"
msgstr "Yüksek"

#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
msgid "Paranoid"
msgstr "Paranoyak"

#: ../../install_steps_interactive.pm_.c:962
msgid "Miscellaneous questions"
msgstr "Çeşitli sorular"

#: ../../install_steps_interactive.pm_.c:963
msgid "(may cause data corruption)"
msgstr "(veri kaybına neden olabilir)"

#: ../../install_steps_interactive.pm_.c:963
msgid "Use hard drive optimisations?"
msgstr "Sabit disk optimizasyonu"

#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
msgid "Choose security level"
msgstr "Güvenlik seviyesini seçin"

#: ../../install_steps_interactive.pm_.c:965
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Toplam bellek miktarı (%d MB bulundu)"

#: ../../install_steps_interactive.pm_.c:967
msgid "Removable media automounting"
msgstr "Takılıp sökülebilir araçların otomatik bağlanması"

#: ../../install_steps_interactive.pm_.c:969
msgid "Clean /tmp at each boot"
msgstr "/tmp'yi her açılışta temizle"

#: ../../install_steps_interactive.pm_.c:972
msgid "Enable multi profiles"
msgstr "Birden çok profile'a izin ver"

#: ../../install_steps_interactive.pm_.c:974
msgid "Enable num lock at startup"
msgstr "Açılışta Num Lock ışığını yak"

#: ../../install_steps_interactive.pm_.c:977
msgid "Give the ram size in MB"
msgstr "Bellek boyutunu Mb cinsinden veriniz"

#: ../../install_steps_interactive.pm_.c:979
msgid "Can't use supermount in high security level"
msgstr "Yüksek güvenlik seviyesinde supermount kullanılamaz"

#: ../../install_steps_interactive.pm_.c:981
msgid ""
"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
"If you want to be root, you have to login as a user and then use \"su\".\n"
"More generally, do not expect to use your machine for anything but as a "
"server.\n"
"You have been warned."
msgstr ""
"dikkat: BU GÜVENLİK DÜZEYİNDE, KONSOLDAN ROOT KULLANICISI GİRİŞİNE İZİN\n"
"VERİLMEMEKTEDİR. Eğer root olmak istiyorsanız, sıradan bir kullanıcı olarak\n"
"sisteme girip \"su\" komutunu kullanın. Daha da genel olarak, makinenizi "
"bir\n"
"sunucu olarak kullanmak dışında bir beklentiniz olmasın.\n"
"Uyarıldınız."

#: ../../install_steps_interactive.pm_.c:986
msgid ""
"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
"give digits instead of normal letters (eg: pressing `p' gives `6')"
msgstr ""
"Dikkatli olun, numlock'ı etkinleştirmek birçok tuşun ekrana normal harfler\n"
"yerine sayı yazmasına neden olabilir. (örneğin `p'ye basınca `6' yazabilir.)"

#: ../../install_steps_interactive.pm_.c:1032
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Linux kopyalaması için bir tane otomatik kurulum disketi yaratmak ister "
"misiniz?"

#: ../../install_steps_interactive.pm_.c:1034
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsüne boş bir disket yerleştirin"

#: ../../install_steps_interactive.pm_.c:1049
#: ../../install_steps_interactive.pm_.c:1079
msgid "Creating auto install floppy"
msgstr "Otomatik kurulum disketi hazırlanıyor"

#: ../../install_steps_interactive.pm_.c:1104
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"Bazı bölümler tamamlanmadı.\n"
"\n"
"Gerçekten çıkmak istiyormusunuz?"

#: ../../install_steps_interactive.pm_.c:1113
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"For information on fixes which are available for this release of "
"Linux-Mandrake,\n"
"consult the Errata available from http://www.linux-mandrake.com/.\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
"Tebrikler, kurulum tamamlandı.\n"
"Cdrom ve disketi çıkarttıktan sonra Enter'a basarak bilgisayarınızı \n"
"yeniden başlatın. Linux Mandrake'nin bu sürümündeki yamalar hakkında \n"
"bilgi almak için http://www.linux-mandrake.com adresinden Errata'ya "
"bakınız.\n"
"Sisteminizin ayarları hakkında daha geniş bilgiyi Linux Mandrake \n"
"Kullanıcı Kitapçığı'nda bulabilirsiniz."

#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
msgstr "Linux-Mandrake Kurulum %s"

#: ../../install_steps_newt.pm_.c:33
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
"  <Tab>/<Alt-Tab> ileri/geri  |  <Boşluk> işaretle  |  <F12> sonraki ekran"

#: ../../interactive.pm_.c:273
msgid "Please wait"
msgstr "Lütfen bekleyin"

#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
msgstr "Karışıklık (%s), daha açık yazın\n"

#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
#: ../../interactive_stdio.pm_.c:71
msgid "Bad choice, try again\n"
msgstr "Hatalı tercih, tekrar deneyin\n"

#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
msgstr " ? (öntanımlı %s) "

#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
msgstr "Seçiminiz? (öntanımlı %s) "

#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s  enter `none' for none) "
msgstr "Seçiminiz (öntanımlı %s, yoksa `none' yazın) "

#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
msgid "Czech (QWERTZ)"
msgstr "Çek dili (QWERTZ)"

#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
msgid "German"
msgstr "Almanca"

#: ../../keyboard.pm_.c:107
msgid "Dvorak"
msgstr "Dvorak dili"

#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
msgid "Spanish"
msgstr "İspanyolca"

#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
msgid "Finnish"
msgstr "Fince"

#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
msgid "French"
msgstr "Fransızca"

#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
msgid "Norwegian"
msgstr "Norveççe"

#: ../../keyboard.pm_.c:112
msgid "Polish"
msgstr "Polonya dili"

#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
msgid "Russian"
msgstr "Rusça"

#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
msgid "UK keyboard"
msgstr "İngiliz (UK) klavye"

#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
msgid "US keyboard"
msgstr "Amerikan (US) klavye"

#: ../../keyboard.pm_.c:122
msgid "Armenian (old)"
msgstr "Ermenice (eski) "

#: ../../keyboard.pm_.c:123
msgid "Armenian (typewriter)"
msgstr "Ermenice (daktilo)"

#: ../../keyboard.pm_.c:124
msgid "Armenian (phonetic)"
msgstr "Ermenice (fonetik)"

#: ../../keyboard.pm_.c:127
msgid "Azerbaidjani (latin)"
msgstr "Azerice (latin)"

#: ../../keyboard.pm_.c:128
msgid "Azerbaidjani (cyrillic)"
msgstr "Azerice (kril alfabesi)"

#: ../../keyboard.pm_.c:129
msgid "Belgian"
msgstr "Belçika dili"

#: ../../keyboard.pm_.c:130
msgid "Bulgarian"
msgstr "Bulgarca"

#: ../../keyboard.pm_.c:131
msgid "Brazilian (ABNT-2)"
msgstr "Brezilya dili"

#: ../../keyboard.pm_.c:132
msgid "Belarusian"
msgstr "Belarusça"

#: ../../keyboard.pm_.c:133
msgid "Swiss (German layout)"
msgstr "İsveççe (Alman düzeni)"

#: ../../keyboard.pm_.c:134
msgid "Swiss (French layout)"
msgstr "İsveççe (Fransız düzeni)"

#: ../../keyboard.pm_.c:136
msgid "Czech (QWERTY)"
msgstr "Çek dili (QWERTY)"

#: ../../keyboard.pm_.c:137
msgid "Czech (Programmers)"
msgstr ""

#: ../../keyboard.pm_.c:139
msgid "German (no dead keys)"
msgstr "Almanca (ölü tuşlar yok"

#: ../../keyboard.pm_.c:140
msgid "Danish"
msgstr "Danimarka dili"

#: ../../keyboard.pm_.c:141
msgid "Dvorak (US)"
msgstr "Dvorak dili (US)"

#: ../../keyboard.pm_.c:142
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveççe)"

#: ../../keyboard.pm_.c:143
msgid "Estonian"
msgstr "Estonya dili"

#: ../../keyboard.pm_.c:147
msgid "Georgian (\"Russian\" layout)"
msgstr "Gürcü dili (Rus düzeni)"

#: ../../keyboard.pm_.c:148
msgid "Georgian (\"Latin\" layout)"
msgstr "Gürcü dili (Latin düzen)"

#: ../../keyboard.pm_.c:149
msgid "Greek"
msgstr "Yunanca"

#: ../../keyboard.pm_.c:150
msgid "Hungarian"
msgstr "Macarca"

#: ../../keyboard.pm_.c:151
msgid "Croatian"
msgstr "Croatian"

#: ../../keyboard.pm_.c:152
msgid "Israeli"
msgstr "İbranice"

#: ../../keyboard.pm_.c:153
msgid "Israeli (Phonetic)"
msgstr "İbranice (Fonetik)"

#: ../../keyboard.pm_.c:154
msgid "Iranian"
msgstr "Farsça"

#: ../../keyboard.pm_.c:155
msgid "Icelandic"
msgstr "İzlanda dili"

#: ../../keyboard.pm_.c:156
msgid "Italian"
msgstr "İtalyanca"

#: ../../keyboard.pm_.c:157
msgid "Japanese 106 keys"
msgstr "Japonca 106 tuş"

#: ../../keyboard.pm_.c:158
msgid "Latin American"
msgstr "Latin Amerika dili"

#: ../../keyboard.pm_.c:160
msgid "Dutch"
msgstr "Hollanda dili"

#: ../../keyboard.pm_.c:161
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanya dili AZERTY (eski)"

#: ../../keyboard.pm_.c:163
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY"

#: ../../keyboard.pm_.c:164
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili QWERTY"

#: ../../keyboard.pm_.c:165
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"

#: ../../keyboard.pm_.c:167
msgid "Polish (qwerty layout)"
msgstr "Lehçe (QWERTY düzeni)"

#: ../../keyboard.pm_.c:168
msgid "Polish (qwertz layout)"
msgstr "Lehçe (QWERTZ düzeni)"

#: ../../keyboard.pm_.c:169
msgid "Portuguese"
msgstr "Portekizce"

#: ../../keyboard.pm_.c:170
msgid "Canadian (Quebec)"
msgstr "Fransızca (Kanada/Quebec)"

#: ../../keyboard.pm_.c:172
msgid "Russian (Yawerty)"
msgstr "Rusça (Yawerty)"

#: ../../keyboard.pm_.c:173
msgid "Swedish"
msgstr "İsveççe"

#: ../../keyboard.pm_.c:174
msgid "Slovenian"
msgstr "Slovence"

#: ../../keyboard.pm_.c:175
msgid "Slovakian (QWERTZ)"
msgstr "Slovakça (QWERTZ)"

#: ../../keyboard.pm_.c:176
msgid "Slovakian (QWERTY)"
msgstr "Slovakça (QWERTY)"

#: ../../keyboard.pm_.c:177
msgid "Slovakian (Programmers)"
msgstr ""

#: ../../keyboard.pm_.c:178
msgid "Thai keyboard"
msgstr "Thai klavye"

#: ../../keyboard.pm_.c:179
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkçe (geleneksel \"F\" klavye)"

#: ../../keyboard.pm_.c:180
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkçe (modern \"Q\" klavye)"

#: ../../keyboard.pm_.c:181
msgid "Ukrainian"
msgstr "Ukrayna dili"

#: ../../keyboard.pm_.c:184
msgid "US keyboard (international)"
msgstr "Amerikan (US) klavye (uluslararası)"

#: ../../keyboard.pm_.c:185
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamca \"numerik satır\" QWERTY"

#: ../../keyboard.pm_.c:186
msgid "Yugoslavian (latin layout)"
msgstr "Yugoslavca (latin düzeni)"

#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Sun - Fare"

#: ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"

#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"

#: ../../mouse.pm_.c:33
#, fuzzy
msgid "Generic PS2 Wheel Mouse"
msgstr "Sıradan Fare"

#: ../../mouse.pm_.c:34
msgid "GlidePoint"
msgstr "GlidePoint"

#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"

#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: ../../mouse.pm_.c:38
msgid "Genius NetScroll"
msgstr "Genius NetScroll"

#: ../../mouse.pm_.c:43
msgid "Generic"
msgstr "Genel"

#: ../../mouse.pm_.c:44
msgid "Wheel"
msgstr "Tekerli"

#: ../../mouse.pm_.c:47
msgid "serial"
msgstr "seri"

#: ../../mouse.pm_.c:49
msgid "Generic 2 Button Mouse"
msgstr "Sıradan 2 Tuşlu Fare"

#: ../../mouse.pm_.c:50
msgid "Generic 3 Button Mouse"
msgstr "Sıradan 3 Tuşlu Fare"

#: ../../mouse.pm_.c:51
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: ../../mouse.pm_.c:52
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"

#: ../../mouse.pm_.c:53
msgid "Mouse Systems"
msgstr "Mouse Systems"

#: ../../mouse.pm_.c:55
msgid "Logitech CC Series"
msgstr "Logitech CC Series"

#: ../../mouse.pm_.c:56
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: ../../mouse.pm_.c:58
msgid "MM Series"
msgstr "MM Series"

#: ../../mouse.pm_.c:59
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: ../../mouse.pm_.c:60
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mouse (seri ya da eski C7 tipi)"

#: ../../mouse.pm_.c:64
msgid "busmouse"
msgstr "bus fare"

#: ../../mouse.pm_.c:66
msgid "2 buttons"
msgstr "2 tuşlu"

#: ../../mouse.pm_.c:67
msgid "3 buttons"
msgstr "3 tuşlu"

#: ../../mouse.pm_.c:70
msgid "none"
msgstr "hiçbiri"

#: ../../mouse.pm_.c:72
msgid "No mouse"
msgstr "Fare yok"

#: ../../my_gtk.pm_.c:243
msgid "Next ->"
msgstr "Sonraki ->"

#: ../../my_gtk.pm_.c:486
msgid "Is this correct?"
msgstr "Kabul ediyor musunuz?"

#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
msgid "Internet configuration"
msgstr "İnternet ayarları"

#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
msgid "Do you want to try to connect to the Internet now?"
msgstr "İnternet bağlantısını şimdi denemek ister misiniz?"

#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
msgid "Testing your connection..."
msgstr "Bağlantınız test ediliyor..."

#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
msgid "The system is now connected to Internet."
msgstr "Sistem şu anda internete bağlı."

#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
"Sistem internete bağlı gibi görünmüyor.\n"
"Bağlantıyı tekrar ayarlamayı deneyin."

#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
msgid "ISDN Configuration"
msgstr "ISDN Yapılandırması"

#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
msgstr ""
"Servis sağlayıcınızı seçin.\n"
" Eğer listede yoksa, Listelenmemiş'i seçin."

#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
msgid "Connection Configuration"
msgstr "Bağlantı Ayarları"

#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
msgid "Please fill or check the field below"
msgstr "Lütfen aşağıdaki alanı doldurun ya da kontrol edin."

#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
msgid "Card IRQ"
msgstr "Kartın IRQ değeri"

#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
msgid "Card mem (DMA)"
msgstr "Kartın DMA değeri"

#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
msgid "Card IO"
msgstr "Kartın IO değeri"

#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
msgid "Card IO_0"
msgstr "Kartın IO_0 değeri"

#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
msgid "Card IO_1"
msgstr "Kartın IO_1 değeri"

#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
msgid "Your personal phone number"
msgstr "Kişisel telefon numaranız"

#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
msgid "Provider name (ex provider.net)"
msgstr "Servis sağlayıcı adı"

#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
msgid "Provider phone number"
msgstr "Servis sağlayıcının telefon numarası"

#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
msgid "Provider dns 1"
msgstr "1. Alan adı sunucusu"

#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
msgid "Provider dns 2"
msgstr "2. Alan adı sunucusu"

#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
msgid "Dialing mode"
msgstr "Çevirme kipi"

#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
msgid "Account Login (user name)"
msgstr "Kullanıcı Adı"

#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
msgid "Account Password"
msgstr "Şifre"

#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
msgid "Confirm Password"
msgstr "Şifreyi Tekrarla"

#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
msgid "Europe"
msgstr "Avrupa"

#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
msgid "Europe (EDSS1)"
msgstr "Avrupa (EDSS1)"

#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
msgid "Rest of the world"
msgstr "Dünyanın diğer kısımları"

#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
msgid "Rest of the world - no D-Channel (leased lines)"
msgstr "Dünyanın diğer kısımları - D-Kanalı yok (kiralık hat)"

#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
msgid "Which protocol do you want to use ?"
msgstr "Hangi protokolü kullanmak istiyorsunuz?"

#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
msgid "PCI"
msgstr "PCI"

#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
msgid "I don't know"
msgstr "Bilmiyorum"

#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
msgid "What kind of card do you have?"
msgstr "Ne tür bir kartınız var?"

#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
msgid "Continue"
msgstr "Devam"

#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
msgid "Abort"
msgstr "Vazgeç"

#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
msgstr ""
"\n"
"Bir ISA karta sahipseniz bir sonraki ekrandaki değerler doğru olacaktır.\n"
"\n"
"Bir PCMCIA karta sahipseniz, kartınızın irq ve io değerlerini bilmek "
"sorundasınız.\n"

#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
msgid "Which is your ISDN card ?"
msgstr "Hangisi sizin ISDN kartınız?"

#: ../../netconnect.pm_.c:282
msgid "I have found an ISDN Card:\n"
msgstr "Bir ISDN kartı buldum:\n"

#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
msgstr ""
"Bir PCI ISDN kartı buldum, fakat türünü bilmiyorum. Lütfen bir sonraki "
"ekrandan bir PCI kart seçin."

#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "PCI ISDN kart bulunamadı. Lütfen bir sonraki ekrandan bir tane seçin."

#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Sisteminize bağlı bir ethernet kartı bulunamadı. Bu bağlantı\n"
"türünü ayarlayamayacağım."

#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
#: ../../standalone/drakgw_.c:222
msgid "Choose the network interface"
msgstr "Ağ bağdaştırıcısını seçin"

#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
"Lütfen internete bağlanmak için kullanacağınız ağ bağdaştırıcısını seçin"

#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
#: ../../standalone/drakgw_.c:217
msgid "Network interface"
msgstr "Ağ arabirimi"

#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
msgid ""
"\n"
"Do you agree?"
msgstr ""
"\n"
"Kabul ediyor musunuz?"

#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
msgid "I'm about to restart the network device:\n"
msgstr "Ağ aygıtını kapatıp açmak üzereyim:\n"

#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
msgid "ADSL configuration"
msgstr "ADSL ayarları"

#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
msgid "Do you want to start your connection at boot?"
msgstr "Bağlantınızın açılışta başlatılmasını ister misiniz?"

#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
msgid "Try to find a modem?"
msgstr "Bir modem arayayım mı?"

#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
msgid "Please choose which serial port your modem is connected to."
msgstr "Modeminizin hangi seri porta bağlı olduğunu seçiniz"

#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
msgid "Dialup options"
msgstr "Çevirmeli ağ seçenekleri"

#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
msgid "Connection name"
msgstr "Bağlantı adı"

#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
msgid "Phone number"
msgstr "Telefon numarası"

#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
msgid "Login ID"
msgstr "Giriş adı"

#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
msgid "Authentication"
msgstr "Kimlik tanıma"

#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
msgid "PAP"
msgstr "PAP"

#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
msgid "Script-based"
msgstr "Betik tabanlı"

#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
msgid "Terminal-based"
msgstr "Terminal tabanlı"

#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
msgid "Domain name"
msgstr "Alan adı"

#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
msgid "First DNS Server"
msgstr "Birincil DNS Sunucu"

#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
msgid "Second DNS Server"
msgstr "İkincil DNS Sunucu"

#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
"İnternete bağlanabilir ya da bağlantınızı yeniden ayarlayabilirsiniz."

#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
"\n"
"Bağlantınızı yeniden ayarlayabilirsiniz."

#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
msgid "You are not currently connected to Internet."
msgstr "Şu anda internete bağlı değilsiniz."

#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
"Bağlantıyı kesebilir ya da yeniden ayarlayabilirsiniz."

#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
msgid "You are currently connected to internet."
msgstr "Şu anda internete bağlısınız."

#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
msgid "Connect to Internet"
msgstr "İnternete Bağlan"

#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
msgid "Disconnect from Internet"
msgstr "İnternetten Çık"

#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
msgid "Configure network connection (LAN or Internet)"
msgstr "Ağ bağlantısını yapılandır (Yerel ağ ya da İnternet)"

#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & ayarları"

#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
msgid ""
"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
msgstr "$netc->{NET_DEVICE} Ağ aygıtını kapatıp açacağım. İstiyor musunuz?"

#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
msgid "Configure a normal modem connection"
msgstr "Normal bir modem bağlantısı yapılandır"

#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
msgid "Configure an ISDN connection"
msgstr "Bir ISDN bağlantısı yapılandır"

#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
msgid "Internal ISDN card"
msgstr "İçsel ISDN kartı"

#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
msgid "External ISDN modem"
msgstr "Dışsal ISDN modem"

#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
msgid "Connect to the Internet"
msgstr "İnternete bağlan"

#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
msgid "What kind is your ISDN connection?"
msgstr "ISDN bağlantınız hangi türde?"

#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
msgid "Configure a DSL (or ADSL) connection"
msgstr "Bir DSL (ya da ADSL) bağlantısı ayarla"

#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
msgid "France"
msgstr "Fransa"

#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
msgid "Other countries"
msgstr "Diğer ülkeler"

#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
msgid "In which country are you located ?"
msgstr "Hangi ülkede bulunuyorsunuz?"

#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
msgid "Alcatel modem"
msgstr "Alcatel modem"

#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
msgid "ECI modem"
msgstr "ECI modem"

#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
msgstr "Adsl modeminiz Alcatel türündeyse Alcatel'i, değilse ECI'yi seçin."

#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
msgid "use pppoe"
msgstr "pppoe'yi kullan"

#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
msgid "don't use pppoe"
msgstr "pppoe'yi kullanma"

#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
msgid ""
"The most common way to connect with adsl is dhcp + pppoe.\n"
"However, some connections only use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
"Adsl ile bağlanmanın en sık başvurulan yolu dhcp + pppoe'dir.\n"
"Fakat bazı bağlantılar sadece dhcp'yi kullanır.\n"
"Emin değilseniz lütfen pppoe'yi seçin"

#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
msgid "Configure a cable connection"
msgstr "Bir kablo bağlantısı yapılandır"

#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpd"
msgstr "Hangi dhcp işlemcisini kullanmak istiyorsunuz?Öntanımlı olan dhcpd'dir"

#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
msgid "Disable Internet Connection"
msgstr "İnternet Bağlantısını İptal Et"

#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
msgid "Configure local network"
msgstr "Yerel ağı yapılandır"

#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
msgid "Network configuration"
msgstr "Ağ Yapılandırması"

#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
msgid "Do you want to restart the network"
msgstr "Ağınızı yeniden başlatmak istiyor musunuz?"

#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
msgid "Disable networking"
msgstr "Ağı iptal et"

#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
msgid "Configure the Internet connection / Configure local Network"
msgstr "İnternet bağlantısını Yapılandır / Yerel Ağı Yapılandır"

#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
msgid ""
"Local networking has already been configured.\n"
"Do you want to:"
msgstr ""
"Yerel ağ ayarları zaten yapılandırıldı.\n"
"Tekrar yapılandırmak istiyor musunuz?"

#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
msgid "How do you want to connect to the Internet?"
msgstr "İnternete hangi yolla bağlanmak istiyorsunuz?"

#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
msgid "Network Configuration"
msgstr "Ağ Yapılandırması"

#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
msgid ""
"Now that your Internet connection is configured,\n"
"your computer can be configured to share its Internet connection.\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN).\n"
"\n"
"Would you like to setup the Internet Connection Sharing?\n"
msgstr ""
"Şu anda Internet bağlantınız ayarlandı,\n"
"bilgisayarınız internet bağlantısını paylaşmak için yapılandırılabilir.\n"
"Not: Yer Ağ (LAN)'ı ayarlamak için bir ethernet kartına ihtiyacınız "
"olacaktır.\n"
"\n"
"İnternet bağlantınızı paylaştırmak istiyor musunuz?\n"

#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "ağ kartı bulunamadı"

#: ../../network.pm_.c:273 ../../network.pm_.c:340
msgid "Configuring network"
msgstr "Ağ Ayarları"

#: ../../network.pm_.c:274
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
"Eğer biliyorsanız lütfen makinanızın ismini girin.\n"
"Bazı DHCP sunucuları çalışabilmek için sunucu ismi gerektirirler.\n"
"Sunucu isminiz, sunucu adı kurallarına tam olarak uygun olmalıdır,\n"
"Örneğin ``bilgisayarım.alanadı.com'' gibi."

#: ../../network.pm_.c:278 ../../network.pm_.c:345
msgid "Host name"
msgstr "Sunucu ismi:"

#: ../../network.pm_.c:297
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
"Simply press OK to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"UYARI: Bu aygıt daha önce internet bağlantısı için yapılandırılmış.\n"
"Bu yapılanmayı değiştirmemek istiyorsanız sadece Tamam'a basın.\n"
"Aşağıdaki alanlardaki bilgileri değiştirmek ayarları da değiştirecektir."

#: ../../network.pm_.c:302
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Lütfen bu makina için gerekli IP değerlerini girin."

#: ../../network.pm_.c:311 ../../network.pm_.c:312
#, c-format
msgid "Configuring network device %s"
msgstr "%s ağ aygıtı ayarlanıyor"

#: ../../network.pm_.c:314
msgid "Automatic IP"
msgstr "Otomatik IP"

#: ../../network.pm_.c:314
msgid "IP address"
msgstr "IP adresi:"

#: ../../network.pm_.c:314
msgid "Netmask"
msgstr "Ağ maskesi:"

#: ../../network.pm_.c:315
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"

#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
#: ../../printerdrake.pm_.c:420
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresi 1.2.3.4 biçimide olmalıdır"

#: ../../network.pm_.c:341
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
"Lütfen makinanızın ismini girin.\n"
"Örneğin ``makinaismi.alanadı.com''.\n"
"Eğer ağ geçiti kullanıyorsanız bunun da IP numarasını girmelisiniz."

#: ../../network.pm_.c:346
msgid "DNS server"
msgstr "DNS sunucusu"

#: ../../network.pm_.c:347
msgid "Gateway"
msgstr "Ağ geçiti"

#: ../../network.pm_.c:348
msgid "Gateway device"
msgstr "Ağ geçiti aygıtı"

#: ../../network.pm_.c:358
msgid "Proxies configuration"
msgstr "Vekil sunucu ayarları"

#: ../../network.pm_.c:359
msgid "HTTP proxy"
msgstr "HTTP vekil sunucu"

#: ../../network.pm_.c:360
msgid "FTP proxy"
msgstr "FTP vekil sunucu"

#: ../../network.pm_.c:366
msgid "Proxy should be http://..."
msgstr "Vekil sunucu http://... şeklinde olmalı."

#: ../../network.pm_.c:367
msgid "Proxy should be ftp://..."
msgstr "Vekil sunucu ftp://... olmalı."

#: ../../partition_table.pm_.c:540
msgid "Extended partition not supported on this platform"
msgstr "Genişletilmiş bölüm bu platform tarafından desteklenmiyor"

#: ../../partition_table.pm_.c:558
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions"
msgstr ""
"Bölüm tablonuzda bir boşluk var ama kullanılamaz durumda.\n"
"Bu boşluğu, birinci bölümünüzü en yakınındaki uzatılmış bölüme taşıyarak\n"
"sorunu çözebilirsiniz."

#: ../../partition_table.pm_.c:651
#, c-format
msgid "Error reading file %s"
msgstr "%s dosyası okunurken hata oluştu"

#: ../../partition_table.pm_.c:658
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s dosyasından kurtarılmasında hata: %s"

#: ../../partition_table.pm_.c:660
msgid "Bad backup file"
msgstr "Hatalı yedekleme dosyası"

#: ../../partition_table.pm_.c:681
#, c-format
msgid "Error writing to file %s"
msgstr "%s dosyasına yazarken hata oluştu"

#: ../../pkgs.pm_.c:20
msgid "mandatory"
msgstr "şart"

#: ../../pkgs.pm_.c:21
msgid "must have"
msgstr "alınmalı"

#: ../../pkgs.pm_.c:22
msgid "important"
msgstr "önemli"

#: ../../pkgs.pm_.c:24
msgid "very nice"
msgstr "çok hoş"

#: ../../pkgs.pm_.c:25
msgid "nice"
msgstr "güzel"

#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
msgid "interesting"
msgstr "ilginç"

#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
#: ../../pkgs.pm_.c:31
msgid "maybe"
msgstr "belki"

#: ../../pkgs.pm_.c:34
msgid "i18n (important)"
msgstr "i18n (önemli)"

#: ../../pkgs.pm_.c:35
msgid "i18n (very nice)"
msgstr "i18n (çok hoş)"

#: ../../pkgs.pm_.c:36
msgid "i18n (nice)"
msgstr "i18n (güzel)"

#: ../../printer.pm_.c:19
msgid "Local printer"
msgstr "Yerel Yazıcı"

#: ../../printer.pm_.c:20
msgid "Remote printer"
msgstr "Uzaktaki Yazıcı"

#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
msgid "Remote CUPS server"
msgstr "Uzaktaki CUPS sunucusu"

#: ../../printer.pm_.c:22
msgid "Remote lpd server"
msgstr "Uzaktaki lpd sunucusu"

#: ../../printer.pm_.c:23
msgid "Network printer (socket)"
msgstr "Ağ Yazıcısı (socket)"

#: ../../printer.pm_.c:24
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"

#: ../../printer.pm_.c:25
msgid "NetWare"
msgstr "NetWare"

#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
#: ../../printerdrake.pm_.c:156
msgid "Printer Device URI"
msgstr "Yazıcı Aygıtı URI'si"

#: ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr "Aygıtlar taranıyor..."

#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Portları test et"

#: ../../printerdrake.pm_.c:35
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "\"%s\" modelinde bir yazıcı bulundu:"

#: ../../printerdrake.pm_.c:48
msgid "Local Printer Device"
msgstr "Yerel Yazıcı Aygıtı"

#: ../../printerdrake.pm_.c:49
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
"Yazıcınız hengi aygıta bağlı? \n"
"(/dev/lp0, LPT1'e karşılık gelir)\n"

#: ../../printerdrake.pm_.c:51
msgid "Printer Device"
msgstr "Yazıcı Aygıtı"

#: ../../printerdrake.pm_.c:70
msgid "Remote lpd Printer Options"
msgstr "Uzak Yazıcı (lpd) Seçenekleri"

#: ../../printerdrake.pm_.c:71
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
"Uzaktaki bir lpd yazıcı kuyruğunu kullanmak için, \n"
"yazıcının bağlı olduğu yazıcı sunucusunun adını ve kuyruk \n"
"ismini vermeniz gerekmektedir."

#: ../../printerdrake.pm_.c:74
msgid "Remote hostname"
msgstr "Uzaktaki makina adı"

#: ../../printerdrake.pm_.c:75
msgid "Remote queue"
msgstr "Uzaktaki kuyruk adı"

#: ../../printerdrake.pm_.c:84
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Yazıcı Seçenekleri"

#: ../../printerdrake.pm_.c:85
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
"TCP/IP hostname!) and possibly the IP address of the print server, as\n"
"well as the share name for the printer you wish to access and any\n"
"applicable user name, password, and workgroup information."
msgstr ""
"Bir SMB yazıcıdan çıktı almak için, SMB makina adı, yazıcı sunucunun \n"
"IP adresi, yazıcının paylaşım adı, çalışma grubu, kullanıcı adı ve \n"
"parola verilmelidir."

#: ../../printerdrake.pm_.c:90
msgid "SMB server host"
msgstr "SMB sunucu adı"

#: ../../printerdrake.pm_.c:91
msgid "SMB server IP"
msgstr "SMB sunucu IP"

#: ../../printerdrake.pm_.c:92
msgid "Share name"
msgstr "Paylaşım adı"

#: ../../printerdrake.pm_.c:95
msgid "Workgroup"
msgstr "Çalışma grubu"

#: ../../printerdrake.pm_.c:120
msgid "NetWare Printer Options"
msgstr "NetWare Yazıcı Ayarları"

#: ../../printerdrake.pm_.c:121
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
"TCP/IP hostname!) as well as the print queue name for the printer you\n"
"wish to access and any applicable user name and password."
msgstr ""
"NetWare yazıcıdan çıktı almak için, NetWare sunucunun adı ve yazıcı \n"
"kuyruğu adı ile kullanıcı adı ve parolası verilmelidir."

#: ../../printerdrake.pm_.c:125
msgid "Printer Server"
msgstr "Yazıcı Sunucusu"

#: ../../printerdrake.pm_.c:126
msgid "Print Queue Name"
msgstr "Yazıcı Kuyruk Adı"

#: ../../printerdrake.pm_.c:138
msgid "Socket Printer Options"
msgstr "Socket Yazıcısı Ayarları"

#: ../../printerdrake.pm_.c:139
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
msgstr ""
"Bir socket yazıcısından çıktı alabilmek için, yazıcının sunucu-adını\n"
"ve seçimlik olarak kapı numarasını vermeniz gereklidir."

#: ../../printerdrake.pm_.c:141
msgid "Printer Hostname"
msgstr "Yazıcının Adı"

#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
msgid "Port"
msgstr "Kapı"

#: ../../printerdrake.pm_.c:155
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr "CUPS ile yazıcınıza erişebilmek için doğrudan URI'yi belirlemelisiniz."

#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
msgid "What type of printer do you have?"
msgstr "Ne tip bir yazıcınız var?"

#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
msgid "Do you want to test printing?"
msgstr "Yazıcıyı denemek istiyor musunuz?"

#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
msgid "Printing test page(s)..."
msgstr "Deneme sayfası basılıyor..."

#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Printing status:\n"
"%s\n"
"\n"
"Does it work properly?"
msgstr ""
"Test sayfası yazıcı daemonuna gönderildi.\n"
"Yazıcının çalışması için az bir zaman geçebilir.\n"
"Yazdırma statüsü:\n"
"%s\n"
"\n"
"Düzgün olarak çalışıyor mu?"

#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
"Test sayfası yazıcı daemonuna gönderildi.\n"
"Yazıcının çalışması için az bir zaman geçebilir.\n"
"Düzgün olarak çalışıyor mu?"

#: ../../printerdrake.pm_.c:230
msgid "Yes, print ASCII test page"
msgstr "Evet, ASCII deneme sayfası bastır"

#: ../../printerdrake.pm_.c:231
msgid "Yes, print PostScript test page"
msgstr "Eve, Postscript deneme sayfası bastır"

#: ../../printerdrake.pm_.c:232
msgid "Yes, print both test pages"
msgstr "Evet, her iki deneme sayfasını da bastır"

#: ../../printerdrake.pm_.c:239
msgid "Configure Printer"
msgstr "Yazıcı Ayarları"

#: ../../printerdrake.pm_.c:272
msgid "Printer options"
msgstr "Yazıcı seçenekleri"

#: ../../printerdrake.pm_.c:273
msgid "Paper Size"
msgstr "Kağıt boyutu"

#: ../../printerdrake.pm_.c:274
msgid "Eject page after job?"
msgstr "İş bittikten sonra sayfa atılsın mı?"

#: ../../printerdrake.pm_.c:279
msgid "Uniprint driver options"
msgstr "Uniprint sürücü seçenekleri"

#: ../../printerdrake.pm_.c:280
msgid "Color depth options"
msgstr "Renk derinlik seçenekleri"

#: ../../printerdrake.pm_.c:282
msgid "Print text as PostScript?"
msgstr "Metni PostScript olarak yazdırsın mı?"

#: ../../printerdrake.pm_.c:283
msgid "Reverse page order"
msgstr "Ters sayfa sıralaması"

#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Metin basamak etkisi düzeltilsin mi?"

#: ../../printerdrake.pm_.c:288
msgid "Number of pages per output pages"
msgstr "Çıktı sayfası sayısı"

#: ../../printerdrake.pm_.c:289
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Sağ/Sol boşluklar nokta halinde (inch'in 1/72'si"

#: ../../printerdrake.pm_.c:290
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Üst/Alt boşluklar nokta halinde (inch'in 1/72'si"

#: ../../printerdrake.pm_.c:293
msgid "Extra GhostScript options"
msgstr "Fazladan GhostScript seçenekleri"

#: ../../printerdrake.pm_.c:296
msgid "Extra Text options"
msgstr "Ekstra metin seçenekleri"

#: ../../printerdrake.pm_.c:346
msgid "Printer"
msgstr "Yazıcı"

#: ../../printerdrake.pm_.c:347
msgid "Would you like to configure a printer?"
msgstr "Bir yazıcı ayarlamak istiyor musunuz?"

#: ../../printerdrake.pm_.c:350
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aşağıda yazıcı kuyrukları verilmiştir.\n"
"Yenilerini ekleyebilir, veya mevcut olanları değiştirebilirsiniz."

#: ../../printerdrake.pm_.c:365
msgid "CUPS starting"
msgstr "CUPS çalıştırılıyor"

#: ../../printerdrake.pm_.c:365
msgid "Reading CUPS drivers database..."
msgstr "CUPS sürücü veri tabanı okunuyor..."

#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
msgid "Select Printer Connection"
msgstr "Yazıcı Bağlantısı Seçin"

#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
msgid "How is the printer connected?"
msgstr "Yazıcınız ne şekilde bağlı?"

#: ../../printerdrake.pm_.c:387
msgid "Select Remote Printer Connection"
msgstr "Uzaktaki Yazıcı Bağlantısını Seçin"

#: ../../printerdrake.pm_.c:388
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
"In case of doubt, select \"Remote CUPS server\"."
msgstr ""
"Uzak bir CUPS sunucusuyla, hiçbir yazıcıyı yapılandırmanız\n"
"gerekmemekte; her türlü yazıcı otomatik olarak bulunacaktır.\n"
"Emin değilseniz \"Uzak CUPS sunucusu\"'nu seçin."

#: ../../printerdrake.pm_.c:411
#, fuzzy
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
"unless you have a server on a different network; in the\n"
"latter case, you have to give the CUPS server IP address\n"
"and optionally the port number."
msgstr ""
"Uzak bir CUPS sunucusuyla, hiçbir yazıcıyı yapılandırmanız\n"
"gerekmemekte; her türlü yazıcı otomatik olarak bulunacaktır.\n"
"Emin değilseniz \"Uzak CUPS sunucusu\"'nu seçin."

#: ../../printerdrake.pm_.c:416
#, fuzzy
msgid "CUPS server IP"
msgstr "SMB sunucu IP"

#: ../../printerdrake.pm_.c:424
msgid "Port number should be numeric"
msgstr ""

#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
msgid "Remove queue"
msgstr "Kuyruğu sil"

#: ../../printerdrake.pm_.c:446
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
"can be defined. What name should be used for this printer and\n"
"how is the printer connected?"
msgstr ""
"Her yazıcı için bir isim gereklidir (örneğin lp).\n"
"Yazıcının tanımı ya da konumu gibi diğer parametreler de belirtilebilir.\n"
"Bu yazıcı için hangi adı kullanmak istiyorsunuz ve bu yazıcı makinanıza\n"
"hangi yolla bağlanmış durumda?"

#: ../../printerdrake.pm_.c:450
msgid "Name of printer"
msgstr "Yazıcının adı"

#: ../../printerdrake.pm_.c:451
msgid "Description"
msgstr "Tanım"

#: ../../printerdrake.pm_.c:452
msgid "Location"
msgstr "Konum"

#: ../../printerdrake.pm_.c:465
msgid ""
"Every print queue (which print jobs are directed to) needs a\n"
"name (often lp) and a spool directory associated with it. What\n"
"name and directory should be used for this queue and how is the printer "
"connected?"
msgstr ""
"Her yazıcı kuyruğu (yazdırma işlerinin yollandığı yer) bir isme \n"
"(genelde lp) ve bekleme dizinine ihtiyaç duyar. Bu kuyruk için \n"
"hangi isim ve dizin kullanılsın, ve yazıcı makinanıza hangi yolla\n"
"bağlanmış?"

#: ../../printerdrake.pm_.c:468
msgid "Name of queue"
msgstr "Kuyruğun ismi"

#: ../../printerdrake.pm_.c:469
msgid "Spool directory"
msgstr "Bekleme dizini"

#: ../../printerdrake.pm_.c:470
msgid "Printer Connection"
msgstr "Yazıcı Bağlantısı"

#: ../../raid.pm_.c:32
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Biçimlendirilmiş RAID md%d'ye disk bölümü eklenemedi"

#: ../../raid.pm_.c:102
msgid "Can't write file $file"
msgstr "$file dosyasına yazılamadı"

#: ../../raid.pm_.c:127
msgid "mkraid failed"
msgstr "mkraid başarısız"

#: ../../raid.pm_.c:127
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid başarısız (raidtools eksik olabilir mi?"

#: ../../raid.pm_.c:143
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d seviye RAID için yetersiz sayıda disk bölümü\n"

#: ../../services.pm_.c:15
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, periyodik komut zamanlayıcısı"

#: ../../services.pm_.c:16
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"apmd pil durumunu izlemek için ve syslog aracılığıyla bunun kaydını tutmak "
"için kullanılır.\n"
"Ayrıca pil azaldığında sistemi kapatmak için de kullanılır."

#: ../../services.pm_.c:18
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"at komutu, zamanlanan komutları çalışmaları gereken zamanlarda çalıştırır.\n"
"Sistem yükü yeterince düşük olduğunda yığın komutları çalıştırır."

#: ../../services.pm_.c:20
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"cron, kullanıcılara özel komutları peritodik zamanlamalarla çalıştırabilen\n"
"standart bir UNIX programıdır. vixie cron, standart cron'a eklenmiş birçok\n"
"yeni özellik içerir."

#: ../../services.pm_.c:23
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM, Midnight Commander gibi metin tabanlı uygulamalara fare desteği ekler.\n"
"Ayrıca konsolda fareyle kesme ve yapıştırma işlemlerine izin verir.\n"
"Konsolda pop-up menü desteği sağlar."

#: ../../services.pm_.c:26
msgid ""
"Apache is a World Wide Web server.  It is used to serve HTML files\n"
"and CGI."
msgstr ""
"Apache bir World Wide Web sunucusudur. HTML dosyaları ve CGI sunumu için "
"kullanılır."

#: ../../services.pm_.c:28
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"Internet superserver daemon (çoğunlukla inetd olarak adlandırılır) birçok \n"
"başka internet servisini gerektiğinde çalıştırır. İçinde telnet, ftp, rsh ve "
"rlogin gibi pekçok programın bulunduğu servisleri çalıştırmakla yükümlüdür.\n"
"inetd'yi sistemden çıkarmak, onun çalıştırmakla yükümlü olduğu bütün "
"servisleri \n"
"kaldırmak anlamına gelir."

#: ../../services.pm_.c:32
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Bu paket /etc/sysconfig/keyboard'daki seçili klavye düzenini yükler.\n"
"Hangi klavye düzeninin kullanılıcağı kbdconfig ile ayarlanabilir.\n"
"Bu, mandrake kurulan birçok makinede etkin olarak bırakılmalıdır."

#: ../../services.pm_.c:35
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"lpd, lpr'nin düzgün olarak çalışması için gerekli yazıcı daemonudur.\n"
"lpd temel olarak, yazdırma görevlerini yöneten ve onları yazıcıya gönderen "
"sunucudur."

#: ../../services.pm_.c:37
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
msgstr ""
"named (BIND) sunucu isimlerini IP adreslerine dönüştüren \n"
"Alan Adı Sunucusudur (DNS)."

#: ../../services.pm_.c:39
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Bütün Ağ Dosya Sistemlerini (NFS), SMB (Lan Manager/Windows), ve \n"
"NCP (NetWare) bağlama noktalarını bağlar ve ayırır."

#: ../../services.pm_.c:41
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Açılış sırasında başlamak için ayarlanmış bütün ağ arayüzlerini aktive "
"eder/kapatır."

#: ../../services.pm_.c:43
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS TCP/IP ağlarda dosya paylaşımı için kullanılan popüler bir protokoldür.\n"
"Bu servis, /etc/exports dosyasında ayarları bulunan NFS sunucusunun \n"
"kullanımını sağlar."

#: ../../services.pm_.c:46
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"