~ubuntu-branches/ubuntu/natty/kde-l10n-et/natty-proposed

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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
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
# translation of kcmkio.po to Estonian
# Copyright (C) 1999,2002,2003, 2004, 2005 Free Software Foundation, Inc.
#
# Hasso Tepper <hasso@linux.ee>, 1999.
# Hasso Tepper <hasso@estpak.ee>, 2002,2003.
# Marek Laane <bald@starman.ee>, 2003-2008.
# Hasso Tepper <hasso@kde.org>, 2004, 2005.
# Marek Laane <bald@smail.ee>, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: kcmkio\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-11-19 06:22+0100\n"
"PO-Revision-Date: 2010-11-30 21:48+0200\n"
"Last-Translator: Marek Laane <bald@smail.ee>\n"
"Language-Team: Estonian <kde-et@linux.ee>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.1\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

#: bookmarks.cpp:108
msgid ""
"<h1>My Bookmarks</h1><p>This module lets you configure the bookmarks home "
"page.</p><p>The bookmarks home page is accessible at <a href=\"bookmarks:/"
"\">bookmarks:/</a>.</p>"
msgstr ""
"<h1>Minu järjehoidjad</h1><p>See moodul võimaldab seadistada järjehoidjate "
"kodulehekülge.</p><p>Järjehoidjate kodulehekülje saab avada aadressil <a "
"href=\"bookmarks:/\">bookmarks:/</a>.</p>"

#: cache.cpp:111
msgid ""
"<h1>Cache</h1><p>This module lets you configure your cache settings.</"
"p><p>The cache is an internal memory in Konqueror where recently read web "
"pages are stored. If you want to retrieve a web page again that you have "
"recently read, it will not be downloaded from the Internet, but rather "
"retrieved from the cache, which is a lot faster.</p>"
msgstr ""
"<h1>Vahemälu</h1><p>See moodul võimaldab kontrollida vahemälu seadistusi.</"
"p><p>Vahemälu on Konquerori sisemine mälu, kuhu salvestatakse viimati "
"vaadatud veebilehed. Kui soovid laadida lehte, mida oled hiljuti lugenud, ei "
"laadita seda Internetist, vaid vahemälust, mis on palju kiirem.</p>"

#: kcookiesmain.cpp:44
msgid ""
"Unable to start the cookie handler service.\n"
"You will not be able to manage the cookies that are stored on your computer."
msgstr ""
"Küpsiste käsitlemise teenuse käivitamine nurjus.\n"
"Sa ei saa seepärast hallata arvutisse salvestatud küpsiseid."

#: kcookiesmain.cpp:54
msgid "&Policy"
msgstr "&Reegel"

#: kcookiesmain.cpp:60
msgid "&Management"
msgstr "&Haldamine"

#: kcookiesmain.cpp:88
msgid ""
"<p><h1>Cookies</h1> Cookies contain information that Konqueror (or other KDE "
"applications using the HTTP protocol) stores on your computer, initiated by "
"a remote Internet server. This means that a web server can store information "
"about you and your browsing activities on your machine for later use. You "
"might consider this an invasion of privacy.</p><p> However, cookies are "
"useful in certain situations. For example, they are often used by Internet "
"shops, so you can 'put things into a shopping basket'. Some sites require "
"you have a browser that supports cookies.</p><p> Because most people want a "
"compromise between privacy and the benefits cookies offer, KDE offers you "
"the ability to customize the way it handles cookies. So you might want to "
"set KDE's default policy to ask you whenever a server wants to set a cookie, "
"allowing you to decide. For your favorite shopping web sites that you trust, "
"you might want to set the policy to accept, then you can access the web "
"sites without being prompted every time KDE receives a cookie.</p>"
msgstr ""
"<p><h1>Küpsised</h1> Küpsised sisaldavad infot, mida Konqueror (või mõni muu "
"KDE rakendus, mis kasutab http protokolli) säilitab sinu arvutis ning mis on "
"Interneti serveri poolt saadetud. See tähendab, et veebiserver saab infot "
"sinu lehitsemisharjumuste kohta hilisemaks kasutamiseks sinu masinas hoida. "
"Sa võid seda tõlgendada rünnakuna sinu privaatsusele.</p><p> Siiski on "
"küpsised mõningates situatsioonides kasulikud. Näiteks kasutatakse küpsiseid "
"tihti internetipoodides, nii et sa saad \"panna asju oma ostukorvi\". Mõned "
"saidid vajavad veebilehitsejat, mis toetab küpsiseid.</p><p> Kuna enamik "
"inimesi sooviks leida kompromissi privaatsuse ja küpsiste pakutavate hüvede "
"vahel, pakub KDE võimalust kohandada viisi, kuidas küpsiseid käsitletakse. "
"Nii võiksid sa panna KDE vaikereegliks küsimise, nii et iga kord, kui server "
"soovib küpsist seada, saad sa ise otsustada. Oma lemmikutest "
"internetikauplustele, mida sa usaldad, sea aga vaikereegliks "
"aktsepteerimine, nii et iga kord, kui KDE sealt küpsise vastu võtab, ei "
"küsita sult kinnitust.</p>"

#: kcookiesmanagement.cpp:143 kcookiesmanagement.cpp:159
msgid "D-Bus Communication Error"
msgstr "D-Busi kommunikatsiooni viga"

#: kcookiesmanagement.cpp:144
msgid "Unable to delete all the cookies as requested."
msgstr "Kõigi küpsiste kustutamine nurjus."

#: kcookiesmanagement.cpp:160
msgid "Unable to delete cookies as requested."
msgstr "Küpsiste kustutamine nurjus."

#: kcookiesmanagement.cpp:231
msgid "<h1>Cookie Management Quick Help</h1>"
msgstr "<h1>Küpsiste haldamise abi</h1>"

#: kcookiesmanagement.cpp:241
msgid "Information Lookup Failure"
msgstr "Infootsing nurjus"

#: kcookiesmanagement.cpp:242
msgid ""
"Unable to retrieve information about the cookies stored on your computer."
msgstr "Info hankimine arvutisse salvestatud küpsiste kohta nurjus."

#: kcookiesmanagement.cpp:333
msgid "End of session"
msgstr "Seansi lõpp"

#: kcookiesmanagement.cpp:342
msgid "Yes"
msgstr "Jah"

#: kcookiespolicies.cpp:178
msgid "New Cookie Policy"
msgstr "Uus küpsiste reegel"

#: kcookiespolicies.cpp:217
msgid "Change Cookie Policy"
msgstr "Muuda küpsiste reeglit"

#: kcookiespolicies.cpp:242
#, kde-format
msgid ""
"<qt>A policy already exists for<center><b>%1</b></center>Do you want to "
"replace it?</qt>"
msgstr ""
"<qt>Domeeni/saidi <center><b>%1</b></center> jaoks on reegel juba olemas. "
"Kas soovid selle asendada?</qt>"

#: kcookiespolicies.cpp:246
msgid "Duplicate Policy"
msgstr "Topeltreegel"

#: kcookiespolicies.cpp:247 useragentdlg.cpp:215
msgid "Replace"
msgstr "Asenda"

#: kcookiespolicies.cpp:423
msgid ""
"Unable to communicate with the cookie handler service.\n"
"Any changes you made will not take effect until the service is restarted."
msgstr ""
"Küpsiste käsitlemise teenusega suhtlemine nurjus.\n"
"Ükski tehtud muudatustest ei jõustu enne teenuse taaskäivitamist."

#: kcookiespolicies.cpp:464
msgid ""
"<p><h1>Cookies</h1> Cookies contain information that Konqueror (or any other "
"KDE application using the HTTP protocol) stores on your computer from a "
"remote Internet server. This means that a web server can store information "
"about you and your browsing activities on your machine for later use. You "
"might consider this an invasion of privacy.</p><p>However, cookies are "
"useful in certain situations. For example, they are often used by Internet "
"shops, so you can 'put things into a shopping basket'. Some sites require "
"you have a browser that supports cookies.</p><p>Because most people want a "
"compromise between privacy and the benefits cookies offer, KDE offers you "
"the ability to customize the way it handles cookies. You might, for example "
"want to set KDE's default policy to ask you whenever a server wants to set a "
"cookie or simply reject or accept everything. For example, you might choose "
"to accept all cookies from your favorite shopping web site. For this all you "
"have to do is either browse to that particular site and when you are "
"presented with the cookie dialog box, click on <i> This domain </i> under "
"the 'apply to' tab and choose accept or simply specify the name of the site "
"in the <i> Domain Specific Policy </i> tab and set it to accept. This "
"enables you to receive cookies from trusted web sites without being asked "
"every time KDE receives a cookie.</p>"
msgstr ""
"<p><h1>Küpsised</h1> Küpsised sisaldavad infot, mida Konqueror (või mõni muu "
"KDE rakendus, mis kasutab http protokolli) säilitab sinu arvutis ning mis on "
"Interneti serveri poolt saadetud. See tähendab, et veebiserver saab infot "
"sinu lehitsemisharjumuste kohta hilisemaks kasutamiseks sinu masinas hoida. "
"Sa võid seda tõlgendada rünnakuna sinu privaatsusele.</p><p>Siiski on "
"küpsised mõningates situatsioonides kasulikud. Näiteks kasutatakse küpsiseid "
"tihti internetipoodides, nii et sa saad \"panna asju oma ostukorvi\". Mõned "
"saidid vajavad veebilehitsejat, mis toetab küpsiseid.</p><p>Kuna enamik "
"inimesi sooviks leida kompromissi privaatsuse ja küpsiste pakutavate hüvede "
"vahel, pakub KDE võimalust kohandada viisi, kuidas küpsiseid käsitletakse. "
"Nii võiksid sa panna KDE vaikereegliks küsimise, nii et iga kord, kui server "
"soovib küpsist seada, saad ise otsustada. Oma lemmikutest "
"internetikauplustele, mida sa usaldad, sea aga vaikereegliks "
"aktsepteerimine, nii et iga kord, kui KDE sealt küpsise vastu võtab, ei "
"küsita sinu käest kinnitust. Selleks on kaks võimalust: minna vajalikule "
"leheküljele ja kui ilmub küpsisedialoog, klõpsata kaardil 'rakenda' "
"võimalusele <i> see domeen </i> või siis määrata vajaliku saidi nimi kaardil "
"<i> domeenipõhine reegel </i> ja panna see küpsiseid lubama. See võimaldab "
"kasutada küpsiseid usaldusväärsetel veebilehekülgedel, ilma et KDE peaks "
"sulle kogu aeg tülikaid kinnitusküsimusi esitama.</p>"

#: kenvvarproxydlg.cpp:49
msgid "Variable Proxy Configuration"
msgstr "Puhverserveri seadistamine keskonnamuutujate abil"

#: kenvvarproxydlg.cpp:130 kenvvarproxydlg.cpp:292
msgid "You must specify at least one valid proxy environment variable."
msgstr "Määrata tuleb vähemalt üks sobilik puhverserveri keskkonnamuutuja."

#: kenvvarproxydlg.cpp:133 kenvvarproxydlg.cpp:295
msgid ""
"<qt>Make sure you entered the actual environment variable name rather than "
"its value. For example, if the environment variable is <br /"
"><b>HTTP_PROXY=http://localhost:3128</b><br /> you need to enter "
"<b>HTTP_PROXY</b> here instead of the actual value http://localhost:3128.</"
"qt>"
msgstr ""
"<qt>Kontrolli, et sa sisestasid keskkonnamuutuja nime, mitte tema väärtuse. "
"Näiteks, kui keskkonnamuutuja on <br /><b>HTTP_PROXY=http://localhost:3128</"
"b><br /> pead siia sisestama <b>HTTP_PROXY</b> tema väärtuse http://"
"localhost:3128 asemel.</qt>"

#: kenvvarproxydlg.cpp:141 kenvvarproxydlg.cpp:303 kproxydlg.cpp:311
msgid "Invalid Proxy Setup"
msgstr "Vigane puhverserveri seadistus"

#: kenvvarproxydlg.cpp:145
msgid "Successfully verified."
msgstr "Edukalt kontrollitud."

#: kenvvarproxydlg.cpp:146
msgid "Proxy Setup"
msgstr "Puhverserveri seadistus"

#: kenvvarproxydlg.cpp:222
msgid ""
"Did not detect any environment variables commonly used to set system wide "
"proxy information."
msgstr ""
"Ei leidnud ühtegi keskkonnamuutujat, mida tavaliselt kasutatakse süsteemides "
"puhverserveri info määramiseks."

#: kenvvarproxydlg.cpp:226
msgid ""
"<qt>To learn about the variable names the automatic detection process "
"searches for, press OK, click on the quick help button on the window title "
"bar of the previous dialog and then click on the \"<b>Auto Detect</b>\" "
"button.</qt>"
msgstr ""
"<qt>Et uurida, milliseid keskkonnamuutujaid otsitakse, klõpsa OK ning "
"seejärel klõpsa nupul \"Abi\" (<b>?</b>) eelmise dialoogi paremas ülanurgas "
"ning seejärel nupul \"<b>Automaatne tuvastus</b>\".</qt> "

#: kenvvarproxydlg.cpp:234
msgid "Automatic Proxy Variable Detection"
msgstr "Automaatne puhverserveri keskkonnamuutuja leidmine"

#: kmanualproxydlg.cpp:48
msgid "Manual Proxy Configuration"
msgstr "Puhverserveri käsitsi seadistamine"

#: kmanualproxydlg.cpp:273
msgid "Invalid Proxy Setting"
msgstr "Vigane puhverserveri seadistus"

#: kmanualproxydlg.cpp:274
msgid ""
"One or more of the specified proxy settings are invalid. The incorrect "
"entries are highlighted."
msgstr ""
"Üks või enam sisestatud puhverserveri väärtust on vigased. Need on esile "
"tõstetud."

#: kmanualproxydlg.cpp:342
msgid "You entered a duplicate address. Please try again."
msgstr "Sisestasid topeltaadressi. Palun proovi uuesti."

#: kmanualproxydlg.cpp:344
#, kde-format
msgid "<qt><center><b>%1</b></center> is already in the list.</qt>"
msgstr "<qt><center><b>%1</b></center> on juba nimekirjas.</qt>"

#: kmanualproxydlg.cpp:346
msgid "Duplicate Entry"
msgstr "Topeltkirje"

#: kmanualproxydlg.cpp:356
msgid "New Exception"
msgstr "Uus erand"

#: kmanualproxydlg.cpp:363
msgid "Change Exception"
msgstr "Erandi muutmine"

#: kmanualproxydlg.cpp:440
msgid "Invalid Entry"
msgstr "Vigane kirje"

#: kmanualproxydlg.cpp:443
msgid "The address you have entered is not valid."
msgstr "Sisestatud aadress ei ole korrektne."

#: kmanualproxydlg.cpp:445
msgid ""
"<qt>Make sure none of the addresses or URLs you specified contain invalid or "
"wildcard characters such as spaces, asterisks (*), or question marks(?).<br /"
"><br /><u>Examples of VALID entries:</u><br /><code>http://mycompany.com, "
"192.168.10.1, mycompany.com, localhost, http://localhost</code><br /><br /"
"><u>Examples of INVALID entries:</u><br /><code>http://my company.com, http:/"
"mycompany,com file:/localhost</code></qt>"
msgstr ""
"<qt>Palun veendu, et ükski sisestatud aadress ega URL ei sisaldaks vigaseid "
"või metamärke, näiteks tühikud, tärnid või küsimärgid.<br /><br /"
"><u>KORREKTSETE kirjete näited:</u><br /><code>http://minufirma.ee, "
"192.168.10.1, minufirma,ee, localhost, http://localhost</code><br /><br /"
"><u>VIGASTE kirjete näited:</u><br /><code>http://minu firma.ee, http:/"
"minufirma,ee  file:/localhost</code></qt>"

#: kmanualproxydlg.cpp:466
msgid "Enter the URL or address that should use the above proxy settings:"
msgstr ""
"Aadress või URL, mille poole tuleks pöörduda otse, ilma puhverserverita: "

#: kmanualproxydlg.cpp:469
msgid ""
"Enter the address or URL that should be excluded from using the above proxy "
"settings:"
msgstr ""
"Aadress või URL, mille poole ei tuleks pöörduda otse, ilma puhverserverita: "

#: kmanualproxydlg.cpp:472
msgid ""
"<qt>Enter a valid address or URL.<br /><br /><b><u>NOTE:</u></b> Wildcard "
"matching such as <code>*.kde.org</code> is not supported. If you want to "
"match any host in the <code>.kde.org</code> domain, e.g. <code>printing.kde."
"org</code>, then simply enter <code>.kde.org</code>.</qt>"
msgstr ""
"<qt>Sisesta korrektne aadress või URL.<br /><br /><b><u>MÄRKUS:</u></b> "
"Metamärkide kasutamine, näiteks <code>*.kde.org</code>, ei ole toetatud. Kui "
"soovid. et vastaksid kõik domeeni <code>.kde.org</code> masinad, näiteks ka "
"<code>printing.kde.org</code>, siis sisesta lihtsalt <code>.kde.org</code>.</"
"qt>"

#: kproxydlg.cpp:160
msgid ""
"The address of the automatic proxy configuration script is invalid. Please "
"correct this problem before proceeding. Otherwise, your changes will be "
"ignored."
msgstr ""
"Automaatse puhverserveri seadistamise skripti aadress on vigane. Palun "
"lahenda probleem enne jätkamist. Vastasel juhul sinu tehtud muudatusi ei "
"arvestata."

#: kproxydlg.cpp:287
msgid ""
"<h1>Proxy</h1><p>A proxy server is an intermediate program that sits between "
"your machine and the Internet and provides services such as web page caching "
"and/or filtering.</p><p>Caching proxy servers give you faster access to "
"sites you have already visited by locally storing or caching the content of "
"those pages; filtering proxy servers, on the other hand, provide the ability "
"to block out requests for ads, spam, or anything else you want to block.</"
"p><p><u>Note:</u> Some proxy servers provide both services.</p>"
msgstr ""
"<h1>Puhverserver</h1><p>Puhverserver on rakendus sinu arvuti ja interneti "
"vahel, mis pakub veebilehtede puhverdamise ja/või filtreerimise teenust.</"
"p><p>Puhverdavad puhverserverid annavad sulle võimaluse varem külastatud "
"lehekülgedele kiiremini ligi pääseda, sest need on salvestatud "
"puhverserveris.Filtreerivad puhverserverid võimaldavad blokeerida ligipääsu "
"reklaamile, rämpsule või millele iganes vastavalt soovile.</p> <p><u>Märkus:"
"</u> mõned puhverserverid pakuvad mõlemat teenust.</p>"

#: kproxydlg.cpp:306
msgid ""
"<qt>The proxy settings you specified are invalid.<br /><br />Please click on "
"the <b>Setup...</b> button and correct the problem before proceeding; "
"otherwise your changes will be ignored.</qt>"
msgstr ""
"<qt>Puhverserveri seadistused ei ole korrektsed.<br /><br />Palun klõpsa "
"nupul <b>Seadistus...</b>, et probleem enne jätkamist lahendada. Vastasel "
"juhul ei arvestata sinu tehtud muudatusi.</qt>"

#: ksaveioconfig.cpp:224 ksaveioconfig.cpp:240
msgid "Update Failed"
msgstr "Värskendamine nurjus"

#: ksaveioconfig.cpp:225
msgid ""
"You have to restart the running applications for these changes to take "
"effect."
msgstr ""
"Käimasolevad rakendused tuleb uuesti käivitada, et need muudatused arvesse "
"võetaks."

#: ksaveioconfig.cpp:241
msgid "You have to restart KDE for these changes to take effect."
msgstr "KDE tuleb uuesti käivitada, et need muudatused arvesse võetaks."

#: netpref.cpp:32
msgid "Timeout Values"
msgstr "Aegumise väärtused"

#: netpref.cpp:33
#, kde-format
msgid ""
"Here you can set timeout values. You might want to tweak them if your "
"connection is very slow. The maximum allowed value is 1 second."
msgid_plural ""
"Here you can set timeout values. You might want to tweak them if your "
"connection is very slow. The maximum allowed value is %1 seconds."
msgstr[0] ""
"Siin saab seadistada võrguühenduste aegumiste aegu. Neid puutuda on mõtet "
"ainult siis, kui su võrguühendus on väga aeglane. Maksimaalne lubatud aeg on "
"1 sekund."
msgstr[1] ""
"Siin saab seadistada võrguühenduste aegumiste aegu. Neid puutuda on mõtet "
"ainult siis, kui su võrguühendus on väga aeglane. Maksimaalne lubatud aeg on "
"%1 sekundit."

#: netpref.cpp:45 netpref.cpp:50 netpref.cpp:55 netpref.cpp:60
msgid " second"
msgid_plural " seconds"
msgstr[0] " sekund"
msgstr[1] " sekundit"

#: netpref.cpp:47
msgid "Soc&ket read:"
msgstr "&Pesast lugemine:"

#: netpref.cpp:52
msgid "Pro&xy connect:"
msgstr "Pu&hverserveri ühendus:"

#: netpref.cpp:57
msgid "Server co&nnect:"
msgstr "Serveri ühe&ndus:"

#: netpref.cpp:62
msgid "&Server response:"
msgstr "Serveri &vastus:"

#: netpref.cpp:64
msgid "FTP Options"
msgstr "FTP valikud"

#: netpref.cpp:68
msgid "Enable passive &mode (PASV)"
msgstr "Passiivse režiimi (PASV) luba&mine"

#: netpref.cpp:69
msgid ""
"Enables FTP's \"passive\" mode. This is required to allow FTP to work from "
"behind firewalls."
msgstr ""
"Lubab FTP passiivse režiimi. See on vajalik, et FTP töötaks tulemüüride "
"tagant."

#: netpref.cpp:75
msgid "Mark &partially uploaded files"
msgstr "&Osaliselt üleslaaditud failide märkimine"

#: netpref.cpp:76
msgid ""
"<p>Marks partially uploaded FTP files.</p><p>When this option is enabled, "
"partially uploaded files will have a \".part\" extension. This extension "
"will be removed once the transfer is complete.</p>"
msgstr ""
"<p>Märgitakse osaliselt üleslaaditud failid.</p><p>Kui see valik on sisse "
"lülitatud, siis on osaliselt üleslaaditud failidel laiend \".part\". Laiend "
"võetakse maha siis, kui üleslaadimine on edukalt lõpetatud.</p>"

#: netpref.cpp:144
msgid ""
"<h1>Network Preferences</h1>Here you can define the behavior of KDE programs "
"when using Internet and network connections. If you experience timeouts or "
"use a modem to connect to the Internet, you might want to adjust these "
"settings."
msgstr ""
"<h1>Võrgu eelistused</h1>Siin saab määrata KDE rakenduste käitumist "
"Interneti ja kohtvõrgu kasutamisel. Kui ühenduse pidev aegumine on "
"probleemiks või sul on ainult aeglane modemiühendus, võid proovida neid "
"väärtusi suurendada."

#. i18n: file: bookmarks.ui:16
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:3
msgid "Bookmarks"
msgstr "Järjehoidjad"

#. i18n: file: bookmarks.ui:23
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbShowRoot)
#: rc.cpp:6
msgid ""
"If this option is unchecked, bookmarks at the root of the hierarchy (not in "
"a folder) are not displayed.\n"
"If checked, they are gathered in a \"root\" folder."
msgstr ""
"Selle valimata jätmisel ei näidata hierarhia juurkataloogis olevaid "
"järjehoidjaid.\n"
"Kui see on valitud, koondatakse nad kataloogi \"juur\"."

#. i18n: file: bookmarks.ui:26
#. i18n: ectx: property (text), widget (QCheckBox, cbShowRoot)
#: rc.cpp:10
msgid "&Show bookmarks without folder"
msgstr "&Kataloogita järjehoidjate näitamine"

#. i18n: file: bookmarks.ui:37
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbFlattenTree)
#: rc.cpp:13
msgid ""
"Sub-folders are shown within their parent by default. If you activate this "
"option, sub-folders are displayed on their own.\n"
"It looks less nice but it may help if you have a very big folder you want to "
"spread in two columns."
msgstr ""
"Vaikimisi näidatakse alamkatalooge eellase all. Selle valiku "
"sisselülitamisel näidatakse alamkatalooge omaette.\n"
"See pole nii kena, aga võib olla tulus, kui sul on väga suur kataloog, mida "
"soovid lasta näidata kahes veerus."

#. i18n: file: bookmarks.ui:40
#. i18n: ectx: property (text), widget (QCheckBox, cbFlattenTree)
#: rc.cpp:17
msgid "&Flatten bookmarks tree"
msgstr "L&iigendamata järjehoidjate puu"

#. i18n: file: bookmarks.ui:47
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbShowPlaces)
#: rc.cpp:20
msgid ""
"Show a box with KDE places (Home, Network, ...). Useful if you use konqueror "
"as a file manager."
msgstr ""
"Kasti näitamine KDE asukohtadega (Kodu, Võrk...). See on abiks, kui kasutada "
"failihaldurina Konquerori."

#. i18n: file: bookmarks.ui:50
#. i18n: ectx: property (text), widget (QCheckBox, cbShowPlaces)
#: rc.cpp:23
msgid "Show system &places"
msgstr "Süsteemi asuko&htade näitamine"

#. i18n: file: bookmarks.ui:63
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2)
#: rc.cpp:26
msgid "General Settings"
msgstr "Üldised seadistused"

#. i18n: file: bookmarks.ui:71
#. i18n: ectx: property (whatsThis), widget (QLabel, label)
#: rc.cpp:29
msgid ""
"Folders are automatically distributed in several columns. The optimal number "
"of columns depends on the width of the konqueror window and the number of "
"bookmarks you have."
msgstr ""
"Kataloogid jagatakse automaatselt mitmesse veergu. Veergude optimaalne arv "
"sõltub Konquerori akna laiusest ja sinu järjehoidjate arvust."

#. i18n: file: bookmarks.ui:74
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:32
msgid "Number of columns to show:"
msgstr "Näidatavate veergude arv:"

#. i18n: file: bookmarks.ui:109
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbShowBackgrounds)
#: rc.cpp:35
msgid "Disable it on slow system to disable background images."
msgstr "Aeglase süsteemi korral on mõttekas taustapildid välja lülitada."

#. i18n: file: bookmarks.ui:112
#. i18n: ectx: property (text), widget (QCheckBox, cbShowBackgrounds)
#: rc.cpp:38
msgid "Show folder &backgrounds"
msgstr "Ka&taloogide tausta näitamine"

#. i18n: file: bookmarks.ui:138
#. i18n: ectx: property (whatsThis), widget (QGroupBox, groupBox_3)
#: rc.cpp:41
msgid "How much disk space is used to cache the pixmaps"
msgstr "Kui palju kettaruumi eraldada piltide puhverdamiseks"

#. i18n: file: bookmarks.ui:141
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: rc.cpp:44
msgid "Pixmap Cache"
msgstr "Pildipuhver"

#. i18n: file: bookmarks.ui:150
#. i18n: ectx: property (text), widget (QLabel, lbMaxCacheSize)
#: rc.cpp:47
msgid "Disk cache size:"
msgstr "Kettavahemälu suurus:"

#. i18n: file: bookmarks.ui:163
#. i18n: ectx: property (suffix), widget (KIntNumInput, sbCacheSize)
#: rc.cpp:50
msgid " kB"
msgstr " kB"

#. i18n: file: bookmarks.ui:173
#. i18n: ectx: property (whatsThis), widget (QPushButton, clearCacheButton)
#: rc.cpp:53
msgid "Clear the pixmap cache"
msgstr "Puhasta pildipuhver"

#. i18n: file: bookmarks.ui:176
#. i18n: ectx: property (text), widget (QPushButton, clearCacheButton)
#: rc.cpp:56
msgid "&Clear Cache"
msgstr "Tühjenda &vahemälu"

#. i18n: file: cache.ui:17
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbUseCache)
#: rc.cpp:59
msgid ""
"Check this box if you want the web pages you visit to be stored on your hard "
"disk for quicker access. The stored pages will only be updated as needed "
"instead of on every visit to that site. This is especially useful if you "
"have a slow connection to the Internet."
msgstr ""
"Lülita see sisse, kui soovid, et vaadatavad veebilehed salvestataks ka "
"kõvakettale, et nende vaatamine hiljem kiirem oleks. Sel juhul tõmmatakse "
"veebilehti hiljem ainult siis, kui see on vajalik. Efekt on seda suurem, "
"mida aeglasem on su võrguühendus."

#. i18n: file: cache.ui:20
#. i18n: ectx: property (text), widget (QCheckBox, cbUseCache)
#: rc.cpp:62
msgid "&Use cache"
msgstr "Vahemäl&u kasutamine"

#. i18n: file: cache.ui:46
#. i18n: ectx: property (title), widget (QGroupBox, bgCachePolicy)
#. i18n: file: kcookiespoliciesdlg.ui:211
#. i18n: ectx: property (text), widget (QTreeWidget, lvDomainPolicy)
#: rc.cpp:65 rc.cpp:301
msgid "Policy"
msgstr "Reegel"

#. i18n: file: cache.ui:52
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbVerifyCache)
#: rc.cpp:68
msgid ""
"Verify whether the cached web page is valid before attempting to fetch the "
"web page again."
msgstr ""
"Enne seda, kui veebilehekülg tõmmata, kontrollitakse, kas sellel on "
"erinevusi vahemälus oleva variandiga."

#. i18n: file: cache.ui:55
#. i18n: ectx: property (text), widget (QRadioButton, rbVerifyCache)
#: rc.cpp:71
msgid "&Keep cache in sync"
msgstr "&Vahemälu hoitakse sünkros"

#. i18n: file: cache.ui:62
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbCacheIfPossible)
#: rc.cpp:74
msgid ""
"Always use documents from the cache when available. You can still use the "
"reload button to synchronize the cache with the remote host."
msgstr ""
"Lülita see sisse, kui soovid, et kasutataks alati vahemälu. Võrgus oleva "
"veebilehe ja vahemälus oleva sünkroniseerimiseks saad kasutada nuppu \"Laadi "
"uuesti\"."

#. i18n: file: cache.ui:65
#. i18n: ectx: property (text), widget (QRadioButton, rbCacheIfPossible)
#: rc.cpp:77
msgid "Use cache whenever &possible"
msgstr "Va&hemälu kasutatakse alati, kui võimalik"

#. i18n: file: cache.ui:72
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbOfflineMode)
#: rc.cpp:80
msgid ""
"Do not fetch web pages that are not already stored in the cache. Offline "
"mode prevents you from viewing pages that you have not previously visited."
msgstr ""
"Ei tõmmata veebilehekülgi, mida ei ole juba vahemälus. Võrguühenduseta "
"lehitsemine takistab vaatamast lehekülgi, mida sa ei ole varem külastanud."

#. i18n: file: cache.ui:75
#. i18n: ectx: property (text), widget (QRadioButton, rbOfflineMode)
#: rc.cpp:83
msgid "O&ffline browsing mode"
msgstr "&Võrguta ühenduse lehitsemise režiim"

#. i18n: file: cache.ui:88
#. i18n: ectx: property (text), widget (QLabel, lbMaxCacheSize)
#: rc.cpp:86
msgid "Disk cache &size:"
msgstr "Kettavahemälu &suurus:"

#. i18n: file: cache.ui:101
#. i18n: ectx: property (suffix), widget (KIntNumInput, sbMaxCacheSize)
#: rc.cpp:89
msgid " KiB"
msgstr " KiB"

#. i18n: file: cache.ui:111
#. i18n: ectx: property (text), widget (QPushButton, clearCacheButton)
#: rc.cpp:92
msgid "C&lear Cache"
msgstr "Tühjenda &vahemälu"

#. i18n: file: envvarproxy.ui:21
#. i18n: ectx: property (whatsThis), widget (QLabel, lbHttp)
#. i18n: file: envvarproxy.ui:49
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leHttp)
#: rc.cpp:95 rc.cpp:104
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>HTTP_PROXY</b>, used to "
"store the address of the HTTP proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"Sisesta keskkonnamuutuja nimi, näiteks <b>HTTP_PROXY</b>, mida kasutatakse "
"HTTP puhverserveri aadressi seadistamiseks.<p>\n"
"Teine võimalus on klõpsata nuppu <b>\"Automaatne tuvastus\"</b>, et proovida "
"automaatset tuvastust.</p>\n"
"</qt>"

#. i18n: file: envvarproxy.ui:24
#. i18n: ectx: property (text), widget (QLabel, lbHttp)
#. i18n: file: manualproxy.ui:66
#. i18n: ectx: property (text), widget (QLabel, lbHttp)
#: rc.cpp:101 rc.cpp:422
msgid "H&TTP:"
msgstr "H&TTP:"

#. i18n: file: envvarproxy.ui:59
#. i18n: ectx: property (whatsThis), widget (QLabel, lbHttps)
#. i18n: file: envvarproxy.ui:87
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leHttps)
#: rc.cpp:110 rc.cpp:119
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>HTTPS_PROXY</b>, used to "
"store the address of the HTTPS proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"Sisesta keskkonnamuutuja nimi, näiteks <b>HTTPS_PROXY</b>, mida kasutatakse "
"HTTPS puhverserveri aadressi seadistamiseks.<p>\n"
"Teine võimalus on klõpsata nuppu <b>\"Automaatne tuvastus\"</b>, et proovida "
"automaatset tuvastust.</p>\n"
"</qt>"

#. i18n: file: envvarproxy.ui:62
#. i18n: ectx: property (text), widget (QLabel, lbHttps)
#. i18n: file: manualproxy.ui:47
#. i18n: ectx: property (text), widget (QLabel, lbHttps)
#: rc.cpp:116 rc.cpp:419
msgid "HTTP&S:"
msgstr "HTTP&S:"

#. i18n: file: envvarproxy.ui:97
#. i18n: ectx: property (whatsThis), widget (QLabel, lbFtp)
#. i18n: file: envvarproxy.ui:125
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leFtp)
#: rc.cpp:125 rc.cpp:134
msgid ""
"<qt>\n"
"Enter the name of the environment variable, e.g. <b>FTP_PROXY</b>, used to "
"store the address of the FTP proxy server.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"Sisesta keskkonnamuutuja nimi, näiteks <b>FTP_PROXY</b>, mida kasutatakse "
"FTP puhverserveri aadressi seadistamiseks.<p>\n"
"Teine võimalus on klõpsata nuppu <b>\"Automaatne tuvastus\"</b>, et proovida "
"automaatset tuvastust.</p>\n"
"</qt>"

#. i18n: file: envvarproxy.ui:100
#. i18n: ectx: property (text), widget (QLabel, lbFtp)
#. i18n: file: manualproxy.ui:28
#. i18n: ectx: property (text), widget (QLabel, lbFtp)
#: rc.cpp:131 rc.cpp:416
msgid "&FTP:"
msgstr "&FTP:"

#. i18n: file: envvarproxy.ui:135
#. i18n: ectx: property (whatsThis), widget (QLabel, lnNoProxy)
#. i18n: file: envvarproxy.ui:163
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leNoProxy)
#: rc.cpp:140 rc.cpp:149
msgid ""
"<qt>\n"
"Enter the environment variable, e.g. <b>NO_PROXY</b>, used to store the "
"addresses of sites for which the proxy server should not be used.<p>\n"
"Alternatively, you can click on the <b>\"Auto Detect\"</b> button to attempt "
"an automatic discovery of this variable.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Sisesta keskkonnamuutuja nimi, näiteks <b>NO_PROXY</b>, mida kasutatakse "
"aadresside salvestamiseks, mille puhul puhverserverit ei kasutata.<p>\n"
"Teine võimalus on klõpsata nuppu <b>\"Automaatne tuvastus\"</b>, et proovida "
"automaatset tuvastust.\n"
"</qt>"

#. i18n: file: envvarproxy.ui:138
#. i18n: ectx: property (text), widget (QLabel, lnNoProxy)
#: rc.cpp:146
msgid "NO &PROXY:"
msgstr "NO &PROXY:"

#. i18n: file: envvarproxy.ui:170
#. i18n: ectx: property (text), widget (QCheckBox, cbShowValue)
#: rc.cpp:155
msgid "Show the &value of the environment variables"
msgstr "Keskkonnamuutujate &väärtuse näitamine"

#. i18n: file: envvarproxy.ui:181
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbVerify)
#: rc.cpp:158
msgid ""
"<qt>Verify whether or not the environment variable names you supplied are "
"valid. If an environment variable is not found, the associated labels will "
"be <b>highlighted</b> to indicate that they are invalid.</qt>"
msgstr ""
"<qt>Klõpsa sellel nupul, et kiirelt kindlaks teha, kas seadistatud "
"keskkonnamuutujate nimed on korrektsed või mitte. Kui keskkkonnamuutujat ei "
"leita, siis kuvatakse vigase seadistuse pealdis <b>rasvases kirjas</b>.</qt>"

#. i18n: file: envvarproxy.ui:184
#. i18n: ectx: property (text), widget (QPushButton, pbVerify)
#: rc.cpp:161
msgid "&Verify"
msgstr "&Kontrolli"

#. i18n: file: envvarproxy.ui:191
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbDetect)
#: rc.cpp:164
msgid ""
"<qt>Attempt automatic discovery of the environment variables used for "
"setting system wide proxy information.<p> This feature works by searching "
"for commonly used variable names such as HTTP_PROXY, FTP_PROXY and NO_PROXY."
"</qt>"
msgstr ""
"<qt>Klõpsa sellel nupul, et proovida automaatset keskkonnamuutujate "
"tuvastamist, mida saaks kasutada puhverserverite aadresside seadistamiseks. "
"<p> See automaatne tuvastamine põhineb järgmistel enamkasutatud "
"keskkkonnamuutujatel: HTTP_PROXY, FTP_PROXY ja NO_PROXY.</qt>"

#. i18n: file: envvarproxy.ui:194
#. i18n: ectx: property (text), widget (QPushButton, pbDetect)
#: rc.cpp:167
msgid "Auto &Detect"
msgstr "A&utomaatne tuvastus"

#. i18n: file: kcookiesmanagementdlg.ui:20
#. i18n: ectx: property (clickMessage), widget (KTreeWidgetSearchLine, searchLineEdit)
#. i18n: file: kcookiespoliciesdlg.ui:225
#. i18n: ectx: property (clickMessage), widget (KTreeWidgetSearchLine, kListViewSearchLine)
#: rc.cpp:170 rc.cpp:307
msgid "Search"
msgstr "Otsing"

#. i18n: file: kcookiesmanagementdlg.ui:27
#. i18n: ectx: property (toolTip), widget (QTreeWidget, cookiesTreeWidget)
#: rc.cpp:173
msgid "Search interactively for domains and hosts"
msgstr "Interaktiivne domeenide ja masinate otsing"

#. i18n: file: kcookiesmanagementdlg.ui:43
#. i18n: ectx: property (text), widget (QTreeWidget, cookiesTreeWidget)
#: rc.cpp:176
msgid "Site"
msgstr "Sait"

#. i18n: file: kcookiesmanagementdlg.ui:48
#. i18n: ectx: property (text), widget (QTreeWidget, cookiesTreeWidget)
#: rc.cpp:179
msgid "Cookie Name"
msgstr "Küpsise nimi"

#. i18n: file: kcookiesmanagementdlg.ui:56
#. i18n: ectx: property (text), widget (QPushButton, deleteButton)
#. i18n: file: kcookiespoliciesdlg.ui:156
#. i18n: ectx: property (text), widget (KPushButton, pbDelete)
#. i18n: file: useragentdlg.ui:208
#. i18n: ectx: property (text), widget (KPushButton, deleteButton)
#: rc.cpp:182 rc.cpp:287 rc.cpp:609
msgid "D&elete"
msgstr "&Kustuta"

#. i18n: file: kcookiesmanagementdlg.ui:63
#. i18n: ectx: property (text), widget (QPushButton, deleteAllButton)
#. i18n: file: kcookiespoliciesdlg.ui:163
#. i18n: ectx: property (text), widget (KPushButton, pbDeleteAll)
#. i18n: file: useragentdlg.ui:218
#. i18n: ectx: property (text), widget (KPushButton, deleteAllButton)
#: rc.cpp:185 rc.cpp:290 rc.cpp:615
msgid "Delete A&ll"
msgstr "Ku&stuta kõik"

#. i18n: file: kcookiesmanagementdlg.ui:70
#. i18n: ectx: property (text), widget (QPushButton, changePolicyButton)
#: rc.cpp:188
msgid "Change &Policy..."
msgstr "Muuda ree&glit..."

#. i18n: file: kcookiesmanagementdlg.ui:77
#. i18n: ectx: property (text), widget (QPushButton, reloadButton)
#: rc.cpp:191
msgid "&Reload List"
msgstr "Laadi nimeki&ri uuesti"

#. i18n: file: kcookiesmanagementdlg.ui:97
#. i18n: ectx: property (title), widget (QGroupBox, detailsGroupBox)
#: rc.cpp:194
msgid "Details"
msgstr "Üksikasjad"

#. i18n: file: kcookiesmanagementdlg.ui:106
#. i18n: ectx: property (text), widget (QLabel, nameLabel)
#: rc.cpp:197
msgid "Name:"
msgstr "Nimi:"

#. i18n: file: kcookiesmanagementdlg.ui:129
#. i18n: ectx: property (text), widget (QLabel, valueLabel)
#: rc.cpp:200
msgid "Value:"
msgstr "Väärtus:"

#. i18n: file: kcookiesmanagementdlg.ui:152
#. i18n: ectx: property (text), widget (QLabel, domainLabel)
#: rc.cpp:203
msgid "Domain:"
msgstr "Domeen:"

#. i18n: file: kcookiesmanagementdlg.ui:175
#. i18n: ectx: property (text), widget (QLabel, patchLabel)
#: rc.cpp:206
msgid "Path:"
msgstr "Aadress:"

#. i18n: file: kcookiesmanagementdlg.ui:198
#. i18n: ectx: property (text), widget (QLabel, expiresLabel)
#: rc.cpp:209
msgid "Expires:"
msgstr "Aegub:"

#. i18n: file: kcookiesmanagementdlg.ui:221
#. i18n: ectx: property (text), widget (QLabel, secureLabel)
#: rc.cpp:212
msgid "Secure:"
msgstr "On turvaline:"

#. i18n: file: kcookiespoliciesdlg.ui:19
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbEnableCookies)
#: rc.cpp:215
msgid ""
"<qt>\n"
"<p>Enable cookie support. Normally you will want to have cookie support "
"enabled and customize it to suit your privacy needs.</p><p>\n"
"Please note that disabling cookie support might make many web sites "
"unbrowsable.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"<p>See valik lülitab sisse küpsiste toetuse. Tõenäoliselt soovid sa hoida "
"seda sisselülitatuna ning kohandada küpsiste aktsepteerimise reegleid "
"vastavalt oma privaatsuse vajadustele.</p><p>\n"
"Arvesta, et küpsiste toe keelamine võib muuta paljud veebileheküljed "
"kättesaamatuks.</p>\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:22
#. i18n: ectx: property (text), widget (QCheckBox, cbEnableCookies)
#: rc.cpp:221
msgid "Enable coo&kies"
msgstr "&Küpsiste lubamine"

#. i18n: file: kcookiespoliciesdlg.ui:34
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbRejectCrossDomainCookies)
#: rc.cpp:224
msgid ""
"<qt>\n"
"Reject the so called third-party cookies. These are cookies that originate "
"from a site other than the one you are currently browsing. For example, if "
"you visit <b>www.foobar.com</b> while this option is on, only cookies that "
"originate from www.foobar.com will be processed per your settings. Cookies "
"from any other site will be rejected. This reduces the chances of site "
"operators compiling a profile about your daily browsing habits.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Lülita see valik sisse, kui soovid keelduda kõigi teiste saitide küpsistest, "
"välja arvatud sinu poolt määratud saidi omadest. Kui näiteks külastad "
"aadressi <b>www.foobar.com</b>, siis selle valiku sisselülitamise korral "
"kontrollitakse ainult www.foobar.com-ist tulnud küpsiseid vastavalt sinu "
"seadistustele. Kõigist muudest küpsistest keeldutakse automaatselt. See "
"vähendab võimalusi, et veebisaitide haldajad saaksid koostada andmebaasi "
"sinu veebilehitsemisharjumuste kohta.\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:37
#. i18n: ectx: property (text), widget (QCheckBox, cbRejectCrossDomainCookies)
#: rc.cpp:229
msgid "Only acce&pt cookies from originating server"
msgstr ""
"Ainult serverist, millest leht on avatud, tulevad kü&psised aktsepteeritakse"

#. i18n: file: kcookiespoliciesdlg.ui:47
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbAutoAcceptSessionCookies)
#: rc.cpp:232
msgid ""
"<qt>\n"
"<p>Automatically accept temporary cookies meant to expire at the end of the "
"current session. Such cookies will not be stored in your computer's hard "
"drive or storage device. Instead, they are deleted when you close all "
"applications (e.g. your browser) that use them.</p><p>\n"
"<u>NOTE:</u> Checking this option along with the next one will override your "
"default as well as site specific cookie policies. However, doing so also "
"increases your privacy since all cookies will be removed when the current "
"session ends.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"<p>Lülita see sisse, kui soovid automaatselt aksepteerida ajutisi küpsiseid, "
"mis aeguvad seansi lõpus. Selliseid küpsiseid ei salvestata arvuti "
"kõvakettale ega muudele salvestusseadmetele, vaid kustutakse pärast seda, "
"kui kõik rakendused, mis neid kasutavad (näiteks veebilehitsejad), on "
"suletud.</p><p>\n"
"<u>MÄRKUS:</u> kui sa selle ja järgmise valiku sisse lülitad, siis on nendel "
"seadistustel kõrgem prioriteet kui vaikeseadistustel ja konkreetsete saitide "
"kohta käivatel seadistustel. Hoolimata sellest suurendavad need valikud su "
"privaatsust, kuna kõik küpsised kustutatakse pärast seansi lõppu.</p>\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:50
#. i18n: ectx: property (text), widget (QCheckBox, cbAutoAcceptSessionCookies)
#: rc.cpp:238
msgid "Automaticall&y accept session cookies"
msgstr "Seansiküpsised aktsepteeritakse aut&omaatselt"

#. i18n: file: kcookiespoliciesdlg.ui:60
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbIgnoreCookieExpirationDate)
#: rc.cpp:241
msgid ""
"<qt>\n"
"<p>Treat all cookies as session cookies. Session cookies are small pieces of "
"data that are temporarily stored in your computer's memory until you quit or "
"close all applications (e.g. your browser) that use them. Unlike regular "
"cookies, session cookies are never stored on your hard drive or other "
"storage medium.</p><p>\n"
"<u>NOTE:</u> Checking this option along with the previous one will override "
"your default as well as site specific cookie policies. However, doing so "
"also increases your privacy since all cookies will be removed when the "
"current session ends.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"<p>Lülita see sisse, kui soovid, et kõiki küpsiseid käsitletaks "
"seansiküpsistena. Seansiküpsis on väike hulk andmeid, mida säilitatakse "
"ajutiselt arvuti mälus, kuni sa sulged kõik rakendused (näiteks "
"veebilehitseja), mis teda kasutab. Vastupidiselt tavalistele küpsistele ei "
"salvestata seansiküpsiseid kunagi kõvakettale ega mingile muule "
"andmesalvestusseadmele.</p><p>\n"
"<u>MÄRKUS:</u> kui sa selle ja eelmise valiku sisse lülitad, siis on nendel "
"seadistustel kõrgem prioriteet kui vaikeseadistustel ja konkreetsete saitide "
"kohta käivatel seadistustel. Hoolimata sellest suurendavad need valikud su "
"privaatsust, kuna kõik küpsised kustutatakse pärast seansi lõppu.</p>\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:63
#. i18n: ectx: property (text), widget (QCheckBox, cbIgnoreCookieExpirationDate)
#: rc.cpp:247
msgid "Treat &all cookies as session cookies"
msgstr "Kõiki küpsiseid koheld&akse seansiküpsistena"

#. i18n: file: kcookiespoliciesdlg.ui:83
#. i18n: ectx: property (whatsThis), widget (QGroupBox, bgDefault)
#: rc.cpp:250
msgid ""
"<qt>\n"
"Determines how cookies received from a remote machine will be handled: \n"
"<ul>\n"
"<li><b>Ask</b> will cause KDE to ask for your confirmation whenever a server "
"wants to set a cookie.</li>\n"
"<li><b>Accept</b> will cause cookies to be accepted without prompting you.</"
"li>\n"
"<li><b>Reject</b> will cause the cookiejar to refuse all cookies it receives."
"</li>\n"
"</ul><p>\n"
"<u>NOTE:</u> Domain specific policies, which can be set below, always take "
"precedence over the default policy.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"Vaikereegel määrab viisi, kuidas KDE käsitleb küpsiseid, mis on saadetud "
"serverist, mis ei kuulu domeeni, millele sa oled määranud spetsiifilise "
"reegli.\n"
"<ul>\n"
"<li><b>Küsitakse</b> - KDE küsib iga kord sinu käest, kui server soovib "
"küpsist saata</li>\n"
"<li><b>Aktsepteeritakse</b> - KDE aktsepteerib vaikides kõik küpsised</li>\n"
"<li><b>Keeldutakse</b> - KDE ei aktsepteeri küpsiseid</li>\n"
"</ul><p>\n"
"<u>MÄRKUS:</u> arvesta, et vaikereeglit eiratakse iga domeeni puhul, millele "
"on seatud oma reegel.</p>\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:86
#. i18n: ectx: property (title), widget (QGroupBox, bgDefault)
#: rc.cpp:261
msgid "Default Policy"
msgstr "Vaikereegel"

#. i18n: file: kcookiespoliciesdlg.ui:92
#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyAsk)
#: rc.cpp:264
msgid "Ask &for confirmation"
msgstr "Kü&sitakse kinnitust"

#. i18n: file: kcookiespoliciesdlg.ui:99
#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyAccept)
#: rc.cpp:267
msgid "Accep&t all cookies"
msgstr "Ak&tsepteeritakse kõik küpsised"

#. i18n: file: kcookiespoliciesdlg.ui:106
#. i18n: ectx: property (text), widget (QRadioButton, rbPolicyReject)
#: rc.cpp:270
msgid "Re&ject all cookies"
msgstr "Keeldutakse kõi&gist küpsistest"

#. i18n: file: kcookiespoliciesdlg.ui:131
#. i18n: ectx: property (whatsThis), widget (QGroupBox, gbDomainSpecific)
#: rc.cpp:273
msgid ""
"<qt>\n"
"To add a new policy, simply click on the <b>Add...</b> button and supply the "
"necessary information. To change an existing policy, use the <b>Change...</"
"b> button and choose the new policy from the policy dialog box. Clicking on "
"the <b>Delete</b> button will remove the currently selected policy causing "
"the default policy setting to be used for that domain, whereas <b>Delete "
"All</b> will remove all the site specific policies.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Siin saab määrata igale domeenile eraldi reeglid küpsiste käsitlemiseks. Uue "
"reegli lisamiseks klõpsa lihtsalt nupul <b>Lisa...</b> ja sisesta "
"dialoogiboksi kogu vajalik info. Eksisteeriva reegli muutmiseks klõpsa nupul "
"<b>Muuda...</b> ning vali dialoogiboksis uus reegel. Nupul <b>Kustuta</b> "
"klõpsates saad eemaldada valitud reegli ning siis kasutatakse edaspidi selle "
"domeeni puhul vaikereeglit. <b>Kustuta kõik</b> aga kustutab kõik "
"domeenipõhised reeglid.\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:134
#. i18n: ectx: property (title), widget (QGroupBox, gbDomainSpecific)
#: rc.cpp:278
msgid "Site Policy"
msgstr "Saidi reegel"

#. i18n: file: kcookiespoliciesdlg.ui:142
#. i18n: ectx: property (text), widget (KPushButton, pbNew)
#. i18n: file: manualproxy.ui:214
#. i18n: ectx: property (text), widget (QPushButton, pbNew)
#. i18n: file: useragentdlg.ui:188
#. i18n: ectx: property (text), widget (KPushButton, newButton)
#: rc.cpp:281 rc.cpp:472 rc.cpp:597
msgid "&New..."
msgstr "&Uus..."

#. i18n: file: kcookiespoliciesdlg.ui:149
#. i18n: ectx: property (text), widget (KPushButton, pbChange)
#. i18n: file: useragentdlg.ui:198
#. i18n: ectx: property (text), widget (KPushButton, changeButton)
#: rc.cpp:284 rc.cpp:603
msgid "Chan&ge..."
msgstr "&Muuda..."

#. i18n: file: kcookiespoliciesdlg.ui:190
#. i18n: ectx: property (whatsThis), widget (QTreeWidget, lvDomainPolicy)
#: rc.cpp:293
msgid ""
"<qt>\n"
"List of sites for which you have set a specific cookie policy. Specific "
"policies override the default policy setting for these sites.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Saitide nimekiri, millele on määratud spetsiaalne küpsiste käsitlemise "
"reegel. Spetsiaalsed reeglid tühistavad saitide vaikereeglid.\n"
"</qt>"

#. i18n: file: kcookiespoliciesdlg.ui:206
#. i18n: ectx: property (text), widget (QTreeWidget, lvDomainPolicy)
#: rc.cpp:298
msgid "Domain"
msgstr "Domeen"

#. i18n: file: kcookiespoliciesdlg.ui:222
#. i18n: ectx: property (toolTip), widget (KTreeWidgetSearchLine, kListViewSearchLine)
#: rc.cpp:304
msgid "Search interactively for domains"
msgstr "Interaktiivne domeenide otsing"

#. i18n: file: kproxydlg.ui:19
#. i18n: ectx: property (whatsThis), widget (QWidget, KProxyDialogUI)
#: rc.cpp:310
msgid ""
"<qt>\n"
"Setup proxy configuration.\n"
"<p>\n"
"A proxy server is an intermediate machine that sits between your computer "
"and the Internet and provides services such as web page caching and "
"filtering. Caching proxy servers give you faster access to web sites you "
"have already visited by locally storing or caching those pages; filtering "
"proxy servers usually provide the ability to block out requests for ads, "
"spam, or anything else you want to block.\n"
"<p>\n"
"If you are uncertain whether or not you need to use a proxy server to "
"connect to the Internet, consult your Internet service provider's setup "
"guide or your system administrator.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Puhverserveri seadistamine\n"
"<p>\n"
"Puhverserver on rakendus sinu arvuti interneti vahel, mis pakub veebilehtede "
"puhverdamise ja/või filtreerimise teenust. Puhverdavad puhverserverid "
"annavad sulle võimaluse varem külastatud lehekülgedele kiiremini ligi "
"pääseda, sest need on salvestatud puhverserveris. Filtreerivad "
"puhverserverid võimaldavad blokeerida ligipääsu reklaamile, rämpsule või "
"millele iganes vastavalt soovile.\n"
"<p>\n"
"Kui sa pole kindel, kas sa peaksid puhverserverit kasutama, uuri oma "
"internetiteenuse pakkuja antud seadistusjuhiseid või päri seda oma "
"süsteemiadministraatorilt.\n"
"</qt>"

#. i18n: file: kproxydlg.ui:37
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbNoProxy)
#: rc.cpp:319
msgid "Connect to the Internet directly."
msgstr "Internetti ühendutakse otse."

#. i18n: file: kproxydlg.ui:40
#. i18n: ectx: property (text), widget (QRadioButton, rbNoProxy)
#: rc.cpp:322
msgid "Connect to the &Internet directly"
msgstr "Internetti ühen&dutakse otse"

#. i18n: file: kproxydlg.ui:57
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbAutoDiscover)
#: rc.cpp:325
msgid ""
"<qt>\n"
"Automatically detect and configure the proxy settings.<p>\n"
"Automatic detection is performed using the <b>Web Proxy Auto-Discovery "
"Protocol (WPAD)</b>.<p>\n"
"<b>NOTE:</b> This option might not work properly or not work at all in some "
"UNIX/Linux distributions. If you encounter a problem when using this option, "
"please check the FAQ section at http://konqueror.kde.org.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Puhverserveri seadistuse automaatne tuvastamine ja seadistamine.<p>\n"
"Automaatne tuvastamine teostatakse <b>veebi puhverserveri automaatse "
"tuvastamise protokolli (WPAD)</b> vahendusel.<p>\n"
"<b>MÄRKUS:</b> see võimalus ei pruugi töötada korrektselt kõigi UNIX/Linuxi "
"distributsioonidega. Kui sul tekib seda kasutades probleeme, uuri palun KKK "
"osa aadressil http://konqueror.kde.org.\n"
"</qt>"

#. i18n: file: kproxydlg.ui:60
#. i18n: ectx: property (text), widget (QRadioButton, rbAutoDiscover)
#: rc.cpp:332
msgid "A&utomatically detect proxy configuration"
msgstr "Puhverserveri seadistuse a&utomaatne tuvastamine"

#. i18n: file: kproxydlg.ui:75
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbAutoScript)
#: rc.cpp:335
msgid "Use the specified proxy script URL to configure the proxy settings."
msgstr ""
"Kasutatakse määratud seadistusskripti puhverserveri seadistuste "
"rakendamiseks."

#. i18n: file: kproxydlg.ui:78
#. i18n: ectx: property (text), widget (QRadioButton, rbAutoScript)
#: rc.cpp:338
msgid "U&se proxy configuration URL:"
msgstr "Kasutatakse järgnevat puhverserveri seadistuse URL-i:"

#. i18n: file: kproxydlg.ui:94
#. i18n: ectx: property (whatsThis), widget (KUrlRequester, location)
#: rc.cpp:341
msgid "Enter the address for the proxy configuration script."
msgstr "Sisesta siia puhverserveri seadistusteskripti aadress."

#. i18n: file: kproxydlg.ui:120
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbEnvVar)
#: rc.cpp:344
msgid ""
"<qt>\n"
"Use environment variables to configure the proxy settings.<p>\n"
"Environment variables such as <b>HTTP_PROXY</b> and <b>NO_PROXY</b> are "
"usually used in multi-user UNIX installations, where both graphical and non-"
"graphical applications need to share the same proxy configuration "
"information.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Puhverserveri seadistuste rakendamiseks kasutatakse keskkonnamuutujaid.</p>\n"
"Sellistele keskkonnamuutujatele, nagu <b>HTTP_PROXY</b> ja <b>NO_PROXY</b> "
"tuginev seadistus on tavaliselt kasutusel paljude kasutajatega UNIX-i "
"süsteemides, kus nii graafilised kui mittegraafilised rakendused peavad "
"jagama ühesugust puhverserveri seadistuste infot.\n"
"</qt>"

#. i18n: file: kproxydlg.ui:123
#. i18n: ectx: property (text), widget (QRadioButton, rbEnvVar)
#: rc.cpp:350
msgid "Use preset proxy environment &variables"
msgstr "Pu&hverserveri eelseadistatud keskkonnamuutujate kasutamine"

#. i18n: file: kproxydlg.ui:133
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbEnvSetup)
#: rc.cpp:353
msgid "Show the proxy environment variable configuration dialog."
msgstr "Puhverserveri keskkonnamuutuja seadistamise dialoogi näitamine."

#. i18n: file: kproxydlg.ui:136
#. i18n: ectx: property (text), widget (QPushButton, pbEnvSetup)
#. i18n: file: kproxydlg.ui:175
#. i18n: ectx: property (text), widget (QPushButton, pbManSetup)
#: rc.cpp:356 rc.cpp:368
msgid "Setup..."
msgstr "Seadistus..."

#. i18n: file: kproxydlg.ui:159
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbManual)
#: rc.cpp:359
msgid "Manually enter proxy server configuration information."
msgstr "Võimalus käsitsi sisestada puhverserveri seadistuste info."

#. i18n: file: kproxydlg.ui:162
#. i18n: ectx: property (text), widget (QRadioButton, rbManual)
#: rc.cpp:362
msgid "&Manually specify the proxy settings"
msgstr "Käsitsi &määratud puhverserveri seadistused"

#. i18n: file: kproxydlg.ui:172
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbManSetup)
#: rc.cpp:365
msgid "Show the manual proxy configuration dialog."
msgstr "Näitab puhverserveri käsitsi seadistamise dialoogi."

#. i18n: file: kproxydlg.ui:190
#. i18n: ectx: property (title), widget (QGroupBox, gbAuth)
#: rc.cpp:371
msgid "Authori&zation"
msgstr "Autori&seerimine"

#. i18n: file: kproxydlg.ui:196
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbPrompt)
#: rc.cpp:374
msgid "Prompt for login information whenever it is required."
msgstr "Kui vaja, siis küsitakse kasutajanime ja parooli."

#. i18n: file: kproxydlg.ui:199
#. i18n: ectx: property (text), widget (QRadioButton, rbPrompt)
#: rc.cpp:377
msgid "Prompt as &needed"
msgstr "&Vajaduse korral küsitakse"

#. i18n: file: kproxydlg.ui:217
#. i18n: ectx: property (toolTip), widget (QRadioButton, rbPresetLogin)
#: rc.cpp:380
msgid "Use this login information."
msgstr "Kasutatakse järgnevat sisselogimisinfot."

#. i18n: file: kproxydlg.ui:220
#. i18n: ectx: property (whatsThis), widget (QRadioButton, rbPresetLogin)
#: rc.cpp:383
msgid "Use information specified here to login into proxy servers as needed."
msgstr ""
"Kui vaja, kasutatakse puhverserverisse sisselogimiseks alltoodud infot."

#. i18n: file: kproxydlg.ui:223
#. i18n: ectx: property (text), widget (QRadioButton, rbPresetLogin)
#: rc.cpp:386
msgid "Username:"
msgstr "Kasutajanimi:"

#. i18n: file: kproxydlg.ui:233
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leUsername)
#: rc.cpp:389
msgid "Login name."
msgstr "Kasutajanimi."

#. i18n: file: kproxydlg.ui:243
#. i18n: ectx: property (whatsThis), widget (QLabel, lbPassword)
#. i18n: file: kproxydlg.ui:262
#. i18n: ectx: property (whatsThis), widget (KLineEdit, lePassword)
#: rc.cpp:392 rc.cpp:398
msgid "Login password."
msgstr "Parool."

#. i18n: file: kproxydlg.ui:246
#. i18n: ectx: property (text), widget (QLabel, lbPassword)
#: rc.cpp:395
msgid "Password:"
msgstr "Parool:"

#. i18n: file: kproxydlg.ui:280
#. i18n: ectx: property (title), widget (QGroupBox, gbOptions)
#: rc.cpp:401
msgid "O&ptions"
msgstr "Vali&kud"

#. i18n: file: kproxydlg.ui:289
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbPersConn)
#: rc.cpp:404
msgid ""
"<qt>\n"
"Use persistent proxy connection.<p>\n"
"Although a persistent proxy connection is faster, note that it only works "
"correctly with proxies that are fully HTTP 1.1 compliant. Do <b>not</b> use "
"this option in combination with non-HTTP 1.1 compliant proxy servers such as "
"JunkBuster and WWWOfle.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Puhverserveri püsiühenduste kasutamine.</p>\n"
"Arvesta, et kuigi püsiv puhverserveri ühendus on kiirem, toimib see "
"korralikult ainult sellise puhverserveri korral, mis vastab täielikult HTTP "
"1.1 tingimustele. <b>ÄRA</b> kasuta seda võimalust puhverserverite puhul, "
"mis ei ühildu HTTP 1.1-ga (näiteks JunkBuster ja WWWOfle).\n"
"</qt>"

#. i18n: file: kproxydlg.ui:292
#. i18n: ectx: property (text), widget (QCheckBox, cbPersConn)
#: rc.cpp:410
msgid "Use persistent connections to proxy"
msgstr "Puhverserveri püsiühenduste kasutamine"

#. i18n: file: manualproxy.ui:16
#. i18n: ectx: property (title), widget (QGroupBox, gbServers)
#: rc.cpp:413
msgid "Ser&vers"
msgstr "Ser&verid"

#. i18n: file: manualproxy.ui:79
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leHttp)
#: rc.cpp:425
msgid "Enter the address of the HTTP proxy server."
msgstr "Sisesta siia HTTP puhverserveri aadress."

#. i18n: file: manualproxy.ui:86
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leHttps)
#: rc.cpp:428
msgid "Enter the address of the HTTPS proxy server."
msgstr "Sisesta siia HTTPS proxy serveri aadress."

#. i18n: file: manualproxy.ui:93
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leFtp)
#: rc.cpp:431
msgid "Enter the address of the FTP proxy server."
msgstr "Sisesta siia FTP puhverserveri aadress."

#. i18n: file: manualproxy.ui:100
#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, sbFtp)
#: rc.cpp:434
msgid ""
"Enter the port number of the FTP proxy server. Default 8080. Another common "
"value is 3128."
msgstr ""
"Sisesta siia FTP puhverserveri port. Vaikeväärtus on 8080. Teine tavaline "
"väärtus võib olla 3128."

#. i18n: file: manualproxy.ui:110
#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, sbHttps)
#. i18n: file: manualproxy.ui:126
#. i18n: ectx: property (whatsThis), widget (KIntSpinBox, sbHttp)
#: rc.cpp:437 rc.cpp:440
msgid ""
"Enter the port number of the HTTP proxy server. Default is 8080. Another "
"common value is 3128."
msgstr ""
"Sisesta siia HTTP puhverserveri port. Vaikeväärtus on 8080. Teine tavaline "
"väärtus võib olla 3128."

#. i18n: file: manualproxy.ui:136
#. i18n: ectx: property (text), widget (QCheckBox, cbSameProxy)
#: rc.cpp:443
msgid "&Use the same proxy server for all protocols"
msgstr "Kõigi protokollide puhul kas&utatakse sama puhverserverit"

#. i18n: file: manualproxy.ui:153
#. i18n: ectx: property (title), widget (QGroupBox, gbExceptions)
#: rc.cpp:446
msgid "E&xceptions"
msgstr "E&randid"

#. i18n: file: manualproxy.ui:161
#. i18n: ectx: property (whatsThis), widget (QCheckBox, cbReverseProxy)
#: rc.cpp:449
msgid ""
"<qt>\n"
"Reverse the use of the exception list. Checking this box will result in the "
"proxy servers being used only when the requested URL matches one of the "
"addresses listed here.<p>This feature is useful if all you want or need is "
"to use a proxy server  for a few specific sites.<p>If you have more complex "
"requirements you might want to use a configuration script.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Lülita see valikukast sisse erandite nimekirja peapeale pööramiseks, st. "
"selle kasti märkimisega kasutatakse puhverservereid ainult juhul, kui "
"soovitud URL sobib kokku mõne siinloetletud aadressiga.<p>See võimalus on "
"kasulik, kui soovid kasutada või pead kasutama puhverserverit ainult mõne "
"konkreetse saidi puhul.<p>Kui sinu nõuded on spetsiifilisemad, võiksid "
"kasutada seadistusskripti.\n"
"</qt>"

#. i18n: file: manualproxy.ui:164
#. i18n: ectx: property (text), widget (QCheckBox, cbReverseProxy)
#: rc.cpp:454
msgid "Use proxy only for entries in this list"
msgstr "Puhverserverit kasutatakse ainult nimekirjas olevate kirjete puhul"

#. i18n: file: manualproxy.ui:188
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbDeleteAll)
#: rc.cpp:457
msgid "Remove all proxy exception addresses from the list."
msgstr "Kustutab kõik puhverserveri erandite aadressid nimekirjast."

#. i18n: file: manualproxy.ui:191
#. i18n: ectx: property (text), widget (QPushButton, pbDeleteAll)
#: rc.cpp:460
msgid "D&elete All"
msgstr "Ku&stuta kõik"

#. i18n: file: manualproxy.ui:201
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbDelete)
#: rc.cpp:463
msgid "Remove the selected proxy exception address from the list."
msgstr "Kustutab valitud puhverserveri erandi aadressi nimekirjast."

#. i18n: file: manualproxy.ui:204
#. i18n: ectx: property (text), widget (QPushButton, pbDelete)
#: rc.cpp:466
msgid "De&lete"
msgstr "&Kustuta"

#. i18n: file: manualproxy.ui:211
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbNew)
#: rc.cpp:469
msgid "Add new proxy exception address to the list."
msgstr "Lisab uue puhverserveri erandi aadressi nimekirja."

#. i18n: file: manualproxy.ui:224
#. i18n: ectx: property (whatsThis), widget (QPushButton, pbChange)
#: rc.cpp:475
msgid "Change the selected proxy exception address."
msgstr "Võimalus muuta valitud puhverserveri erandi aadressi."

#. i18n: file: manualproxy.ui:227
#. i18n: ectx: property (text), widget (QPushButton, pbChange)
#: rc.cpp:478
msgid "C&hange..."
msgstr "&Muuda..."

#. i18n: file: policydlg.ui:18
#. i18n: ectx: property (whatsThis), widget (QLabel, lbDomain)
#. i18n: file: policydlg.ui:36
#. i18n: ectx: property (whatsThis), widget (KLineEdit, leDomain)
#: rc.cpp:481 rc.cpp:489
msgid ""
"<qt>\n"
"Enter the host or domain to which this policy applies, e.g. <b>www.kde.org</"
"b> or <b>.kde.org</b>.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Sisesta siia saidi või domeeni nimi, millele reeglit rakendatakse. Näiteks "
"<b>www.kde.org</b> või <b>.kde.org</b>.\n"
"</qt>"

#. i18n: file: policydlg.ui:21
#. i18n: ectx: property (text), widget (QLabel, lbDomain)
#: rc.cpp:486
msgid "&Domain name:"
msgstr "&Domeeni nimi:"

#. i18n: file: policydlg.ui:50
#. i18n: ectx: property (whatsThis), widget (QLabel, lbPolicy)
#. i18n: file: policydlg.ui:73
#. i18n: ectx: property (whatsThis), widget (KComboBox, cbPolicy)
#: rc.cpp:494 rc.cpp:507
msgid ""
"<qt>\n"
"Select the desired policy:\n"
"<ul>\n"
"<li><b>Accept</b> - Allows this site to set cookies</li>\n"
"<li><b>Reject</b> - Refuse all cookies sent from this site</li>\n"
"<li><b>Ask</b> - Prompt when cookies are received from this site</li>\n"
"</ul>\n"
"</qt>"
msgstr ""
"<qt>\n"
"Vali soovitud reegel:\n"
"<ul>\n"
"<li><b>Aktsepteeri</b> - Lubab sellele saidile küpsiste seadmise</li>\n"
"<li><b>Keeldu</b> - Kõigist sellest saidist saadetud küpsistest keeldutakse</"
"li>\n"
"<li><b>Küsi</b> - Kui sellest saidist küpsis vastu võetakse, küsitakse "
"kasutajalt enne aktsepteerimist kinnitust</li>\n"
"</ul>\n"
"</qt>"

#. i18n: file: policydlg.ui:53
#. i18n: ectx: property (text), widget (QLabel, lbPolicy)
#: rc.cpp:504
msgid "&Policy:"
msgstr "&Reegel:"

#. i18n: file: policydlg.ui:77
#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: rc.cpp:517
msgid "Accept"
msgstr "Aktsepteeri"

#. i18n: file: policydlg.ui:82
#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: rc.cpp:520
msgid "Reject"
msgstr "Keeldu"

#. i18n: file: policydlg.ui:87
#. i18n: ectx: property (text), item, widget (KComboBox, cbPolicy)
#: rc.cpp:523
msgid "Ask"
msgstr "Küsi"

#. i18n: file: useragentdlg.ui:16
#. i18n: ectx: property (whatsThis), widget (QWidget, UserAgentUI)
#: rc.cpp:526
msgid ""
"<qt>\n"
"Here you can modify the default browser-identification text or set a site "
"<code>(eg. www.kde.org)</code> or a domain <code>(eg. kde.org)</code> "
"specific identification text.<p>\n"
"To add a new site-specific identification text, click the <code>New</code> "
"button and supply the necessary information. To change an existing site-"
"specific entry, click on the <code>Change</code> button. The <code>Delete</"
"code> button will remove the selected site-specific identification text, "
"causing the default setting to be used for that site or domain.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Siin saab muuta brauseri identifikaatori vaikestringi ja/või seada saidile "
"<code>(nt. www.kde.org)</code> või domeenile <code>(nt. kde.org)</code> "
"spetsiifilise identifikaatori.<p>\n"
"Uue identifikaatori lisamiseks klõpsa lihtsalt nupule <code>Uus</code> ning "
"sisesta vajalik info. Olemasoleva saidipõhise kirje muutmiseks klõpsa nupule "
"<code>Muuda</code>. Nupp <code>Kustuta</code> eemaldab valitud reegli. "
"Tulemuseks on see, et saidile või domeenile rakendatakse edaspidi "
"vaikereeglit.\n"
"</qt>"

#. i18n: file: useragentdlg.ui:26
#. i18n: ectx: property (whatsThis), widget (QCheckBox, sendUACheckBox)
#: rc.cpp:532
msgid ""
"<qt>\n"
"Send the browser identification to web sites.<p>\n"
"<u>NOTE:</u> Many sites rely on this information to display pages properly, "
"hence, it is highly recommended that you do not totally disable this feature "
"but rather customize it.<p>\n"
"By default, only minimal identification information is sent to remote sites. "
"The identification text that will be sent is shown below.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Kui see valik on välja lülitatud, ei saadeta saitidele, mida sa külastad, "
"sinu brauseri kohta mingit infot.<p>\n"
"<u>MÄRKUS:</u> paljud saidid toetuvad sellele infole, et lehekülgi "
"korrektselt näidata ning seetõttu on väga soovitav, et sa selle info "
"saatmist päris ära ei keelaks, vaid pigem kohandaksid.</p>\n"
"Saitidele saadetakse ainult allpool <b>rasvases kirjas</b> toodud minimaalne "
"info.\n"
"</qt>"

#. i18n: file: useragentdlg.ui:29
#. i18n: ectx: property (text), widget (QCheckBox, sendUACheckBox)
#: rc.cpp:539
msgid "&Send identification"
msgstr "Brauseri &identifikaatori saatmine"

#. i18n: file: useragentdlg.ui:42
#. i18n: ectx: property (whatsThis), widget (QGroupBox, defaultIdGroupBox)
#: rc.cpp:542
msgid ""
"The browser identification text sent to the sites you visit. Use the "
"provided options to customize it."
msgstr ""
"Brauseri identifitseerimise tekst, mis saadetakse külastatavatele "
"lehekülgedele. Siin pakutud võimalustega on seda võimalik kohendada."

#. i18n: file: useragentdlg.ui:45
#. i18n: ectx: property (title), widget (QGroupBox, defaultIdGroupBox)
#: rc.cpp:545
msgid "Default Identification"
msgstr "Vaikeidentifikaator"

#. i18n: file: useragentdlg.ui:57
#. i18n: ectx: property (whatsThis), widget (KSqueezedTextLabel, defaultIdLineEdit)
#: rc.cpp:548
msgid ""
"The browser identification text sent to the sites you visit. You can "
"customize it using the options provided below."
msgstr ""
"Veebilehitseja identifitseerimise tekst, mis saadetakse külastatavatele "
"lehekülgedele. Allpool toodud valikuid kasutades on võimalik seda ka muuta."

#. i18n: file: useragentdlg.ui:70
#. i18n: ectx: property (whatsThis), widget (QCheckBox, osNameCheckBox)
#: rc.cpp:552
msgid ""
"Includes your operating system's name in the browser identification text."
msgstr "Lisab identifikaatorile operatsioonisüsteemi nime."

#. i18n: file: useragentdlg.ui:73
#. i18n: ectx: property (text), widget (QCheckBox, osNameCheckBox)
#: rc.cpp:555
msgid "Add operating s&ystem name"
msgstr "&Operatsioonisüsteemi nimi"

#. i18n: file: useragentdlg.ui:101
#. i18n: ectx: property (whatsThis), widget (QCheckBox, osVersionCheckBox)
#: rc.cpp:558
msgid ""
"Includes your operating system's version number in the browser "
"identification text."
msgstr "Lisab identifikaatorile operatsioonisüsteemi versiooni numbri."

#. i18n: file: useragentdlg.ui:104
#. i18n: ectx: property (text), widget (QCheckBox, osVersionCheckBox)
#: rc.cpp:561
msgid "Add operating system &version"
msgstr "Operatsioonisüsteemi v&ersioon"

#. i18n: file: useragentdlg.ui:113
#. i18n: ectx: property (whatsThis), widget (QCheckBox, platformCheckBox)
#: rc.cpp:564
msgid "Includes your platform type in the browser identification text"
msgstr "Lisab identifikaatorile platvormi tüübi."

#. i18n: file: useragentdlg.ui:116
#. i18n: ectx: property (text), widget (QCheckBox, platformCheckBox)
#: rc.cpp:567
msgid "Add &platform name"
msgstr "&Platvormi nimi"

#. i18n: file: useragentdlg.ui:123
#. i18n: ectx: property (whatsThis), widget (QCheckBox, processorTypeCheckBox)
#: rc.cpp:570
msgid "Includes your machine's CPU type in the browser identification text."
msgstr "Lisab identifikaatorile arvuti protsessori tüübi."

#. i18n: file: useragentdlg.ui:126
#. i18n: ectx: property (text), widget (QCheckBox, processorTypeCheckBox)
#: rc.cpp:573
msgid "Add &machine (processor) type"
msgstr "&Masina (protsessori) tüüp"

#. i18n: file: useragentdlg.ui:133
#. i18n: ectx: property (whatsThis), widget (QCheckBox, languageCheckBox)
#: rc.cpp:576
msgid ""
"Includes your language settings in the browser identification text to obtain "
"localized versions of the page."
msgstr ""
"Lisab identifikaatorile keele eelistused, et hankida lehekülg sinu keeles."

#. i18n: file: useragentdlg.ui:136
#. i18n: ectx: property (text), widget (QCheckBox, languageCheckBox)
#: rc.cpp:579
msgid "Add lang&uage information"
msgstr "Kee&le eelistused"

#. i18n: file: useragentdlg.ui:149
#. i18n: ectx: property (title), widget (QGroupBox, domainPolicyGroupBox)
#: rc.cpp:582
msgid "Site Specific Identification"
msgstr "Saidipõhine identifitseerimine"

#. i18n: file: useragentdlg.ui:162
#. i18n: ectx: property (text), widget (QTreeWidget, sitePolicyTreeWidget)
#: rc.cpp:585
msgid "Site Name"
msgstr "Saidi nimi"

#. i18n: file: useragentdlg.ui:167
#. i18n: ectx: property (text), widget (QTreeWidget, sitePolicyTreeWidget)
#: rc.cpp:588
msgid "Identification"
msgstr "Identifitseerimine"

#. i18n: file: useragentdlg.ui:172
#. i18n: ectx: property (text), widget (QTreeWidget, sitePolicyTreeWidget)
#: rc.cpp:591
msgid "User Agent"
msgstr "Identifikaator"

#. i18n: file: useragentdlg.ui:185
#. i18n: ectx: property (whatsThis), widget (KPushButton, newButton)
#: rc.cpp:594
msgid "Add new identification text for a site."
msgstr "Saidile uue identifikaatori lisamine."

#. i18n: file: useragentdlg.ui:195
#. i18n: ectx: property (whatsThis), widget (KPushButton, changeButton)
#: rc.cpp:600
msgid "Change the selected identifier text."
msgstr "Valitud identifikaatori muutmine."

#. i18n: file: useragentdlg.ui:205
#. i18n: ectx: property (whatsThis), widget (KPushButton, deleteButton)
#: rc.cpp:606
msgid "Delete the selected identifier text."
msgstr "Valitud identifikaatori kustutamine."

#. i18n: file: useragentdlg.ui:215
#. i18n: ectx: property (whatsThis), widget (KPushButton, deleteAllButton)
#: rc.cpp:612
msgid "Delete all identifiers."
msgstr "Kõigi identifikaatorite kustutamine."

#. i18n: file: useragentselectordlg.ui:19
#. i18n: ectx: property (whatsThis), widget (QLabel, siteLabel)
#. i18n: file: useragentselectordlg.ui:38
#. i18n: ectx: property (whatsThis), widget (KLineEdit, siteLineEdit)
#: rc.cpp:618 rc.cpp:627
msgid ""
"<qt>\n"
"Enter the site or domain name where a fake browser identification should be "
"used.<p>\n"
"<u>NOTE:</u> Wildcard syntax such as \\\"*,?\\\" is NOT allowed: instead, "
"use the top level address of a site to make generic matches; for example, if "
"you want all KDE sites to receive a fake browser identification, you would "
"enter <code>kde.org</code> - the fake identity would then be sent to any KDE "
"site that ends with <code>kde.org</code>.</p>\n"
"</qt>"
msgstr ""
"<qt>\n"
"Sisesta saidi või domeeni nimi, mille puhul soovid kasutada võltsidentiteeti."
"<p>\n"
"<u>MÄRKUS:</u> metamärkide kasutamine, nt. \\\"*,?\\\" EI OLE lubatud. Selle "
"asemel sisesta lihtsalt aadressi ühisosa, et kaasata kõiki selle ühisosa all "
"olevaid saite. Kui soovid näiteks, et kõik KDE saidid saaksid "
"võltsidentiteedi, sisesta siia lihtsalt <code>kde.org</code> - sel juhul "
"saadetakse võltsidentiteet kõigile KDE saitidele, mille lõpus seisab "
"<code>kde.org</code>.</p>\n"
"</qt>"

#. i18n: file: useragentselectordlg.ui:22
#. i18n: ectx: property (text), widget (QLabel, siteLabel)
#: rc.cpp:624
msgid "&When browsing the following site:"
msgstr "Kui ühendus luuakse järgmise sai&diga:"

#. i18n: file: useragentselectordlg.ui:47
#. i18n: ectx: property (whatsThis), widget (QLabel, aliasLabel)
#. i18n: file: useragentselectordlg.ui:65
#. i18n: ectx: property (whatsThis), widget (KComboBox, aliasComboBox)
#: rc.cpp:633 rc.cpp:641
msgid ""
"<qt>\n"
"Select the browser identification to use whenever contacting the site you "
"specified above.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Vali brauseri identifikaator, mida kasutatakse ülaloleva saidi või domeeni "
"külastamisel.\n"
"</qt>"

#. i18n: file: useragentselectordlg.ui:50
#. i18n: ectx: property (text), widget (QLabel, aliasLabel)
#: rc.cpp:638
msgid "&Use the following identification:"
msgstr "Kas&utatakse järgnevat identiteeti:"

#. i18n: file: useragentselectordlg.ui:74
#. i18n: ectx: property (whatsThis), widget (QLabel, identityLabel)
#. i18n: file: useragentselectordlg.ui:89
#. i18n: ectx: property (whatsThis), widget (KLineEdit, identityLineEdit)
#: rc.cpp:646 rc.cpp:654
msgid ""
"<qt>\n"
"The actual browser identification text that will be sent to the remote "
"machine.\n"
"</qt>"
msgstr ""
"<qt>\n"
"Tegelik brauseri identifikaator, mis saadetakse võrgumasinale.\n"
"</qt>"

#. i18n: file: useragentselectordlg.ui:77
#. i18n: ectx: property (text), widget (QLabel, identityLabel)
#: rc.cpp:651
msgid "Real identification:"
msgstr "Tegelik identifikaator:"

#. i18n: file: kio_ftprc.kcfg:10
#. i18n: ectx: label, entry (DisablePassiveMode), group (DesktopIcons)
#: rc.cpp:659
msgid "Disable Passive FTP"
msgstr "Passiivse FTP keelamine"

#. i18n: file: kio_ftprc.kcfg:11
#. i18n: ectx: whatsthis, entry (DisablePassiveMode), group (DesktopIcons)
#: rc.cpp:662
msgid ""
"When FTP connections are passive the client connects to the server, instead "
"of the other way round, so firewalls do not block the connection; old FTP "
"servers may not support Passive FTP though."
msgstr ""
"Kui FTP ühendus on passiivne, võtab klient ühendust serveriga, mitte "
"vastupidi ning sel juhul ei ole tulemüürid takistuseks. Siiski ei pruugi "
"vanemad FTP serverid passiivset FTP-d toetada."

#. i18n: file: kio_ftprc.kcfg:16
#. i18n: ectx: label, entry (MarkPartial), group (DesktopIcons)
#: rc.cpp:665
msgid "Mark partially uploaded files"
msgstr "Märgitakse osaliselt üleslaaditud failid"

#. i18n: file: kio_ftprc.kcfg:17
#. i18n: ectx: whatsthis, entry (MarkPartial), group (DesktopIcons)
#: rc.cpp:668
msgid ""
"While a file is being uploaded its extension is \".part\". When fully "
"uploaded it is renamed to its real name."
msgstr ""
"Faili üleslaadimisel on selle laiendiks \"*.part\". Pärast täielikku "
"üleslaadimist saab fail endale oma algse nime tagasi."

#: smbrodlg.cpp:46
msgid "These settings apply to network browsing only."
msgstr "Need seadistused rakenduvad ainult võrgu lehitsemisele."

#: smbrodlg.cpp:50
msgid "Default user name:"
msgstr "Kasutajanimi vaikimisi:"

#: smbrodlg.cpp:58
msgid "Default password:"
msgstr "Parool vaikimisi:"

#: smbrodlg.cpp:177
msgid ""
"<p><h1>Windows Shares</h1>Konqueror is able to access shared Microsoft "
"Windows file systems, if properly configured. If there is a specific "
"computer from which you want to browse, fill in the <em>Browse server</em> "
"field. This is mandatory if you are not running Samba locally. The "
"<em>Broadcast address</em> and <em>WINS address</em> fields will also be "
"available, if you use the native code, or the location of the 'smb.conf' "
"file from which the options are read, when using Samba. In any case, the "
"broadcast address (interfaces in smb.conf) must be set up if it is guessed "
"incorrectly or you have multiple cards. A WINS server usually improves "
"performance, and reduces the network load a lot.</p><p>The bindings are used "
"to assign a default user for a given server, possibly with the corresponding "
"password, or for accessing specific shares. If you choose to, new bindings "
"will be created for logins and shares accessed during browsing. You can edit "
"all of them from here. Passwords will be stored locally, and scrambled so as "
"to render them unreadable to the human eye. For security reasons, you may "
"not want to do that, as entries with passwords are clearly indicated as such."
"</p>"
msgstr ""
"<p><h1>Windowsi ressursid</h1>Konqueror on võimeline ligi pääsema Windowsi "
"jagatud ressurssidele, kui ta on õigesti seadistatud. Kui su võrgus on "
"olemas kindel arvuti, millest saad lehitsemise infot, täida väli "
"<em>Lehitsemise server</em>. See on kohustuslik, kui sinu arvutis ei jookse "
"Samba. Väljad <em>Üldleviaadress</em> ja <em>WINS aadress</em> on samuti "
"võimalik täita, vastasel juhul (kui kasutad Sambat) loetakse need valikud "
"failist 'smb.conf'. Igal juhul peab üldleviaadress olema paika pandud "
"(liidesed smb.conf'is), kui selle väärtust ei arvata ära või kui sul on mitu "
"võrgukaarti. WINS server suurendab tavaliselt kiirust ning vähendab kõvasti "
"võrgu koormust.</p><p>Seoseid kasutatakse omistamaks konkreetsele serverile "
"vaikimisi kasutajat (ka koos parooliga) või spetsiifilistele ressurssidele "
"ligipääsuks. Kui sa tahad, siis luuakse uusi seoseid lehitsemise ja "
"sisselogimise ajal. Kõiki neid saab siin redigeerida. Paroolid säilitatakse "
"kohalikul kettal ja skrambleeritakse, mis muudab nad inimsilmale "
"loetamatuks. Turvakaalutlustel ei pruugi sa sellist käitumist lubada.</p>"

#: useragentdlg.cpp:80
msgid "Add Identification"
msgstr "Lisa identifikaator"

#: useragentdlg.cpp:154
msgid "Modify Identification"
msgstr "Muuda identifikaatorit"

#: useragentdlg.cpp:209
#, kde-format
msgid ""
"<qt><center>Found an existing identification for<br/><b>%1</b><br/>Do you "
"want to replace it?</center></qt>"
msgstr ""
"<qt><center>Domeeni/saidi <b>%1</b> jaoks on identifikaator juba olemas. Kas "
"soovid selle asendada?</center></qt>"

#: useragentdlg.cpp:214
msgid "Duplicate Identification"
msgstr "Topeltidentifikaator"

#: useragentdlg.cpp:396
msgid ""
"<p><h1>Browser Identification</h1> The browser-identification module allows "
"you to have full control over how Konqueror will identify itself to web "
"sites you browse.</p><p>This ability to fake identification is necessary "
"because some web sites do not display properly when they detect that they "
"are not talking to current versions of either Netscape Navigator or Internet "
"Explorer, even if the browser actually supports all the necessary features "
"to render those pages properly. For such sites, you can use this feature to "
"try to browse them. Please understand that this might not always work, since "
"such sites might be using non-standard web protocols and or specifications.</"
"p><p><u>NOTE:</u> To obtain specific help on a particular section of the "
"dialog box, simply click on the quick help button on the window title bar, "
"then click on the section for which you are seeking help.</p>"
msgstr ""
"<p><h1>Brauseri identifikaator</h1>Brauseri identifikaatori moodul võimaldab "
"sulle täieliku kontrolli selle üle, kuidas Konqueror teatab endast Interneti "
"saitidele.</p><p>Võimalus saitidele valetada või võltsida identiteeti on "
"vajalik, kuna mõned veebisaidid ei näita sisu korrektselt, kui nad saavad "
"aru, et brauseriks ei ole Netscape Navigatori või IE viimane versioon, isegi "
"siis, kui \"tundmatu brauser\" toetab kõiki vajalike standardeid, et neid "
"lehti korrektselt näidata. Seetõttu on vajalik sellistele "
"vaikeidentifikaatori saatmise asemel kasutada mingit muud, lisades nimekirja "
"saidi- või domeenipõhise kirje.</p><p><u>MÄRKUS:</u> mingi konkreetse "
"sektsiooni või dialoogiboksi kohta abiinfo saamiseks klõpsa akna nurgas "
"asuval märgil <b>?</b> ning seejärel sektsioonil, mille kohta abi soovid "
"saada.</p>"

#~ msgid "Domain [Group]"
#~ msgstr "Domeen [grupp]"

#~ msgid "Host [Set By]"
#~ msgstr "Masin [kelle poolt seatud]"

#~ msgid ""
#~ "<h1>Local Network Browsing</h1>Here you setup your <b>\"Network "
#~ "Neighborhood\"</b>. You can use either the LISa daemon and the lan:/ "
#~ "ioslave, or the ResLISa daemon and the rlan:/ ioslave.<br /><br />About "
#~ "the <b>LAN ioslave</b> configuration:<br /> If you select it, the "
#~ "ioslave, <i>if available</i>, will check whether the host supports this "
#~ "service when you open this host. Please note that paranoid people might "
#~ "consider even this to be an attack.<br /><i>Always</i> means that you "
#~ "will always see the links for the services, regardless of whether they "
#~ "are actually offered by the host. <i>Never</i> means that you will never "
#~ "have the links to the services. In both cases you will not contact the "
#~ "host, so nobody will ever regard you as an attacker.<br /><br />More "
#~ "information about <b>LISa</b> can be found at <a href=\"http://lisa-home."
#~ "sourceforge.net\">the LISa Homepage</a> or contact Alexander Neundorf &lt;"
#~ "<a href=\"mailto:neundorf@kde.org\">neundorf@kde.org</a>&gt;."
#~ msgstr ""
#~ "<h1>Kohtvõrgu sirvimine</h1>Siin saad seadistada oma <b>\"võrgunaabrust"
#~ "\"</b>. Kasutada saab kas LISa deemonit ja lan:/ IO moodulit või siis "
#~ "ResLISa deemonit ja rlan:/ IO moodulit.<br /><br /><b>Kohtvõrgu IO "
#~ "mooduli</b> seadistuste kohta:<br /> Kui sa selle valiku sisse lülitad, "
#~ "siis kontrollib IO moodul, <i>kui ta on paigaldatud</i>, kas server, "
#~ "mille poole sa pöördud, toetab sellist teenust. Jäta meelde, et "
#~ "paranoilised inimesed võivad seda võtta rünnakuna.<br /> <i>Alati</i> "
#~ "tähendab, et sulle pakutakse alati viitu teenuste kohta hoolimata "
#~ "sellest, kas server tegelikult neid teenuseid toetab või mitte. <i>Mitte "
#~ "kunagi</i> tähendab, et sulle ei pakuta viitu mitte kunagi. Mõlemal juhul "
#~ "ei proovita serveriga ühendust võtta, seega ei ole ohtu, et keegi võiks "
#~ "sind pidada ründajaks.<br /><br />Täiendavat infot <b>LISa</b> kohta "
#~ "saab  <a href=\"http://lisa-home.sourceforge.net\">LISa koduleheküljelt</"
#~ "a> või siis kirjutades Alexander Neundorfile &lt;<a href=\"mailto:"
#~ "neundorf@kde.org\">neundorf@kde.org</a>&gt;."

#~ msgid "&Windows Shares"
#~ msgstr "&Windowsi jagatud ressursid"

#~ msgid "&LISa Daemon"
#~ msgstr "&LISa deemon"

#~ msgid "lan:/ Iosla&ve"
#~ msgstr "lan:/ IO-moo&dul"

#~ msgctxt "just a placeholder; do not translate"
#~ msgid "KSqueezedTextLabel"
#~ msgstr "KSqueezedTextLabel"

#~ msgid "&Search:"
#~ msgstr "Ot&simine:"

#~ msgid "&Proxy"
#~ msgstr "&Puhverserver"

#~ msgid "&SOCKS"
#~ msgstr "&SOCKS"

#~ msgid "SOCKS"
#~ msgstr "SOCKS"

#~ msgid ""
#~ "Check this to enable SOCKS4 and SOCKS5 support in KDE applications and I/"
#~ "O subsystems."
#~ msgstr ""
#~ "Lülita see valik sisse, et lubada SOCKS4 ja SOCKS5 toetus KDE rakendustes "
#~ "ning IO-moodulites."

#~ msgid "&Enable SOCKS support"
#~ msgstr "SOCKS-i to&etuse lubamine"

#~ msgid "Click here to test SOCKS support."
#~ msgstr "Klõpsa siia, et SOCKS-i tuge testida."

#~ msgid "&Test"
#~ msgstr "&Test"

#~ msgid "SOCKS Implementation"
#~ msgstr "SOCKS-i teostus"

#~ msgid ""
#~ "Select custom if you wish to use an unlisted SOCKS library. Please note "
#~ "that this may not always work as it depends on the API of the library "
#~ "which you specify (below)."
#~ msgstr ""
#~ "Vali muu teek, kui soovid kasutada SOCKS-i teeki, mis ei ole nimekirjas. "
#~ "Arvesta, et see ei pruugi alati töötada, kuna see sõltub teegi API-st, "
#~ "mille pead allpool seadistama."

#~ msgid "Use &custom library"
#~ msgstr "&Muu teegi kasutamine"

#~ msgid "Enter the path to an unsupported SOCKS library."
#~ msgstr "Sisesta  toetamata SOCKS-i teegi otsingutee."

#~ msgid ""
#~ "If you select Autodetect, then KDE will automatically search for an "
#~ "implementation of SOCKS on your computer."
#~ msgstr ""
#~ "Kui sa lubad \"Automaatse valimise\", siis otsib KDE automaatselt SOCKS-i "
#~ "teostust sinu arvutist."

#~ msgid "A&uto detect"
#~ msgstr "A&utomaatne valimine"

#~ msgid "This will force KDE to use NEC SOCKS if it can be found."
#~ msgstr "Sellega sunnid KDE jõuga kasutama NEC SOCKS-i, kui see leitakse."

#~ msgid "&NEC SOCKS"
#~ msgstr "&NEC SOCKS"

#~ msgid "This will force KDE to use Dante if it can be found."
#~ msgstr "Sellega sunnid KDE jõuga kasutama Dantet, kui see leitakse."

#~ msgid "&Dante"
#~ msgstr "&Dante"

#~ msgid ""
#~ "Here you can specify additional directories to search for the SOCKS "
#~ "libraries. /usr/lib, /usr/local/lib, /usr/local/socks5/lib and /opt/"
#~ "socks5/lib are already searched by default."
#~ msgstr ""
#~ "Siin saad määrata lisaks katalooge, millest otsitakse SOCKS-i teeke. "
#~ "Vaikimisi otsitakse kataloogides /usr/lib, /usr/local/lib, /usr/local/"
#~ "socks5/lib ja /opt/socks5/lib."

#~ msgid "Additional Library Search Paths"
#~ msgstr "Muud teegi otsinguteed"

#~ msgctxt "NAME OF TRANSLATORS"
#~ msgid "Your names"
#~ msgstr "Hasso Tepper, Marek Laane"

#~ msgctxt "EMAIL OF TRANSLATORS"
#~ msgid "Your emails"
#~ msgstr "hasso@linux.ee, bald@starman.ee"

#~ msgid "kcmsocks"
#~ msgstr "kcmsocks"

#~ msgid "KDE SOCKS Control Module"
#~ msgstr "KDE SOCKS-i juhtimismoodul"

#~ msgid "(c) 2001 George Staikos"
#~ msgstr "(c) 2001: George Staikos"

#~ msgid "George Staikos"
#~ msgstr "George Staikos"

#~ msgid "These changes will only apply to newly started applications."
#~ msgstr ""
#~ "Need muudatused toimivad ainult pärast seda käivitatud rakendustele."

#~ msgid "SOCKS Support"
#~ msgstr "SOCKS-i toetus"

#~ msgid "Success: SOCKS was found and initialized."
#~ msgstr "Korras: SOCKS leiti ja initsialiseeriti."

#~ msgid "SOCKS could not be loaded."
#~ msgstr "SOCKS-i pole võimalik laadida."

#~ msgid ""
#~ "<h1>SOCKS</h1><p>This module allows you to configure KDE support for a "
#~ "SOCKS server or proxy.</p><p>SOCKS is a protocol to traverse firewalls as "
#~ "described in <a href=\"http://rfc.net/rfc1928.html\">RFC 1928</a>.</p> "
#~ "<p>If you have no idea what this is and if your system administrator does "
#~ "not tell you to use it, leave it disabled.</p>"
#~ msgstr ""
#~ "<h1>SOCKS</h1><p>See moodul võimaldub seadistada KDE toetust SOCKS-i "
#~ "serverile või puhverserverile.</p><p>SOCKS on protokoll, mida kirjeldab "
#~ "<a href=\"http://rfc.net/rfc1928.html\">RFC 1928</a>.</p> <p>Kui sa ei "
#~ "tea, mis see on, ning kui süsteemiadministraator ei ütle sulle, et sa "
#~ "peaksid seda kasutama, siis jäta see valik sisse lülitamata.</p>"

#~ msgid "&Path:"
#~ msgstr "&Otsingutee:"

#~ msgid "This is the list of additional paths that will be searched."
#~ msgstr "See on nimekiri muudest otsinguteedest, mis läbi otsitakse."

#~ msgid "Path"
#~ msgstr "Otsingutee"

#~ msgid "&Add"
#~ msgstr "&Lisa"

#~ msgid "&Remove"
#~ msgstr "&Eemalda"