~ubuntu-branches/ubuntu/precise/kde-l10n-sl/precise

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
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
# translation of dolphin.po to Slovenian
# translation of dolphin2.po to
# Copyright (C) YEAR This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
#
# Andrej Vernekar <andrej.vernekar@moj.net>, 2007, 2008.
# Marko Burjek <email4marko@gmail.com>, 2007.
# Jure Repinc <jlp@holodeck1.com>, 2007, 2008, 2009, 2010.
msgid ""
msgstr ""
"Project-Id-Version: dolphin\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-11-27 06:46+0100\n"
"PO-Revision-Date: 2010-08-20 18:10+0200\n"
"Last-Translator: Jure Repinc <jlp@holodeck1.com>\n"
"Language-Team: Slovenian <lugos-slo@lugos.si>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
"%100==4 ? 3 : 0);\n"
"X-Generator: Lokalize 1.1\n"

#: panels/information/informationpanelcontent.cpp:231
#, kde-format
msgctxt "@info"
msgid "%1 item selected"
msgid_plural "%1 items selected"
msgstr[0] "%1 izbranih predmetov"
msgstr[1] "%1 izbran predmet"
msgstr[2] "%1 izbrana predmeta"
msgstr[3] "%1 izbrani predmeti"

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

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

#: panels/information/informationpanelcontent.cpp:294
#, fuzzy
#| msgctxt "@label::textbox"
#| msgid "Select which data should be shown in the information panel."
msgctxt "@label::textbox"
msgid "Select which data should be shown in the information panel:"
msgstr "Izberite podatke, ki bodo prikazani v podoknu s podatki."

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

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

#: panels/folders/treeviewcontextmenu.cpp:59
msgctxt "@action:inmenu"
msgid "Cut"
msgstr "Izreži"

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

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

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

#: panels/folders/treeviewcontextmenu.cpp:92
msgctxt "@action:inmenu"
msgid "Move to Trash"
msgstr "Premakni v smeti"

#: panels/folders/treeviewcontextmenu.cpp:102
msgctxt "@action:inmenu"
msgid "Delete"
msgstr "Izbriši"

#: panels/folders/treeviewcontextmenu.cpp:111 dolphincontextmenu.cpp:364
msgctxt "@action:inmenu"
msgid "Properties"
msgstr "Lastnosti"

#: panels/folders/treeviewcontextmenu.cpp:119
msgctxt "@action:inmenu"
msgid "Show Hidden Files"
msgstr "Prikaži skrite datoteke"

#: panels/folders/treeviewcontextmenu.cpp:125
msgctxt "@action:inmenu"
msgid "Automatic Scrolling"
msgstr ""

#: panels/filter/filterpanel.cpp:100
#, fuzzy
#| msgctxt "@item:inlistbox Text width"
#| msgid "Small"
msgctxt "option:check Refers to a filter on image size"
msgid "Small"
msgstr "Majhna"

#: panels/filter/filterpanel.cpp:102
#, fuzzy
#| msgctxt "@item:inlistbox Text width"
#| msgid "Medium"
msgctxt "option:check Refers to a filter on image size"
msgid "Medium"
msgstr "Srednja"

#: panels/filter/filterpanel.cpp:105
#, fuzzy
#| msgctxt "@item:inlistbox Text width"
#| msgid "Large"
msgctxt "option:check Refers to a filter on image size"
msgid "Large"
msgstr "Velika"

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

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

#: settings/dolphinsettingsdialog.cpp:62
msgctxt "@title:group"
msgid "View Modes"
msgstr "Načini prikaza"

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

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

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

#: settings/dolphinsettingsdialog.cpp:90
msgctxt "@title:group General settings"
msgid "General"
msgstr "Splošne"

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

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

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

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

#: settings/additionalinfodialog.cpp:46
#, fuzzy
#| msgctxt "@label"
#| msgid "Select which additional information should be shown."
msgctxt "@label"
msgid "Select which additional information should be shown:"
msgstr "Izberite dodatne podatke, ki bodo prikazani"

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

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

#: settings/viewpropertiesdialog.cpp:97
msgctxt "@label:listbox"
msgid "View mode:"
msgstr "Način prikaza:"

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

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

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

#: settings/viewpropertiesdialog.cpp:103
msgctxt "@label:listbox"
msgid "Sorting:"
msgstr "Razvrščanje:"

#: settings/viewpropertiesdialog.cpp:107
msgctxt "@item:inlistbox Sort"
msgid "Ascending"
msgstr "Naraščajoče"

#: settings/viewpropertiesdialog.cpp:108
msgctxt "@item:inlistbox Sort"
msgid "Descending"
msgstr "Padajoče"

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

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

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

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

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

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

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

#: settings/viewpropertiesdialog.cpp:127
msgctxt "@option:check"
msgid "Show folders first"
msgstr "Najprej prikaži mape"

#: settings/viewpropertiesdialog.cpp:128
msgctxt "@option:check"
msgid "Show preview"
msgstr "Prikaži ogled vsebine"

#: settings/viewpropertiesdialog.cpp:129
msgctxt "@option:check"
msgid "Show in groups"
msgstr "Prikaži po skupinah"

#: settings/viewpropertiesdialog.cpp:130
msgctxt "@option:check"
msgid "Show hidden files"
msgstr "Prikaži skrite datoteke"

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

#: settings/viewpropertiesdialog.cpp:180
msgctxt "@title:group"
msgid "Apply View Properties To"
msgstr "Uveljavi lastnosti prikaza za"

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

#: settings/viewpropertiesdialog.cpp:186
msgctxt "@option:radio Apply View Properties To"
msgid "Current folder including all sub-folders"
msgstr "Trenutno mapo, vključno z vsebovanimi mapami"

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

#: settings/viewpropertiesdialog.cpp:200
msgctxt "@option:check"
msgid "Use these view properties as default"
msgstr "Te lastnosti prikaza uporabi kot privzete"

#: settings/viewpropertiesdialog.cpp:338
msgctxt "@info"
msgid ""
"The view properties of all sub-folders will be changed. Do you want to "
"continue?"
msgstr ""
"Spremenjene bodo lastnosti prikaza za vse vsebovane mape. Ali želite "
"nadaljevati?"

#: settings/viewpropertiesdialog.cpp:373
msgctxt "@info"
msgid ""
"The view properties of all folders will be changed. Do you want to continue?"
msgstr ""
"Spremenjene bodo lastnosti prikaza za vse mape. Ali želite nadaljevati?"

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

#: settings/filemetadataconfigurationdialog.cpp:39
#, fuzzy
#| msgctxt "@label::textbox"
#| msgid "Select which data should be shown"
msgctxt "@label::textbox"
msgid "Select which data should be shown:"
msgstr "Izberite podatke, ki bodo prikazani"

#: settings/services/servicessettingspage.cpp:55
#, fuzzy
#| msgctxt "@label:textbox"
#| msgid "Select which services should be shown in the context menu."
msgctxt "@label:textbox"
msgid "Select which services should be shown in the context menu:"
msgstr "Izberite storitve, ki bodo prikazane v priročnem meniju."

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

#: settings/services/servicessettingspage.cpp:70
msgctxt "@title:group"
msgid "Version Control Systems"
msgstr "Sistemi za nadzor različic"

#: settings/services/servicessettingspage.cpp:122
msgctxt "@info"
msgid ""
"Dolphin must be restarted to apply the updated version control systems "
"settings."
msgstr ""
"Za uveljavitev spremenjenih nastavitev sistemov za nadzor različic je "
"potrebno znova zagnati Dolphin."

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

#: settings/viewmodes/detailsviewsettingspage.cpp:65
#: settings/viewmodes/iconsviewsettingspage.cpp:72
#: settings/viewmodes/columnviewsettingspage.cpp:65
msgctxt "@title:group"
msgid "Text"
msgstr "Besedilo"

#: settings/viewmodes/detailsviewsettingspage.cpp:68
#: settings/viewmodes/iconsviewsettingspage.cpp:75
#: settings/viewmodes/columnviewsettingspage.cpp:68
msgctxt "@label:listbox"
msgid "Font:"
msgstr "Pisava:"

#: settings/viewmodes/detailsviewsettingspage.cpp:76
msgctxt "@option:check"
msgid "Expandable folders"
msgstr "Razširljive mape"

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

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

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

#: settings/viewmodes/iconsviewsettingspage.cpp:78
msgctxt "@label:textbox"
msgid "Number of lines:"
msgstr "Število vrstic:"

#: settings/viewmodes/iconsviewsettingspage.cpp:83
#: settings/viewmodes/columnviewsettingspage.cpp:71
msgctxt "@label:listbox"
msgid "Text width:"
msgstr "Širina besedila:"

#: settings/viewmodes/iconsviewsettingspage.cpp:85
#: settings/viewmodes/columnviewsettingspage.cpp:73
msgctxt "@item:inlistbox Text width"
msgid "Small"
msgstr "Majhna"

#: settings/viewmodes/iconsviewsettingspage.cpp:86
#: settings/viewmodes/columnviewsettingspage.cpp:74
msgctxt "@item:inlistbox Text width"
msgid "Medium"
msgstr "Srednja"

#: settings/viewmodes/iconsviewsettingspage.cpp:87
#: settings/viewmodes/columnviewsettingspage.cpp:75
msgctxt "@item:inlistbox Text width"
msgid "Large"
msgstr "Velika"

#: settings/viewmodes/iconsviewsettingspage.cpp:88
#: settings/viewmodes/columnviewsettingspage.cpp:76
msgctxt "@item:inlistbox Text width"
msgid "Huge"
msgstr "Ogromna"

#: settings/viewmodes/iconsviewsettingspage.cpp:99
msgctxt "@title:group"
msgid "Grid"
msgstr "Mreža"

#: settings/viewmodes/iconsviewsettingspage.cpp:102
msgctxt "@label:listbox"
msgid "Arrangement:"
msgstr "Razporeditev:"

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

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

#: settings/viewmodes/iconsviewsettingspage.cpp:107
msgctxt "@label:listbox"
msgid "Grid spacing:"
msgstr "Razmik mreže:"

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

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

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

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

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

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

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

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

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

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

#: settings/viewmodes/iconsizegroupbox.cpp:109
#: statusbar/dolphinstatusbar.cpp:382
#, kde-format
msgctxt "@info:tooltip"
msgid "Size: 1 pixel"
msgid_plural "Size: %1 pixels"
msgstr[0] "Velikost: %1 pik"
msgstr[1] "Velikost: %1 pika"
msgstr[2] "Velikost: %1 piki"
msgstr[3] "Velikost: %1 pike"

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

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

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

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

#: settings/navigation/navigationsettingspage.cpp:52
msgctxt "@option:check Mouse Settings"
msgid "Single-click to open files and folders"
msgstr "Mape in datoteke odpre enojen klik"

#: settings/navigation/navigationsettingspage.cpp:54
msgctxt "@option:check Mouse Settings"
msgid "Double-click to open files and folders"
msgstr "Mape in datoteke odpre dvojen klik"

#: settings/navigation/navigationsettingspage.cpp:60
msgctxt "@option:check"
msgid "Open archives as folder"
msgstr "Arhive odpri kot mape"

#: settings/navigation/navigationsettingspage.cpp:62
msgctxt "option:check"
msgid "Open folders during drag operations"
msgstr "Med vleko datotek in map odpiraj mape"

#: settings/startup/startupsettingspage.cpp:59
msgctxt "@title:group"
msgid "Home Folder"
msgstr "Domača mapa"

#: settings/startup/startupsettingspage.cpp:64
msgctxt "@label:textbox"
msgid "Location:"
msgstr "Lokacija:"

#: settings/startup/startupsettingspage.cpp:75
msgctxt "@action:button"
msgid "Use Current Location"
msgstr "Uporabi trenutno lokacijo"

#: settings/startup/startupsettingspage.cpp:78
msgctxt "@action:button"
msgid "Use Default Location"
msgstr "Uporabi privzeto lokacijo"

#: settings/startup/startupsettingspage.cpp:87
msgctxt "@option:check Startup Settings"
msgid "Split view mode"
msgstr "Razdeljen način prikaza"

#: settings/startup/startupsettingspage.cpp:88
msgctxt "@option:check Startup Settings"
msgid "Editable location bar"
msgstr "Lokacijska vrstica, ki jo je moč urejati"

#: settings/startup/startupsettingspage.cpp:89
msgctxt "@option:check Startup Settings"
msgid "Show full path inside location bar"
msgstr "V lokacijski vrstici prikaži celotno pot"

#: settings/startup/startupsettingspage.cpp:90
msgctxt "@option:check Startup Settings"
msgid "Show filter bar"
msgstr "Prikaži filtrirno vrstico"

#: settings/startup/startupsettingspage.cpp:121
msgctxt "@info"
msgid ""
"The location for the home folder is invalid or does not exist, it will not "
"be applied."
msgstr ""
"Lokacija domače mape ni veljavna, ali pa ne obstaja, in ne bo uporabljena."

#: settings/general/previewssettingspage.cpp:63
msgctxt "@title:group"
msgid "Show previews for"
msgstr "Prikaži oglede za"

#: settings/general/previewssettingspage.cpp:73
msgctxt "@title:group"
msgid "Do not create previews for"
msgstr "Ne ustvari ogledov za"

#: settings/general/previewssettingspage.cpp:76
msgctxt "@label Don't create previews for: <Local files above:> XX MByte"
msgid "Local files above:"
msgstr "Krajevne datoteke, večje kot:"

#: settings/general/previewssettingspage.cpp:84
msgctxt "@label Don't create previews for: <Remote files above:> XX MByte"
msgid "Remote files above:"
msgstr "Oddaljene datoteke, večje kot:"

#: settings/general/statusbarsettingspage.cpp:42
msgctxt "@option:check"
msgid "Show zoom slider"
msgstr "Prikaži drsnik povečave"

#: settings/general/statusbarsettingspage.cpp:44
msgctxt "@option:check"
msgid "Show space information"
msgstr "Prikaži podatek o prostoru"

#: settings/general/contextmenusettingspage.cpp:43
msgctxt "@option:check"
msgid "Show 'Delete' command"
msgstr "Prikaži ukaz »Izbriši«"

#: settings/general/contextmenusettingspage.cpp:45
msgctxt "@option:check"
msgid "Show 'Copy To' and 'Move To' commands"
msgstr "Prikaži ukaza »Kopiraj v« in »Premakni v«"

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

#: settings/general/behaviorsettingspage.cpp:58
msgctxt "@title:group"
msgid "View Properties"
msgstr "Lastnosti prikaza"

#: settings/general/behaviorsettingspage.cpp:61
msgctxt "@option:radio"
msgid "Remember view properties for each folder"
msgstr "Zapomni si lastnosti prikaza za vsako mapo posebaj"

#: settings/general/behaviorsettingspage.cpp:63
msgctxt "@option:radio"
msgid "Use common view properties for all folders"
msgstr "Za vse mape uporabi skupne lastnosti prikaza"

#: settings/general/behaviorsettingspage.cpp:70
msgctxt "@title:group"
msgid "Ask For Confirmation When"
msgstr "Vprašaj za potrditev"

#: settings/general/behaviorsettingspage.cpp:73
msgctxt "@option:check Ask for Confirmation When"
msgid "Moving files or folders to trash"
msgstr "Premikanja datotek ali map v smeti"

#: settings/general/behaviorsettingspage.cpp:75
msgctxt "@option:check Ask for Confirmation When"
msgid "Deleting files or folders"
msgstr "Brisanja datotek ali map"

#: settings/general/behaviorsettingspage.cpp:77
msgctxt "@option:check Ask for Confirmation When"
msgid "Closing windows with multiple tabs"
msgstr "Zapiranja oken z več zavihki"

#: settings/general/behaviorsettingspage.cpp:85
msgctxt "@option:check"
msgid "Rename inline"
msgstr "Preimenuj znotraj prikaza"

#: settings/general/behaviorsettingspage.cpp:91
msgctxt "@option:check"
msgid "Show tooltips"
msgstr "Prikaži namige"

#: settings/general/behaviorsettingspage.cpp:99
msgctxt "@option:check"
msgid "Show selection marker"
msgstr "Prikaži stikalo za izbiranje"

#: settings/general/behaviorsettingspage.cpp:102
msgctxt "option:check"
msgid "Natural sorting of items"
msgstr "Naravno razvrščanje postavk"

#: settings/general/behaviorsettingspage.cpp:183
msgctxt "@action:button"
msgid "Configure..."
msgstr "Nastavi ..."

#: settings/general/behaviorsettingspage.cpp:194
#, fuzzy
#| msgctxt "@label::textbox"
#| msgid "Select which data should be shown in the tooltip."
msgctxt "@label::textbox"
msgid "Select which data should be shown in the tooltip:"
msgstr "Izberite podatke, ki bodo prikazani v namigu."

#: search/dolphinsearchbox.cpp:97
#, fuzzy, kde-format
#| msgctxt "@label"
#| msgid "From Here"
msgctxt "action:button"
msgid "From Here (%1)"
msgstr "Od tu"

#: search/dolphinsearchbox.cpp:236
#, fuzzy
#| msgctxt "@info"
#| msgid "Start searching"
msgctxt "@info:tooltip"
msgid "Quit searching"
msgstr "Začni iskati"

#: search/dolphinsearchbox.cpp:240
msgctxt "@label:textbox"
msgid "Find:"
msgstr ""

#: search/dolphinsearchbox.cpp:260
#, fuzzy
#| msgctxt "@label"
#| msgid "Filenames"
msgctxt "action:button"
msgid "Filename"
msgstr "Imena datotek"

#: search/dolphinsearchbox.cpp:264
#, fuzzy
#| msgctxt "@item::inlistbox"
#| msgid "Comment"
msgctxt "action:button"
msgid "Content"
msgstr "Komentar"

#: search/dolphinsearchbox.cpp:275
#, fuzzy
#| msgctxt "@label"
#| msgid "From Here"
msgctxt "action:button"
msgid "From Here"
msgstr "Od tu"

#: search/dolphinsearchbox.cpp:279
#, fuzzy
#| msgctxt "@label"
#| msgid "Everywhere"
msgctxt "action:button"
msgid "Everywhere"
msgstr "Povsod"

#: search/dolphinsearchbox.cpp:378
#, kde-format
msgctxt ""
"@title UDS_DISPLAY_NAME for a KIO directory listing. %1 is the query the "
"user entered."
msgid "Query Results from '%1'"
msgstr ""

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

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

#: statusbar/dolphinstatusbar.cpp:277
msgctxt "@action:inmenu"
msgid "Copy Information Message"
msgstr "Skopiraj informativno sporočilo"

#: statusbar/dolphinstatusbar.cpp:280
msgctxt "@action:inmenu"
msgid "Copy Error Message"
msgstr "Skopiraj sporočilo o napaki"

#: statusbar/dolphinstatusbar.cpp:287
msgctxt "@action:inmenu"
msgid "Show Zoom Slider"
msgstr "Prikaži drsnik povečave"

#: statusbar/dolphinstatusbar.cpp:291
msgctxt "@action:inmenu"
msgid "Show Space Information"
msgstr "Prikaži podatek o prostoru"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Andrej Vernekar,Jure Repinc"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "andrej.vernekar@moj.net,jlp@holodeck1.com"

#. i18n: file: panels/information/dolphin_informationpanelsettings.kcfg:10
#. i18n: ectx: label, entry (showPreview), group (InformationPanel)
#: rc.cpp:5
msgid "Show preview"
msgstr "Prikaži ogled"

#. i18n: file: panels/folders/dolphin_folderspanelsettings.kcfg:10
#. i18n: ectx: label, entry (ShowHiddenFiles), group (FoldersPanel)
#: rc.cpp:8
msgid "Show hidden files"
msgstr "Prikaži skrite datoteke"

#. i18n: file: panels/folders/dolphin_folderspanelsettings.kcfg:14
#. i18n: ectx: label, entry (AutoScrolling), group (FoldersPanel)
#: rc.cpp:11
msgid "Automatic scrolling"
msgstr ""

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:12
#. i18n: ectx: label, entry (FontFamily), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:21
#. i18n: ectx: label, entry (FontFamily), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:12
#. i18n: ectx: label, entry (FontFamily), group (ColumnMode)
#: rc.cpp:14 rc.cpp:51 rc.cpp:90
msgid "Font family"
msgstr "Družina pisav"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:16
#. i18n: ectx: label, entry (UseSystemFont), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:17
#. i18n: ectx: label, entry (UseSystemFont), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:16
#. i18n: ectx: label, entry (UseSystemFont), group (ColumnMode)
#: rc.cpp:17 rc.cpp:48 rc.cpp:93
msgid "Use system font"
msgstr "Uporabi sistemsko pisavo"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:20
#. i18n: ectx: label, entry (FontSize), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:25
#. i18n: ectx: label, entry (FontSize), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:20
#. i18n: ectx: label, entry (FontSize), group (ColumnMode)
#: rc.cpp:20 rc.cpp:54 rc.cpp:96
msgid "Font size"
msgstr "Velikost pisave"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:24
#. i18n: ectx: label, entry (ItalicFont), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:29
#. i18n: ectx: label, entry (ItalicFont), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:24
#. i18n: ectx: label, entry (ItalicFont), group (ColumnMode)
#: rc.cpp:23 rc.cpp:57 rc.cpp:99
msgid "Italic"
msgstr "Ležeče"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:28
#. i18n: ectx: label, entry (FontWeight), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:33
#. i18n: ectx: label, entry (FontWeight), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:28
#. i18n: ectx: label, entry (FontWeight), group (ColumnMode)
#: rc.cpp:26 rc.cpp:60 rc.cpp:102
msgid "Font weight"
msgstr "Debelina pisave"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:32
#. i18n: ectx: label, entry (IconSize), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:57
#. i18n: ectx: label, entry (IconSize), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:32
#. i18n: ectx: label, entry (IconSize), group (ColumnMode)
#: rc.cpp:29 rc.cpp:72 rc.cpp:105
msgid "Icon size"
msgstr "Velikost ikon"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:36
#. i18n: ectx: label, entry (PreviewSize), group (DetailsMode)
#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:66
#. i18n: ectx: label, entry (PreviewSize), group (IconsMode)
#. i18n: file: settings/dolphin_columnmodesettings.kcfg:36
#. i18n: ectx: label, entry (PreviewSize), group (ColumnMode)
#: rc.cpp:32 rc.cpp:78 rc.cpp:108
msgid "Preview size"
msgstr "Velikost ogledov"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:40
#. i18n: ectx: label, entry (ExpandableFolders), group (DetailsMode)
#: rc.cpp:35
msgid "Expandable folders"
msgstr "Razširljive mape"

#. i18n: file: settings/dolphin_detailsmodesettings.kcfg:44
#. i18n: ectx: label, entry (ColumnPositions), group (DetailsMode)
#: rc.cpp:38
msgid "Position of columns"
msgstr "Položaj stolpcev"

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

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:37
#. i18n: ectx: label, entry (ItemHeight), group (IconsMode)
#: rc.cpp:63
msgid "Item height"
msgstr "Višina predmeta"

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:45
#. i18n: ectx: label, entry (ItemWidth), group (IconsMode)
#: rc.cpp:66
msgid "Item width"
msgstr "Širina predmeta"

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:53
#. i18n: ectx: label, entry (GridSpacing), group (IconsMode)
#: rc.cpp:69
msgid "Grid spacing"
msgstr "Razmik mreže"

#. i18n: file: settings/dolphin_iconsmodesettings.kcfg:61
#. i18n: ectx: label, entry (NumberOfTextlines), group (IconsMode)
#: rc.cpp:75
msgid "Number of textlines"
msgstr "Število vrstic z besedilom"

#. i18n: file: settings/dolphin_versioncontrolsettings.kcfg:10
#. i18n: ectx: label, entry (enabledPlugins), group (VersionControl)
#: rc.cpp:87
msgid "Enabled plugins"
msgstr "Onemogočeni vstavki"

#. i18n: file: settings/dolphin_columnmodesettings.kcfg:40
#. i18n: ectx: label, entry (ColumnWidth), group (ColumnMode)
#: rc.cpp:111
msgid "Column width"
msgstr "Širina stolpca"

#. i18n: file: settings/dolphin_generalsettings.kcfg:12
#. i18n: ectx: label, entry (EditableUrl), group (General)
#: rc.cpp:118
msgid "Should the URL be editable for the user"
msgstr "Ali bo uporabniku omogočeno spreminjanje lokacije"

#. i18n: file: settings/dolphin_generalsettings.kcfg:16
#. i18n: ectx: label, entry (UrlCompletionMode), group (General)
#: rc.cpp:121
msgid "Text completion mode of the URL Navigator"
msgstr "Način dokončevanja krmarja po lokacijah"

#. i18n: file: settings/dolphin_generalsettings.kcfg:20
#. i18n: ectx: label, entry (ShowFullPath), group (General)
#: rc.cpp:124
msgid "Should the full path be shown inside the location bar"
msgstr "Ali naj bo v lokacijski vrstici prikazana celotna pot"

#. i18n: file: settings/dolphin_generalsettings.kcfg:24
#. i18n: ectx: label, entry (FirstRun), group (General)
#: rc.cpp:127
#, fuzzy
#| msgid "Is the application started the first time"
msgid ""
"Is the application started the first time (internal setting not shown in the "
"UI)"
msgstr "Ali je program zagnan prvič"

#. i18n: file: settings/dolphin_generalsettings.kcfg:28
#. i18n: ectx: label, entry (ModifiedStartupSettings), group (General)
#: rc.cpp:130
msgid ""
"Have the startup settings been modified (internal setting not shown in the "
"UI)"
msgstr ""

#. i18n: file: settings/dolphin_generalsettings.kcfg:32
#. i18n: ectx: label, entry (HomeUrl), group (General)
#: rc.cpp:133
msgid "Home URL"
msgstr "Domača lokacija"

#. i18n: file: settings/dolphin_generalsettings.kcfg:36
#. i18n: ectx: label, entry (SplitView), group (General)
#: rc.cpp:136
msgid "Split the view into two panes"
msgstr "Razdeli prikaz v dva dela"

#. i18n: file: settings/dolphin_generalsettings.kcfg:40
#. i18n: ectx: label, entry (FilterBar), group (General)
#: rc.cpp:139
msgid "Should the filter bar be shown"
msgstr "Ali bo prikazana filtrirna vrstica"

#. i18n: file: settings/dolphin_generalsettings.kcfg:44
#. i18n: ectx: label, entry (GlobalViewProps), group (General)
#: rc.cpp:142
msgid "Should the view properties be used for all directories"
msgstr "Ali naj bodo lastnosti prikaza uporabljene za vse mape"

#. i18n: file: settings/dolphin_generalsettings.kcfg:48
#. i18n: ectx: label, entry (BrowseThroughArchives), group (General)
#: rc.cpp:145
msgid "Browse through archives"
msgstr "Brskaj po arhivih"

#. i18n: file: settings/dolphin_generalsettings.kcfg:52
#. i18n: ectx: label, entry (ConfirmClosingMultipleTabs), group (General)
#: rc.cpp:148
msgid "Ask for confirmation when closing windows with multiple tabs."
msgstr "Pred zapiranjem okna z več zavihki vprašaj za potrditev."

#. i18n: file: settings/dolphin_generalsettings.kcfg:56
#. i18n: ectx: label, entry (RenameInline), group (General)
#: rc.cpp:151
msgid "Rename inline"
msgstr "Preimenuj znotraj prikaza"

#. i18n: file: settings/dolphin_generalsettings.kcfg:60
#. i18n: ectx: label, entry (ShowSelectionToggle), group (General)
#: rc.cpp:154
msgid "Show selection toggle"
msgstr "Prikaži stikalo za izbiranje"

#. i18n: file: settings/dolphin_generalsettings.kcfg:64
#. i18n: ectx: label, entry (ShowToolTips), group (General)
#: rc.cpp:157
msgid "Show tooltips"
msgstr "Prikaži namige"

#. i18n: file: settings/dolphin_generalsettings.kcfg:68
#. i18n: ectx: label, entry (ShowCopyMoveMenu), group (General)
#: rc.cpp:160
msgid "Show 'Copy To' and 'Move To' commands in context menu"
msgstr "V priročnem meniju prikaži ukaza »Kopiraj v« in »Premakni v«"

#. i18n: file: settings/dolphin_generalsettings.kcfg:72
#. i18n: ectx: label, entry (ViewPropsTimestamp), group (General)
#: rc.cpp:163
msgid "Timestamp since when the view properties are valid"
msgstr "Od kdaj naprej so lastnosti pogleda veljavne (časovni žig)"

#. i18n: file: settings/dolphin_generalsettings.kcfg:75
#. i18n: ectx: label, entry (AutoExpandFolders), group (General)
#: rc.cpp:166
msgid "Use auto-expanding folders for all view types"
msgstr "Samodejno razširi mape v vseh prikazih"

#. i18n: file: settings/dolphin_generalsettings.kcfg:79
#. i18n: ectx: label, entry (ShowZoomSlider), group (General)
#: rc.cpp:169
msgid "Show zoom slider in the statusbar"
msgstr "V vrstici stanja prikaži drsnik povečave"

#. i18n: file: settings/dolphin_generalsettings.kcfg:83
#. i18n: ectx: label, entry (ShowSpaceInfo), group (General)
#: rc.cpp:172
msgid "Show the space information in the statusbar"
msgstr "V vrstici stanja prikaži podatek o prostoru"

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

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:12
#. i18n: ectx: whatsthis, entry (ShowHiddenFiles), group (Settings)
#: rc.cpp:180
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 ""
"Ko je omogočena ta možnost so skrite datoteke, kot te, ki se začenjajo s '.' "
"prikazane v prikazu datotek."

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:19
#. i18n: ectx: label, entry (Version), group (Dolphin)
#: rc.cpp:183
#, fuzzy
#| msgctxt "@title::column"
#| msgid "Version"
msgctxt "@label"
msgid "Version"
msgstr "Različica"

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:20
#. i18n: ectx: whatsthis, entry (Version), group (Dolphin)
#: rc.cpp:186
msgctxt "@info:whatsthis"
msgid "This option defines the used version of the view properties."
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:26
#. i18n: ectx: label, entry (ViewMode), group (Dolphin)
#: rc.cpp:189
msgctxt "@label"
msgid "View Mode"
msgstr "Način prikaza"

# sem opazil, da je v Konquerorju isto ikoniziran pogled
#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:27
#. i18n: ectx: whatsthis, entry (ViewMode), group (Dolphin)
#: rc.cpp:192
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 ""
"Ta možnost nadzira stil prikaza. Trenutno podprte vrednosti vključujejo "
"ikoniziran pogled (0), pogled s podrobnostmi (1) in stolpični pogled (2)."

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:34
#. i18n: ectx: label, entry (ShowPreview), group (Dolphin)
#: rc.cpp:195
msgctxt "@label"
msgid "Show preview"
msgstr "Prikaži ogled vsebine"

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:35
#. i18n: ectx: whatsthis, entry (ShowPreview), group (Dolphin)
#: rc.cpp:198
msgctxt "@info:whatsthis"
msgid ""
"When this option is enabled, a preview of the file content is shown as an "
"icon."
msgstr ""
"Ko je omogočena ta možnost, je namesto ikone prikazan ogled vsebine datoteke."

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:40
#. i18n: ectx: label, entry (CategorizedSorting), group (Dolphin)
#: rc.cpp:201
msgctxt "@label"
msgid "Categorized Sorting"
msgstr "Kategorizirano razvrščanje"

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:41
#. i18n: ectx: whatsthis, entry (CategorizedSorting), group (Dolphin)
#: rc.cpp:204
msgctxt "@info:whatsthis"
msgid ""
"When this option is enabled, the sorted items are summarized by their "
"category."
msgstr ""
"Ko je omogočena ta možnost, so razvrščeni predmeti povzeti po njihovih "
"kategorijah."

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

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:47
#. i18n: ectx: whatsthis, entry (Sorting), group (Dolphin)
#: rc.cpp:210
msgctxt "@info:whatsthis"
msgid ""
"This option defines which attribute (name, size, date, etc.) sorting is "
"performed on."
msgstr ""
"Ta možnost določa od katerih atributov (ime, velikost, datum, itd) je "
"odvisno razvrščanje."

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:54
#. i18n: ectx: label, entry (SortOrder), group (Dolphin)
#: rc.cpp:213
msgctxt "@label"
msgid "Order in which to sort files"
msgstr "Vrstni red razvrščanja datotek"

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:61
#. i18n: ectx: label, entry (SortFoldersFirst), group (Dolphin)
#: rc.cpp:216
msgctxt "@label"
msgid "Show folders first when sorting files and folders"
msgstr "Pri razvrščanju datotek in map najprej prikaži mape"

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:66
#. i18n: ectx: label, entry (AdditionalInfo), group (Dolphin)
#: rc.cpp:219
msgctxt "@label"
msgid "Additional information (deprecated, use AdditionInfoV2 instead)"
msgstr ""

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:71
#. i18n: ectx: label, entry (AdditionalInfoV2), group (Dolphin)
#: rc.cpp:222
msgctxt "@label"
msgid "Additional information"
msgstr "Dodatni podatki"

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

#. i18n: file: settings/dolphin_directoryviewpropertysettings.kcfg:77
#. i18n: ectx: whatsthis, entry (Timestamp), group (Dolphin)
#: rc.cpp:228
msgctxt "@info:whatsthis"
msgid "The last time these properties were changed by the user."
msgstr "Kdaj je uporabnik nazadnje spremenil te lastnosti."

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

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

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

#. i18n: file: dolphinui.rc:88
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:246
msgctxt "@title:menu"
msgid "Main Toolbar"
msgstr "Glavna orodjarna"

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

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

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

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

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

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

#: dolphinpart.cpp:166
msgctxt "@action:inmenu Edit"
msgid "&Edit File Type..."
msgstr "&Uredi vrsto datoteke ..."

#: dolphinpart.cpp:170
msgctxt "@action:inmenu Edit"
msgid "Select Items Matching..."
msgstr "Izberi predmete, ki se ujemajo z ..."

#: dolphinpart.cpp:175
msgctxt "@action:inmenu Edit"
msgid "Unselect Items Matching..."
msgstr "Odizberi predmete, ki se ujemajo z ..."

#: dolphinpart.cpp:181
msgctxt "@action:inmenu Edit"
msgid "Unselect All"
msgstr "Odizberi vse"

#: dolphinpart.cpp:185 dolphinmainwindow.cpp:1465
msgctxt "@action:inmenu Edit"
msgid "Invert Selection"
msgstr "Obrni izbiro"

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

#: dolphinpart.cpp:201
msgctxt "@action:inmenu Go"
msgid "&Network Folders"
msgstr "O&mrežne mape"

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

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

#: dolphinpart.cpp:210
msgctxt "@action:inmenu Go"
msgid "Autostart"
msgstr "Samodejni zagon"

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

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

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

#: dolphinpart.cpp:482
msgid "Select all items matching this pattern:"
msgstr "Izberi vse predmete, ki se ujemajo s tem vzorcem:"

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

#: dolphinpart.cpp:489
msgid "Unselect all items matching this pattern:"
msgstr "Odizberi vse predmete, ki se ujemajo s tem vzorcem:"

#: dolphincontextmenu.cpp:168
msgctxt "@action:inmenu"
msgid "Empty Trash"
msgstr "Izprazni smeti"

#: dolphincontextmenu.cpp:174 dolphincontextmenu.cpp:343
msgctxt "@action:inmenu Add current folder to places"
msgid "Add to Places"
msgstr "Dodaj na pult Mesta"

#: dolphincontextmenu.cpp:190
msgctxt "@info"
msgid "Do you really want to empty the Trash? All items will be deleted."
msgstr "Ali zares želite izprazniti smeti? Izbrisani bodo vsi predmeti."

#: dolphincontextmenu.cpp:194
msgctxt "@action:button"
msgid "Empty Trash"
msgstr "Izprazni smeti"

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

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

#: dolphincontextmenu.cpp:250 dolphinmainwindow.cpp:1413
msgctxt "@title:menu Create new folder, file, link, etc."
msgid "Create New"
msgstr "Ustvari novo"

#: dolphincontextmenu.cpp:263
msgctxt "@action:inmenu Add selected folder to places"
msgid "Add to Places"
msgstr "Dodaj na pult Mesta"

#: dolphincontextmenu.cpp:270
#, fuzzy
#| msgctxt "@action:inmenu"
#| msgid "Open in New Window"
msgctxt "@action:inmenu"
msgid "Open Path in New Window"
msgstr "Odpri v novem oknu"

#: dolphincontextmenu.cpp:276
#, fuzzy
#| msgctxt "@action:inmenu"
#| msgid "Open in New Tab"
msgctxt "@action:inmenu"
msgid "Open Path in New Tab"
msgstr "Odpri v novem zavihku"

#: dolphincontextmenu.cpp:447
msgctxt "@action:inmenu"
msgid "Paste Into Folder"
msgstr "Prilepi v mapo"

#: dolphincontextmenu.cpp:557
#, fuzzy
#| msgctxt "@action:inmenu"
#| msgid "Move to Trash"
msgctxt "@action:inmenu"
msgid "&Move to Trash"
msgstr "Premakni v smeti"

#: dolphincontextmenu.cpp:560
#, fuzzy
#| msgctxt "@action:inmenu File"
#| msgid "Delete"
msgctxt "@action:inmenu"
msgid "&Delete"
msgstr "Zbriši"

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

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

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

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

#: main.cpp:42
#, fuzzy
#| msgctxt "@info:credit"
#| msgid "Maintainer and developer"
msgctxt "@info:credit"
msgid "Maintainer and developer"
msgstr "Razvijalec in vzdrževalec"

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

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

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

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

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

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

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

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

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

#: main.cpp:73
msgctxt "@info:shell"
msgid "The files and directories passed as arguments will be selected."
msgstr "Datoteke in mape, podane kot argumenti, bodo izbrane."

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

#: dolphinmainwindow.cpp:240
msgctxt "@info:status"
msgid "Successfully copied."
msgstr "Uspešno skopirano."

#: dolphinmainwindow.cpp:244
msgctxt "@info:status"
msgid "Successfully moved."
msgstr "Uspešno premaknjeno."

#: dolphinmainwindow.cpp:248
msgctxt "@info:status"
msgid "Successfully linked."
msgstr "Uspešno povezano."

#: dolphinmainwindow.cpp:252
msgctxt "@info:status"
msgid "Successfully moved to trash."
msgstr "Uspešno premaknjeno v smeti."

#: dolphinmainwindow.cpp:256
msgctxt "@info:status"
msgid "Successfully renamed."
msgstr "Uspešno preimenovano."

#: dolphinmainwindow.cpp:261
msgctxt "@info:status"
msgid "Created folder."
msgstr "Ustvarjena je bil mapa."

#: dolphinmainwindow.cpp:371
msgctxt "@info"
msgid "Go back"
msgstr "Vrni se nazaj"

#: dolphinmainwindow.cpp:377
msgctxt "@info"
msgid "Go forward"
msgstr "Napreduj naprej"

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

#: dolphinmainwindow.cpp:555
msgid "C&lose Current Tab"
msgstr "&Zapri trenutni zavihek"

#: dolphinmainwindow.cpp:563
msgid ""
"You have multiple tabs open in this window, are you sure you want to quit?"
msgstr "V tem oknu imate odprtih več zavihkov. Ali res želite končati?"

#: dolphinmainwindow.cpp:565
msgid "Do not ask again"
msgstr "Ne vprašuj več"

#: dolphinmainwindow.cpp:1103
msgctxt "@action:inmenu"
msgid "New Tab"
msgstr "Nov zavihek"

#: dolphinmainwindow.cpp:1106
msgctxt "@action:inmenu"
msgid "Detach Tab"
msgstr "Odcepi zavihek"

#: dolphinmainwindow.cpp:1108
msgctxt "@action:inmenu"
msgid "Close Other Tabs"
msgstr "Zapri dru&ge zavihke"

#: dolphinmainwindow.cpp:1110
msgctxt "@action:inmenu"
msgid "Close Tab"
msgstr "Zapri  zavihek"

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

#: dolphinmainwindow.cpp:1426
msgctxt "@action:inmenu File"
msgid "New Tab"
msgstr "Nov zavihek"

#: dolphinmainwindow.cpp:1432
msgctxt "@action:inmenu File"
msgid "Close Tab"
msgstr "Zapri  zavihek"

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

#: dolphinmainwindow.cpp:1460
msgctxt "@action:inmenu Edit"
msgid "Select All"
msgstr "Izberi vse"

#: dolphinmainwindow.cpp:1478
msgctxt "@action:inmenu View"
msgid "Reload"
msgstr "Znova naloži"

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

#: dolphinmainwindow.cpp:1485
msgctxt "@info"
msgid "Stop loading"
msgstr "Ustavi nalaganje"

#: dolphinmainwindow.cpp:1490
msgctxt "@action:inmenu Navigation Bar"
msgid "Editable Location"
msgstr "Lokacijo je moč urejati"

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

#: dolphinmainwindow.cpp:1506
msgid "Recently Closed Tabs"
msgstr "Nazadnje zaprti zavihki"

#: dolphinmainwindow.cpp:1529
msgctxt "@action:inmenu Tools"
msgid "Show Filter Bar"
msgstr "Prikaži filtrirno vrstico"

#: dolphinmainwindow.cpp:1535
msgctxt "@action:inmenu Tools"
msgid "Compare Files"
msgstr "Primerjaj datoteki"

#: dolphinmainwindow.cpp:1541
msgctxt "@action:inmenu Tools"
msgid "Open Terminal"
msgstr "Odpri konzolo"

#: dolphinmainwindow.cpp:1560
msgctxt "@action:inmenu"
msgid "Activate Next Tab"
msgstr "Aktiviraj naslednji zavihek"

#: dolphinmainwindow.cpp:1565
msgctxt "@action:inmenu"
msgid "Activate Previous Tab"
msgstr "Aktiviraj predhodni zavihek"

#: dolphinmainwindow.cpp:1571
msgctxt "@action:inmenu"
msgid "Open in New Tab"
msgstr "Odpri v novem zavihku"

#: dolphinmainwindow.cpp:1576
msgctxt "@action:inmenu"
msgid "Open in New Window"
msgstr "Odpri v novem oknu"

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

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

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

#: dolphinmainwindow.cpp:1641
#, fuzzy
#| msgctxt "@label:textbox"
#| msgid "Filter:"
msgctxt "@title:window"
msgid "Filter"
msgstr "Filter:"

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

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

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

#: dolphinmainwindow.cpp:1835
msgctxt "@info"
msgid "Close right view"
msgstr "Zapri desni prikaz"

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

#: dolphinmainwindow.cpp:1839
msgctxt "@info"
msgid "Close left view"
msgstr "Zapri levi prikaz"

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

#: dolphinmainwindow.cpp:1844
msgctxt "@info"
msgid "Split view"
msgstr "Razdeli prikaz"

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

#: dolphinviewcontainer.cpp:365
msgctxt "@info:progress"
msgid "Loading folder..."
msgstr "Nalaganje mape ..."

#: dolphinviewcontainer.cpp:380
msgctxt "@info:status"
msgid "No items found."
msgstr "Najdenega ni bilo nič."

#: dolphinviewcontainer.cpp:474
msgctxt "@info:status"
msgid "Dolphin does not support web pages, the web browser has been launched"
msgstr ""
"Dolphin ne podpira prikaza spletnih strani. Zagnan je bil spletni brskalnik."

#: dolphinviewcontainer.cpp:486
msgctxt "@info:status"
msgid "Protocol not supported by Dolphin, Konqueror has been launched"
msgstr "Dolphin ne podpira tega protokola. Zagnan je bil Konqueror."

#: dolphinviewcontainer.cpp:493
msgctxt "@info:status"
msgid "Invalid protocol"
msgstr "Nepodprt protokol"

#: views/versioncontrol/versioncontrolobserver.cpp:189
msgctxt "@info:status"
msgid "Update of version information failed."
msgstr "Posodobitev podatkov o različici ni uspelo."

#: views/versioncontrol/versioncontrolobserver.cpp:242
msgctxt "@info:status"
msgid "Updating version information..."
msgstr "Posodabljanje podatkov o različici ..."

#: views/dolphincolumnview.cpp:88
msgctxt "@info:tooltip"
msgid "Resize column"
msgstr ""

#: views/additionalinfoaccessor.cpp:105
msgctxt "@label"
msgid "Size"
msgstr "Velikost"

#: views/additionalinfoaccessor.cpp:106
msgctxt "@label"
msgid "Date"
msgstr "Datum"

#: views/additionalinfoaccessor.cpp:107
msgctxt "@label"
msgid "Permissions"
msgstr "Dovoljenja"

#: views/additionalinfoaccessor.cpp:108
msgctxt "@label"
msgid "Owner"
msgstr "Lastnik"

#: views/additionalinfoaccessor.cpp:109
msgctxt "@label"
msgid "Group"
msgstr "Skupina"

#: views/additionalinfoaccessor.cpp:110
msgctxt "@label"
msgid "Type"
msgstr "Vrsta"

#: views/additionalinfoaccessor.cpp:111
msgctxt "@label"
msgid "Link Destination"
msgstr "CIlj povezave"

#: views/additionalinfoaccessor.cpp:112
msgctxt "@label"
msgid "Path"
msgstr "Pot"

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

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

#: views/dolphinview.cpp:488
#, kde-format
msgctxt "@info:status"
msgid "1 Folder selected"
msgid_plural "%1 Folders selected"
msgstr[0] "Izbranih je %1 map"
msgstr[1] "Izbrana je %1 mapa"
msgstr[2] "Izbrani sta %1 mapi"
msgstr[3] "Izbrane so %1 mape"

#: views/dolphinview.cpp:489
#, kde-format
msgctxt "@info:status"
msgid "1 File selected"
msgid_plural "%1 Files selected"
msgstr[0] "Izbranih je %1 datotek"
msgstr[1] "Izbrana je %1 datoteka"
msgstr[2] "Izbrani sta %1 datoteki"
msgstr[3] "Izbrane so %1 datoteke"

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

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

#: views/dolphinview.cpp:988
msgctxt "@info:status"
msgid "Delete operation completed."
msgstr "Izbris opravljen."

#: views/dolphinview.cpp:1076
msgctxt "@info:status"
msgid "The location is empty."
msgstr "Lokacija je prazna."

#: views/dolphinview.cpp:1078
#, kde-format
msgctxt "@info:status"
msgid "The location '%1' is invalid."
msgstr "Lokacija '%1' je neveljavna."

#: views/dolphindirlister.cpp:41
msgctxt "@info:status"
msgid "Unknown error."
msgstr "Neznana napaka."

#: views/dolphinremoteencoding.cpp:53
msgid "Select Remote Charset"
msgstr "Izberite oddaljen nabor znakov"

#: views/dolphinremoteencoding.cpp:117
msgid "Reload"
msgstr "Znova naloži"

#: views/dolphinremoteencoding.cpp:118
msgid "Default"
msgstr "Privzet"

#: views/draganddrophelper.cpp:108
msgctxt "@info:status"
msgid "A folder cannot be dropped into itself"
msgstr "Mape ni moč spustiti v samo vase"

#: views/dolphindetailsview.cpp:146
msgctxt "@option:check"
msgid "Expandable Folders"
msgstr "Razširljive mape"

#: views/dolphindetailsview.cpp:377
msgctxt "@title:menu"
msgid "Columns"
msgstr "Stolpci"

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

#: views/dolphinmodel.cpp:128
msgctxt "@title::column"
msgid "Link Destination"
msgstr "CIlj povezave"

#: views/dolphinmodel.cpp:130
msgctxt "@title::column"
msgid "Path"
msgstr "Pot"

#: views/dolphinmodel.cpp:222
msgctxt "@title:group Size"
msgid "Folders"
msgstr "Mape"

#: views/dolphinmodel.cpp:224
msgctxt "@title:group Size"
msgid "Small"
msgstr "Majhna"

#: views/dolphinmodel.cpp:226
msgctxt "@title:group Size"
msgid "Medium"
msgstr "Srednja"

#: views/dolphinmodel.cpp:228
msgctxt "@title:group Size"
msgid "Big"
msgstr "Velika"

#: views/dolphinmodel.cpp:263
msgctxt "@title:group Date"
msgid "Today"
msgstr "Danes"

#: views/dolphinmodel.cpp:264
msgctxt "@title:group Date"
msgid "Yesterday"
msgstr "Včeraj"

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

#: views/dolphinmodel.cpp:269
msgctxt "@title:group Date"
msgid "Last Week"
msgstr "Prejšnji teden"

#: views/dolphinmodel.cpp:272
msgctxt "@title:group Date"
msgid "Two Weeks Ago"
msgstr "Pred dvema tednoma"

#: views/dolphinmodel.cpp:275
msgctxt "@title:group Date"
msgid "Three Weeks Ago"
msgstr "Pred tremi tedni"

#: views/dolphinmodel.cpp:279
msgctxt "@title:group Date"
msgid "Earlier this Month"
msgstr "Pred enim mesecem"

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

#: views/dolphinmodel.cpp:290
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 "%A (%B %Y)"

#: views/dolphinmodel.cpp:292
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Last Week (%B, %Y)"
msgstr "Prejšnji teden (%B %Y)"

#: views/dolphinmodel.cpp:294
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 "Pred dvema tednoma (%B %Y)"

#: views/dolphinmodel.cpp:296
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 "Pred tremi tedni (%B %Y)"

#: views/dolphinmodel.cpp:298
msgctxt ""
"@title:group Date: %B is full month name in current locale, and %Y is full "
"year number"
msgid "Earlier on %B, %Y"
msgstr "Še prej (%B %Y)"

#: views/dolphinmodel.cpp:301
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 "%B, %Y"

#: views/dolphinmodel.cpp:316 views/dolphinmodel.cpp:328
#: views/dolphinmodel.cpp:340
msgctxt "@item:intext Access permission, concatenated"
msgid "Read, "
msgstr "Beri,"

#: views/dolphinmodel.cpp:319 views/dolphinmodel.cpp:331
#: views/dolphinmodel.cpp:343
msgctxt "@item:intext Access permission, concatenated"
msgid "Write, "
msgstr "Piši, "

#: views/dolphinmodel.cpp:322 views/dolphinmodel.cpp:334
#: views/dolphinmodel.cpp:346
msgctxt "@item:intext Access permission, concatenated"
msgid "Execute, "
msgstr "Izvedi, "

#: views/dolphinmodel.cpp:324 views/dolphinmodel.cpp:336
#: views/dolphinmodel.cpp:348
msgctxt "@item:intext Access permission, concatenated"
msgid "Forbidden"
msgstr "Prepovedano"

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

#: views/dolphinviewactionhandler.cpp:88
msgctxt "@action"
msgid "Create Folder..."
msgstr "Ustvari mapo ..."

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

#: views/dolphinviewactionhandler.cpp:102
msgctxt "@action:inmenu File"
msgid "Move to Trash"
msgstr "Premakni v smeti"

#: views/dolphinviewactionhandler.cpp:110
msgctxt "@action:inmenu File"
msgid "Delete"
msgstr "Izbriši"

#: views/dolphinviewactionhandler.cpp:120
msgctxt "@action \"Move to Trash\" for non-local files, etc."
msgid "Delete (using shortcut for Trash)"
msgstr "Izbriši (uporabi bližnjico za smeti)"

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

#: views/dolphinviewactionhandler.cpp:138
msgctxt "@action:intoolbar"
msgid "View Mode"
msgstr "Način prikaza"

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

#: views/dolphinviewactionhandler.cpp:155
msgctxt "@info"
msgid "Show preview of files and folders"
msgstr "Prikaži ogled datotek in map"

#: views/dolphinviewactionhandler.cpp:160
msgctxt "@action:inmenu Sort"
msgid "Descending"
msgstr "Padajoče"

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

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

#: views/dolphinviewactionhandler.cpp:187
#: views/dolphinviewactionhandler.cpp:213
msgctxt "@action:inmenu View"
msgid "Additional Information"
msgstr "Dodatni podatki"

#: views/dolphinviewactionhandler.cpp:194
msgctxt "@action:inmenu View"
msgid "Show in Groups"
msgstr "Prikaži po skupinah"

#: views/dolphinviewactionhandler.cpp:198
msgctxt "@action:inmenu View"
msgid "Show Hidden Files"
msgstr "Prikaži skrite datoteke"

#: views/dolphinviewactionhandler.cpp:203
msgctxt "@action:inmenu View"
msgid "Adjust View Properties..."
msgstr "Prilagodi lastnosti prikaza ..."

#: views/dolphinviewactionhandler.cpp:238
msgctxt "@action:inmenu Sort By"
msgid "Name"
msgstr "Imenu"

#: views/dolphinviewactionhandler.cpp:441
msgctxt "@action:inmenu View Mode"
msgid "Icons"
msgstr "Ikone"

#: views/dolphinviewactionhandler.cpp:442
msgctxt "@info"
msgid "Icons view mode"
msgstr "Način prikaza ikon"

#: views/dolphinviewactionhandler.cpp:452
msgctxt "@action:inmenu View Mode"
msgid "Details"
msgstr "Podrobnosti"

#: views/dolphinviewactionhandler.cpp:453
msgctxt "@info"
msgid "Details view mode"
msgstr "Način prikaza podrobnosti"

#: views/dolphinviewactionhandler.cpp:463
msgctxt "@action:inmenu View Mode"
msgid "Columns"
msgstr "Stolpci"

#: views/dolphinviewactionhandler.cpp:464
msgctxt "@info"
msgid "Columns view mode"
msgstr "Način prikaza v stolpcih"

#: views/renamedialog.cpp:54
msgctxt "@title:window"
msgid "Rename Item"
msgstr "Preimenuj predmet"

#: views/renamedialog.cpp:55
msgctxt "@title:window"
msgid "Rename Items"
msgstr "Preimenuj predmete"

#: views/renamedialog.cpp:59
msgctxt "@action:button"
msgid "&Rename"
msgstr "Pre&imenuj"

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

#: views/renamedialog.cpp:72
msgctxt "@info:status"
msgid "New name #"
msgstr "Novo ime #"

#: views/renamedialog.cpp:74
#, kde-format
msgctxt "@label:textbox"
msgid "Rename the %1 selected item to:"
msgid_plural "Rename the %1 selected items to:"
msgstr[0] "Preimenuj %1 izbranih predmetov v:"
msgstr[1] "Preimenuj %1 izbran predmet v:"
msgstr[2] "Preimenuj %1 izbrana predmeta v:"
msgstr[3] "Preimenuj %1 izbrane predmete v:"

#: views/renamedialog.cpp:121
msgctxt "@info"
msgid "(# will be replaced by ascending numbers)"
msgstr "(# bo zamenjalo naraščajoče število)"

#: views/selectiontoggle.cpp:132
msgctxt "@info:tooltip"
msgid "Deselect Item"
msgstr "Odizberi predmet"

#: views/selectiontoggle.cpp:133
msgctxt "@info:tooltip"
msgid "Select Item"
msgstr "Izberi predmet"

#: filterbar/filterbar.cpp:39
msgctxt "@info:tooltip"
msgid "Hide Filter Bar"
msgstr "Skrij filtrirno vrstico"

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

#, fuzzy
#~| msgctxt "@info"
#~| msgid "Remove search option"
#~ msgid "Remove folder restriction"
#~ msgstr "Odstrani možnost iskanja"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Rating"
#~ msgctxt "@title:group"
#~ msgid "Rating"
#~ msgstr "Ocena"

#, fuzzy
#~| msgctxt "Tag as in Nepomuk::Tag"
#~| msgid "Tag"
#~ msgctxt "@title:group"
#~ msgid "Tag"
#~ msgstr "Oznaka"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Today"
#~ msgctxt "@action:button"
#~ msgid "Today"
#~ msgstr "Danes"

#, fuzzy
#~| msgctxt "@title:group Date"
#~| msgid "Yesterday"
#~ msgctxt "@action:button"
#~ msgid "Yesterday"
#~ msgstr "Včeraj"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "This Week"
#~ msgctxt "@action:button"
#~ msgid "This Week"
#~ msgstr "Ta teden"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "This Month"
#~ msgctxt "@action:button"
#~ msgid "This Month"
#~ msgstr "Ta mesec"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "This Year"
#~ msgctxt "@action:button"
#~ msgid "This Year"
#~ msgstr "To leto"

#, fuzzy
#~| msgctxt "@option:check Additional Information"
#~| msgid "Date"
#~ msgctxt "@title:group"
#~ msgid "Date"
#~ msgstr "Datum"

#, fuzzy
#~| msgctxt "@action:inmenu"
#~| msgid "Open in New Window"
#~ msgctxt "@action:inmenu"
#~ msgid "Open Parent Folder in New Window"
#~ msgstr "Odpri v novem oknu"

#, fuzzy
#~| msgctxt "@action:inmenu"
#~| msgid "Open in New Tab"
#~ msgctxt "@action:inmenu"
#~ msgid "Open Parent Folder in New Tab"
#~ msgstr "Odpri v novem zavihku"

#~ msgctxt "@info:status"
#~ msgid ""
#~ "The new name is empty. A name with at least one character must be entered."
#~ msgstr "Ime je prazno. Vpisano mora biti ime z vsaj enim znakom."

#~ msgctxt "@info:status"
#~ msgid "The name must contain at least one # character."
#~ msgstr "Ime mora vsebovati vsaj en znak #."

#~ msgctxt "@info"
#~ msgid "Close"
#~ msgstr "Zapri"

#~ msgctxt "@title:menu"
#~ msgid "View Mode"
#~ msgstr "Način prikaza"

#~ msgctxt "@label"
#~ msgid "No Tags Available"
#~ msgstr "Na voljo ni nobene oznake"

#~ msgctxt "@label"
#~ msgid "Byte"
#~ msgstr "B"

#~ msgctxt "@label"
#~ msgid "KByte"
#~ msgstr "KiB"

#~ msgctxt "@label"
#~ msgid "MByte"
#~ msgstr "MiB"

#~ msgctxt "@label"
#~ msgid "GByte"
#~ msgstr "GiB"

#~ msgctxt "@label"
#~ msgid "All"
#~ msgstr "Vse"

#~ msgctxt "@label"
#~ msgid "Images"
#~ msgstr "Slike"

#~ msgctxt "@label"
#~ msgid "Text"
#~ msgstr "Besedilo"

#~ msgctxt "@label"
#~ msgid "Filenames"
#~ msgstr "Imena datotek"

#~ msgctxt "@label"
#~ msgid "Search:"
#~ msgstr "Išči:"

#~ msgctxt "@label"
#~ msgid "What:"
#~ msgstr "Kaj:"

#~ msgctxt "@info"
#~ msgid "Add search option"
#~ msgstr "Dodaj možnost za iskanje"

#~ msgctxt "@action:button"
#~ msgid "Search"
#~ msgstr "Išči"

#~ msgctxt "@action:button"
#~ msgid "Save"
#~ msgstr "Shrani"

#~ msgctxt "@info"
#~ msgid "Save search options"
#~ msgstr "Shrani možnosti iskanja"

#~ msgctxt "@action:button"
#~ msgid "Close"
#~ msgstr "Zapri"

#~ msgctxt "@info"
#~ msgid "Close search options"
#~ msgstr "Zapri možnosti iskanja"

#~ msgctxt "@label"
#~ msgid "Greater Than"
#~ msgstr "Večje od"

#~ msgctxt "@label"
#~ msgid "Greater Than or Equal to"
#~ msgstr "Večje od ali enako"

#~ msgctxt "@label"
#~ msgid "Less Than"
#~ msgstr "Manjše od"

#~ msgctxt "@label"
#~ msgid "Less Than or Equal to"
#~ msgstr "Manjše od ali enako"

#~ msgctxt "@label"
#~ msgid "Anytime"
#~ msgstr "Kadarkoli"

#~ msgctxt "@label"
#~ msgid "Date:"
#~ msgstr "Datum:"

#~ msgctxt "@label Any (file size)"
#~ msgid "Any"
#~ msgstr "Katerakoli"

#~ msgctxt "@label"
#~ msgid "Size:"
#~ msgstr "Velikost:"

#~ msgctxt "@label All (tags)"
#~ msgid "All"
#~ msgstr "Vse"

#~ msgctxt "@label"
#~ msgid "Equal to"
#~ msgstr "Enako"

#~ msgctxt "@label"
#~ msgid "Not Equal to"
#~ msgstr "Ni enako"

#~ msgctxt "@label"
#~ msgid "Tag:"
#~ msgstr "Oznaka:"

#~ msgctxt "@label Any (rating)"
#~ msgid "Any"
#~ msgstr "Katerakoli"

#~ msgctxt "@label"
#~ msgid "Rating:"
#~ msgstr "Ocena:"

#~ msgctxt "@label"
#~ msgid "Name:"
#~ msgstr "Ime:"

#~ msgctxt "@title:window"
#~ msgid "Save Search Options"
#~ msgstr "Shrani možnosti iskanja"

#~ msgctxt "@label:textbox"
#~ msgid "Search..."
#~ msgstr "Iskanje ..."

#~ msgctxt "@action:inmenu Tools"
#~ msgid "Find File..."
#~ msgstr "Najdi datoteko ..."

#~ msgctxt "@action:inmenu Tools"
#~ msgid "Show Search Bar"
#~ msgstr "Prikaži iskalno vrstico"

#~ msgctxt "@action:inmenu"
#~ msgid "Search Bar"
#~ msgstr "Iskalna vrstica"

#~ msgctxt "@title:menu"
#~ msgid "Search Toolbar"
#~ msgstr "Iskalna orodjarna"

#~ msgid "Criteria"
#~ msgstr "Pogoji"

#~ msgctxt "@option:check Additional Information"
#~ msgid "Size"
#~ msgstr "Velikost"

#~ msgctxt "@option:check Additional Information"
#~ msgid "Date"
#~ msgstr "Datum"

#~ msgctxt "@option:check Additional Information"
#~ msgid "Permissions"
#~ msgstr "Dovoljenja"

#~ msgctxt "@option:check Additional Information"
#~ msgid "Owner"
#~ msgstr "Lastnik"

#~ msgctxt "@option:check Additional Information"
#~ msgid "Group"
#~ msgstr "Skupina"

#~ msgctxt "@option:check Additional Information"
#~ msgid "Type"
#~ msgstr "Vrsta"

#~ msgctxt "@item::intable"
#~ msgid "Normal"
#~ msgstr "Običajno"

#~ msgctxt "@item::intable"
#~ msgid "Update required"
#~ msgstr "Potrebna je posodobitev"

#~ msgctxt "@item::intable"
#~ msgid "Locally modified"
#~ msgstr "Krajevno spremenjena"

#~ msgctxt "@item::intable"
#~ msgid "Added"
#~ msgstr "Dodana"

#~ msgctxt "@item::intable"
#~ msgid "Removed"
#~ msgstr "Odstranjena"

#~ msgctxt "@item::intable"
#~ msgid "Conflicting"
#~ msgstr "V sporu"

#~ msgctxt "@item::intable"
#~ msgid "Unversioned"
#~ msgstr "Brez različice"

#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Size"
#~ msgstr "Velikost"

#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Date"
#~ msgstr "Datum"

#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Permissions"
#~ msgstr "Dovoljenja"

#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Owner"
#~ msgstr "Lastnik"

#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Group"
#~ msgstr "Skupina"

#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Type"
#~ msgstr "Vrsta"

#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Size"
#~ msgstr "Velikosti"

#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Date"
#~ msgstr "Datumu"

#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Permissions"
#~ msgstr "Dovoljenjih"

#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Owner"
#~ msgstr "Lastniku"

#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Group"
#~ msgstr "Skupini"

#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Type"
#~ msgstr "Vrsti"

#~ msgctxt "@title:menu"
#~ msgid "Additional Information"
#~ msgstr "Dodatni podatki"

#~ msgctxt "@label:slider"
#~ msgid "Maximum file size:"
#~ msgstr "Največja velikost datoteke:"

#~ msgctxt "@option:check"
#~ msgid "Use thumbnails embedded in files"
#~ msgstr "Uporabi sličice vsebovane v datotekah"

#~ msgctxt "@item:inmenu"
#~ msgid "SVN Update"
#~ msgstr "SVN: posodobitev"

#~ msgctxt "@item:inmenu"
#~ msgid "Show Local SVN Changes"
#~ msgstr "Prikaži krajevne spremembe SVN"

#~ msgctxt "@item:inmenu"
#~ msgid "SVN Add"
#~ msgstr "SVN: dodajanje"

#~ msgctxt "@item:inmenu"
#~ msgid "SVN Delete"
#~ msgstr "SVN: izbris"

#~ msgctxt "@info:status"
#~ msgid "Updating SVN repository..."
#~ msgstr "Posodabljanje skladišča SVN ..."

#~ msgctxt "@info:status"
#~ msgid "Update of SVN repository failed."
#~ msgstr "Posodobitev skladišča SVN ni uspela."

#~ msgctxt "@info:status"
#~ msgid "Updated SVN repository."
#~ msgstr "Skladišče SVN je bilo posodobljeno."

#~ msgctxt "@info:status"
#~ msgid "Adding files to SVN repository..."
#~ msgstr "Dodajanje datotek v skladišče SVN ..."

#~ msgctxt "@info:status"
#~ msgid "Adding of files to SVN repository failed."
#~ msgstr "Dodajanje datotek v skladišče SVN ni uspelo."

#~ msgctxt "@info:status"
#~ msgid "Added files to SVN repository."
#~ msgstr "Datoteke so bile dodane v skladišče SVN."

#~ msgctxt "@info:status"
#~ msgid "Removing files from SVN repository..."
#~ msgstr "Odstranjevanje datotek iz skladišča SVN ..."

#~ msgctxt "@info:status"
#~ msgid "Removing of files from SVN repository failed."
#~ msgstr "Odstranjevanje datotek iz skladišča SVN ni uspelo."

#~ msgctxt "@info:status"
#~ msgid "Removed files from SVN repository."
#~ msgstr "Datoteke so bile odstranjene iz skladišča SVN."

#~ msgctxt "@label"
#~ msgid "Folder"
#~ msgstr "Mapa"

#~ msgctxt "@label"
#~ msgid "Total Size:"
#~ msgstr "Skupna velikost:"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Tags"
#~ msgctxt "@label"
#~ msgid "Tags"
#~ msgstr "Oznake"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Comment"
#~ msgctxt "@label"
#~ msgid "Comment"
#~ msgstr "Komentar"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Type"
#~ msgctxt "@label file type"
#~ msgid "Type"
#~ msgstr "Vrsta"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Modified"
#~ msgctxt "@label"
#~ msgid "Modified"
#~ msgstr "Spremenjena"

#~ msgctxt "@title:window"
#~ msgid "Change Tags"
#~ msgstr "Spremeni oznake"

#~ msgctxt "@title:window"
#~ msgid "Add Tags"
#~ msgstr "Dodaj oznake"

#~ msgctxt "@label:textbox"
#~ msgid "Configure which tags should be applied."
#~ msgstr "Nastavite oznake, ki bodo uveljavljene."

#~ msgctxt "@label"
#~ msgid "Create new tag:"
#~ msgstr "Ustvari novo oznako:"

#~ msgctxt "@info"
#~ msgid "Delete tag"
#~ msgstr "Izbriši oznako"

#~ msgctxt "@info"
#~ msgid ""
#~ "Should the tag <resource>%1</resource> really be deleted for all files?"
#~ msgstr ""
#~ "Ali naj bo oznaka <resource>%1</resource> res odstranjena za vse datoteke?"

#~ msgctxt "@title"
#~ msgid "Delete tag"
#~ msgstr "Izbriši oznako"

#~ msgctxt "@action:button"
#~ msgid "Delete"
#~ msgstr "Izbriši"

#~ msgctxt "@action:button"
#~ msgid "Cancel"
#~ msgstr "Prekliči"

#~ msgctxt "@label"
#~ msgid "Add Tags..."
#~ msgstr "Dodaj oznake ..."

#~ msgctxt "@label"
#~ msgid "Change..."
#~ msgstr "Spremeni ..."

#~ msgctxt "@info:progress"
#~ msgid "Changing annotations"
#~ msgstr "Spreminjanje zabeležk"

#~ msgctxt "@item::inlistbox"
#~ msgid "Type"
#~ msgstr "Vrsta"

#~ msgctxt "@item::inlistbox"
#~ msgid "Size"
#~ msgstr "Velikost"

#~ msgctxt "@item::inlistbox"
#~ msgid "Modified"
#~ msgstr "Spremenjena"

#~ msgctxt "@item::inlistbox"
#~ msgid "Owner"
#~ msgstr "Lastnik"

#~ msgctxt "@item::inlistbox"
#~ msgid "Permissions"
#~ msgstr "Dovoljenja"

#~ msgctxt "@label"
#~ msgid "Add Comment..."
#~ msgstr "Dodaj komentar ..."

#~ msgctxt "@title:window"
#~ msgid "Change Comment"
#~ msgstr "Spremeni komentar"

#~ msgctxt "@title:window"
#~ msgid "Add Comment"
#~ msgstr "Dodaj komentar"

#, fuzzy
#~| msgctxt "@title:menu Create new folder, file, link, etc."
#~| msgid "Create New"
#~ msgctxt "@label creation date"
#~ msgid "Created"
#~ msgstr "Ustvari novo"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Size"
#~ msgctxt "@label file content size"
#~ msgid "Size"
#~ msgstr "Velikost"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Modified"
#~ msgctxt "@label modified date of file"
#~ msgid "Modified"
#~ msgstr "Spremenjena"

#, fuzzy
#~| msgctxt "@item:inlistbox Sort"
#~| msgid "By Type"
#~ msgctxt "@label"
#~ msgid "MIME Type"
#~ msgstr "Po vrsti"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Title:"
#~ msgctxt "@label music title"
#~ msgid "Title"
#~ msgstr "Naslov:"

#, fuzzy
#~| msgid "Location"
#~ msgctxt "@label file URL"
#~ msgid "Location"
#~ msgstr "Lokacija"

#, fuzzy
#~| msgctxt "@info:status"
#~| msgid "Created folder."
#~ msgctxt "@label"
#~ msgid "Creator"
#~ msgstr "Ustvarjena je bil mapa."

#, fuzzy
#~| msgctxt "@action:inmenu"
#~| msgid "Cancel"
#~ msgctxt "@label"
#~ msgid "Channels"
#~ msgstr "Prekliči"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Lines:"
#~ msgctxt "@label number of lines"
#~ msgid "Lines"
#~ msgstr "Vrstice:"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Width:"
#~ msgctxt "@label"
#~ msgid "Width"
#~ msgstr "Širina:"

#, fuzzy
#~| msgctxt "@item::inlistbox"
#~| msgid "Modified"
#~ msgctxt "@label EXIF"
#~ msgid "Model"
#~ msgstr "Spremenjena"

#, fuzzy
#~| msgctxt "@info:credit"
#~| msgid "Documentation"
#~ msgctxt "@label EXIF"
#~ msgid "Orientation"
#~ msgstr "Dokumentacija"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Genre:"
#~ msgctxt "@label music genre"
#~ msgid "Genre"
#~ msgstr "Zvrst:"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Album:"
#~ msgctxt "@label music album"
#~ msgid "Album"
#~ msgstr "Album:"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Track:"
#~ msgctxt "@label music track number"
#~ msgid "Track"
#~ msgstr "Skladba:"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Width x Height:"
#~ msgctxt "@label image width and height"
#~ msgid "Width x Height"
#~ msgstr "Višina × širina:"

#~ msgctxt "@item::inlistbox"
#~ msgid "Rating"
#~ msgstr "Ocena"

#~ msgctxt "@item::inlistbox"
#~ msgid "Tags"
#~ msgstr "Oznake"

#~ msgctxt "@item::inlistbox"
#~ msgid "Comment"
#~ msgstr "Komentar"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Filenames"
#~ msgctxt "@label"
#~ msgid "File Name"
#~ msgstr "Imena datotek"

#~ msgctxt "@label"
#~ msgid "Type:"
#~ msgstr "Vrsta:"

#~ msgctxt "@label"
#~ msgid "Modified:"
#~ msgstr "Spremenjena:"

#~ msgctxt "@label"
#~ msgid "Owner:"
#~ msgstr "Lastnik:"

#~ msgctxt "@label"
#~ msgid "Permissions:"
#~ msgstr "Dovoljenja:"

#~ msgctxt "@label"
#~ msgid "Tags:"
#~ msgstr "Oznake:"

#~ msgctxt "@label"
#~ msgid "Comment:"
#~ msgstr "Komentar:"

#~ msgctxt "@option:check"
#~ msgid "Use as default for new folders"
#~ msgstr "Uporabi kot privzeto za vse mape"

#~ msgctxt "@action:inmenu Settings"
#~ msgid "Get Service Menu..."
#~ msgstr "Dobi storitveni meni ..."

#~ msgctxt "@title:menu"
#~ msgid "Navigation Bar"
#~ msgstr "Vrstica za krmarjenje"

#~ msgctxt "@info:tooltip"
#~ msgid "Click to begin the search"
#~ msgstr "Kliknite za pričetek iskanja"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Modified:"
#~ msgctxt "@label"
#~ msgid "Date Modified"
#~ msgstr "Spremenjena:"

#, fuzzy
#~| msgctxt "@title:group"
#~| msgid "Preview Size"
#~ msgctxt "@label"
#~ msgid "File Size"
#~ msgstr "Velikost ogleda vsebine"

#~ msgctxt "@info:status"
#~ msgid "Copy operation completed."
#~ msgstr "Kopiranje opravljeno."

#~ msgctxt "@info:status"
#~ msgid "Move operation completed."
#~ msgstr "Premikanje opravljeno."

#~ msgctxt "@info:status"
#~ msgid "Link operation completed."
#~ msgstr "Povezovanje opravljeno."

#~ msgctxt "@info:status"
#~ msgid "Move to trash operation completed."
#~ msgstr "Končan premik v smeti."

#~ msgctxt "@info:status"
#~ msgid "Renaming operation completed."
#~ msgstr "Končano preimenovanje."

#, fuzzy
#~| msgctxt "@title:group"
#~| msgid "Text"
#~ msgctxt "label"
#~ msgid "Texts"
#~ msgstr "Besedilo"

#~ msgid "Show comment"
#~ msgstr "Prikaži komentar"

#~ msgid "Show tags"
#~ msgstr "Prikaži oznake"

#~ msgctxt "@title:window subtitle to previous message"
#~ msgid "with optional icon and description"
#~ msgstr "ikona in opis nista potrebna"

#~ msgctxt "@label Indicator when no tags defined"
#~ msgid "No Tags"
#~ msgstr "Brez oznak"

#~ msgid "Do you really want to delete tag '%1'?"
#~ msgstr "Ali res želite izbrisati oznako »%1«?"

#~ msgctxt "@label"
#~ msgid "Detailed description (optional):"
#~ msgstr "Podroben opis (ni potrebno):"

#, fuzzy
#~| msgid "&Edit"
#~ msgctxt "@item::intable"
#~ msgid "Editing"
#~ msgstr "&Urejanje"

#~ msgctxt "@title:group Tags"
#~ msgid "Not yet tagged"
#~ msgstr "Še nima oznake"

#~ msgctxt "@action:inmenu"
#~ msgid "Move To Trash"
#~ msgstr "Premakni v smeti"

#, fuzzy
#~| msgctxt "@action:inmenu File"
#~| msgid "Rename..."
#~ msgctxt "@action:inmenu File"
#~ msgid "&Rename..."
#~ msgstr "Preimenuj ..."

#, fuzzy
#~| msgctxt "@action:inmenu File"
#~| msgid "Properties"
#~ msgctxt "@action:inmenu File"
#~ msgid "&Properties"
#~ msgstr "Lastnosti"

#, fuzzy
#~| msgctxt "@action:intoolbar"
#~| msgid "Preview"
#~ msgctxt "@action:intoolbar"
#~ msgid "P&review"
#~ msgstr "Ogled"

#, fuzzy
#~| msgctxt "@action:inmenu Sort"
#~| msgid "Descending"
#~ msgctxt "@action:inmenu Sort"
#~ msgid "Des&cending"
#~ msgstr "Padajoče"

#, fuzzy
#~| msgctxt "@action:inmenu View"
#~| msgid "Show Hidden Files"
#~ msgctxt "@action:inmenu View"
#~ msgid "Show &Hidden Files"
#~ msgstr "Prikaži skrite datoteke"

#, fuzzy
#~| msgctxt "@action:inmenu Additional information"
#~| msgid "Size"
#~ msgctxt "@action:inmenu Additional information"
#~ msgid "&Size"
#~ msgstr "Velikost"

#, fuzzy
#~| msgctxt "@action:inmenu Additional information"
#~| msgid "Date"
#~ msgctxt "@action:inmenu Additional information"
#~ msgid "D&ate"
#~ msgstr "Datum"

#, fuzzy
#~| msgctxt "@action:inmenu Additional information"
#~| msgid "Permissions"
#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Pe&rmissions"
#~ msgstr "Dovoljenja"

#, fuzzy
#~| msgctxt "@action:inmenu Additional information"
#~| msgid "Owner"
#~ msgctxt "@action:inmenu Additional information"
#~ msgid "&Owner"
#~ msgstr "Lastnik"

#, fuzzy
#~| msgctxt "@action:inmenu Additional information"
#~| msgid "Group"
#~ msgctxt "@action:inmenu Additional information"
#~ msgid "Gro&up"
#~ msgstr "Skupina"

#, fuzzy
#~| msgctxt "@action:inmenu Additional information"
#~| msgid "Type"
#~ msgctxt "@action:inmenu Additional information"
#~ msgid "&Type"
#~ msgstr "Vrsta"

#, fuzzy
#~| msgctxt "@action:inmenu Sort By"
#~| msgid "Size"
#~ msgctxt "@action:inmenu Sort By"
#~ msgid "&Size"
#~ msgstr "Velikosti"

#, fuzzy
#~| msgctxt "@action:inmenu Sort By"
#~| msgid "Date"
#~ msgctxt "@action:inmenu Sort By"
#~ msgid "&Date"
#~ msgstr "Datumu"

#, fuzzy
#~| msgctxt "@action:inmenu Sort By"
#~| msgid "Permissions"
#~ msgctxt "@action:inmenu Sort By"
#~ msgid "Pe&rmissions"
#~ msgstr "Dovoljenjih"

#, fuzzy
#~| msgctxt "@action:inmenu Sort By"
#~| msgid "Owner"
#~ msgctxt "@action:inmenu Sort By"
#~ msgid "&Owner"
#~ msgstr "Lastniku"

#, fuzzy
#~| msgctxt "@action:inmenu Sort By"
#~| msgid "Group"
#~ msgctxt "@action:inmenu Sort By"
#~ msgid "&Group"
#~ msgstr "Skupini"

#, fuzzy
#~| msgctxt "@action:inmenu Sort By"
#~| msgid "Type"
#~ msgctxt "@action:inmenu Sort By"
#~ msgid "&Type"
#~ msgstr "Vrsti"

#, fuzzy
#~| msgctxt "@action:inmenu View Mode"
#~| msgid "Icons"
#~ msgctxt "@action:inmenu View Mode"
#~ msgid "&Icons"
#~ msgstr "Ikone"

#, fuzzy
#~| msgctxt "@action:inmenu View Mode"
#~| msgid "Details"
#~ msgctxt "@action:inmenu View Mode"
#~ msgid "Det&ails"
#~ msgstr "Podrobnosti"

#, fuzzy
#~| msgctxt "@action:inmenu View Mode"
#~| msgid "Columns"
#~ msgctxt "@action:inmenu View Mode"
#~ msgid "Col&umns"
#~ msgstr "Stolpci"

#, fuzzy
#~| msgctxt "@title:window"
#~| msgid "Information"
#~ msgctxt "@title:window"
#~ msgid "Information Panel"
#~ msgstr "Informacije"

#~ msgctxt "@action:inmenu Tools"
#~ msgid "Quick View"
#~ msgstr "Hitri ogled"

#~ msgctxt "@action:inmenu"
#~ msgid "Paste One Folder"
#~ msgstr "Prilepi mapo"

#~ msgctxt "@action:inmenu"
#~ msgid "Paste One File"
#~ msgstr "Prilepi datoteko"

#~ msgctxt "@action:inmenu"
#~ msgid "Paste One Item"
#~ msgid_plural "Paste %1 Items"
#~ msgstr[0] "Prilepi %1 predmetov"
#~ msgstr[1] "Prilepi %1 predmet"
#~ msgstr[2] "Prilepi %1 predmeta"
#~ msgstr[3] "Prilepi %1 predmete"

#~ msgctxt "@label"
#~ msgid "Artist:"
#~ msgstr "Izvajalec:"

#~ msgctxt "@option:check"
#~ msgid "Browse through archives"
#~ msgstr "Brskaj po arhivih"

#~ msgctxt "@info"
#~ msgid ""
#~ "All settings will be reset to default values. Do you want to continue?"
#~ msgstr ""
#~ "Vse nastavitve bodo ponastavljene na privzete vrednosti. Ali želite "
#~ "nadaljevati?"

#~ msgctxt "@title:group"
#~ msgid "File Previews"
#~ msgstr "Ogled vsebine datotek"

#~ msgctxt "@title:tab General settings"
#~ msgid "General"
#~ msgstr "Splošno"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Folder"
#~ msgctxt "@info:status"
#~ msgid "1 Folder"
#~ msgid_plural "%1 Folders"
#~ msgstr[0] "Mapa"
#~ msgstr[1] "Mapa"
#~ msgstr[2] "Mapa"
#~ msgstr[3] "Mapa"

#~ msgctxt "@action:inmenu Navigation Bar"
#~ msgid "Show Full Location"
#~ msgstr "Prikaži celotno lokacijo"

#~ msgctxt "@action:inmenu"
#~ msgid "&Move Here\t<shortcut>%1</shortcut>"
#~ msgstr "Pre&makni sem\t<shortcut>%1</shortcut>"

#~ msgctxt "@action:inmenu"
#~ msgid "&Copy Here\t<shortcut>%1</shortcut>"
#~ msgstr "Kopi&raj sem\t<shortcut>%1</shortcut>"

#~ msgctxt "@action:inmenu"
#~ msgid "&Link Here\t<shortcut>%1</shortcut>"
#~ msgstr "Po&veži sem\t<shortcut>%1</shortcut>"

#~ msgctxt "@action:inmenu"
#~ msgid "Cancel"
#~ msgstr "Prekliči"

#~ msgctxt "@item:inlistbox Arrangement"
#~ msgid "Left to Right"
#~ msgstr "Z leve na desno"

#~ msgctxt "@item:inlistbox Arrangement"
#~ msgid "Top to Bottom"
#~ msgstr "Od vrha do dna"

#~ msgctxt "@info:status"
#~ msgid "Getting size..."
#~ msgstr "Pridobivanje velikosti..."

#~ msgctxt "@title:group"
#~ msgid "Column Width"
#~ msgstr "Širina stolpca"

#~ msgctxt "@item:inrange Column Width"
#~ msgid "Small"
#~ msgstr "Majhna"

#~ msgctxt "@item:inrange Column Width"
#~ msgid "Large"
#~ msgstr "Velika"

#~ msgctxt "@option:radio Icon Size"
#~ msgid "Small"
#~ msgstr "Majhna"

#~ msgctxt "@option:radio Icon Size"
#~ msgid "Medium"
#~ msgstr "Srednja"

#~ msgctxt "@option:radio Icon Size"
#~ msgid "Large"
#~ msgstr "Velika"

#~ msgctxt "@action:button"
#~ msgid "Change Icon && Preview Size..."
#~ msgstr "Spremeni velikost ikon in ogleda ..."

#~ msgctxt "@title:window"
#~ msgid "Change Icon & Preview Size"
#~ msgstr "Spremeni velikost ikon in ogleda"

#~ msgctxt "@item:inrange Icon Size"
#~ msgid "Small"
#~ msgstr "Majhna"

#~ msgctxt "@item:inrange Icon Size"
#~ msgid "Large"
#~ msgstr "Velika"

#~ msgctxt "@item:inrange Preview Size"
#~ msgid "Small"
#~ msgstr "Majhna"

#~ msgctxt "@item:inrange Preview Size"
#~ msgid "Large"
#~ msgstr "Velika"

#~ msgctxt "@action:inmenu Edit"
#~ msgid "Properties"
#~ msgstr "Lastnosti"

#~ msgctxt "@title:menu"
#~ msgid "Open With"
#~ msgstr "Odpri z"

#~ msgctxt "@action:inmenu Open With"
#~ msgid "&Other..."
#~ msgstr "&Drugo ..."

#~ msgctxt "@title:menu"
#~ msgid "Open With..."
#~ msgstr "Odpri z ..."

#, fuzzy
#~| msgctxt "@action:inmenu"
#~| msgid "Paste"
#~ msgctxt "@action:button"
#~ msgid "Paste"
#~ msgstr "Prilepi"

#, fuzzy
#~| msgctxt "@title:group"
#~| msgid "General"
#~ msgctxt "@title:group General metadata"
#~ msgid "General"
#~ msgstr "Splošno"

#, fuzzy
#~| msgctxt "@action:inmenu"
#~| msgid "Cancel"
#~ msgctxt "@label"
#~ msgid "Cancel"
#~ msgstr "Prekliči"

#~ msgctxt "@item:inlistbox"
#~ msgid "Descending"
#~ msgstr "Padajoče"

#~ msgctxt "@title:tab"
#~ msgid "General"
#~ msgstr "Splošno"

#~ msgctxt "@label"
#~ msgid "Bold"
#~ msgstr "Polkrepko"

#~ msgctxt "@option:check"
#~ msgid "Allow showing of additional information"
#~ msgstr "Omogoči prikaz dodatnih informacij"

#~ msgctxt "@label"
#~ msgid "Allow showing of additional information"
#~ msgstr "Omogoči prikaz dodatnih informacij"

#, fuzzy
#~| msgctxt "@label"
#~| msgid "Categorized Sorting"
#~ msgctxt "@title:group Name"
#~ msgid "Uncategorized"
#~ msgstr "Kategorizirano razvrščanje"

#~ msgctxt "@title:group"
#~ msgid "Others"
#~ msgstr "Drugi"

#~ msgctxt "@item:inlistbox Sort"
#~ msgid "By Rating"
#~ msgstr "Po oceni"

#~ msgctxt "@item:inlistbox Sort"
#~ msgid "By Tags"
#~ msgstr "Po oznakah"

#~ msgctxt "@label:listbox"
#~ msgid "Additional information:"
#~ msgstr "Dodatne informacije:"

#~ msgctxt "@item:inlistbox Additional info"
#~ msgid "Type"
#~ msgstr "Vrsta"

#~ msgctxt "@item:inlistbox Additional info"
#~ msgid "Size"
#~ msgstr "Velikost"

#~ msgctxt "@item:inlistbox Additional info"
#~ msgid "Date"
#~ msgstr "Datum"

#, fuzzy
#~| msgctxt "@item:inlistbox Sort"
#~| msgid "By Size"
#~ msgctxt "@item:inlistbox Additional info"
#~ msgid "Type, Size"
#~ msgstr "Po velikosti"

#, fuzzy
#~| msgctxt "@item:inlistbox Sort"
#~| msgid "By Date"
#~ msgctxt "@item:inlistbox Additional info"
#~ msgid "Type, Date"
#~ msgstr "Po datumu"

#~ msgctxt "@title:group"
#~ msgid "Columns"
#~ msgstr "Stolpci"

#~ msgctxt "@option:check Columns"
#~ msgid "Date"
#~ msgstr "Datum"

#~ msgctxt "@option:check Columns"
#~ msgid "Type"
#~ msgstr "Vrsta"

#~ msgctxt "@info:status"
#~ msgid ""
#~ "Failed to contact Nepomuk service, annotation and tagging are disabled."
#~ msgstr ""
#~ "Spodletela navezava stika s storitvijo Nepomunk, beležke in oznake so "
#~ "onemogočene."

#~ msgctxt "@label"
#~ msgid "Show group"
#~ msgstr "Prikaži skupino"

#~ msgctxt "@label"
#~ msgid "Show permissions"
#~ msgstr "Prikaži dovoljenja"

#~ msgctxt "@title:group Date"
#~ msgid "Less than a month"
#~ msgstr "Manj kot mesec"

#~ msgctxt "@title:group Date"
#~ msgid "More than a year"
#~ msgstr "Več kot leto"

#~ msgctxt "@action:inmenu"
#~ msgid "Bookmark Folder..."
#~ msgstr "Mapa z zaznamki..."

#~ msgctxt "@action:inmenu"
#~ msgid "Bookmark This Folder..."
#~ msgstr "Zaznamuj to mapo..."