File: template.catalog

package info (click to toggle)
worker 5.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,444 kB
  • sloc: cpp: 133,098; sh: 5,543; yacc: 1,649; makefile: 791; lex: 279; python: 85; xml: 45
file content (4841 lines) | stat: -rw-r--r-- 100,866 bytes parent folder | download
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
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
########################################################
# This translation is part of Worker
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
######################
# Worker Configuration
0:
######################
# 
1:
######################
# 
2:
######################
# 
3:
######################
# Button settings
4:
######################
# 
5:
######################
# File types
6:
######################
# Save
7:
######################
# Cancel
8:
######################
# Select Language:
9:
######################
# english (builtin)
10:
######################
# Okay
11:
######################
# Welcome to Worker
12:
######################
# Bytes
13:
######################
# Number of colors:
14:
######################
# Palette
15:
######################
# File lister settings
16:
######################
# Number of rows:
17:
######################
# Number of columns:
18:
######################
# Left list view
19:
######################
# Right list view
20:
######################
# Horizontal scroller:
21:
######################
# Top:
22:
######################
# Height:
23:
######################
# Vertical scroller:
24:
######################
# Left:
25:
######################
# Width:
26:
######################
# Palette entry:
27:
######################
# Red:
28:
######################
# Green:
29:
######################
# Blue:
30:
######################
# Status bar
31:
######################
# Foreground
32:
######################
# Background
33:
######################
# Selected list view bar
34:
######################
# Unselected list view bar
35:
######################
# unselected directory
36:
######################
# selected directory
37:
######################
# unselected file
38:
######################
# selected file
39:
######################
# Can't save the configuration to %s!|Please check the worker installation!
40:
######################
# Retry
41:
######################
# A button named %s already uses this shortcut!|Click Okay to remove the reference to this shortcut|from the button and use it here instead
42:
######################
# Clock bar
43:
######################
# Requester
44:
######################
# Choose color:
45:
######################
# Left startup path:
46:
######################
# Right startup path:
47:
######################
# Copy button
48:
######################
# Swap button
49:
######################
# Delete button
50:
######################
# left mouse button
51:
######################
# right mouse button
52:
######################
# Choose button to edit or choose action
53:
######################
# Select button to copy (or press ESC to cancel)
54:
######################
# Select destination button (will be overwritten) (or press ESC to cancel)
55:
######################
# Select first button to swap (or press ESC to cancel)
56:
######################
# Select second button to swap (or press ESC to cancel)
57:
######################
# Select button to delete (or press ESC to cancel)
58:
######################
# Edit button
59:
######################
# Button title:
60:
######################
# Choose shortcut
61:
######################
# Delete shortcut
62:
######################
# A path named %s already uses this shortcut!|Click Okay to remove the reference to this shortcut|from the path and use it here instead
63:
######################
# 
64:
######################
# A hotkey named %s already uses this shortcut!|Click Okay to remove the reference to this shortcut|from the hotkey and use it here instead
65:
######################
# Please press the key for the shortcut!
66:
######################
# The destination directory %s doesn't exists!
67:
######################
# Bank no.:
68:
######################
# Next bank
69:
######################
# Prev bank
70:
######################
# New bank
71:
######################
# Delete bank
72:
######################
# Copy path
73:
######################
# Swap path
74:
######################
# Delete path
75:
######################
# Choose path to edit or one of the action buttons
76:
######################
# Select path to copy (or press ESC to cancel)
77:
######################
# Select destination path (will be overwritten) (or press ESC to cancel)
78:
######################
# Select first path to swap (or press ESC to cancel)
79:
######################
# Select second path to swap (or press ESC to cancel)
80:
######################
# Select path to delete (or press ESC to cancel)
81:
######################
# Edit path
82:
######################
# Path title:
83:
######################
# Enter path:
84:
######################
# New type
85:
######################
# Duplicate type
86:
######################
# Delete type
87:
######################
# Edit type
88:
######################
# Name:
89:
######################
# Average rate:
90:
######################
# Hotkeys
91:
######################
# Hotkey name:
92:
######################
# Pattern:
93:
######################
# Use pattern
94:
######################
# File content
95:
######################
# Use file content
96:
######################
# Byte
97:
######################
# Edit byte
98:
######################
# Clear byte
99:
######################
# Automatic creation
100:
######################
# Edit file content
101:
######################
# Enter code or press key
102:
######################
# File
103:
######################
# 
104:
######################
# Free RAM
105:
######################
# Free Swap
106:
######################
# Files
107:
######################
# Dirs
108:
######################
# Dir
109:
######################
# Set to default viewer
110:
######################
# 
111:
######################
# Choose the mode to toggle:
112:
######################
# Error while copying %s|Source and destination are the same, skipping!
113:
######################
# Quitting Worker
114:
######################
# Do you really wanna quit Worker?
115:
######################
# Copy file %s
116:
######################
# to %s
117:
######################
# files to copy:
118:
######################
# dirs to copy:
119:
######################
# bytes copied
120:
######################
# Remaining time:
121:
######################
# Creating database for copy process
122:
######################
# Worker Request
123:
######################
# Worker Message
124:
######################
# Worker Warning
125:
######################
# Can't create the directory %s|All subfiles and subdirs are ignored
126:
######################
# Can't create the directory %s!
127:
######################
# Show free disk space
128:
######################
# Update time:
129:
######################
# Format of owner output:
130:
######################
# Owner @ group
131:
######################
# Owner.group
132:
######################
# Filter action:
133:
######################
# Terminal program (with %s for file to execute in the terminal, must support multiple arguments):
134:
######################
# Overwrite all
135:
######################
# Overwrite none
136:
######################
# | Target size: %s| Source size: %s|| Target time: %s| Source time: %s
137:
######################
# Failed to remove the file %s|I will skip this file!
138:
######################
# Failed to remove the destination file|The file %s is probably incomplete!
139:
######################
# Creating database for deleting
140:
######################
# Deleting %s
141:
######################
# remaining files:
142:
######################
# remaining dirs:
143:
######################
# 
144:
######################
# Do you really want to delete %ld files and %ld dirs recursively?
145:
######################
# The directory %s is not empty|Delete it recursively?
146:
######################
# Can't remove the directory %s!
147:
######################
# Enter new name for %s:
148:
######################
# Rename
149:
######################
# Preserve attributes
150:
######################
# Error while renaming!
151:
######################
# Enter name for directory:
152:
######################
# Delete active entry if there are no other entries selected
153:
######################
# New hotkey
154:
######################
# Duplicate hotkey
155:
######################
# Delete hotkey
156:
######################
# Edit hotkey
157:
######################
# Sort mode
158:
######################
# Filter
159:
######################
# Name sort
160:
######################
# Size sort
161:
######################
# Access time
162:
######################
# Modification time
163:
######################
# Change time
164:
######################
# Reverse sort order
165:
######################
# Listing mode
166:
######################
# New filter
167:
######################
# Edit filter(s)
168:
######################
# Remove selected filter(s)
169:
######################
# include
170:
######################
# exclude
171:
######################
# Edit filter
172:
######################
# directory mode
173:
######################
# show image mode
174:
######################
# information mode
175:
######################
# Name
176:
######################
# Size
177:
######################
# Type
178:
######################
# Destination
179:
######################
# Permissions
180:
######################
# Add dir
181:
######################
# Edit entry
182:
######################
# Remove dir from list
183:
######################
# Owner
184:
######################
# Position
185:
######################
# real position
186:
######################
# Free space
187:
######################
# of
188:
######################
# No information available
189:
######################
# There is already a dir named %s
190:
######################
# Include filter
191:
######################
# Exclude filter
192:
######################
# Unset filter
193:
######################
# Unset all filters
194:
######################
# 
195:
######################
# Set to default
196:
######################
# 
197:
######################
# Can't open destination file %s!
198:
######################
# Enter directory to ignore for file type check:
199:
######################
# Enter text:
200:
######################
# Press RETURN to continue!
201:
######################
# 
202:
######################
# Can't get information about %s!|This file (or directory) will not be visible!
203:
######################
# Font requester
204:
######################
# The symlink %s couldn't be created!
205:
######################
# Enter the destination of the symlink %s:
206:
######################
# Enter the name of the link|which will point to %s:
207:
######################
# About Worker
208:
######################
# 
209:
######################
# 
210:
######################
# 
211:
######################
# Enter destination directory:
212:
######################
# Permissions for %s:
213:
######################
# Owner:
214:
######################
# Group:
215:
######################
# Other:
216:
######################
# Special:
217:
######################
# Read
218:
######################
# Write
219:
######################
# Execute
220:
######################
# Set UID
221:
######################
# Set GID
222:
######################
# Sticky
223:
######################
# Ok to all
224:
######################
# Skip
225:
######################
# Can't change permissions on %s!
226:
######################
# Action mode:
227:
######################
# basic (action is used once)
228:
######################
# extended (action can used until ESC or you click on the action again)
229:
######################
# Enter new name
230:
######################
# 
231:
######################
# 
232:
######################
# Number of directory buffers:
233:
######################
# 
234:
######################
# 
235:
######################
# Up
236:
######################
# Down
237:
######################
# Used options
238:
######################
# Remove >>
239:
######################
# << Add
240:
######################
# Global font
241:
######################
# Font for action and path buttons
242:
######################
# Font for left list view
243:
######################
# Font for right list view
244:
######################
# Commands
245:
######################
# Add command
246:
######################
# Remove command
247:
######################
# Configure
248:
######################
# Choose command
249:
######################
# Actions
250:
######################
# Drag'n'Drop action
251:
######################
# Doubleclick action
252:
######################
# Show action
253:
######################
# RawShow action
254:
######################
# User0 action
255:
######################
# User1 action
256:
######################
# User2 action
257:
######################
# User3 action
258:
######################
# User4 action
259:
######################
# User5 action
260:
######################
# User6 action
261:
######################
# User7 action
262:
######################
# User8 action
263:
######################
# User9 action
264:
######################
# Select file
265:
######################
# Select the file of the file type you want to create:
266:
######################
# Please select three existing files for automatic creation!
267:
######################
# Select entries
268:
######################
# Deselect entries
269:
######################
# Enter the pattern the matching entries will be selected for:
270:
######################
# Enter the pattern the matching entries will be deselected for:
271:
######################
# Want to handle directories instead of files? Enter "/" as first character!
272:
######################
# Use this directory
273:
######################
# Delete link
274:
######################
# There is already a symlink named %s, which points to a directory|You can use it so the destination directory is used|or delete the link to create a real directory
275:
######################
# Failed to remove this file.|Please enter new name!
276:
######################
# Delete file
277:
######################
# There is already a link named %s
278:
######################
# There is already a file named %s
279:
######################
# Overwrite
280:
######################
# Failed to open the file %s
281:
######################
# Can't overwrite the file %s.|Shall I try to delete it?
282:
######################
# 
283:
######################
# copied files
284:
######################
# copied dirs
285:
######################
# Failed to remove the file %s!
286:
######################
# Delete all
287:
######################
# Delete only empty dirs
288:
######################
# The directory %s is not completely deleted!
289:
######################
# Enter directory you want to cd to:
290:
######################
# Can't remove %s!
291:
######################
# No options available
292:
######################
# Configure "%s"
293:
######################
# Request these flags
294:
######################
# do changes on files
295:
######################
# do changes on dirs
296:
######################
# do recursively
297:
######################
# Follow symlinks
298:
######################
# Move
299:
######################
# Rename
300:
######################
# Same directory
301:
######################
# Request destination
302:
######################
# Overwrite mode
303:
######################
# request
304:
######################
# always
305:
######################
# never
306:
######################
# copy mode
307:
######################
# normal
308:
######################
# fast
309:
######################
# 
310:
######################
# 
311:
######################
# value not allowed|Please change it or leave it blank
312:
######################
# Change
313:
######################
# Blank
314:
######################
# Create symlink in same directory
315:
######################
# 
316:
######################
# Action
317:
######################
# enter active entry
318:
######################
# enter active entry on other side
319:
######################
# special directory
320:
######################
# request directory
321:
######################
# special directory:
322:
######################
# Side to edit
323:
######################
# current side
324:
######################
# other side
325:
######################
# left side
326:
######################
# right side
327:
######################
# 
328:
######################
# Separate each entry
329:
######################
# Recursive
330:
######################
# Start mode
331:
######################
# normal mode
332:
######################
# in terminal
333:
######################
# in terminal and wait for key
334:
######################
# show output
335:
######################
# program:
336:
######################
# program for viewing output:
337:
######################
# Select flag:
338:
######################
# Side to reload
339:
######################
# Direction
340:
######################
# left
341:
######################
# right
342:
######################
# global program
343:
######################
# Not yet checked
344:
######################
# Unknown file type
345:
######################
# NoSelect type
346:
######################
# Error
347:
######################
# Side:
348:
######################
# Enter default filter:
349:
######################
# Worker quit mode
350:
######################
# request
351:
######################
# quick
352:
######################
# Dir positions:
353:
######################
# Directories first
354:
######################
# Directories last
355:
######################
# Directories mixed
356:
######################
# Show hidden entries
357:
######################
# Don't use
358:
######################
# Error while writing %s !
359:
######################
# toggle Hidden flag
360:
######################
# don't show hidden files
361:
######################
# show hidden files
362:
######################
# 
363:
######################
# 
364:
######################
# Sorry, there is no such font!
365:
######################
# 
366:
######################
# 
367:
######################
# Clock bar settings
368:
######################
# Clock bar mode:
369:
######################
# Show current time and free RAM/Swap (on GNU/Linux)
370:
######################
# Show current time
371:
######################
# Show worker version
372:
######################
# Show output of an external program
373:
######################
# program:
374:
######################
# unselected active directory
375:
######################
# selected active directory
376:
######################
# unselected active file
377:
######################
# selected active file
378:
######################
# list view background
379:
######################
# Select font:
380:
######################
# Enter own font (with X name)
381:
######################
# Font example
382:
######################
# X font name:
383:
######################
# 
384:
######################
# Reset directory sizes
385:
######################
# Use <DIR> for unknown dir sizes
386:
######################
# Activate shortkey
387:
######################
# Select shortkey:
388:
######################
# Button:
389:
######################
# Path:
390:
######################
# Hotkey:
391:
######################
# Activate
392:
######################
# The destination file %s is incomplete!|Keep this file or delete it?
393:
######################
# Keep
394:
######################
# Delete
395:
######################
# Import/Export
396:
######################
# Import
397:
######################
# Export
398:
######################
# Changes made here only affect the exported configuration|not your real configuration!
399:
######################
# 
400:
######################
# configure buttons to export
401:
######################
# configure hotkeys to export
402:
######################
# configure file types to export
403:
######################
# File name:
404:
######################
# 
405:
######################
# Please select or enter file to export to:
406:
######################
# Please mark which elements you want to export|and enter the filename!
407:
######################
# %s is a directory, please enter another name
408:
######################
# %s already exists, overwrite?
409:
######################
# Export to %s finished.
410:
######################
# Can't open %s for writing, please select another file
411:
######################
# %s isn't a file!
412:
######################
# 
413:
######################
# The configuration contains %d button bank(s), %d hotkey(s) and %d file type(s).|You can now change these parts before importing them.
414:
######################
# Please enter the file name to import from.
415:
######################
# You can change the import configuration before|the selected parts will be imported.
416:
######################
# Please mark which parts you want to import.
417:
######################
# There are no elements in the selected configuration!
418:
######################
# The new button %s uses the same shortkey as the button %s!
419:
######################
# The new hotkey %s uses the same shortkey as the button %s!
420:
######################
# The new button %s uses the same shortkey as the hotkey %s!
421:
######################
# The new hotkey %s uses the same shortkey as the hotkey %s!
422:
######################
# The new button %s uses the same shortkey as the path %s!
423:
######################
# The new hotkey %s uses the same shortkey as the path %s!
424:
######################
# Leave shortkey at original element
425:
######################
# Use shortkey for new element
426:
######################
# Use original
427:
######################
# Use new
428:
######################
# The import configuration contains the special file type %s|which would overwrite the original type %s!|Which one do you want to use?
429:
######################
# Import successful
430:
######################
# Never use shortkey for new element
431:
######################
# File type sort
432:
######################
# Owner sort
433:
######################
# Keep file types
434:
######################
# Run in background
435:
######################
# Yesterday
436:
######################
# Today
437:
######################
# Tomorrow
438:
######################
# Date/Time settings
439:
######################
# Date:
440:
######################
# Own format (strftime style):
441:
######################
# Name substitution (Today, Yesterday, ...)
442:
######################
# own format
443:
######################
# Time:
444:
######################
# Date before time
445:
######################
# Can't change owner for %s!|Permission denied!
446:
######################
# Error while changing owner for %s!
447:
######################
# Owner for %s:
448:
######################
# Shortkeys:
449:
######################
# Add shortkey
450:
######################
# Remove shortkey
451:
######################
# Add normal or double shortkey?
452:
######################
# Normal
453:
######################
# Double
454:
######################
# Please press the first key for the shortcut!
455:
######################
# Please press the second key for the shortcut!
456:
######################
# This shortkey conflicts with a key used here!
457:
######################
# Find
458:
######################
# Label %s not found for if statement at line %d!|Aborting
459:
######################
# Error in if statement at line %d!|Aborting
460:
######################
# Script command:
461:
######################
# nop
462:
######################
# push
463:
######################
# pop
464:
######################
# label
465:
######################
# if
466:
######################
# end
467:
######################
# Push a string on a stack
468:
######################
# Push the output of the command
469:
######################
# Stack number:
470:
######################
# String:
471:
######################
# Take a string from a stack
472:
######################
# 
473:
######################
# Run in debug mode
474:
######################
# Label:
475:
######################
# This does nothing
476:
######################
# This will immediately finish the execution of the command list
477:
######################
# Jump to label when condition is true
478:
######################
# Condition:
479:
######################
# 
480:
######################
# Choose flag:|The flags beginning at {Rs} are only allowed|inside "" or in ?{}/${}!
481:
######################
# You can choose flags with the requester by clicking at "F".|You can use parentheses if necessary, && means both sides have to be true, \\|\\| one of both.|use <, <=, ==, >=, >, != as usual; when both sides are strings ("" or ${}) they are compared as strings, otherwise with the|numerical value. So ( "5" > "06" ) is true while ( 5 > "06" ) is false!
482:
######################
# Help
483:
######################
# if debug: Result of %s is %d
484:
######################
# push debug: pushing %s at stack %d
485:
######################
# settings
486:
######################
# Choose "Recursive" to collect all files recursively (for selected dirs)|  This can only be changed as the very first command!|Choose "Also use dirs..." if directories should be part of flags too.
487:
######################
# change user window
488:
######################
# Here you can change the window to show some information to the user.|You can change the progress bar by any string which can contain flags and|you can also use the output of this string for the progress.|The only limitation is that the resulting string can be transformed to a number between 0 and 100!|You can also change the text shown above the progressbar and this string can contain \\||for a new line (as many as you want). Of course this string can contain any valid flags and|you can also use the output instead.
489:
######################
# Change window visibility
490:
######################
# Open window
491:
######################
# Close window
492:
######################
# Change progress bar
493:
######################
# Progress:
494:
######################
# Use the output for the progress
495:
######################
# Change text
496:
######################
# Text:
497:
######################
# Use the output for the text
498:
######################
# Worker script window
499:
######################
# Copy dir %s
500:
######################
# Ignore case
501:
######################
# Use regular expression
502:
######################
# Command execution stopped by USR1 signal!
# comment:request text
503:
######################
# 
504:
######################
# 
505:
######################
# File handled with %s
506:
######################
# File handled as normal file
507:
######################
# Show complete license
508:
######################
# Worker license
509:
######################
# The configuration has been changed!|Shall I reload it?
510:
######################
# Reload
511:
######################
# Don't reload
512:
######################
# Also use dirs for flag replacing (when collecting recursively)
513:
######################
# Label %s not found for goto statement at line %d!|Aborting
514:
######################
# goto
515:
######################
# Can't copy|  %s|to|  %s|because I can't remove the destination!|Error:%s
516:
######################
# 
517:
######################
# Can't copy|  %s|to|  %s|Can't get information about source!|Error:%s
518:
######################
# Can't copy|  %s|to|  %s|Can't get symlink destination!|Error:%s
519:
######################
# Can't copy|  %s|because it's a special file and I can't handle it yet!
520:
######################
# Enter the image viewing program.|This program has to accept 7 arguments: the first 4 are: x, y, width height.|The 5th is the hex number of the window.|Then the file name follows and the last argument is the background color in the X11 format "rgb:rr/gg/bb".
521:
######################
# 
522:
######################
# Directory cache list
523:
######################
# Select or enter a directory:
524:
######################
# Error while reading from "%s"|Error:%s
525:
######################
# Error while writing to "%s"|Error:%s
526:
######################
# octal:
527:
######################
# Move was canceled but some files were correctly copied!|Shall I delete these files from the source?
528:
######################
# 
529:
######################
# 
530:
######################
# 
531:
######################
# Can't read directory|%s|because of this error:|%s
532:
######################
# Create relative symlink
533:
######################
# Select program
534:
######################
# Select on of the shown programs, make sure the corresponding|program is available!
535:
######################
# I didn't restore the SUID/SGUID bit for the file|%s|because chown to old owner failed (probably you are not|the owner or not root).
536:
######################
# Ignore further warnings
537:
######################
# You changed the configuration!|Do you really want to discard your changes?
538:
######################
# Error while reading configuration!|The following error occurred in line %d:|%s|I will continue with the partly read configuration.
539:
######################
# configure buttons to import
540:
######################
# configure hotkeys to import
541:
######################
# configure file types to import
542:
######################
# Do you really want to abort?
543:
######################
# Continue with copying
544:
######################
# There is no space left for file %s|in directory %s !
545:
######################
# The external program failed with following error:
546:
######################
# Waiting for program (stop waiting with Escape or middle click)
547:
######################
# Inode
548:
######################
# Hard links
549:
######################
# Blocks
550:
######################
# %s blocks
551:
######################
# Inode sort
552:
######################
# Hard links sort
553:
######################
# Show header line:
554:
######################
# list view header
555:
######################
# State bar
556:
######################
# Clock bar
557:
######################
# Buttons
558:
######################
# List views
559:
######################
# Buttons, list view, list view
560:
######################
# List view, buttons, list view
561:
######################
# List view, list view, buttons
562:
######################
# Buttons, list views
563:
######################
# List views, Buttons
564:
######################
# Select button and list view orientation:
565:
######################
# 
566:
######################
# Buttons vertical
567:
######################
# List views vertical
568:
######################
# Layout configuration
569:
######################
# Match full file name
570:
######################
# Swap next
571:
######################
# Swap prev
572:
######################
# extended test:
573:
######################
# use extended test
574:
######################
# Pattern
575:
######################
# Extended test
576:
######################
# Without using regular expressions, you can use the common shell wildcards:| * for matching any string| ? for matching a single character| [...] for matching a character class|See the shell manual for more information.||You can also use basic regular expressions, some examples follow:| .* for matching any string| \\+ matches one or more occurrences| \\? matches zero or one occurrence| ^ matches the beginning of the line| $ matches the end| \\( and \\) can be used for sub expressions| \\\\\\| matches one of the sub expressions|For more information see the regular expression manual (man 7 regex)
577:
######################
# Choose flag:
578:
######################
# true if entry is a regular file
579:
######################
# true if entry is a socket
580:
######################
# true if entry is a FIFO (pipe)
581:
######################
# true if entry is a symlink
582:
######################
# file size
583:
######################
# permission (numerical) bitwise-and'd with mask
584:
######################
# lowers string
585:
######################
# uppers string
586:
######################
# replaces with file content from start to optional end offset
587:
######################
# replaces with file content read as number from start to optional end offset
588:
######################
# file name
589:
######################
# full file name
590:
######################
# file name (only valid inside strings)
591:
######################
# full file name (only valid inside strings)
592:
######################
# You can choose flags with the requester by clicking at the "F". Start the flag identifier|with a "-" if you don't want to quote the string (e.g. {-f}). The functions "contentStr"|and "contentNum" can be called without a second argument which will use only one character.|You can use parentheses if necessary, && means both sides have to be true, \\|\\| one of both.|use <, <=, ==, >=, >, != as usual and ~= for string comparison using regular|expressions; when both sides are strings ("" or ${}) they are compared as strings,|otherwise with the numerical value. So ( "5" > "06" ) is true while ( 5 > "06" ) is false!
593:
######################
# Move file %s
594:
######################
# Configuring Worker...
595:
######################
# New child type
596:
######################
# This file type contains child file types!|Really delete this and all child types?
597:
######################
# Cut
598:
######################
# Paste as root type
599:
######################
# Paste as child type
600:
######################
# Select color mode:
601:
######################
# Default colors
602:
######################
# Custom colors
603:
######################
# Colors from external program
604:
######################
# Colors from parent type
605:
######################
# Select custom colors
606:
######################
# unselected
607:
######################
# selected
608:
######################
# unselected, active
609:
######################
# selected, active
610:
######################
# External program:
611:
######################
# Colors
612:
######################
# Enter the program you want to use for the color selection.|You can use the usual flags {f} and {F} for the file name and the file name|with full path. The program you enter needs to output a single line with|8 integer values which describe the colors. The number is the color number|from the palette configuration starting with 0. The colors describe in this|order: the color for the unselected state (foreground followed by background),|the selected color (fg and bg), the color for the active state (fg and bg) and|the color while active and selected (fg and bg). As an example, the output for|the default colors would be: 1 0 2 1 1 7 2 7
613:
######################
# Add files of same file type:
614:
######################
# Add file
615:
######################
# Remove from list
616:
######################
# Do not enter directory
617:
######################
# Could not create temporary copy of %s!
618:
######################
# Don't check content of virtual files
619:
######################
# Host name:
620:
######################
# User name:
621:
######################
# Password:
622:
######################
# Store password but don't open ftp connection
623:
######################
# The password will be stored without encryption|in the worker configuration file!|Do really want to do this?
624:
######################
# No host name or user name was entered. Cannot continue!
625:
######################
# 1 if entry is a local file, 0 for virtual file, -1 for non existing file or error
626:
######################
# Store password even if password was already stored previously
627:
######################
# The temporary copy of %s|has been changed but the original file will not be updated!
628:
######################
# Continue
629:
######################
# You are about to make a ssh connection. You should only continue if you|don't need a password for a connection to the destination. Otherwise it|will not work at all or you will be asked for the password many times|if you have the ssh_askpass tool. Do you really want to continue?
630:
######################
# Don't ask me again
631:
######################
# Show mode:
632:
######################
# Close
633:
######################
# Show active file
634:
######################
# Show custom file
635:
######################
# Custom file:
636:
######################
# Word wrapping
637:
######################
# Settings:
638:
######################
# Enter command:
639:
######################
# Enter archive handler or choose from list:
640:
######################
# Execute command
641:
######################
# Handle like file type
642:
######################
# Handle as archive
643:
######################
# Select file type. Its double click action will be executed on the active file.
644:
######################
# Start program or apply different action to the current file:
645:
######################
# The action list of the file type is empty, you can select a different action here:
646:
######################
# Error while writing command file %s!|Can't execute external program.
647:
######################
# Search for next entry in reverse order
648:
######################
# Enable quick search
649:
######################
# Mouse button configuration
650:
######################
# Mouse configuration presets:
651:
######################
# worker style
652:
######################
# mc style
653:
######################
# kde style
654:
######################
# custom
655:
######################
# Select button:
656:
######################
# Left mouse button
657:
######################
# Middle mouse button
658:
######################
# Right mouse button
659:
######################
# Activate button:
660:
######################
# Scroll button:
661:
######################
# Select method:
662:
######################
# Normal (click toggles select state)
663:
######################
# Alternative (click selects element and deselects all other)
664:
######################
# 
665:
######################
# Do you want to cancel the delete operation?
666:
######################
# Abort deletion
667:
######################
# Continue deletion
668:
######################
# Please select a sub category for the user interface configuration.
669:
######################
# Enter the number of different colors you want to use in the user interface.
670:
######################
# You can configure the different colors.|Select a color by clicking on it and modify the red, green and blue values.
671:
######################
# Configure the colors of different elements of the user interface:
672:
######################
# Configure the fonts by clicking on the corresponding buttons:
673:
######################
# Configure the behaviour of the mouse buttons for the list view element.|You can select one of the predefined styles or configure the buttons individually.
674:
######################
# Configure the appearance of the file list views.
675:
######################
# Configure the visible columns used in the file list views.|Add or remove the fields and configure the position, the first column is the top position.
676:
######################
# Available options
677:
######################
# Configure the appearance of the owner field in the list view.
678:
######################
# Worker shows the size of directory as returned by the operation system if the real|size is unknown. Worker can display a string instead by choosing this option.
679:
######################
# Configure the appearance of the date and time in the list views.
680:
######################
# Enter the initial directories for both list views.|Leave it empty if you don't want to load a directory on startup or enter any path name.|Environment variables like $HOME or . for the current directory can also be used.
681:
######################
# Enter the number of rows and columns you want to use for the buttons.
682:
######################
# Create new file types or modify existing types.|File types are determined by the file name, the file content or other details.|The file type tests for child types are only checked if the tests of the parent type applies to|the actual file. This way child types need only to test specialised details for a certain file type.
683:
######################
# Add all directories to the list in which files should not be checked by content. For example this|can be useful if access to files in this directory would be very slow or generally unwanted.
684:
######################
# Hotkeys can be used for commands which are only started by a key press and not by using the mouse.|Basically they are buttons without a graphical representation.
685:
######################
# The expert configuration contains advanced options. The inexperienced Worker user|normally don't need to change these options. Select a sub category for more information|about it.
686:
######################
# The terminal program entered here is used if external programs should be started|in an own terminal. The default is the "xterm" terminal program available in almost every|X11 environment but you can enter your favorite terminal program with its options as long as|it can execute a given program.
687:
######################
# Worker keeps already read directories in a cache. Information about the selected|entries and their file type is also stored. You can enter any limit of different directories|to be stored inside the cache but of course a larger cache needs more memory.|If you want to disable this feature completely, set the limit to 1.
688:
######################
# The information shown in the clock bar can be configured.
689:
######################
# The layout of the Worker main window can be configured. You can select the orientation|of the buttons and list views and select their position from top to bottom.
690:
######################
# Parts of the configuration can be exported to a file or imported into the current|configuration. The file to import from can also be a complete Worker configuration file.|Before the actual import/export, you can modify the configuration which does NOT|modify your real configuration.|Note: The exported configuration is a copy of the configuration when the configuration|window was opened, any changes done without saving are not available for export.
691:
######################
# Enter the file name to import from or export to:
692:
######################
# Choose file
693:
######################
# Nothing to import
694:
######################
# Please enter the file name to export to.
695:
######################
# User interface settings
696:
######################
# Language selection
697:
######################
# Color settings
698:
######################
# User interface colors
699:
######################
# Font settings
700:
######################
# List view configuration
701:
######################
# Column configuration
702:
######################
# Owner column format
703:
######################
# Directory size settings
704:
######################
# Initial directories
705:
######################
# Button configuration
706:
######################
# Path configuration
707:
######################
# Ignored directories
708:
######################
# Expert settings
709:
######################
# Terminal program
710:
######################
# Directory caches
711:
######################
# Add frequently used directories here to quickly access these directories by clicking|on the button or pressing the corresponding key.
712:
######################
# Missing charsets:
713:
######################
# For UTF8 texts the font actually consist of several fonts for different character|sets. The number of missing charsets shown here is the number of character sets|for which no font was found matching the given font name. This means that not all|UTF8 characters will be visible. However, this doesn't mean you can't use this|font, it's just a problem when you can't see some characters you have to see.|You can select a different font (or size) to see whether the number of missing|charsets is lower but you can also enter a comma separated list of font names.|For example, you can select your favorite font from the list, then click on the|button enter an own font name and add ",*" to the font name which will|match any font.
714:
######################
# Show line numbers
715:
######################
# Jump to line
716:
######################
# Enter line number:
717:
######################
# Line number
718:
######################
# Command used to edit file:
719:
######################
# Input is valid.
720:
######################
# Input is NOT valid!
721:
######################
# Start directory:
722:
######################
# Search results will be used for further searches!
723:
######################
# File name:
724:
######################
# Case sensitive
725:
######################
# Match content:
726:
######################
# Search content of archives too
727:
######################
# Start new search - F5
728:
######################
# File name
729:
######################
# Change directory to entry - F1
730:
######################
# View - F3
731:
######################
# Edit - F4
732:
######################
# Remove selected results from list
733:
######################
# Previous results:
734:
######################
# No. of results
735:
######################
# Content pattern
736:
######################
# Search started at
737:
######################
# Clear store
738:
######################
# State:
739:
######################
# Idle
740:
######################
# Start search
741:
######################
# Stop
742:
######################
# Continue search
743:
######################
# Suspend search
744:
######################
# Suspended
745:
######################
# Show previous results instead of new search
746:
######################
# Searching in 
747:
######################
# Grepping in 
748:
######################
# Cannot continue "if" parsing because the following command writes something to stderr\\nand I treat this as an error:\\n%s\\nThe error was:\\n
749:
######################
# Cannot push the output of the following command because it writes something to stderr\\nand I treat this as an error:\\n%s\\nThe error was:\\n
750:
######################
# I don't update the user window because the following command wrotes something to stderr:\\n%s\\nThe error was:\\n
751:
######################
# Text view color
752:
######################
# Text view color for highlighted text
753:
######################
# Enable filtered search
754:
######################
# Anonymous login
755:
######################
# Add "%s" to bookmarks.
756:
######################
# Make "%s" active when jumping to this bookmark.
757:
######################
# Find as you type:
758:
######################
# Add bookmark
759:
######################
# Delete bookmark
760:
######################
# Jump to directory
761:
######################
# Do you really want to delete the selected bookmark?
762:
######################
# Read more
763:
######################
# The size of the file is %s. Shall I show only the first %s (faster) or|do you want to see the complete file (slower)?|If you choose to view only the first part of the file, you can still read more of it on demand.|If text wrapping was enabled you can also choose to disable it which is much faster when reading large files.
764:
######################
# Read partial file
765:
######################
# Read complete file
766:
######################
# Read complete file but disable wrapping
767:
######################
# Activate action
768:
######################
# Without modifier key
769:
######################
# Shift
770:
######################
# Ctrl
771:
######################
# Mod1
772:
######################
# Context menu:
773:
######################
# Name of custom action
774:
######################
# Enter new action name:
775:
######################
# Or select an existing name:
776:
######################
# New action
777:
######################
# Remove action
778:
######################
# Enter name of the action to activate:
779:
######################
# ChMod mode:
780:
######################
# Set permission(s)
781:
######################
# Add permission(s)
782:
######################
# Remove permission(s)
783:
######################
# General settings
784:
######################
# Save Worker state on exit
785:
######################
# Open Worker menu
786:
######################
# Worker menu
787:
######################
# Save Worker state
788:
######################
# Quit Worker
789:
######################
# Search:
790:
######################
# Text view color for selection
791:
######################
# Same file system only
792:
######################
# Filter:
793:
######################
# Show all
794:
######################
# Libmagic pattern:
795:
######################
# Use libmagic pattern
796:
######################
# Test with file:
797:
######################
# Libmagic output:
798:
######################
# Output matches pattern:
799:
######################
# Check
800:
######################
# yes
801:
######################
# no
802:
######################
# Libmagic
803:
######################
# Worker can recognize the file type by using the libmagic database which comes|with the stand-alone program "file". You can enter a pattern with wildcards|to match the libmagic output. Use the test text field to check the libmagic|output and whether the pattern matches or not. Just enter the file name and|click on "Check".
804:
######################
# Edit bookmark
805:
######################
# Bookmark path:
806:
######################
# Bookmark alias:
807:
######################
# Use parent directory and activate entry
808:
######################
# Path
809:
######################
# Alias
810:
######################
# Decompress file
811:
######################
# (in order of access [newest is bottom])
812:
######################
# Modified after
813:
######################
# Modified before
814:
######################
# Basic options
815:
######################
# More options
816:
######################
# File size >=
817:
######################
# File size <=
818:
######################
# Calendar
819:
######################
# The file size can be entered with the common suffixes kb, mb or gb|(or the SI units kib, mib, gib both with powers of 1024) and k, m or g (powers of 1000).|You may also enter floating-point numbers like 1.5mb.
820:
######################
# Command execution aborted! The maximum recursion limit has been reached.|This usually happens due to a bug in your configuration when one of the|callback commands like show-action is used for a file type action.|If you think this is a bug in Worker then please contact the mailing list!
821:
######################
# Current label:
822:
######################
# Label
823:
######################
# all
824:
######################
# Change the colors of various bookmark related components
825:
######################
# List view colors for labeled entries:
826:
######################
# Add
827:
######################
# Remove
828:
######################
# Select label to set or remove on active entry:
829:
######################
# Ask for label at runtime
830:
######################
# Choose label:
831:
######################
# Bookmark/Label colors
832:
######################
# Change label
833:
######################
# Remove label
834:
######################
# Choose to set or invert the selected options:
835:
######################
# Set settings
836:
######################
# Invert settings
837:
######################
# Change pattern based filters
838:
######################
# Change bookmark filter
839:
######################
# Bookmark filter:
840:
######################
# Show all entries
841:
######################
# Show only bookmarks
842:
######################
# Show only bookmark with given label
843:
######################
# Show bookmarks with label:
844:
######################
# Bookmark specific settings
845:
######################
# Also apply colors to base directories of a bookmark
846:
######################
# Add to bookmarks without label
847:
######################
# Show bookmarks with empty label
848:
######################
#  - %s/%s free
849:
######################
# Query label on runtime
850:
######################
# Tab action
851:
######################
# New tab
852:
######################
# Close current tab
853:
######################
# Switch to next tab
854:
######################
# Switch to prev tab
855:
######################
# Select the order of the elements.|An example view is shown at the right hande side.|Keep the list empty to use default view.
856:
######################
# Available elements:
857:
######################
# Used elements:
858:
######################
# Add element
859:
######################
# Remove element
860:
######################
# List view weight:
861:
######################
# Match inside file name (implicit leading *)
862:
######################
# Volume manager settings
863:
######################
# New devices available:
864:
######################
# This section contains the settings for the volume manager.
865:
######################
# Command to mount fstab entries:
866:
######################
# Command to unmount fstab entries:
867:
######################
# fstab file:
868:
######################
# mtab file:
869:
######################
# File with available partitions:
870:
######################
# Volume manager
871:
######################
# List of available volumes:
872:
######################
# Supposed mount point
873:
######################
# Device
874:
######################
# Mount point
875:
######################
# Status:
876:
######################
# Go to mount point
877:
######################
# Mounting...
878:
######################
# Mount successful
879:
######################
# Unmounting...
880:
######################
# Unmount successful
881:
######################
# Edit list of hidden devices
882:
######################
# List of devices:
883:
######################
# Remove selected entries from list
884:
######################
# Mount volume - m
885:
######################
# Unmount volume - u
886:
######################
# Hide volume
887:
######################
# Edit hidden volume list
888:
######################
# Mount failed: Already mounted
889:
######################
# Mount failed: Can't mount fstab entries with HAL
890:
######################
# Mount failed: %s: %s
891:
######################
# Mount failed: Not in fstab
892:
######################
# Unmount failed: Not mounted
893:
######################
# Unmount failed: Can't unmount fstab entries with HAL
894:
######################
# Unmount failed: %s: %s
895:
######################
# Unmount failed: Not in fstab
896:
######################
# Available flags
897:
######################
# Command used if empty: %s
898:
######################
# File used if empty: %s
899:
######################
# The following new devices are available:
900:
######################
# Mount and CD
901:
######################
# Mount
902:
######################
# Open volume manager
903:
######################
# Do nothing
904:
######################
# Mount failed: %s
905:
######################
# Ask what to do with new devices
906:
######################
# Permission sort
907:
######################
# Set weight relative to active side
908:
######################
# No information about %s could be retrieved!|This entry will be skipped.
909:
######################
# <new label>
910:
######################
# show output (internal viewer)
911:
######################
# Volume label
912:
######################
# Volume size
913:
######################
# Size (human readable)
914:
######################
# Text view font
915:
######################
# Closing tray...
916:
######################
# Closing tray successful
917:
######################
# Ejecting...
918:
######################
# Eject successful
919:
######################
# Eject
920:
######################
# Close tray
921:
######################
# Update list
922:
######################
# Eject: Can't eject non-HAL device with HAL
923:
######################
# Close tray: Can't close tray of non-HAL device with HAL
924:
######################
# Eject failed: %s: %s
925:
######################
# Close tray failed: %s: %s
926:
######################
# Command to eject non-HAL devices:
927:
######################
# Command to close tray of non-HAL devices:
928:
######################
# Eject (from menu)
929:
######################
# Close tray (from menu)
930:
######################
# Don't know what device to eject, choose from menu
931:
######################
# Don't know what device to close tray for, choose from menu
932:
######################
# AVFS module:
933:
######################
# No device found for opening/closing.
934:
######################
# Key %d
935:
######################
# Type of shortkey
936:
######################
# Name of shortkey
937:
######################
# Because of length limitations the following command string couldn't be built. Not all file names could be inserted for the chosen flags but you can decide to continue with as many files replaced as possible.\\n\\n
938:
######################
# Text view mode
939:
######################
# Maximum VFS depth:
940:
######################
# External command exited with code %d
941:
######################
# File type
942:
######################
# Cursor
943:
######################
# File list
944:
######################
# File operations
945:
######################
# Selections
946:
######################
# Settings
947:
######################
# Scripting
948:
######################
# Other
949:
######################
# Category
950:
######################
# Command name
951:
######################
# Close tab
952:
######################
# Tab to other side
953:
######################
# Tab to other side as new tab
954:
######################
# Use flexible matching
955:
######################
# Use version string compare
956:
######################
# Switch mode:
957:
######################
# Switch to next bank
958:
######################
# Switch to prev bank
959:
######################
# Switch to bank number
960:
######################
# Bank number:
961:
######################
# Search result is already shown by a different search window, creating a new one
962:
######################
# Locked
963:
######################
# Use temporary copies for all virtual files used for external programs
964:
######################
# Eject - o
965:
######################
# Close tray - c
966:
######################
# Go to entry but keep window
967:
######################
# Creating temporary file: %3.0f%% done...
968:
######################
# Creating temporary file: %3.0f%% done (total: %3.0f%%)...
969:
######################
# additional actions defined for current entry
970:
######################
# Unmount failed: %s
971:
######################
# Eject failed: %s
972:
######################
# %s (%ld:%02ld at current rate)
973:
######################
# Path jump
974:
######################
# List of allowed directories to track for path jump command.|All those directories and their sub-directories are allowed to store in a local database|to allow faster access to often used directories. It's a prefix comparison|so add a trailing slash if necessary to avoid mismatches.
975:
######################
# Enter directory to allow it to be tracked by the path jump command:
976:
######################
# Also show entries from bookmarks and persistent path store (Ctrl+a)
977:
######################
# Match quality
978:
######################
# String copied to clipboard:
979:
######################
# Display mode (Ctrl+f):
980:
######################
# All entries
981:
######################
# Only subdirectories
982:
######################
# Only direct subdirectories
983:
######################
# Cleanup persistent list...
984:
######################
# %d of %d entries in the persistent list of visited paths|do no longer exists, remove them from the list?
985:
######################
# All entries still exist, nothing to remove.
986:
######################
# Show hints
987:
######################
# evaluate command
988:
######################
# Evaluate an internally registered command
989:
######################
# Command:
990:
######################
# Watch directories for changes
991:
######################
# There is not enough space on target %s.|Free space is %s. Still continuing?
992:
######################
# Command %s not found
993:
######################
# 
994:
######################
# Panelize - F2
995:
######################
# Panelize (keep window)
996:
######################
# Switch mode
997:
######################
# Configure mode
998:
######################
# Apply dialog type to X windows
999:
######################
# Command not supported
1000:
######################
# Flags without path are relative to base dir
1001:
######################
# The target directory is a virtual directory. If you continue,|the files will be copied to|%s.
1002:
######################
# Match directories too
1003:
######################
# Menu entries
1004:
######################
# bank %d
1005:
######################
# Paths
1006:
######################
# Command menu: You can browse the entries with cursor keys, enter categories with right key.\\nYou can enter a filter to quickly find a matching entry.
1007:
######################
# Current sub-tree:
1008:
######################
# Element name:
1009:
######################
# Assigned command:
1010:
######################
# Reading directory content...
1011:
######################
# A configuration update to version %d.%d.%d has been found.|You can decide to import the new elements or skip this update.|The update contains %%d button bank(s), %%d hotkey(s) and %%d file type(s).|You can now also change these parts before importing them.
1012:
######################
# Use MIME description
1013:
######################
# Assigned shortkey:
1014:
######################
# Activate search mode when pressing keys
1015:
######################
# List view modes
1016:
######################
# switch to normal mode
1017:
######################
# switch to virtual dir mode
1018:
######################
# switch to show image mode
1019:
######################
# switch to information mode
1020:
######################
# switch to text view mode
1021:
######################
# open configuration of current mode
1022:
######################
# Registered commands
1023:
######################
# directory view
1024:
######################
# virtual directory
1025:
######################
# Directory mode
1026:
######################
# inactive
1027:
######################
# active (release with Ctrl-0)
1028:
######################
# Hold status:
1029:
######################
# Hold filter:
1030:
######################
# Entries
1031:
######################
# Key to hold entries
1032:
######################
# You can hold the currently visible entries and refine the search with a new filter. You can press Ctrl 1 to 9 to hold the entries corresponding to their match level. Ctrl 1 will only keep the best matches, Ctrl 2 also the second best matches, and so on. You can also double click on the the entry in the right list view. To release the held entries, press Ctrl 0 or click on the 'active' button.
1033:
######################
# Panelize
1034:
######################
# Command history:
1035:
######################
# true if entry is a broken symlink
1036:
######################
# Do you really want to delete all selected file types|and its sub-types?
1037:
######################
# Select registered command:
1038:
######################
# Continue in background
1039:
######################
# You are going to copy %s|which is currently (partly) a destination for a background copy.|This may lead to unwanted results!
1040:
######################
# Path entry on top
1041:
######################
# The source file %s has been changed while copying.|Do you want to continue until the file is complete,|or skip this file and copy the other remaining files,|or cancel the operation at all?
1042:
######################
# Always store used files in database
1043:
######################
# Also show ".." entry
1044:
######################
# Show breadcrumb navigation
1045:
######################
# Copy finished
1046:
######################
# Keep window opened
1047:
######################
# Faces (for all other GUI elements)
1048:
######################
# Changes to (some) faces only take effect after restarting Worker!
1049:
######################
# Name
1050:
######################
# Palette entry
1051:
######################
# Parent face
1052:
######################
# Change palette entry
1053:
######################
# Unset palette entry
1054:
######################
# Destination of symbolic link
1055:
######################
# true if file is symbolic link
1056:
######################
# Enable info line
1057:
######################
# Use LUA to evaluate info line content
1058:
######################
# Info line content:
1059:
######################
# user name
1060:
######################
# group name
1061:
######################
# Do not ask again unless path changed
1062:
######################
# Restore previous tab directories?
1063:
######################
# Restore previously opened tabs:
1064:
######################
# Never restore tabs
1065:
######################
# Always restore tabs
1066:
######################
# Ask on startup
1067:
######################
# Store tab directories on exit:
1068:
######################
# Never store directories
1069:
######################
# Always store directories
1070:
######################
# According to "Save Worker state on exit"
1071:
######################
# Ask on exit
1072:
######################
# Store currently opened tabs for next session?
1073:
######################
# Waiting for file type check...
1074:
######################
# Expression filter: next expected strings: 
1075:
######################
# Enter command and additional arguments:\\nThis string will be executed in a shell but not all shell features are allowed!\\nYou can use "&&", "||", "|", ";" and "&"  (all as a single word) just as in a shell and redirections can also be used (also as single word, so e.g. 2>/dev/null have to be 2> /dev/null), but all other shell features are not allowed!\\nIt is also possible to use special flags ({f}...) like in the "own command", select them by clicking on the "F" button.\\nYou have to protect special characters in file names with a backslash or quote them correctly.\\nThe default value here is the active entry and it's already correctly protected!
1076:
######################
# Use extended regular expressions
1077:
######################
# Highlight first user action when opening menu
1078:
######################
# Text view of %s
1079:
######################
# Year:
1080:
######################
# Month:
1081:
######################
# Can't change time settings on %s!
1082:
######################
# Change file time for %s
1083:
######################
# Change modification time:
1084:
######################
# Change last access time:
1085:
######################
# Invalid modification time!
1086:
######################
# Invalid last access time!
1087:
######################
# Adjust relative symlinks
1088:
######################
# outside destination dir
1089:
######################
# Can't copy|  %s|to|  %s|Failed operation:%s|Error:%s
1090:
######################
# Toggle symlink type
1091:
######################
# Change mode:
1092:
######################
# Edit symlink
1093:
######################
# Make absolute
1094:
######################
# Make relative
1095:
######################
# The config file has been modified after being loaded.|Do you want to continue saving this config and overwrite the file?
1096:
######################
# Ensure file permissions:
1097:
######################
# leave unmodified
1098:
######################
# user read/write
1099:
######################
# user read/write, group read
1100:
######################
# user read/write, all read
1101:
######################
# Current time
1102:
######################
# %d minute ago
1103:
######################
# %d minutes ago
1104:
######################
# %d hour ago
1105:
######################
# %d hours ago
1106:
######################
# %d day ago
1107:
######################
# %d days ago
1108:
######################
# %d week ago
1109:
######################
# %d weeks ago
1110:
######################
# Ignore last access time when sorting (Ctrl-t)
1111:
######################
# Last accessed
1112:
######################
# Progress: %.0f %%
1113:
######################
# 
1114:
######################
# Hide non-existing entries
1115:
######################
# Prefer udisks version:
1116:
######################
# udisks1
1117:
######################
# udisks2
1118:
######################
# Do you really want to delete %ld files and %ld dirs recursively?|WARNING: %ld entries are outside of the visible area!
1119:
######################
# Configure the visible columns used in the file list view. Add or remove the fields and configure the order, the first column is the top position.\\nSetting the same columns again for a list view will switch back to the default columns configured in the global configuration.
1120:
######################
# Open configuration window
1121:
######################
# Right-click to open menu
1122:
######################
# Left-click: switch to next button bank\\nRight-click: switch to previous button bank\\nMouse wheel: switch button bank
1123:
######################
# Right-click: open list view settings
1124:
######################
# Change to parent directory
1125:
######################
# Change to previously visited directory
1126:
######################
# Change to oldest visited directory
1127:
######################
# Open directory mode settings
1128:
######################
# Open a new tab
1129:
######################
# Close current tab
1130:
######################
# Select flags as placeholders to be replaced with selected files
1131:
######################
# Insert flags to operate commands on selected files and other variables
1132:
######################
# Comma separates multiple patterns
1133:
######################
# Executed command: %s
1134:
######################
# Show Worker version, license, and compile time parameter
1135:
######################
# Next match
1136:
######################
# Previous match
1137:
######################
# Restart search from top
1138:
######################
# Matched position:
1139:
######################
# String not found
1140:
######################
# String found at line %d
1141:
######################
# Jump to line number\\nKey: Ctrl-l
1142:
######################
# Close window\\nKey: q, F3, F10
1143:
######################
# Jump to next match\\nKey: Enter or n
1144:
######################
# Jump to previous match\\nKey: p
1145:
######################
# Read more lines from file\\nKey: r
1146:
######################
# Wrap lines at window width\\nKey: w
1147:
######################
# Show line numbers\\nKey: l
1148:
######################
# Enter search string\\nKey to activate: /, Ctrl-s, Ctrl-f
1149:
######################
# String compare mode:
1150:
######################
# regular string comparison
1151:
######################
# number optimized comparison
1152:
######################
# compare ignoring case
1153:
######################
# Accessed earlier than:
1154:
######################
# +1 hour (Ctrl+h)
1155:
######################
# +1 day (Ctrl+d)
1156:
######################
# +1 week (Ctrl+w)
1157:
######################
# Reset
1158:
######################
# same day
1159:
######################
# Modified:
1160:
######################
# past
1161:
######################
# future
1162:
######################
# Results:
1163:
######################
# Results: scanning...
1164:
######################
# Waiting...
1165:
######################
# <Cursor up> to increase number of days
1166:
######################
# <Cursor down> to decrease number of days
1167:
######################
# In this window you see all files modified at the same day as the newest file in the current directory. The results can be viewed as a virtual directory in the main window. You can also select only specific entries to be panelized. Also, you may choose to list files modified more days in the past.
1168:
######################
# Show recently used entries only
1169:
######################
# Show recently used entries only (Ctrl-r)
1170:
######################
# Change filter
1171:
######################
# hide %s
1172:
######################
# disable all filters
1173:
######################
# disable filter %s
1174:
######################
# Reload file\\nKey: Ctrl-r
1175:
######################
# Show non-printable
1176:
######################
# Show non-printable characters as hexadecimal representation\\ninstead of a simple dot replacement
1177:
######################
# Show in list view
1178:
######################
# Open a new tab in the current list view and highlight the currently viewed file
1179:
######################
# Compare the directory in the active and inactive panel based on the criterion selected below.\\n\\nActive side: The equal entries will be selected (and the unequal entries will be unselected).\\n\\nInactive side: All equal entries will be deselected and all unequal ones will be selected (inverse to active side).\\n\\nYou can also choose to show the results in virtual directories. In this case the active panel will be a virtual directory will all equal files and directories while the inactive panel will be a virtual directory with all unequal elements.
1180:
######################
# 
1181:
######################
# 
1182:
######################
# Watch file
1183:
######################
# Follow active entry
1184:
######################
# How to use result:
1185:
######################
# Change selection state
1186:
######################
# Show as virtual directories
1187:
######################
# Remaining entries to compare:
1188:
######################
# File compare progress:
1189:
######################
# Current directory:
1190:
######################
# %lu of %lu
1191:
######################
# left hand side:
1192:
######################
# right hand side:
1193:
######################
# Error writing tab profile %s
1194:
######################
# Enter a profile name to store currently opened tabs or select a existing profile to restore given set of tabs. You may also choose to remove the profile after opening it successfully.
1195:
######################
# Save tabs currently opened as new profile:
1196:
######################
# Existing profiles:
1197:
######################
# Available profiles:
1198:
######################
# Profile content:
1199:
######################
# Open
1200:
######################
# Open and remove
1201:
######################
# Load
1202:
######################
# Remove
1203:
######################
# Invalid profile name %s
1204:
######################
# Failed to execute the following command:\\n%s\\nThe return code was:%d\\n and the error output was:\\n
1205:
######################
# The given program will be executed and the output lines will be added to a new virtual directory as files. Each output line is considered one file name. Absolute paths will be used as is, relative paths will be interpreted relatively to the current directory.
1206:
######################
# Program and arguments:
1207:
######################
# State bar font
1208:
######################
# Preserve base directories in virtual dirs
1209:
######################
# Failed to create some of the intermediate directories of %s
1210:
######################
# Failed to prepare the intermediate directory information for %s
1211:
######################
# Toggle lock state
1212:
######################
# Lock tab
1213:
######################
# Unlock tab
1214:
######################
# Move to the left
1215:
######################
# Move to the right
1216:
######################
# Sort settings
1217:
######################
# Filter settings
1218:
######################
# Other settings
1219:
######################
# Entry filter settings
1220:
######################
# Configure allowed paths in Path Jump configuration to see data!
1221:
######################
# Last accesses by time - F1
1222:
######################
# Last accesses by filter - F2
1223:
######################
# Initial tab:
1224:
######################
# Show accesses by time
1225:
######################
# Show accesses by filter
1226:
######################
# Clean unused paths from database
1227:
######################
# Base path to use: %s
1228:
######################
# Unused since
1229:
######################
# days
1230:
######################
# 1 week
1231:
######################
# 1 month
1232:
######################
# 1 year
1233:
######################
# Check matching entries
1234:
######################
# Clean unused filters
1235:
######################
# never used
1236:
######################
# No entries match the selected time period
1237:
######################
# %d of %d entries are older than the selected time period|Remove them from the list?
1238:
######################
# File extension
1239:
######################
# File extension sort
1240:
######################
# Drag'N'Drop-Action
1241:
######################
# DoubleClick-Action
1242:
######################
# Show-Action
1243:
######################
# RawShow-Action
1244:
######################
# User-Action
1245:
######################
# One row up
1246:
######################
# One row down
1247:
######################
# Change hidden flag
1248:
######################
# Copy
1249:
######################
# First Entry
1250:
######################
# Last Entry
1251:
######################
# Page Up
1252:
######################
# Page Down
1253:
######################
# (De)Select active entry
1254:
######################
# Select all entries
1255:
######################
# Deselect all entries
1256:
######################
# invert selection
1257:
######################
# go to parent dir
1258:
######################
# go to dir
1259:
######################
# Change list view settings
1260:
######################
# switch to other list view
1261:
######################
# pattern select
1262:
######################
# pattern unselect
1263:
######################
# path to other side
1264:
######################
# Quit worker
1265:
######################
# Delete
1266:
######################
# Reload
1267:
######################
# Make dir
1268:
######################
# own command
1269:
######################
# rename
1270:
######################
# directory size
1271:
######################
# simulate doubleclick
1272:
######################
# start prog
1273:
######################
# search entry
1274:
######################
# edit path (in the text field)
1275:
######################
# scroll listview
1276:
######################
# create symlink
1277:
######################
# change symlink
1278:
######################
# change permissions
1279:
######################
# toggle list view mode
1280:
######################
# set sort mode
1281:
######################
# set filter
1282:
######################
# activate shortkey from list
1283:
######################
# change owner
1284:
######################
# script
1285:
######################
# show directory cache
1286:
######################
# start action of parent type
1287:
######################
# do nothing
1288:
######################
# FTP connection
1289:
######################
# Internal text viewer
1290:
######################
# Search
1291:
######################
# Directory bookmarks
1292:
######################
# Open context menu
1293:
######################
# Run custom action
1294:
######################
# Open Worker menu
1295:
######################
# Change file label
1296:
######################
# Modify tabs
1297:
######################
# Change layout
1298:
######################
# Volume manager
1299:
######################
# Switch button bank
1300:
######################
# Path Jump
1301:
######################
# Copy string to clipboard
1302:
######################
# Command menu
1303:
######################
# Change file time
1304:
######################
# Change columns
1305:
######################
# View newest files
1306:
######################
# Compare directories
1307:
######################
# Tab profiles
1308:
######################
# External virtual dir
1309:
######################
# Open tab menu
1310:
######################
# Lock/unlock current tab
1311:
######################
# Open popup menu for labels
1312:
######################
# Recenter list view
1313:
######################
# Create flat view of directory
1314:
######################
# Create flat view of directory following symlinks
1315:
######################
# Virtual dir from selected entries
1316:
######################
# Add selected entries from other side to virtual dir
1317:
######################
# Select command
1318:
######################
# Description
1319:
######################
# Remove non-existing entries from the database. A non-zero 'unused days' value will only remove non-existing entries not used for longer than the given number of days.
1320:
######################
# (Filetype)
1321:
######################
# (All)
1322:
######################
# <enter filter>
1323:
######################
# Clean unused programs
1324:
######################
# Program
1325:
######################
# Last accesses by external program - F3
1326:
######################
# Show accesses by external program
1327:
######################
# Terminal returns early
1328:
######################
# Apply color theme presets for a light or dark theme:|Your current palette and UI color settings will be overwritten!|You need to restart Worker to make theme changes active!
1329:
######################
# Apply light theme
1330:
######################
# Apply dark theme
1331:
######################
# Directory presets
1332:
######################
# Save current settings for current dir
1333:
######################
# Edit saved settings
1334:
######################
# Paths with sort and filter presets
1335:
######################
# Sort settings:
1336:
######################
# Filter settings:
1337:
######################
# Sort mode:
1338:
######################
# Remove filter
1339:
######################
# Enter directory for which separate sort and|filter settings should be applied to.
1340:
######################
# (Mime type "%s" for unknown filetype)
1341:
######################
# Mime type
1342:
######################
# Create new filetype
1343:
######################
# Edit filetype
1344:
######################
# Toggle help state
1345:
######################
# Click button or press key to get help about assigned commands
1346:
######################
# Help about assigned commands
1347:
######################
# Assigned command for clicked element:
1348:
######################
# Assigned command for key (prefix) %s:
1349:
######################
# Element type
1350:
######################
# Short key
1351:
######################
# Assigned command
1352:
######################
# Button '%s'
1353:
######################
# Hotkey '%s'
1354:
######################
# Path button '%s'
1355:
######################
# High
1356:
######################
# Default
1357:
######################
# Low
1358:
######################
# File type priority:
1359:
######################
# Priority
1360:
######################
# File name and content
1361:
######################
# File size
1362:
######################
# File checksum
1363:
######################
# Max number of bytes to check:
1364:
######################
# Checksum feature not available due to missing OpenSSL
1365:
######################
# Files are equal on same:
1366:
######################
# File name
1367:
######################
# File name and file size
1368:
######################
# File name, size, and modification time
1369:
######################
# use best matching filter from history or file ending
1370:
######################
# Primary function:
1371:
######################
# Secondary function:
1372:
######################
# Key:
1373:
######################
# reverse order
1374:
######################
# interactive
1375:
######################
# Status indicators
1376:
######################
# Mode info
1377:
######################
# Free space info
1378:
######################
# Custom directory info
1379:
######################
# Use custom list view bar line
1380:
######################
# Custom LVB format:
1381:
######################
# Custom directory info command:
1382:
######################
# %s/%s free
1383:
######################
# Apply filter immediately
1384:
######################
# Disable background file existence checks for prefixes:
1385:
######################
# Show relative paths
1386:
######################
# Display mode:
1387:
######################
# Include all data sources
1388:
######################
# show entry
1389:
######################
# Command %s requires arguments
1390:
######################
# Arguments
1391:
######################
# The command '%s' requires arguments.|Enter the argument string to be used (flags can be used):
1392:
######################
# %s (requires arguments)
1393:
######################
# Activate entry
1394:
######################
# Show cache entry
1395:
######################
# Switch tab to direction
1396:
######################
# Move tab to direction
1397:
######################
# (De)Select entries
1398:
######################
# The string must contain the program name (either found in $PATH or via full path),|and the placeholder %s which is a temporary file containing the output to be shown.
1399:
######################
# Mode:
1400:
######################
# Ask for permissions
1401:
######################
# Set permissions
1402:
######################
# Add permissions
1403:
######################
# Remove permissions
1404:
######################
# Octal value:
1405:
######################
# Virtual dir from stack entries
1406:
######################
# Add entry to virtual dir
1407:
######################
# Hide non-existing entries (Ctrl+e)
1408:
######################
# View command log
1409:
######################
# Command log
1410:
######################
# Log of file operations:
1411:
######################
# Time
1412:
######################
# Go to location
1413:
######################
# Clear log
1414:
######################
# Command
1415:
######################
# use in own command
1416:
######################
# change file permission
1417:
######################
# change file time
1418:
######################
# copy
1419:
######################
# move
1420:
######################
# %s to %s
1421:
######################
# delete
1422:
######################
# makedir
1423:
######################
# rename
1424:
######################
# change symlink
1425:
######################
# create symlink
1426:
######################
# %d of %d entries in the persistent list of visited paths|do no longer exists, remove them from the list or archive them?
1427:
######################
# move to archive
1428:
######################
# remove from list
1429:
######################
# Cleanup archive...
1430:
######################
# Remove old entries from the archive. A non-zero 'unused days' value will only remove entries not used for longer than the given number of days. Optionally, existing entries can be removed too.
1431:
######################
# Also remove existing entries
1432:
######################
# %d of %d entries in the archive of visited paths|do no longer exists, remove them from the list?
1433:
######################
# Include archive (Ctrl+A)
1434:
######################
# Lock elements to current dir
1435:
######################
# Lock to directory (Ctrl-l):
1436:
######################
# active
1437:
######################
# Directory:
1438:
######################
# Warning: The copy operation is configured to always overwrite existing files. Please confirm!
1439:
######################
# Warning: The copy operation is configured to never overwrite existing files. Please confirm!
1440:
######################
# Ignore file name case
1441:
######################
# Go to location & close window
1442:
######################
# Matching filters
1443:
######################
# Mismatching filters
1444:
######################
# Stash current filters
1445:
######################
# Apply stashed filters
1446:
######################
# Apply
1447:
######################
# Apply and remove
1448:
######################
# Apply lastly stashed filters
1449:
######################
# Apply and remove lastly stashed filters
1450:
######################
# Increase limit
1451:
######################
# It looks like opening a XZ file failed because of a too small memory limit for the decompressor.|The current limit is %s. Should I double the limit? You need to repeat the action again manually.
1452:
######################
# Text view alternative font
1453:
######################
# Alternative font
1454:
######################
# Toggle between text fonts\\nKey: f
1455:
######################
# Subdirectory %s could not be read completely!|Shall I continue as much as possible, skip this directory or abort?
1456:
######################
# List of incompletely copied entries
1457:
######################
# The following files and directories could not be copied completely.|Files which are explicitly skipped to not overwrite existing files are not part of this list!
1458:
######################
# copy selected entries to clipboard
1459:
######################
# copy or cut selected entries to clipboard
1460:
######################
# create virtual dir from file list in clipboard
1461:
######################
# Pasting files from clipboard failed because there were no usable elements
1462:
######################
# Create virtual directory
1463:
######################
# Paste files from clipboard by copying them into current directory,|or create a virtual directory with just those files?
1464:
######################
# Can't copy|  %s|because it does not exist!
1465:
######################
# Copy entry to clipboard
1466:
######################
# Cut entry to clipboard
1467:
######################
# Paste from clipboard
1468:
######################
# Copy selected to clipboard
1469:
######################
# Cut selected to clipboard
1470:
######################
# Entry info to clipboard
1471:
######################
# All entries to clipboard
1472:
######################
# Directory view for stored selection state could not be restored.
1473:
######################
# Revert selection
1474:
######################
# Select selection state to revert to:
1475:
######################
# Directory
1476:
######################
# Number of selected entries
1477:
######################
# Input help:
1478:
######################
# 'pageup'/'-p'/'pagedown'/'p'/n/-n select whole page or +/-n elements
1479:
######################
# number n for nth entry
1480:
######################
# '-p' or negative number
1481:
######################
# '-p' selects whole page upwards
1482:
######################
# 'menu' for interactive menu
1483:
######################
# empty input for last selection, number n for nth entry, 'menu' for interactive menu
1484:
######################
# number of elements
1485:
######################
# directory to enter
1486:
######################
# entry to activate
1487:
######################
# cache entry element to show
1488:
######################
# number of tabs to switch (positive to right, negative to left)
1489:
######################
# amount of positions to move tab to (positive to right, negative to left)
1490:
######################
# number addresses stack position
1491:
######################
# entry to add
1492:
######################
# path to show (directory or file)
1493:
######################
# 'cut' or anything else for copy operation
1494:
######################
# issues cut operation
1495:
######################
# issues copy operation
1496:
######################
# 'cut' or 'copy'
1497:
######################
# Top level menu
1498:
######################
# List view commands
1499:
######################
# Activate Text View Mode
1500:
######################
# Use current panel instead of other side
1501:
######################
# Get content from
1502:
######################
# Active file
1503:
######################
# Command output
1504:
######################
# File type action
1505:
######################
# File type action:
1506:
######################
# Select from list of existing file type actions
1507:
######################
# invalid settings
1508:
######################
# failed to parse command string
1509:
######################
# empty command string after parsing
1510:
######################
# <no content set>
1511:
######################
# show output in other panel
1512:
######################
# output from file type action:
1513:
######################
# command output:
1514:
######################
# Select how to execute command and how to handle output.\\nSwitch option with Ctrl-1.
1515:
######################
# Run command as a global command from PATH.\\nToggle option with Ctrl-2.
1516:
######################
# Run command in background.\\nToggle option with Ctrl-3.
1517:
######################
# Do not enter current directory so it is not busy during execution.\\nToggle option with Ctrl-4.
1518:
######################
# Follow the active file and re-run command when changed.\\nToggle option with Ctrl-5.
1519:
######################
# Watch the file content for changes and re-run command when changd.\\nToggle option with Ctrl-6.
1520:
######################
# Switch to text view mode in current panel instead of the opposite panel.\\nToggle option with Ctrl-1.
1521:
######################
# Select which source is used to display the content from.\\nSwitch option with Ctrl-2.
1522:
######################
# Follow the active file and re-evaluate output when changed.\\nToggle option with Ctrl-3.
1523:
######################
# Watch the file content for changes and re-evalute output when changd.\\nToggle option with Ctrl-4.
1524:
######################
# Reconnect successful
1525:
######################
# Reconnect failed
1526:
######################
# Reconnect
1527:
######################
# DBus connection not available
1528:
######################
# also push return code on top of stack
1529:
######################
# Path prefix or pattern
1530:
######################
# Filter type
1531:
######################
# Prefix
1532:
######################
# Use pattern matching
1533:
######################
# Custom attribute
1534:
######################
# show output in custom attribute column
1535:
######################
# Execute command for each entry separately.\\nToggle option with Ctrl-7.
1536:
######################
# Set custom attribute column
1537:
######################
# Clear all custom attributes
1538:
######################
# Custom attribute set but column not visible in LV config!
1539:
######################
# wait in terminal
1540:
######################
# output external
1541:
######################
# output internal
1542:
######################
# output in panel
1543:
######################
# output as custom attr
1544:
######################
# without terminal
1545:
######################
# in background
1546:
######################
# separate
1547:
######################
# follow
1548:
######################
# watch
1549:
######################
# Do you really want to discard your changes?
1550:
######################
# Jump to full entry
1551:
######################
# Jump to current path element (Key Enter)\\nJump to full element (Key Ctrl-Enter)
1552:
######################
# Start with search string
1553:
######################
# Apply search string without editing
1554:
######################
# Remove by base dir...
1555:
######################
# Select base path to remove results
1556:
######################
# Select the directory for which all results within that directory|are removed from the list of results (and skip new results).
1557:
######################
# Start search with selected entries
1558:
######################
# Separator:
1559:
######################
# Exclude label:
1560:
######################
# Apply colors only to exact paths
1561:
######################
# Excluded
1562:
######################
# Removed
1563:
######################
# Pre-select file name including its extension
1564:
######################
# History
1565:
######################
# Apply dark theme (warm)
1566:
######################
# Expression
1567:
######################
# (valid)
1568:
######################
# (invalid)
1569:
######################
# Match expression:
1570:
######################
# Available expressions:
1571:
######################
# Open context menu after holding activation button for a delay
1572:
######################
# Custom string:
1573:
######################
# Custom string with hint:
1574:
######################
# Custom string
1575:
######################
# Hint string
1576:
######################
# Current button bank number
1577:
######################
# Current path bank number
1578:
######################
# Current date and time with strftime format
1579:
######################
# Current date and time
1580:
######################
# Free memory information
1581:
######################
# Worker version
1582:
######################
# Overwrite older
1583:
######################
# Overwrite smaller
1584:
######################
# Overwrite different size
1585:
######################
# Warning: The copy operation is configured to always overwrite older files. Please confirm!
1586:
######################
# Warning: The copy operation is configured to always overwrite smaller files. Please confirm!
1587:
######################
# Warning: The copy operation is configured to always overwrite files of different size. Please confirm!
1588:
######################
# older
1589:
######################
# smaller
1590:
######################
# different size
1591:
######################
# File classification
1592:
######################
# Mime type
1593:
######################
# Transparent decompression
1594:
######################
# No history available
1595:
######################
# Name history
1596:
######################
# Content history
1597:
######################
# Expression history
1598:
######################
# Remove entry
1599:
######################
# Clear history
1600:
######################
# Raw preference values
1601:
######################
# This list contains raw configuration values for which no dedicated configuration section exists.|Double click to change the value. An asterisk indicate non-default values.
1602:
######################
# Change string value
1603:
######################
# Change integer value
1604:
######################
# Value
1605:
######################
# Edit value
1606:
######################
# Reset to default
1607: