~ubuntu-branches/ubuntu/oneiric/language-pack-kde-en/oneiric

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
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
# English (Canada) translation for kdebase
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the kdebase package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: kdebase\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-07-12 07:58+0000\n"
"PO-Revision-Date: 2010-04-25 18:16+0000\n"
"Last-Translator: Launchpad Translations Administrators <rosetta@launchpad."
"net>\n"
"Language-Team: English (Canada) <en_CA@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2010-07-13 21:54+0000\n"
"X-Generator: Launchpad (build Unknown)\n"

#: search/searchcriterionselector.cpp:65
msgctxt "@info"
msgid "Remove search option"
msgstr ""

#: search/searchcriterionselector.cpp:165
msgctxt "@label"
msgid "Greater Than"
msgstr ""

#: search/searchcriterionselector.cpp:166
msgctxt "@label"
msgid "Greater Than or Equal to"
msgstr ""

#: search/searchcriterionselector.cpp:167
msgctxt "@label"
msgid "Less Than"
msgstr ""

#: search/searchcriterionselector.cpp:168
msgctxt "@label"
msgid "Less Than or Equal to"
msgstr ""

#: search/searchcriterionselector.cpp:172
msgctxt "@label"
msgid "Anytime"
msgstr ""

#: search/searchcriterionselector.cpp:173
msgctxt "@label"
msgid "Today"
msgstr ""

#: search/searchcriterionselector.cpp:174
msgctxt "@label"
msgid "This Week"
msgstr ""

#: search/searchcriterionselector.cpp:175
msgctxt "@label"
msgid "This Month"
msgstr ""

#: search/searchcriterionselector.cpp:176
msgctxt "@label"
msgid "This Year"
msgstr ""

#: search/searchcriterionselector.cpp:183
msgctxt "@label"
msgid "Date:"
msgstr ""

#: search/searchcriterionselector.cpp:192
msgctxt "@label Any (file size)"
msgid "Any"
msgstr ""

#: search/searchcriterionselector.cpp:196
msgctxt "@label"
msgid "Size:"
msgstr ""

#: search/searchcriterionselector.cpp:205
msgctxt "@label All (tags)"
msgid "All"
msgstr ""

#: search/searchcriterionselector.cpp:206
msgctxt "@label"
msgid "Equal to"
msgstr ""

#: search/searchcriterionselector.cpp:209
msgctxt "@label"
msgid "Not Equal to"
msgstr ""

#: search/searchcriterionselector.cpp:215
msgctxt "@label"
msgid "Tag:"
msgstr ""

#: search/searchcriterionselector.cpp:224
msgctxt "@label Any (rating)"
msgid "Any"
msgstr ""

#: search/searchcriterionselector.cpp:228
msgctxt "@label"
msgid "Rating:"
msgstr ""

#: search/searchcriterionvalue.cpp:130
msgctxt "@label"
msgid "No Tags Available"
msgstr ""

#: search/searchcriterionvalue.cpp:150
msgctxt "@label"
msgid "Byte"
msgstr ""

#: search/searchcriterionvalue.cpp:151
msgctxt "@label"
msgid "KByte"
msgstr ""

#: search/searchcriterionvalue.cpp:152
msgctxt "@label"
msgid "MByte"
msgstr ""

#: search/searchcriterionvalue.cpp:153
msgctxt "@label"
msgid "GByte"
msgstr ""

#: search/searchoptiondialogbox.cpp:32
msgctxt "@label"
msgid "Name:"
msgstr ""

#: search/searchoptiondialogbox.cpp:43
msgctxt "@title:window"
msgid "Save Search Options"
msgstr ""

#: search/searchoptiondialogbox.cpp:46
#: search/dolphinsearchoptionsconfigurator.cpp:140
msgctxt "@action:button"
msgid "Save"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:62
msgctxt "@label"
msgid "Everywhere"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:63
msgctxt "@label"
msgid "From Here"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:69
msgctxt "@label"
msgid "All"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:70
msgctxt "@label"
msgid "Images"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:71
msgctxt "@label"
msgid "Text"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:72
msgctxt "@label"
msgid "Filenames"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:106
msgctxt "@label"
msgid "Search:"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:114
msgctxt "@label"
msgid "What:"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:125
msgctxt "@info"
msgid "Add search option"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:132
msgctxt "@action:button"
msgid "Search"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:133
msgctxt "@info"
msgid "Start searching"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:141
msgctxt "@info"
msgid "Save search options"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:148
msgctxt "@action:button"
msgid "Close"
msgstr ""

#: search/dolphinsearchoptionsconfigurator.cpp:149
msgctxt "@info"
msgid "Close search options"
msgstr ""

#: search/dolphinsearchbox.cpp:65
msgctxt "Tag as in Nepomuk::Tag"
msgid "Tag"
msgstr ""

#: search/dolphinsearchbox.cpp:248
msgctxt "@label:textbox"
msgid "Search..."
msgstr ""

#: dolphincontextmenu.cpp:119
msgctxt "@action:inmenu"
msgid "Empty Trash"
msgstr ""

#: dolphincontextmenu.cpp:125 dolphincontextmenu.cpp:302
msgctxt "@action:inmenu Add current folder to places"
msgid "Add to Places"
msgstr ""

#: dolphincontextmenu.cpp:139
msgctxt "@info"
msgid "Do you really want to empty the Trash? All items will be deleted."
msgstr ""

#: dolphincontextmenu.cpp:143
msgctxt "@action:button"
msgid "Empty Trash"
msgstr ""

#: dolphincontextmenu.cpp:152
msgctxt "@label"
msgid "Trash"
msgstr ""

#: dolphincontextmenu.cpp:168
msgctxt "@action:inmenu"
msgid "Restore"
msgstr ""

#: dolphincontextmenu.cpp:199 dolphinmainwindow.cpp:1363
msgctxt "@title:menu Create new folder, file, link, etc."
msgid "Create New"
msgstr ""

#: dolphincontextmenu.cpp:218
msgctxt "@action:inmenu Add selected folder to places"
msgid "Add to Places"
msgstr ""

#: dolphincontextmenu.cpp:284
msgctxt "@title:menu"
msgid "View Mode"
msgstr ""

#: dolphincontextmenu.cpp:311 panels/folders/treeviewcontextmenu.cpp:112
msgctxt "@action:inmenu"
msgid "Properties"
msgstr ""

#: dolphincontextmenu.cpp:406
msgctxt "@action:inmenu"
msgid "Paste Into Folder"
msgstr ""

#: dolphindirlister.cpp:41
msgctxt "@info:status"
msgid "Unknown error."
msgstr ""

#: dolphinremoteencoding.cpp:53
msgid "Select Remote Charset"
msgstr ""

#: dolphinremoteencoding.cpp:117
msgid "Reload"
msgstr ""

#: dolphinremoteencoding.cpp:118
msgid "Default"
msgstr ""

#: dolphinview.cpp:509
#, kde-format
msgctxt "@info:status"
msgid "<filename>%1</filename> selected"
msgstr ""

#: dolphinview.cpp:510
#, kde-format
msgctxt "@info:status"
msgid "<filename>%1</filename> selected (%2)"
msgstr ""

#: dolphinview.cpp:514
#, kde-format
msgctxt "@info:status"
msgid "1 Folder selected"
msgid_plural "%1 Folders selected"
msgstr[0] ""
msgstr[1] ""

#: dolphinview.cpp:515
#, kde-format
msgctxt "@info:status"
msgid "1 File selected"
msgid_plural "%1 Files selected"
msgstr[0] ""
msgstr[1] ""

#: dolphinview.cpp:517
#, kde-format
msgctxt "@info:status folders, files (size)"
msgid "%1, %2 (%3)"
msgstr ""

#: dolphinview.cpp:520
#, kde-format
msgctxt "@info:status files (size)"
msgid "%1 (%2)"
msgstr ""

#: dolphinview.cpp:1094
msgctxt "@info:status"
msgid "Delete operation completed."
msgstr ""

#: dolphinview.cpp:1180
msgctxt "@info:status"
msgid "The location is empty."
msgstr ""

#: dolphinview.cpp:1182
#, kde-format
msgctxt "@info:status"
msgid "The location '%1' is invalid."
msgstr ""

#: dolphinviewactionhandler.cpp:88
msgctxt "@action"
msgid "Create Folder..."
msgstr ""

#: dolphinviewactionhandler.cpp:96
msgctxt "@action:inmenu File"
msgid "Rename..."
msgstr ""

#: dolphinviewactionhandler.cpp:102
msgctxt "@action:inmenu File"
msgid "Move to Trash"
msgstr ""

#: dolphinviewactionhandler.cpp:110
msgctxt "@action:inmenu File"
msgid "Delete"
msgstr ""

#: dolphinviewactionhandler.cpp:120
msgctxt "@action \"Move to Trash\" for non-local files, etc."
msgid "Delete (using shortcut for Trash)"
msgstr ""

#: dolphinviewactionhandler.cpp:127
msgctxt "@action:inmenu File"
msgid "Properties"
msgstr ""

#: dolphinviewactionhandler.cpp:138
msgctxt "@action:intoolbar"
msgid "View Mode"
msgstr ""

#: dolphinviewactionhandler.cpp:154
msgctxt "@action:intoolbar"
msgid "Preview"
msgstr ""

#: dolphinviewactionhandler.cpp:155
msgctxt "@info"
msgid "Show preview of files and folders"
msgstr ""

#: dolphinviewactionhandler.cpp:160
msgctxt "@action:inmenu Sort"
msgid "Descending"
msgstr ""

#: dolphinviewactionhandler.cpp:164
msgctxt "@action:inmenu Sort"
msgid "Folders First"
msgstr ""

#: dolphinviewactionhandler.cpp:172
msgctxt "@action:inmenu View"
msgid "Sort By"
msgstr ""

#: dolphinviewactionhandler.cpp:187 dolphinviewactionhandler.cpp:220
msgctxt "@action:inmenu View"
msgid "Additional Information"
msgstr ""

#: dolphinviewactionhandler.cpp:194
msgctxt "@action:inmenu View"
msgid "Show in Groups"
msgstr ""

#: dolphinviewactionhandler.cpp:198
msgctxt "@action:inmenu View"
msgid "Show Hidden Files"
msgstr ""

#: dolphinviewactionhandler.cpp:203
msgctxt "@action:inmenu View"
msgid "Adjust View Properties..."
msgstr ""

#: dolphinviewactionhandler.cpp:208
msgctxt "@action:inmenu Tools"
msgid "Find File..."
msgstr ""

#: dolphinviewactionhandler.cpp:245
msgctxt "@action:inmenu Sort By"
msgid "Name"
msgstr ""

#: dolphinviewactionhandler.cpp:427
msgctxt "@action:inmenu View Mode"
msgid "Icons"
msgstr ""

#: dolphinviewactionhandler.cpp:428
msgctxt "@info"
msgid "Icons view mode"
msgstr ""

#: dolphinviewactionhandler.cpp:438
msgctxt "@action:inmenu View Mode"
msgid "Details"
msgstr ""

#: dolphinviewactionhandler.cpp:439
msgctxt "@info"
msgid "Details view mode"
msgstr ""

#: dolphinviewactionhandler.cpp:449
msgctxt "@action:inmenu View Mode"
msgid "Columns"
msgstr ""

#: dolphinviewactionhandler.cpp:450
msgctxt "@info"
msgid "Columns view mode"
msgstr ""

#: additionalinfoaccessor.cpp:99
msgctxt "@label"
msgid "Size"
msgstr ""

#: additionalinfoaccessor.cpp:100
msgctxt "@label"
msgid "Date"
msgstr ""

#: additionalinfoaccessor.cpp:101
msgctxt "@label"
msgid "Permissions"
msgstr ""

#: additionalinfoaccessor.cpp:102
msgctxt "@label"
msgid "Owner"
msgstr ""

#: additionalinfoaccessor.cpp:103
msgctxt "@label"
msgid "Group"
msgstr ""

#: additionalinfoaccessor.cpp:104
msgctxt "@label"
msgid "Type"
msgstr ""

#: additionalinfoaccessor.cpp:105
msgctxt "@label"
msgid "Link Destination"
msgstr ""

#: additionalinfoaccessor.cpp:106
msgctxt "@label"
msgid "Path"
msgstr ""

#: selectiontoggle.cpp:128
msgctxt "@info:tooltip"
msgid "Deselect Item"
msgstr ""

#: selectiontoggle.cpp:129
msgctxt "@info:tooltip"
msgid "Select Item"
msgstr ""

#: dolphinviewcontainer.cpp:284
msgctxt "@info"
msgid "Searching..."
msgstr ""

#: dolphinviewcontainer.cpp:292
msgctxt "@info:progress"
msgid "Loading folder..."
msgstr ""

#: dolphinviewcontainer.cpp:307
msgctxt "@info:status"
msgid "No items found."
msgstr ""

#: dolphinviewcontainer.cpp:403
msgctxt "@info:status"
msgid "Dolphin does not support web pages, the web browser has been launched"
msgstr ""

#: dolphinviewcontainer.cpp:415
msgctxt "@info:status"
msgid "Protocol not supported by Dolphin, Konqueror has been launched"
msgstr ""

#: dolphinviewcontainer.cpp:422
msgctxt "@info:status"
msgid "Invalid protocol"
msgstr ""

#: statusbar/statusbarspaceinfo.cpp:80 statusbar/statusbarspaceinfo.cpp:93
msgctxt "@info:status"
msgid "Unknown size"
msgstr ""

#: statusbar/statusbarspaceinfo.cpp:104
#, kde-format
msgctxt "@info:status Free disk space"
msgid "%1 free"
msgstr ""

#: statusbar/statusbarmessagelabel.cpp:53
msgctxt "@info"
msgid "Close"
msgstr ""

#: statusbar/dolphinstatusbar.cpp:270
msgctxt "@action:inmenu"
msgid "Copy Information Message"
msgstr ""

#: statusbar/dolphinstatusbar.cpp:273
msgctxt "@action:inmenu"
msgid "Copy Error Message"
msgstr ""

#: statusbar/dolphinstatusbar.cpp:280
msgctxt "@action:inmenu"
msgid "Show Zoom Slider"
msgstr ""

#: statusbar/dolphinstatusbar.cpp:284
msgctxt "@action:inmenu"
msgid "Show Space Information"
msgstr ""

#: statusbar/dolphinstatusbar.cpp:373 settings/iconsizegroupbox.cpp:109
#, kde-format
msgctxt "@info:tooltip"
msgid "Size: 1 pixel"
msgid_plural "Size: %1 pixels"
msgstr[0] ""
msgstr[1] ""

#: main.cpp:35
msgctxt "@title"
msgid "Dolphin"
msgstr ""

#: main.cpp:37
msgctxt "@title"
msgid "File Manager"
msgstr ""

#: main.cpp:39
msgctxt "@info:credit"
msgid "(C) 2006-2010 Peter Penz"
msgstr ""

#: main.cpp:41
msgctxt "@info:credit"
msgid "Peter Penz"
msgstr ""

#: main.cpp:42
msgctxt "@info:credit"
msgid "Maintainer and developer"
msgstr ""

#: main.cpp:44
msgctxt "@info:credit"
msgid "David Faure"
msgstr ""

#: main.cpp:45 main.cpp:48 main.cpp:51 main.cpp:54 main.cpp:57 main.cpp:60
msgctxt "@info:credit"
msgid "Developer"
msgstr ""

#: main.cpp:47
msgctxt "@info:credit"
msgid "Aaron J. Seigo"
msgstr ""

#: main.cpp:50
msgctxt "@info:credit"
msgid "Rafael Fernández López"
msgstr ""

#: main.cpp:53
msgctxt "@info:credit"
msgid "Kevin Ottens"
msgstr ""

#: main.cpp:56
msgctxt "@info:credit"
msgid "Holger Freyther"
msgstr ""

#: main.cpp:59
msgctxt "@info:credit"
msgid "Max Blazejak"
msgstr ""

#: main.cpp:62
msgctxt "@info:credit"
msgid "Michael Austin"
msgstr ""

#: main.cpp:63
msgctxt "@info:credit"
msgid "Documentation"
msgstr ""

#: main.cpp:73
msgctxt "@info:shell"
msgid "The files and directories passed as arguments will be selected."
msgstr ""

#: main.cpp:75
msgctxt "@info:shell"
msgid "Document to open"
msgstr ""

#: dolphinpart.cpp:164
msgctxt "@action:inmenu Edit"
msgid "&Edit File Type..."
msgstr ""

#: dolphinpart.cpp:168
msgctxt "@action:inmenu Edit"
msgid "Select Items Matching..."
msgstr ""

#: dolphinpart.cpp:173
msgctxt "@action:inmenu Edit"
msgid "Unselect Items Matching..."
msgstr ""

#: dolphinpart.cpp:179
msgctxt "@action:inmenu Edit"
msgid "Unselect All"
msgstr ""

#: dolphinpart.cpp:183 dolphinmainwindow.cpp:1413
msgctxt "@action:inmenu Edit"
msgid "Invert Selection"
msgstr ""

#: dolphinpart.cpp:196
msgctxt "@action:inmenu Go"
msgid "App&lications"
msgstr ""

#: dolphinpart.cpp:199
msgctxt "@action:inmenu Go"
msgid "&Network Folders"
msgstr ""

#: dolphinpart.cpp:202
msgctxt "@action:inmenu Go"
msgid "Sett&ings"
msgstr ""

#: dolphinpart.cpp:205
msgctxt "@action:inmenu Go"
msgid "Trash"
msgstr ""

#: dolphinpart.cpp:208
msgctxt "@action:inmenu Go"
msgid "Autostart"
msgstr ""

#: dolphinpart.cpp:215
msgctxt "@action:inmenu Tools"
msgid "Open &Terminal"
msgstr ""

#: dolphinpart.cpp:285
msgctxt "@title"
msgid "Dolphin Part"
msgstr ""

#: dolphinpart.cpp:513
msgctxt "@title:window"
msgid "Select"
msgstr ""

#: dolphinpart.cpp:514
msgid "Select all items matching this pattern:"
msgstr ""

#: dolphinpart.cpp:520
msgctxt "@title:window"
msgid "Unselect"
msgstr ""

#: dolphinpart.cpp:521
msgid "Unselect all items matching this pattern:"
msgstr ""

#: versioncontrol/versioncontrolobserver.cpp:188
msgctxt "@info:status"
msgid "Update of version information failed."
msgstr ""

#: versioncontrol/versioncontrolobserver.cpp:241
msgctxt "@info:status"
msgid "Updating version information..."
msgstr ""

#: dolphinmainwindow.cpp:239
msgctxt "@info:status"
msgid "Successfully copied."
msgstr ""

#: dolphinmainwindow.cpp:243
msgctxt "@info:status"
msgid "Successfully moved."
msgstr ""

#: dolphinmainwindow.cpp:247
msgctxt "@info:status"
msgid "Successfully linked."
msgstr ""

#: dolphinmainwindow.cpp:251
msgctxt "@info:status"
msgid "Successfully moved to trash."
msgstr ""

#: dolphinmainwindow.cpp:255
msgctxt "@info:status"
msgid "Successfully renamed."
msgstr ""

#: dolphinmainwindow.cpp:260
msgctxt "@info:status"
msgid "Created folder."
msgstr ""

#: dolphinmainwindow.cpp:366
msgctxt "@info"
msgid "Go back"
msgstr ""

#: dolphinmainwindow.cpp:372
msgctxt "@info"
msgid "Go forward"
msgstr ""

#: dolphinmainwindow.cpp:536
msgctxt "@title:window"
msgid "Confirmation"
msgstr ""

#: dolphinmainwindow.cpp:540
msgid "C&lose Current Tab"
msgstr ""

#: dolphinmainwindow.cpp:548
msgid ""
"You have multiple tabs open in this window, are you sure you want to quit?"
msgstr ""

#: dolphinmainwindow.cpp:550
msgid "Do not ask again"
msgstr ""

#: dolphinmainwindow.cpp:1055
msgctxt "@action:inmenu"
msgid "New Tab"
msgstr ""

#: dolphinmainwindow.cpp:1058
msgctxt "@action:inmenu"
msgid "Detach Tab"
msgstr ""

#: dolphinmainwindow.cpp:1060
msgctxt "@action:inmenu"
msgid "Close Other Tabs"
msgstr ""

#: dolphinmainwindow.cpp:1062
msgctxt "@action:inmenu"
msgid "Close Tab"
msgstr ""

#: dolphinmainwindow.cpp:1370
msgctxt "@action:inmenu File"
msgid "New &Window"
msgstr ""

#: dolphinmainwindow.cpp:1376
msgctxt "@action:inmenu File"
msgid "New Tab"
msgstr ""

#: dolphinmainwindow.cpp:1382
msgctxt "@action:inmenu File"
msgid "Close Tab"
msgstr ""

#: dolphinmainwindow.cpp:1405
msgctxt "@action:inmenu Edit"
msgid "Paste"
msgstr ""

#: dolphinmainwindow.cpp:1408
msgctxt "@action:inmenu Edit"
msgid "Select All"
msgstr ""

#: dolphinmainwindow.cpp:1426
msgctxt "@action:inmenu View"
msgid "Reload"
msgstr ""

#: dolphinmainwindow.cpp:1432
msgctxt "@action:inmenu View"
msgid "Stop"
msgstr ""

#: dolphinmainwindow.cpp:1433
msgctxt "@info"
msgid "Stop loading"
msgstr ""

#: dolphinmainwindow.cpp:1438
msgctxt "@action:inmenu Navigation Bar"
msgid "Editable Location"
msgstr ""

#: dolphinmainwindow.cpp:1443
msgctxt "@action:inmenu Navigation Bar"
msgid "Replace Location"
msgstr ""

#: dolphinmainwindow.cpp:1454
msgid "Recently Closed Tabs"
msgstr ""

#: dolphinmainwindow.cpp:1477
msgctxt "@action:inmenu Tools"
msgid "Show Search Bar"
msgstr ""

#: dolphinmainwindow.cpp:1482
msgctxt "@action:inmenu Tools"
msgid "Show Filter Bar"
msgstr ""

#: dolphinmainwindow.cpp:1488
msgctxt "@action:inmenu Tools"
msgid "Compare Files"
msgstr ""

#: dolphinmainwindow.cpp:1494
msgctxt "@action:inmenu Tools"
msgid "Open Terminal"
msgstr ""

#: dolphinmainwindow.cpp:1513
msgctxt "@action:inmenu"
msgid "Activate Next Tab"
msgstr ""

#: dolphinmainwindow.cpp:1518
msgctxt "@action:inmenu"
msgid "Activate Previous Tab"
msgstr ""

#: dolphinmainwindow.cpp:1524
msgctxt "@action:inmenu"
msgid "Open in New Tab"
msgstr ""

#: dolphinmainwindow.cpp:1529
msgctxt "@action:inmenu"
msgid "Open in New Window"
msgstr ""

#: dolphinmainwindow.cpp:1539
msgctxt "@action:inmenu"
msgid "Search Bar"
msgstr ""

#: dolphinmainwindow.cpp:1547
msgctxt "@title:window"
msgid "Information"
msgstr ""

#: dolphinmainwindow.cpp:1567
msgctxt "@title:window"
msgid "Folders"
msgstr ""

#: dolphinmainwindow.cpp:1585
msgctxt "@title:window Shell terminal"
msgid "Terminal"
msgstr ""

#: dolphinmainwindow.cpp:1612
msgctxt "@title:window"
msgid "Places"
msgstr ""

#: dolphinmainwindow.cpp:1631
msgctxt "@action:inmenu View"
msgid "Panels"
msgstr ""

#: dolphinmainwindow.cpp:1768
msgctxt "@action:intoolbar Close right view"
msgid "Close"
msgstr ""

#: dolphinmainwindow.cpp:1769
msgctxt "@info"
msgid "Close right view"
msgstr ""

#: dolphinmainwindow.cpp:1772
msgctxt "@action:intoolbar Close left view"
msgid "Close"
msgstr ""

#: dolphinmainwindow.cpp:1773
msgctxt "@info"
msgid "Close left view"
msgstr ""

#: dolphinmainwindow.cpp:1777
msgctxt "@action:intoolbar Split view"
msgid "Split"
msgstr ""

#: dolphinmainwindow.cpp:1778
msgctxt "@info"
msgid "Split view"
msgstr ""

#: panels/information/informationpanelcontent.cpp:236
#, kde-format
msgctxt "@info"
msgid "%1 item selected"
msgid_plural "%1 items selected"
msgstr[0] ""
msgstr[1] ""

#: panels/information/informationpanelcontent.cpp:277
msgctxt "@action:inmenu"
msgid "Preview"
msgstr ""

#: panels/information/informationpanelcontent.cpp:282
msgctxt "@action:inmenu"
msgid "Configure..."
msgstr ""

#: panels/information/informationpanelcontent.cpp:299
msgctxt "@label::textbox"
msgid "Select which data should be shown in the information panel."
msgstr ""

#: panels/information/phononwidget.cpp:139
msgid "play"
msgstr ""

#: panels/information/phononwidget.cpp:144
msgid "stop"
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:61
msgctxt "@action:inmenu"
msgid "Cut"
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:65
msgctxt "@action:inmenu"
msgid "Copy"
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:68
msgctxt "@action:inmenu"
msgid "Paste"
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:80
msgctxt "@action:inmenu"
msgid "Rename..."
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:93
msgctxt "@action:inmenu"
msgid "Move to Trash"
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:103
msgctxt "@action:inmenu"
msgid "Delete"
msgstr ""

#: panels/folders/treeviewcontextmenu.cpp:119
msgctxt "@action:inmenu"
msgid "Show Hidden Files"
msgstr ""

#: dolphinmodel.cpp:44
msgctxt "@title:group Name"
msgid "Others"
msgstr ""

#: dolphinmodel.cpp:124
msgctxt "@title::column"
msgid "Link Destination"
msgstr ""

#: dolphinmodel.cpp:126
msgctxt "@title::column"
msgid "Path"
msgstr ""

#: dolphinmodel.cpp:218
msgctxt "@title:group Size"
msgid "Folders"
msgstr ""

#: dolphinmodel.cpp:220
msgctxt "@title:group Size"
msgid "Small"
msgstr ""

#: dolphinmodel.cpp:222
msgctxt "@title:group Size"
msgid "Medium"
msgstr ""

#: dolphinmodel.cpp:224
msgctxt "@title:group Size"
msgid "Big"
msgstr ""

#: dolphinmodel.cpp:259
msgctxt "@title:group Date"
msgid "Today"
msgstr ""

#: dolphinmodel.cpp:260
msgctxt "@title:group Date"
msgid "Yesterday"
msgstr ""

#: dolphinmodel.cpp:261
#, c-format
msgctxt "@title:group The week day name: %A"
msgid "%A"
msgstr ""

#: dolphinmodel.cpp:265
msgctxt "@title:group Date"
msgid "Last Week"
msgstr ""

#: dolphinmodel.cpp:268
msgctxt "@title:group Date"
msgid "Two Weeks Ago"
msgstr ""

#: dolphinmodel.cpp:271
msgctxt "@title:group Date"
msgid "Three Weeks Ago"
msgstr ""

#: dolphinmodel.cpp:275
msgctxt "@title:group Date"
msgid "Earlier this Month"
msgstr ""

#: dolphinmodel.cpp:284
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Yesterday (%B, %Y)"
msgstr ""

#: dolphinmodel.cpp:286
msgctxt ""
"@title:group The week day name: %A, %B is full month name in current locale, "
"and %Y is full year number"
msgid "%A (%B, %Y)"
msgstr ""

#: dolphinmodel.cpp:288
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Last Week (%B, %Y)"
msgstr ""

#: dolphinmodel.cpp:290
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Two Weeks Ago (%B, %Y)"
msgstr ""

#: dolphinmodel.cpp:292
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Three Weeks Ago (%B, %Y)"
msgstr ""

#: dolphinmodel.cpp:294
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Earlier on %B, %Y"
msgstr ""

#: dolphinmodel.cpp:297
msgctxt ""
"@title:group The month and year: %B is full month name in current locale, "
"and %Y is full year number"
msgid "%B, %Y"
msgstr ""

#: dolphinmodel.cpp:312 dolphinmodel.cpp:324 dolphinmodel.cpp:336
msgctxt "@item:intext Access permission, concatenated"
msgid "Read, "
msgstr ""

#: dolphinmodel.cpp:315 dolphinmodel.cpp:327 dolphinmodel.cpp:339
msgctxt "@item:intext Access permission, concatenated"
msgid "Write, "
msgstr ""

#: dolphinmodel.cpp:318 dolphinmodel.cpp:330 dolphinmodel.cpp:342
msgctxt "@item:intext Access permission, concatenated"
msgid "Execute, "
msgstr ""

#: dolphinmodel.cpp:320 dolphinmodel.cpp:332 dolphinmodel.cpp:344
msgctxt "@item:intext Access permission, concatenated"
msgid "Forbidden"
msgstr ""

#: dolphinmodel.cpp:346
#, kde-format
msgctxt "@title:group Files and folders by permissions"
msgid "(User: %1) (Group: %2) (Others: %3)"
msgstr ""

#: filterbar.cpp:41
msgctxt "@info:tooltip"
msgid "Hide Filter Bar"
msgstr ""

#: filterbar.cpp:45
msgctxt "@label:textbox"
msgid "Filter:"
msgstr ""

#: draganddrophelper.cpp:125
msgctxt "@info:status"
msgid "A folder cannot be dropped into itself"
msgstr ""

#: kcm/kcmdolphingeneral.cpp:56 settings/generalsettingspage.cpp:48
msgctxt "@title:tab Behavior settings"
msgid "Behavior"
msgstr ""

#: kcm/kcmdolphingeneral.cpp:61 settings/generalsettingspage.cpp:53
msgctxt "@title:tab Previews settings"
msgid "Previews"
msgstr ""

#: kcm/kcmdolphingeneral.cpp:66 settings/generalsettingspage.cpp:58
msgctxt "@title:tab Context Menu settings"
msgid "Context Menu"
msgstr ""

#: kcm/kcmdolphinviewmodes.cpp:59 settings/viewsettingspage.cpp:46
msgctxt "@title:tab"
msgid "Icons"
msgstr ""

#: kcm/kcmdolphinviewmodes.cpp:64 settings/viewsettingspage.cpp:51
msgctxt "@title:tab"
msgid "Details"
msgstr ""

#: kcm/kcmdolphinviewmodes.cpp:69 settings/viewsettingspage.cpp:56
msgctxt "@title:tab"
msgid "Column"
msgstr ""

#: renamedialog.cpp:41
msgctxt "@title:window"
msgid "Rename Item"
msgstr ""

#: renamedialog.cpp:42
msgctxt "@title:window"
msgid "Rename Items"
msgstr ""

#: renamedialog.cpp:46
msgctxt "@action:button"
msgid "&Rename"
msgstr ""

#: renamedialog.cpp:56
#, kde-format
msgctxt "@label:textbox"
msgid "Rename the item <filename>%1</filename> to:"
msgstr ""

#: renamedialog.cpp:59
msgctxt "@info:status"
msgid "New name #"
msgstr ""

#: renamedialog.cpp:61
#, kde-format
msgctxt "@label:textbox"
msgid "Rename the %1 selected item to:"
msgid_plural "Rename the %1 selected items to:"
msgstr[0] ""
msgstr[1] ""

#: renamedialog.cpp:107
msgctxt "@info"
msgid "(# will be replaced by ascending numbers)"
msgstr ""

#: renamedialog.cpp:122
msgctxt "@info:status"
msgid ""
"The new name is empty. A name with at least one character must be entered."
msgstr ""

#: renamedialog.cpp:125
msgctxt "@info:status"
msgid "The name must contain at least one # character."
msgstr ""

#: settings/statusbarsettingspage.cpp:40
msgctxt "@option:check"
msgid "Show zoom slider"
msgstr ""

#: settings/statusbarsettingspage.cpp:43
msgctxt "@option:check"
msgid "Show space information"
msgstr ""

#: settings/iconsizegroupbox.cpp:35
msgctxt "@title:group"
msgid "Icon Size"
msgstr ""

#: settings/iconsizegroupbox.cpp:39
msgctxt "@label:listbox"
msgid "Default:"
msgstr ""

#: settings/iconsizegroupbox.cpp:46
msgctxt "@label:listbox"
msgid "Preview:"
msgstr ""

#: settings/viewpropsprogressinfo.cpp:49
msgctxt "@title:window"
msgid "Applying View Properties"
msgstr ""

#: settings/viewpropsprogressinfo.cpp:62
#: settings/viewpropsprogressinfo.cpp:109
#, kde-format
msgctxt "@info:progress"
msgid "Counting folders: %1"
msgstr ""

#: settings/viewpropsprogressinfo.cpp:125
#, kde-format
msgctxt "@info:progress"
msgid "Folders: %1"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:45
msgctxt "@title:window"
msgid "Dolphin Preferences"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:53
msgctxt "@title:group"
msgid "Startup"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:60
msgctxt "@title:group"
msgid "View Modes"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:67
msgctxt "@title:group"
msgid "Navigation"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:74
msgctxt "@title:group"
msgid "Services"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:81
msgctxt "@title:group"
msgid "Trash"
msgstr ""

#: settings/dolphinsettingsdialog.cpp:88
msgctxt "@title:group General settings"
msgid "General"
msgstr ""

#: settings/behaviorsettingspage.cpp:63
msgctxt "@title:group"
msgid "View Properties"
msgstr ""

#: settings/behaviorsettingspage.cpp:66
msgctxt "@option:radio"
msgid "Remember view properties for each folder"
msgstr ""

#: settings/behaviorsettingspage.cpp:69
msgctxt "@option:radio"
msgid "Use common view properties for all folders"
msgstr ""

#: settings/behaviorsettingspage.cpp:77
msgctxt "@title:group"
msgid "Ask For Confirmation When"
msgstr ""

#: settings/behaviorsettingspage.cpp:80
msgctxt "@option:check Ask for Confirmation When"
msgid "Moving files or folders to trash"
msgstr ""

#: settings/behaviorsettingspage.cpp:83
msgctxt "@option:check Ask for Confirmation When"
msgid "Deleting files or folders"
msgstr ""

#: settings/behaviorsettingspage.cpp:86
msgctxt "@option:check Ask for Confirmation When"
msgid "Closing windows with multiple tabs"
msgstr ""

#: settings/behaviorsettingspage.cpp:95
msgctxt "@option:check"
msgid "Rename inline"
msgstr ""

#: settings/behaviorsettingspage.cpp:102
msgctxt "@option:check"
msgid "Show tooltips"
msgstr ""

#: settings/behaviorsettingspage.cpp:114
msgctxt "@option:check"
msgid "Show selection marker"
msgstr ""

#: settings/behaviorsettingspage.cpp:118
msgctxt "option:check"
msgid "Natural sorting of items"
msgstr ""

#: settings/behaviorsettingspage.cpp:187
msgctxt "@action:button"
msgid "Configure..."
msgstr ""

#: settings/behaviorsettingspage.cpp:198
msgctxt "@label::textbox"
msgid "Select which data should be shown in the tooltip."
msgstr ""

#: settings/previewssettingspage.cpp:62
msgctxt "@title:group"
msgid "Show previews for"
msgstr ""

#: settings/previewssettingspage.cpp:74
msgctxt "@title:group"
msgid "Do not create previews for"
msgstr ""

#: settings/previewssettingspage.cpp:77
msgctxt "@label Don't create previews for: <Local files above:> XX MByte"
msgid "Local files above:"
msgstr ""

#: settings/previewssettingspage.cpp:87
msgctxt "@label Don't create previews for: <Remote files above:> XX MByte"
msgid "Remote files above:"
msgstr ""

#: settings/navigationsettingspage.cpp:49
msgctxt "@title:group"
msgid "Mouse"
msgstr ""

#: settings/navigationsettingspage.cpp:52
msgctxt "@option:check Mouse Settings"
msgid "Single-click to open files and folders"
msgstr ""

#: settings/navigationsettingspage.cpp:55
msgctxt "@option:check Mouse Settings"
msgid "Double-click to open files and folders"
msgstr ""

#: settings/navigationsettingspage.cpp:62
msgctxt "@option:check"
msgid "Open archives as folder"
msgstr ""

#: settings/navigationsettingspage.cpp:65
msgctxt "option:check"
msgid "Open folders during drag operations"
msgstr ""

#: settings/generalsettingspage.cpp:63
msgctxt "@title:tab Status Bar settings"
msgid "Status Bar"
msgstr ""

#: settings/iconsviewsettingspage.cpp:76
#: settings/detailsviewsettingspage.cpp:68
#: settings/columnviewsettingspage.cpp:68
msgctxt "@title:group"
msgid "Text"
msgstr ""

#: settings/iconsviewsettingspage.cpp:79
#: settings/detailsviewsettingspage.cpp:71
#: settings/columnviewsettingspage.cpp:71
msgctxt "@label:listbox"
msgid "Font:"
msgstr ""

#: settings/iconsviewsettingspage.cpp:83
msgctxt "@label:textbox"
msgid "Number of lines:"
msgstr ""

#: settings/iconsviewsettingspage.cpp:89
#: settings/columnviewsettingspage.cpp:75
msgctxt "@label:listbox"
msgid "Text width:"
msgstr ""

#: settings/iconsviewsettingspage.cpp:91
#: settings/columnviewsettingspage.cpp:77
msgctxt "@item:inlistbox Text width"
msgid "Small"
msgstr ""

#: settings/iconsviewsettingspage.cpp:92
#: settings/columnviewsettingspage.cpp:78
msgctxt "@item:inlistbox Text width"
msgid "Medium"
msgstr ""

#: settings/iconsviewsettingspage.cpp:93
#: settings/columnviewsettingspage.cpp:79
msgctxt "@item:inlistbox Text width"
msgid "Large"
msgstr ""

#: settings/iconsviewsettingspage.cpp:94
#: settings/columnviewsettingspage.cpp:80
msgctxt "@item:inlistbox Text width"
msgid "Huge"
msgstr ""

#: settings/iconsviewsettingspage.cpp:106
msgctxt "@title:group"
msgid "Grid"
msgstr ""

#: settings/iconsviewsettingspage.cpp:109
msgctxt "@label:listbox"
msgid "Arrangement:"
msgstr ""

#: settings/iconsviewsettingspage.cpp:111
msgctxt "@item:inlistbox Arrangement"
msgid "Columns"
msgstr ""

#: settings/iconsviewsettingspage.cpp:112
msgctxt "@item:inlistbox Arrangement"
msgid "Rows"
msgstr ""

#: settings/iconsviewsettingspage.cpp:115
msgctxt "@label:listbox"
msgid "Grid spacing:"
msgstr ""

#: settings/iconsviewsettingspage.cpp:117
msgctxt "@item:inlistbox Grid spacing"
msgid "None"
msgstr ""

#: settings/iconsviewsettingspage.cpp:118
msgctxt "@item:inlistbox Grid spacing"
msgid "Small"
msgstr ""

#: settings/iconsviewsettingspage.cpp:119
msgctxt "@item:inlistbox Grid spacing"
msgid "Medium"
msgstr ""

#: settings/iconsviewsettingspage.cpp:120
msgctxt "@item:inlistbox Grid spacing"
msgid "Large"
msgstr ""

#: settings/servicessettingspage.cpp:55
msgctxt "@label:textbox"
msgid "Select which services should be shown in the context menu."
msgstr ""

#: settings/servicessettingspage.cpp:65
msgctxt "@action:button"
msgid "Download New Services..."
msgstr ""

#: settings/servicessettingspage.cpp:70
msgctxt "@title:group"
msgid "Version Control Systems"
msgstr ""

#: settings/servicessettingspage.cpp:118
msgctxt "@info"
msgid ""
"Dolphin must be restarted to apply the updated version control systems "
"settings."
msgstr ""

#: settings/servicessettingspage.cpp:167
#, kde-format
msgctxt "@item:inmenu"
msgid "%1: %2"
msgstr ""

#: settings/dolphinfontrequester.cpp:40
msgctxt "@item:inlistbox Font"
msgid "System Font"
msgstr ""

#: settings/dolphinfontrequester.cpp:41
msgctxt "@item:inlistbox Font"
msgid "Custom Font"
msgstr ""

#: settings/dolphinfontrequester.cpp:45
msgctxt "@action:button Choose font"
msgid "Choose..."
msgstr ""

#: settings/filemetadataconfigurationdialog.cpp:33
msgctxt "@title:window"
msgid "Configure Shown Data"
msgstr ""

#: settings/filemetadataconfigurationdialog.cpp:39
msgctxt "@label::textbox"
msgid "Select which data should be shown"
msgstr ""

#: settings/detailsviewsettingspage.cpp:80
msgctxt "@option:check"
msgid "Expandable folders"
msgstr ""

#: settings/contextmenusettingspage.cpp:42
msgctxt "@option:check"
msgid "Show 'Delete' command"
msgstr ""

#: settings/contextmenusettingspage.cpp:45
msgctxt "@option:check"
msgid "Show 'Copy To' and 'Move To' commands"
msgstr ""

#: settings/additionalinfodialog.cpp:35
msgctxt "@title:window"
msgid "Additional Information"
msgstr ""

#: settings/additionalinfodialog.cpp:45
msgctxt "@label"
msgid "Select which additional information should be shown."
msgstr ""

#: settings/startupsettingspage.cpp:58
msgctxt "@title:group"
msgid "Home Folder"
msgstr ""

#: settings/startupsettingspage.cpp:63
msgctxt "@label:textbox"
msgid "Location:"
msgstr ""

#: settings/startupsettingspage.cpp:74
msgctxt "@action:button"
msgid "Use Current Location"
msgstr ""

#: settings/startupsettingspage.cpp:77
msgctxt "@action:button"
msgid "Use Default Location"
msgstr ""

#: settings/startupsettingspage.cpp:86
msgctxt "@option:check Startup Settings"
msgid "Split view mode"
msgstr ""

#: settings/startupsettingspage.cpp:87
msgctxt "@option:check Startup Settings"
msgid "Editable location bar"
msgstr ""

#: settings/startupsettingspage.cpp:88
msgctxt "@option:check Startup Settings"
msgid "Show full path inside location bar"
msgstr ""

#: settings/startupsettingspage.cpp:89
msgctxt "@option:check Startup Settings"
msgid "Show filter bar"
msgstr ""

#: settings/startupsettingspage.cpp:122
msgctxt "@info"
msgid ""
"The location for the home folder is invalid or does not exist, it will not "
"be applied."
msgstr ""

#: settings/viewpropertiesdialog.cpp:78
msgctxt "@title:window"
msgid "View Properties"
msgstr ""

#: settings/viewpropertiesdialog.cpp:91
msgctxt "@title:group"
msgid "Properties"
msgstr ""

#: settings/viewpropertiesdialog.cpp:96
msgctxt "@label:listbox"
msgid "View mode:"
msgstr ""

#: settings/viewpropertiesdialog.cpp:98
msgctxt "@item:inlistbox"
msgid "Icons"
msgstr ""

#: settings/viewpropertiesdialog.cpp:99
msgctxt "@item:inlistbox"
msgid "Details"
msgstr ""

#: settings/viewpropertiesdialog.cpp:100
msgctxt "@item:inlistbox"
msgid "Column"
msgstr ""

#: settings/viewpropertiesdialog.cpp:102
msgctxt "@label:listbox"
msgid "Sorting:"
msgstr ""

#: settings/viewpropertiesdialog.cpp:106
msgctxt "@item:inlistbox Sort"
msgid "Ascending"
msgstr ""

#: settings/viewpropertiesdialog.cpp:107
msgctxt "@item:inlistbox Sort"
msgid "Descending"
msgstr ""

#: settings/viewpropertiesdialog.cpp:110
msgctxt "@item:inlistbox Sort"
msgid "By Name"
msgstr ""

#: settings/viewpropertiesdialog.cpp:111
msgctxt "@item:inlistbox Sort"
msgid "By Size"
msgstr ""

#: settings/viewpropertiesdialog.cpp:112
msgctxt "@item:inlistbox Sort"
msgid "By Date"
msgstr ""

#: settings/viewpropertiesdialog.cpp:113
msgctxt "@item:inlistbox Sort"
msgid "By Permissions"
msgstr ""

#: settings/viewpropertiesdialog.cpp:114
msgctxt "@item:inlistbox Sort"
msgid "By Owner"
msgstr ""

#: settings/viewpropertiesdialog.cpp:115
msgctxt "@item:inlistbox Sort"
msgid "By Group"
msgstr ""

#: settings/viewpropertiesdialog.cpp:116
msgctxt "@item:inlistbox Sort"
msgid "By Type"
msgstr ""

#: settings/viewpropertiesdialog.cpp:126
msgctxt "@option:check"
msgid "Show folders first"
msgstr ""

#: settings/viewpropertiesdialog.cpp:127
msgctxt "@option:check"
msgid "Show preview"
msgstr ""

#: settings/viewpropertiesdialog.cpp:128
msgctxt "@option:check"
msgid "Show in groups"
msgstr ""

#: settings/viewpropertiesdialog.cpp:129
msgctxt "@option:check"
msgid "Show hidden files"
msgstr ""

#: settings/viewpropertiesdialog.cpp:131
msgctxt "@action:button"
msgid "Additional Information"
msgstr ""

#: settings/viewpropertiesdialog.cpp:179
msgctxt "@title:group"
msgid "Apply View Properties To"
msgstr ""

#: settings/viewpropertiesdialog.cpp:182
msgctxt "@option:radio Apply View Properties To"
msgid "Current folder"
msgstr ""

#: settings/viewpropertiesdialog.cpp:185
msgctxt "@option:radio Apply View Properties To"
msgid "Current folder including all sub-folders"
msgstr ""

#: settings/viewpropertiesdialog.cpp:187
msgctxt "@option:radio Apply View Properties To"
msgid "All folders"
msgstr ""

#: settings/viewpropertiesdialog.cpp:199
msgctxt "@option:check"
msgid "Use these view properties as default"
msgstr ""

#: settings/viewpropertiesdialog.cpp:337
msgctxt "@info"
msgid ""
"The view properties of all sub-folders will be changed. Do you want to "
"continue?"
msgstr ""

#: settings/viewpropertiesdialog.cpp:372
msgctxt "@info"
msgid ""
"The view properties of all folders will be changed. Do you want to continue?"
msgstr ""

#: dolphindetailsview.cpp:156
msgctxt "@option:check"
msgid "Expandable Folders"
msgstr ""

#: dolphindetailsview.cpp:603
msgctxt "@title:menu"
msgid "Columns"
msgstr ""

#. i18n: file: dolphinpart.rc:4
#. i18n: ectx: Menu (edit)
#: rc.cpp:3 rc.cpp:245
msgid "&Edit"
msgstr ""

#. i18n: file: dolphinpart.rc:14
#. i18n: ectx: Menu (selection)
#: rc.cpp:6 rc.cpp:248
msgctxt "@title:menu"
msgid "Selection"
msgstr ""

#. i18n: file: dolphinpart.rc:23
#. i18n: ectx: Menu (view)
#: rc.cpp:9 rc.cpp:251
msgid "&View"
msgstr ""

#. i18n: file: dolphinpart.rc:32
#. i18n: ectx: Menu (go)
#: rc.cpp:12 rc.cpp:254
msgid "&Go"
msgstr ""

#. i18n: file: dolphinpart.rc:40
#. i18n: ectx: Menu (tools)
#: rc.cpp:15 rc.cpp:257
msgctxt "@title:menu"
msgid "Tools"
msgstr ""

#. i18n: file: dolphinpart.rc:48
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:18 rc.cpp:260
msgctxt "@title:menu"
msgid "Dolphin Toolbar"
msgstr ""

#. i18n: file: dolphinui.rc:34
#. i18n: ectx: Menu (navigation_bar)
#: rc.cpp:21 rc.cpp:41
msgctxt "@title:menu"
msgid "Location Bar"
msgstr ""

#. i18n: file: dolphinui.rc:89
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:24 rc.cpp:44
msgctxt "@title:menu"
msgid "Main Toolbar"
msgstr ""

#. i18n: file: dolphinui.rc:101
#. i18n: ectx: ToolBar (searchToolBar)
#: rc.cpp:27 rc.cpp:47
msgctxt "@title:menu"
msgid "Search Toolbar"
msgstr ""

#: rc.cpp:28
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr " ,Launchpad Contributions:,Luke Hollins"

#: rc.cpp:29
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ",,"

#. i18n: file: search/dolphin_searchsettings.kcfg:7
#. i18n: ectx: label, entry (Location), group (Search)
#: rc.cpp:32
msgid "Location"
msgstr ""

#. i18n: file: search/dolphin_searchsettings.kcfg:11
#. i18n: ectx: label, entry (What), group (Search)
#: rc.cpp:35
msgid "What"
msgstr ""

#. i18n: file: search/dolphin_searchsettings.kcfg:15
#. i18n: ectx: label, entry (Criteria), group (Search)
#: rc.cpp:38
msgid "Criteria"
msgstr ""

#. i18n: file: panels/information/dolphin_informationpanelsettings.kcfg:7
#. i18n: ectx: label, entry (showPreview), group (InformationPanel)
#: rc.cpp:50
msgid "Show preview"
msgstr ""

#. i18n: file: panels/folders/dolphin_folderspanelsettings.kcfg:7
#. i18n: ectx: label, entry (ShowHiddenFiles), group (FoldersPanel)
#: rc.cpp:53
msgid "Show hidden files"
msgstr ""

#. i18n: file: settings/dolphin_versioncontrolsettings.kcfg:7
#. i18n: ectx: label, entry (enabledPlugins), group (VersionControl)
#: rc.cpp:56
msgid "Enabled plugins"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:9
#. i18n: ectx: label, entry (EditableUrl), group (General)
#: rc.cpp:59
msgid "Should the URL be editable for the user"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:13
#. i18n: ectx: label, entry (UrlCompletionMode), group (General)
#: rc.cpp:62
msgid "Text completion mode of the URL Navigator"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:17
#. i18n: ectx: label, entry (ShowFullPath), group (General)
#: rc.cpp:65
msgid "Should the full path be shown inside the location bar"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:21
#. i18n: ectx: label, entry (FirstRun), group (General)
#: rc.cpp:68
msgid "Is the application started the first time"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:25
#. i18n: ectx: label, entry (HomeUrl), group (General)
#: rc.cpp:71
msgid "Home URL"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:29
#. i18n: ectx: label, entry (SplitView), group (General)
#: rc.cpp:74
msgid "Split the view into two panes"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:33
#. i18n: ectx: label, entry (FilterBar), group (General)
#: rc.cpp:77
msgid "Should the filter bar be shown"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:37
#. i18n: ectx: label, entry (GlobalViewProps), group (General)
#: rc.cpp:80
msgid "Should the view properties be used for all directories"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:41
#. i18n: ectx: label, entry (BrowseThroughArchives), group (General)
#: rc.cpp:83
msgid "Browse through archives"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:45
#. i18n: ectx: label, entry (ConfirmClosingMultipleTabs), group (General)
#: rc.cpp:86
msgid "Ask for confirmation when closing windows with multiple tabs."
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:49
#. i18n: ectx: label, entry (RenameInline), group (General)
#: rc.cpp:89
msgid "Rename inline"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:53
#. i18n: ectx: label, entry (ShowSelectionToggle), group (General)
#: rc.cpp:92
msgid "Show selection toggle"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:57
#. i18n: ectx: label, entry (ShowToolTips), group (General)
#: rc.cpp:95
msgid "Show tooltips"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:61
#. i18n: ectx: label, entry (ShowCopyMoveMenu), group (General)
#: rc.cpp:98
msgid "Show 'Copy To' and 'Move To' commands in context menu"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:65
#. i18n: ectx: label, entry (ViewPropsTimestamp), group (General)
#: rc.cpp:101
msgid "Timestamp since when the view properties are valid"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:68
#. i18n: ectx: label, entry (AutoExpandFolders), group (General)
#: rc.cpp:104
msgid "Use auto-expanding folders for all view types"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:72
#. i18n: ectx: label, entry (ShowZoomSlider), group (General)
#: rc.cpp:107
msgid "Show zoom slider in the statusbar"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:76
#. i18n: ectx: label, entry (ShowSpaceInfo), group (General)
#: rc.cpp:110
msgid "Show the space information in the statusbar"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:11
#. i18n: ectx: label, entry (ShowHiddenFiles), group (Settings)
#: rc.cpp:113
msgctxt "@label"
msgid "Show hidden files"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:12
#. i18n: ectx: whatsthis, entry (ShowHiddenFiles), group (Settings)
#: rc.cpp:116
msgctxt "@info:whatsthis"
msgid ""
"When this option is enabled hidden files, such as those starting with a '.', "
"will be shown in the file view."
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:19
#. i18n: ectx: label, entry (ViewMode), group (Dolphin)
#: rc.cpp:119
msgctxt "@label"
msgid "View Mode"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:20
#. i18n: ectx: whatsthis, entry (ViewMode), group (Dolphin)
#: rc.cpp:122
msgctxt "@info:whatsthis"
msgid ""
"This option controls the style of the view. Currently supported values "
"include icons (0), details (1) and column (2) views."
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:27
#. i18n: ectx: label, entry (ShowPreview), group (Dolphin)
#: rc.cpp:125
msgctxt "@label"
msgid "Show preview"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:28
#. i18n: ectx: whatsthis, entry (ShowPreview), group (Dolphin)
#: rc.cpp:128
msgctxt "@info:whatsthis"
msgid ""
"When this option is enabled, a preview of the file content is shown as an "
"icon."
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:33
#. i18n: ectx: label, entry (CategorizedSorting), group (Dolphin)
#: rc.cpp:131
msgctxt "@label"
msgid "Categorized Sorting"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:34
#. i18n: ectx: whatsthis, entry (CategorizedSorting), group (Dolphin)
#: rc.cpp:134
msgctxt "@info:whatsthis"
msgid ""
"When this option is enabled, the sorted items are summarized by their "
"category."
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:39
#. i18n: ectx: label, entry (Sorting), group (Dolphin)
#: rc.cpp:137
msgctxt "@label"
msgid "Sort files by"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:40
#. i18n: ectx: whatsthis, entry (Sorting), group (Dolphin)
#: rc.cpp:140
msgctxt "@info:whatsthis"
msgid ""
"This option defines which attribute (name, size, date, etc.) sorting is "
"performed on."
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:47
#. i18n: ectx: label, entry (SortOrder), group (Dolphin)
#: rc.cpp:143
msgctxt "@label"
msgid "Order in which to sort files"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:54
#. i18n: ectx: label, entry (SortFoldersFirst), group (Dolphin)
#: rc.cpp:146
msgctxt "@label"
msgid "Show folders first when sorting files and folders"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:59
#. i18n: ectx: label, entry (AdditionalInfo), group (Dolphin)
#: rc.cpp:149
msgctxt "@label"
msgid "Additional information"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:64
#. i18n: ectx: label, entry (Timestamp), group (Dolphin)
#: rc.cpp:152
msgctxt "@label"
msgid "Properties last changed"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:65
#. i18n: ectx: whatsthis, entry (Timestamp), group (Dolphin)
#: rc.cpp:155
msgctxt "@info:whatsthis"
msgid "The last time these properties were changed by the user."
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:10
#. i18n: ectx: label, entry (Arrangement), group (IconsMode)
#: rc.cpp:158
msgid "Arrangement"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:14
#. i18n: ectx: label, entry (UseSystemFont), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:13
#. i18n: ectx: label, entry (UseSystemFont), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:13
#. i18n: ectx: label, entry (UseSystemFont), group (DetailsMode)
#: rc.cpp:161 rc.cpp:197 rc.cpp:221
msgid "Use system font"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:18
#. i18n: ectx: label, entry (FontFamily), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:9
#. i18n: ectx: label, entry (FontFamily), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:9
#. i18n: ectx: label, entry (FontFamily), group (DetailsMode)
#: rc.cpp:164 rc.cpp:194 rc.cpp:218
msgid "Font family"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:22
#. i18n: ectx: label, entry (FontSize), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:17
#. i18n: ectx: label, entry (FontSize), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:17
#. i18n: ectx: label, entry (FontSize), group (DetailsMode)
#: rc.cpp:167 rc.cpp:200 rc.cpp:224
msgid "Font size"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:26
#. i18n: ectx: label, entry (ItalicFont), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:21
#. i18n: ectx: label, entry (ItalicFont), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:21
#. i18n: ectx: label, entry (ItalicFont), group (DetailsMode)
#: rc.cpp:170 rc.cpp:203 rc.cpp:227
msgid "Italic"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:30
#. i18n: ectx: label, entry (FontWeight), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:25
#. i18n: ectx: label, entry (FontWeight), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:25
#. i18n: ectx: label, entry (FontWeight), group (DetailsMode)
#: rc.cpp:173 rc.cpp:206 rc.cpp:230
msgid "Font weight"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:34
#. i18n: ectx: label, entry (ItemHeight), group (IconsMode)
#: rc.cpp:176
msgid "Item height"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:42
#. i18n: ectx: label, entry (ItemWidth), group (IconsMode)
#: rc.cpp:179
msgid "Item width"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:50
#. i18n: ectx: label, entry (GridSpacing), group (IconsMode)
#: rc.cpp:182
msgid "Grid spacing"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:54
#. i18n: ectx: label, entry (IconSize), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:29
#. i18n: ectx: label, entry (IconSize), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:29
#. i18n: ectx: label, entry (IconSize), group (DetailsMode)
#: rc.cpp:185 rc.cpp:209 rc.cpp:233
msgid "Icon size"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:58
#. i18n: ectx: label, entry (NumberOfTextlines), group (IconsMode)
#: rc.cpp:188
msgid "Number of textlines"
msgstr ""

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:63
#. i18n: ectx: label, entry (PreviewSize), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:33
#. i18n: ectx: label, entry (PreviewSize), group (ColumnMode)
#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:33
#. i18n: ectx: label, entry (PreviewSize), group (DetailsMode)
#: rc.cpp:191 rc.cpp:212 rc.cpp:236
msgid "Preview size"
msgstr ""

#. i18n: file: settings/dolphin_columnmodesettings.kcfg:37
#. i18n: ectx: label, entry (ColumnWidth), group (ColumnMode)
#: rc.cpp:215
msgid "Column width"
msgstr ""

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:37
#. i18n: ectx: label, entry (ExpandableFolders), group (DetailsMode)
#: rc.cpp:239
msgid "Expandable folders"
msgstr ""

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:41
#. i18n: ectx: label, entry (ColumnPositions), group (DetailsMode)
#: rc.cpp:242
msgid "Position of columns"
msgstr ""