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
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
|
# WeeChat: fast and light chat environment for many operating systems.
# Copyright (c) 2003-2009 FlashCode <flashcode@flashtux.org>
# This file is distributed under the same license as the WeeChat package.
#
msgid ""
msgstr ""
"Project-Id-Version: WeeChat 0.2.7-dev\n"
"Report-Msgid-Bugs-To: flashcode@flashtux.org\n"
"POT-Creation-Date: 2009-01-28 10:21+0100\n"
"PO-Revision-Date: 2009-01-03 00:42+0100\n"
"Last-Translator: Jiri Golembiovsky <golemj@gmail.com>\n"
"Language-Team: weechat-dev <weechat-dev@nongnu.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#, c-format
msgid ""
"%s (c) Copyright 2003-2009, compiled on %s %s\n"
"Developed by FlashCode <flashcode@flashtux.org> - %s"
msgstr ""
"%s (c) Copyright 2003-2009, zkompilováno %s %s\n"
"Vyvíjí FlashCode <flashcode@flashtux.org> - %s"
#, c-format
msgid "Usage: %s [option...] [plugin:option...]\n"
msgstr "Použití: %s [volba...] [plugin:volba...]\n"
msgid ""
" -a, --no-connect disable auto-connect to servers at startup\n"
" -d, --dir <path> set WeeChat home directory (default: ~/.weechat)\n"
" -h, --help this help\n"
" -k, --keys display WeeChat default keys\n"
" -l, --license display WeeChat license\n"
" -p, --no-plugin don't load any plugin at startup\n"
" -v, --version display WeeChat version\n"
" plugin:option option for plugin\n"
" for example, irc plugin can connect\n"
" to server with url like:\n"
" irc[6][s]://[nickname[:password]@]irc.example.org[/port]"
"[//#channel1][,#channel2[...]]\n"
" (look at plugins documentation for more information\n"
" about possible options)\n"
msgstr ""
" -a, --no-connect vypne automatické připojení k serverům při startu\n"
" -d, --dir <path> nastaví domovský adresář WeeChat (výchozí: ~/.weechat)\n"
" -h, --help tato nápověda\n"
" -k, --keys zobrazí výchozí klávesy WeeChat\n"
" -l, --license zobrazí licenci WeeChat\n"
" -p, --no-plugin nenačítat plug-iny při startu\n"
" -v, --version zobrazí verzi WeeChat\n"
" plugin:option volba pluginu\n"
" například irc plugin se může připojit\n"
" k serveru pomocí url jako:\n"
" irc[6][s]://[přezdívka[:heslo]@]irc.example.org[/port][//"
"#kanál][,#kanál2[...]]\n"
" (více informací o možných volbách v dokumentacích "
"pluginů)\n"
#. TRANSLATORS: %s is "weechat"
#, c-format
msgid "%s default keys:\n"
msgstr "%s výchozí klávesy:\n"
#, c-format
msgid "Error: missing argument for \"%s\" option\n"
msgstr "Chyba: chybí argument pro volbu \"%s\"\n"
msgid "Error: unable to get HOME directory\n"
msgstr "Chyba: nemohu získat HOME adresář\n"
msgid "Error: not enough memory for home directory\n"
msgstr "Chyba: nedostatek paměti pro domácí adresář\n"
#, c-format
msgid "Error: home (%s) is not a directory\n"
msgstr "Chyba: domovský adresář (%s) není adresářem\n"
#, fuzzy, c-format
msgid "Error: cannot create directory \"%s\"\n"
msgstr "%s nemohu vytvořit adresář \"%s\"\n"
#, c-format
msgid "%sWelcome to %s%s%s, %s"
msgstr "%sVítejte do %s%s%s, %s"
msgid "compiled on"
msgstr "kompilováno"
msgid "List of bars:"
msgstr "Seznam polí:"
#, c-format
msgid ""
" %s%s%s: %s%s%s (cond: %s), %s, filling: %s(top/bottom)/%s(left/right), %s: "
"%s"
msgstr ""
" %s%s%s: %s%s%s (podmínka: %s), %s, vyplňuje: %s(nahoře/dole)/%s(vlevo/"
"vpravo), %s: %s"
msgid "(hidden)"
msgstr "(skrytý)"
msgid "height"
msgstr "výška"
msgid "width"
msgstr "šířka"
msgid "auto"
msgstr "auto"
#, fuzzy, c-format
msgid " priority: %d, fg: %s, bg: %s, items: %s%s"
msgstr " priorita: %d, popředí: %s, pozadí: %s, položky: %s%s (plugin: %s)"
msgid ", with separator"
msgstr ", s děličem"
msgid "No bar defined"
msgstr "Žádné pole nejsou definovány"
msgid "List of bar items:"
msgstr "Seznam položek polí:"
#, c-format
msgid " %s (plugin: %s)"
msgstr " %s (plugin: %s)"
msgid "No bar item defined"
msgstr "Žádné položky pole nejsou definovány"
#, c-format
msgid "%sError: missing arguments for \"%s\" command"
msgstr "%sChyba: chybí argumenty pro příkaz \"%s\""
#, c-format
msgid "%sNot enough memory"
msgstr "%sNedostatek paměti"
#, c-format
msgid "%sError: wrong type \"%s\" for bar \"%s\""
msgstr "%sChyba: špatný typ \"%s\" pro pole \"%s\""
#, c-format
msgid "%sError: wrong position \"%s\" for bar \"%s\""
msgstr "%sChyba: špatná pozice \"%s\" pro pole \"%s\""
#, c-format
msgid "Bar \"%s\" created"
msgstr "Pole \"%s\" vytvořeno"
#, c-format
msgid "%sError: failed to create bar \"%s\""
msgstr "%sChyba: selhalo vytvoření pole \"%s\""
#, c-format
msgid "%sError: wrong size \"%s\" for bar \"%s\""
msgstr "%sChyba: špatná velikost \"%s\" pro pole \"%s\""
msgid "All bars have been deleted"
msgstr "Všechny pole byly smazány"
#, c-format
msgid "%sError: unknown bar \"%s\""
msgstr "%sChyba: neznámé pole \"%s\""
msgid "Bar deleted"
msgstr "Pole bylo smazáno"
#, c-format
msgid "%sError: unable to set option \"%s\" for bar \"%s\""
msgstr "%sChyba: nemohu nastavit volbu \"%s\" pro pole \"%s\""
#, c-format
msgid "Bar \"%s\" is now hidden"
msgstr "Pole \"%s\" je nyní schováno"
#, c-format
msgid "Bar \"%s\" is now visible"
msgstr "Pole \"%s\" je nyní viditelné"
#, c-format
msgid "%sError: buffer not found for \"%s\" command"
msgstr "%sChyba: buffer nenalezen pro příkaz \"%s\""
#, c-format
msgid "%sError: unable to scroll bar \"%s\""
msgstr "%sChyba: nemohu posunout pole \"%s\""
#, c-format
msgid "%sError: unknown option for \"%s\" command"
msgstr "%sChyba: neznámá volba pro příkaz \"%s\""
msgid "Buffers list:"
msgstr "Seznam bufferů:"
#, c-format
msgid "%sError: incorrect buffer number"
msgstr "%sChyba: nekorektní číslo bufferu"
#, c-format
msgid "%sError: WeeChat main buffer can't be closed"
msgstr "%sChyba: hlavní buffer WeeChat nemůže být zavřen"
msgid "Notify levels:"
msgstr "Level upozornění:"
#, c-format
msgid "Local variables for buffer \"%s\":"
msgstr "Lokální proměnné pro buffer \"%s\":"
#, c-format
msgid "No local variable defined for buffer \"%s\""
msgstr ""
#, c-format
msgid "%sPlugin \"%s\" not found"
msgstr "%sPlugin \"%s\" nenalezen"
#, fuzzy, c-format
msgid "Debug disabled for \"%s\""
msgstr "%s: ladění vypnuto"
#, c-format
msgid " %s[%s%s%s]%s buffer: %s%s%s / tags: %s / regex: %s %s"
msgstr " %s[%s%s%s]%s buffer: %s%s%s / značky: %s / výraz: %s %s"
msgid "(disabled)"
msgstr "(zakázáno)"
msgid "Message filtering enabled"
msgstr "Filtrování zpráv povoleno"
msgid "Message filtering disabled"
msgstr "Filtrování zpráv zakázáno"
msgid "Message filters:"
msgstr "Filtry zpráv:"
msgid "No message filter defined"
msgstr "Žádné filtry zpráv nejsou definovány"
#, c-format
msgid "Filter \"%s\" enabled"
msgstr "Filtr \"%s\" povolen"
#, c-format
msgid "%sError: filter \"%s\" not found"
msgstr "%sChyba: filtr \"%s\" nenalezen"
#, c-format
msgid "Filter \"%s\" disabled"
msgstr "Filtr \"%s\" zakázán"
#, c-format
msgid "%sError: filter \"%s\" already exists"
msgstr "%sChyba: filtr \"%s\" již existuje"
#, c-format
msgid "%sError: you must specify at least tag(s) or regex for filter"
msgstr "%sChyba: musíte specifikovat buď tag(y) nebo regulární výrazpro filter"
#, fuzzy, c-format
msgid "Filter \"%s\" added:"
msgstr "Filtr \"%s\" přidán"
#, c-format
msgid "%sError adding filter"
msgstr "%sChyba: přidávání filtru"
#, c-format
msgid "Filter \"%s\" renamed to \"%s\""
msgstr "Filtr \"%s\" přejmenován na \"%s\""
#, c-format
msgid "%sError: unable to rename filter \"%s\" to \"%s\""
msgstr "%sChyba: nemohu přejmenovat filter \"%s\" na \"%s\""
msgid "All filters have been deleted"
msgstr "Všechny filtry byly smazány"
#, c-format
msgid "Filter \"%s\" deleted"
msgstr "Filter \"%s\" smazán"
#. TRANSLATORS: %s is "weechat"
#, c-format
msgid "%s internal commands:"
msgstr "%s vnitřní příkazy:"
msgid " (used by a plugin)"
msgstr " (není používáno pluginem)"
msgid "Other commands:"
msgstr "Další příkazy:"
msgid " (masked by a plugin)"
msgstr " (maskován pluginem)"
msgid "plugin:"
msgstr "plugin:"
#, c-format
msgid "Option \"%s%s%s\":"
msgstr "Volba \"%s%s%s\":"
msgid "description"
msgstr "popis"
msgid "type"
msgstr "typ"
msgid "boolean"
msgstr "boolovský"
msgid "values"
msgstr "hodnoty"
msgid "default value"
msgstr "výchozí hodnota"
#, fuzzy
msgid "(undefined)"
msgstr "výchozí hodnota"
msgid "current value"
msgstr "aktuální hodnota"
msgid "string"
msgstr "řetězec"
msgid "integer"
msgstr "celé číslo"
msgid "any string"
msgstr "jakýkoliv řetězec"
msgid "any char"
msgstr "jakýkoliv znak"
msgid "max chars"
msgstr "maximálně znaků"
msgid "color"
msgstr "barva"
msgid "a color name"
msgstr "jméno barvy"
#, c-format
msgid "%sNo help available, \"%s\" is not a command or an option"
msgstr "%sNení dostupná žádná nápověda, \"%s\" není příkaz nebo volba"
msgid "Buffer command history:"
msgstr "Historie příkazů bufferu:"
#, c-format
msgid "New key binding: %s%s => %s%s"
msgstr "Nová klávesová zkratka: %s%s => %s%s"
msgid "Key bindings:"
msgstr "Klávesové zkratky:"
msgid "Default key bindings restored"
msgstr "Výchozí klávesové zkratky obnoveny"
#, c-format
msgid "%sError: \"-yes\" argument is required for keys reset (security reason)"
msgstr ""
"%sChyba: \"-yes\" argument je požadován pro reset kaláves (bezpečnostní "
"opatření)"
#, c-format
msgid "Key \"%s\" unbound"
msgstr "Klávesa \"%s\" odpojena"
#, c-format
msgid "%sError: unable to unbind key \"%s\""
msgstr "%sChyba: nemohu odpojit klávesu \"%s\""
msgid "Key:"
msgstr "Klávesa:"
msgid "No key found"
msgstr "Žádná klávesa nenalezena"
#, c-format
msgid "%sError: unable to bind key \"%s\""
msgstr "%sChyba: nemohu napojit kalávesu \"%s\""
#, c-format
msgid "leaf: id: %d, parent: %d, plugin: \"%s\", buffer: \"%s\""
msgstr "list: id: %d, rodič: %d, plugin: \"%s\", buffer: \"%s\""
#, c-format
msgid "node: id: %d, parent: %d, child1: %d, child2: %d, size: %d%% (%s)"
msgstr ""
"uzel: id: %d, rodič: %d, potomek1: %d, potomek2: %d, velikost: %d%% (%s)"
msgid "horizontal split"
msgstr "horizontální rozdělení"
msgid "vertical split"
msgstr "vertikální rozdělení"
msgid "Saved layout for buffers:"
msgstr "Uložené rozložení bufferů:"
msgid "Saved layout for windows:"
msgstr "Uložené rozložení oken:"
msgid "No layout saved"
msgstr "Nebylo uloženo žádné rozložení"
msgid "Layout saved for buffers (order of buffers)"
msgstr "Rozložení bufferů uloženo (pořadí bufferů)"
msgid "Layout saved for windows (buffer displayed by each window)"
msgstr "Rozložení oken uloženo (buffer zobrazený v každém okně)"
msgid "Layout reset for buffers"
msgstr "Rozložení bufferů resetováno"
msgid "Layout reset for windows"
msgstr "Rozložení oken resetováno"
msgid "Plugins loaded:"
msgstr "Načtené pluginy:"
#, c-format
msgid " written by \"%s\", license: %s"
msgstr " napsal \"%s\", licence: %s"
msgid " commands hooked:"
msgstr " napojené příkazy:"
msgid " timers hooked:"
msgstr " napojené časovače:"
#, c-format
msgid " %d %s (%d calls remaining)"
msgstr " %d %s (%d zbývajících volání)"
msgid "second"
msgid_plural "seconds"
msgstr[0] "sekunda"
msgstr[1] "sekundy"
msgid "millisecond"
msgid_plural "milliseconds"
msgstr[0] "milisekunda"
msgstr[1] "milisekundy"
#, c-format
msgid " %d %s (no call limit)"
msgstr " %d %s (žádný limit počtu volání)"
msgid " fd hooked:"
msgstr " napojené popisovače souborů:"
#, c-format
msgid " %d (flags: 0x%x:%s%s%s)"
msgstr " %d (příznaky: 0x%x:%s%s%s)"
msgid " read"
msgstr " čtení"
msgid " write"
msgstr " zápis"
msgid " exception"
msgstr " vyjímka"
msgid " connect hooked:"
msgstr " napojené spojení:"
#, c-format
msgid " socket: %d, address: %s, port: %d"
msgstr " soket: %d, adresa: %s, port: %d"
msgid " prints hooked:"
msgstr " napojené tisky:"
#, c-format
msgid " buffer: %s, message: \"%s\""
msgstr " buffer: %s, zpráva: \"%s\""
msgid "(none)"
msgstr "(žádné)"
#, c-format
msgid " message: \"%s\""
msgstr " zpráva: \"%s\""
msgid " signals hooked:"
msgstr " napojené signály:"
#, c-format
msgid " signal: %s"
msgstr " signál: %s"
msgid "(all)"
msgstr "(všechny)"
msgid " configuration options hooked:"
msgstr " napojené konfigurační možnosti:"
msgid " completions hooked:"
msgstr " napojené doplňování:"
msgid " modifiers hooked:"
msgstr " napojené modifikátory:"
msgid "No plugin found"
msgstr "Nebyl nalezen žádný plugin"
msgid " (no plugin)"
msgstr " (není plugin)"
#, c-format
msgid "%sError: wrong argument count for \"%s\" command"
msgstr "%sChyba: špatný počet parametrů pro příkaz \"%s\""
#, fuzzy
msgid "List of proxies:"
msgstr "Seznam položek polí:"
#, c-format
msgid " %s%s%s: %s, %s/%d (%s), username: %s, password: %s"
msgstr ""
#, fuzzy
msgid "No proxy defined"
msgstr "Žádné pole nejsou definovány"
#, fuzzy, c-format
msgid "%sError: wrong type \"%s\" for proxy \"%s\""
msgstr "%sChyba: špatný typ \"%s\" pro pole \"%s\""
#, fuzzy, c-format
msgid "Proxy \"%s\" created"
msgstr "Pole \"%s\" vytvořeno"
#, fuzzy, c-format
msgid "%sError: failed to create proxy \"%s\""
msgstr "%sChyba: selhalo vytvoření pole \"%s\""
#, fuzzy, c-format
msgid "%sError: wrong port \"%s\" for proxy \"%s\""
msgstr "%sChyba: špatná pozice \"%s\" pro pole \"%s\""
#, fuzzy
msgid "All proxies have been deleted"
msgstr "Všechny pole byly smazány"
#, fuzzy, c-format
msgid "%sError: unknown proxy \"%s\""
msgstr "%sChyba: neznámé pole \"%s\""
#, fuzzy
msgid "Proxy deleted"
msgstr "Pole bylo smazáno"
#, fuzzy, c-format
msgid "%sError: unable to set option \"%s\" for proxy \"%s\""
msgstr "%sChyba: nemohu nastavit volbu \"%s\" pro pole \"%s\""
#, c-format
msgid "Options reloaded from %s"
msgstr "Volby načteny z %s"
#, c-format
msgid "%sError: failed to reload options from %s"
msgstr "%sChyba: selhalo znovunačtení voleb z %s"
#, c-format
msgid "Unknown configuration file \"%s\""
msgstr "Neznámý konfigurační soubor \"%s\""
#, c-format
msgid "Options saved to %s"
msgstr "Volby uloženy do %s"
#, c-format
msgid "%sError: failed to save options to %s"
msgstr "%sChyba: selhalo uložení voleb do %s"
msgid "(unknown)"
msgstr "(neznámý)"
#, c-format
msgid ""
"%sOption \"%s\" not found (tip: you can use \"*\" at beginning and/or end of "
"option to see a sublist)"
msgstr ""
"%sVolba \"%s\" nenalezena (tip: můžete použít \"*\" na začátku a/nebo konci "
"volby pro zobrazení podlistu)"
msgid "No configuration option found"
msgstr "Nebyla nalezena žádná volba nastavení"
#, c-format
msgid "%s%d%s configuration option found matching with \"%s\""
msgid_plural "%s%d%s configuration options found matching with \"%s\""
msgstr[0] "%s%d%s volba nastavení nalezena s \"%s\""
msgstr[1] "%s%d%s volby nastavení nalezeny s \"%s\""
#, c-format
msgid "%s%d%s configuration option found"
msgid_plural "%s%d%s configuration options found"
msgstr[0] "%s%d%s volba nastavení nalezena"
msgstr[1] "%s%d%s volby nastavení nalezeny"
#, c-format
msgid "%sError: failed to set option \"%s\""
msgstr "%sChyba: selhalo nastavení volby \"%s\""
#, c-format
msgid "%sError: configuration option \"%s\" not found"
msgstr "%sChyba: volba nastavení \"%s\" nenalezena"
msgid "Option changed: "
msgstr "Volba změněna: "
msgid "Option changed"
msgstr "Volba změněna"
#, c-format
msgid "%sFailed to unset option \"%s\""
msgstr "%sSelhalo odnastavení volby \"%s\""
msgid "Option reset: "
msgstr "Volba resetována: "
#, c-format
msgid "Option removed: %s"
msgstr "Volba odebrána: %s"
#, c-format
msgid "%d option(s) reset, %d option(s) removed"
msgstr "%d volba/volby resetovány, %d volba/volby smazány"
#, c-format
msgid "%sCan't upgrade: WeeChat binary \"%s\" does not exist"
msgstr ""
#, c-format
msgid ""
"%sCan't upgrade: WeeChat binary \"%s\" does not have execute permissions"
msgstr ""
#, fuzzy, c-format
msgid "Upgrading WeeChat with binary file: \"%s\"..."
msgstr "%s nemohu vytvořit soubor \"%s\"\n"
#, c-format
msgid "%sError: unable to save session in file"
msgstr "%sChyba: nemohu uložit sezení do souboru"
#, fuzzy, c-format
msgid "***** Error: exec failed (program: \"%s\"), exiting WeeChat"
msgstr "Chyba: exec selhal (program: \"%s\"), ukončuji WeeChat"
#, c-format
msgid "WeeChat uptime: %d %s %02d:%02d:%02d, started on %s"
msgstr "Čas běhu WeeChat: %d %s %02d:%02d:%02d, spuštěn %s"
msgid "day"
msgid_plural "days"
msgstr[0] "den"
msgstr[1] "dny"
#, c-format
msgid "WeeChat uptime: %s%d %s%s %s%02d%s:%s%02d%s:%s%02d%s, started on %s%s"
msgstr "Čas běhu WeeChat: %s%d %s%s %s%02d%s:%s%02d%s:%s%02d%s, spuštěn %s%s"
msgid "Windows list:"
msgstr "Seznam oken:"
#, c-format
msgid ""
"%sError: can not merge windows, there's no other window with same size near "
"current one"
msgstr ""
"%sChyba: nemohu spojit okna, není zde další okno se stejnou velikostí poblíž "
"aktuálního okna"
msgid "manage bars"
msgstr "řídit pole"
msgid ""
"[add barname type[,cond1,cond2,...] position size separator item1,item2,...] "
"| [default] | [del barname|-all] | [set barname option value] | [hide|show "
"barname] | [scroll barname buffer scroll_value] | [list] | [listfull] | "
"[listitems]"
msgstr ""
msgid ""
" add: add a new bar\n"
" barname: name of bar (must be unique)\n"
" type: root: outside windows),\n"
" window: inside windows, with optional conditions (see below)\n"
" cond1,...: condition(s) for displaying bar (only for type \"window\"):\n"
" active: on active window\n"
" inactive: on inactive windows\n"
" nicklist: on windows with nicklist\n"
" without condition, bar is always displayed\n"
" position: bottom, top, left or right\n"
" filling: horizontal, vertical, columns_horizontal or columns_vertical\n"
" size: size of bar (in chars)\n"
" separator: 1 for using separator (line), 0 or nothing means no "
"separator\n"
" item1,...: items for this bar (items can be separated by comma (space "
"between items) or \"+\" (glued items))\n"
" default: create default bars\n"
" del: delete a bar (or all bars with -all)\n"
" set: set a value for a bar property\n"
" option: option to change (for options list, look at /set weechat.bar."
"<barname>.*)\n"
" value: new value for option\n"
" hide: hide a bar\n"
" show: show an hidden bar\n"
" toggle: hide/show a bar\n"
" scroll: scroll bar up/down\n"
" buffer: name of buffer to scroll ('*' means current buffer, you "
"should use '*' for root bars)\n"
" scroll_value: value for scroll: 'x' or 'y', followed by '+', '-', "
"'b' (beginning) or 'e' (end), value (for +/-), and optional %% (to scroll by "
"%% of width/height, otherwise value is number of chars)\n"
" list: list all bars\n"
" listfull: list all bars (verbose)\n"
" listitems: list all bar items\n"
"\n"
"Examples:\n"
" create a bar with time, buffer number + name, and completion:\n"
" /bar add mybar root bottom 1 0 [time],buffer_number+:+buffer_name,"
"completion\n"
" hide a bar:\n"
" /bar hide mybar\n"
" scroll nicklist 10 lines down on current buffer:\n"
" /bar scroll nicklist * y+10\n"
" scroll nicklist one page up on #weechat buffer:\n"
" /bar scroll nicklist #weechat y-100%\n"
" scroll to end of nicklist on current buffer:\n"
" /bar scroll nicklist * ye"
msgstr ""
msgid "manage buffers"
msgstr "řídit buffery"
msgid "[action [args] | number | [[server] [channel]]]"
msgstr "[akce [args] | číslo | [[server] [kanál]]]"
#, fuzzy
msgid ""
" action: action to do:\n"
" clear: clear buffer content (-all for all buffers, number for a buffer, "
"or nothing for current buffer)\n"
" move: move buffer in the list (may be relative, for example -1)\n"
" close: close buffer\n"
" list: list buffers (no parameter implies this list)\n"
" notify: display notify levels for all opened buffers\n"
"localvar: display local variables for current buffer\n"
" scroll: scroll in history (may be relative, and may end by a letter: "
"s=sec, m=min, h=hour, d=day, M=month, y=year); if there is only letter, then "
"scroll to beginning of this item\n"
"\n"
" number: jump to buffer by number\n"
"server,\n"
" channel: jump to buffer by server and/or channel name\n"
"\n"
"Examples:\n"
"clear current buffer: /buffer clear\n"
" clear all buffers: /buffer clear -all\n"
" move buffer: /buffer move 5\n"
" close buffer: /buffer close this is part msg\n"
" scroll 1 day up: /buffer scroll 1d == /buffer scroll -1d == /buffer "
"scroll -24h\n"
" scroll to beginning\n"
" of this day: /buffer scroll d\n"
" scroll 15 min down: /buffer scroll +15m\n"
" scroll 20 msgs up: /buffer scroll -20\n"
" jump to #weechat: /buffer #weechat"
msgstr ""
" akce: akce pro vykonání:\n"
" move: přesune buffer v seznamu (může být relativní, například -1)\n"
" close: zavře buffer (nepovinný parametr, je opouštěcí zpráva pro kanál)\n"
" list: vypíše seznam otevřených bufferů (žádný parametr, implikuje tento "
"seznam)\n"
"notify: nastaví level upozornění pro buffer (0=nikdy, 1=zvýraznění, 2=1+msg, "
"3=2+join/part)\n"
" (při provedení v bufferu serveru se nastaví výchozí level upozornění "
"pro celý server)\n"
"scroll: posunout se v historii (může být relativní, a může končit písmenem: "
"s=sekunda, m=minuta, h=hodina, d=den, M=měsíc, y=rok); pokud je uvedeno jen "
"písmeno, potom posunout na konec této položky\n"
"\n"
" číslo: skočí na buffer, podle číslaserver,\n"
" kanál: skočit na bufer podle jména serveru a/nebo kanálu\n"
"\n"
"Příklady:\n"
" posunout buffer: /buffer move 5\n"
" zavřít buffer: /buffer close toto je odchozí zpráva\n"
" nastavit notifikaci: /buffer notify 2\n"
" posunout o 1 den nahoru: /buffer scroll 1d == /buffer scroll -1d == /"
"buffer scroll -24h\n"
"posunout na začátek\n"
" tohoto dne: /buffer scroll d\n"
" posunout o 15 minut dolů: /buffer scroll +15m\n"
"posunout o 20 zpráv nahoru: /buffer scroll -20\n"
" skočit na #weechat: /buffer #weechat"
msgid "launch explicit WeeChat or plugin command"
msgstr "pustit uvedený WeeChat nebo plugin příkaz"
msgid "plugin command"
msgstr "příkaz pluginu"
#, fuzzy
msgid ""
" plugin: plugin name ('weechat' for WeeChat internal command)\n"
"command: command to execute (a '/' is automatically added if not found at "
"beginning of command)"
msgstr ""
"příkaz: příkaz, který spustit ('/' je automaticky dodáno, pokud není "
"nalezeno na začátku příkazu)\n"
msgid "control debug for core/plugins"
msgstr ""
#, fuzzy
msgid "[list | plugin level | dump | buffer | windows]"
msgstr "[[save | apply | reset] [buffers | windows]]"
#, fuzzy
msgid ""
" plugin: name of plugin (\"core\" for WeeChat core)\n"
" level: debug level for plugin (0 = disable debug)\n"
" dump: save memory dump in WeeChat log file (same dump is written when "
"WeeChat crashes)\n"
" buffer: dump buffer content with hexadecimal values in log file\n"
"windows: display windows tree\n"
" text: send \"debug\" signal with \"text\" as argument"
msgstr ""
" dump: uloží výpis paměti do WeeChat log souboru (stejný výpis jako když "
"Weechat havaruje)\n"
" buffer: vypíše obsah bufferu s hexadecimálními hodnotami do log souboru\n"
"windows: zobrazit strom oken"
msgid ""
"filter messages in buffers, to hide/show them according to tags or regex"
msgstr ""
"filtrovat zprávy v bufferu, pro jejich schováni/zobrazení podle tagů nebo "
"regulárního výrazu"
#, fuzzy
msgid ""
"[list] | [enable|disable|toggle [name]] | [add name buffer tags regex] | "
"[del name|-all]"
msgstr ""
"[list] | [enable|disable|toggle] | [add buffer tagy regex] | [del číslo]"
#, fuzzy
msgid ""
" list: list all filters\n"
" enable: enable filters (filters are enabled by default)\n"
"disable: disable filters\n"
" toggle: toggle filters\n"
" name: filter name\n"
" add: add a filter\n"
" del: delete a filter\n"
" -all: delete all filters\n"
" buffer: buffer where filter is active: it may be a name or \"*\" for all "
"buffers\n"
" tags: comma separated list of tags, for example: \"irc_join,irc_part,"
"irc_quit\"\n"
" regex: regular expression to search in line (use \\t to separate prefix "
"from message)\n"
"\n"
"Examples:\n"
" use IRC smart filter for join/part/quit messages:\n"
" /filter add irc_smart * irc_smart_filter *\n"
" filter all IRC join/part/quit messages:\n"
" /filter add joinquit * irc_join,irc_part,irc_quit *\n"
" filter nick \"toto\" on channel #weechat:\n"
" /filter add toto freenode.#weechat * toto\\t\n"
" filter lines containing word \"spam\":\n"
" /filter add filterspam * * spam\n"
" filter lines containing \"weechat sucks\" on channel #weechat:\n"
" /filter add sucks freenode.#weechat * weechat sucks"
msgstr ""
" list: seznam všech filtrů\n"
" enable: povolit filtry (filtry jsou defaultně povoleny)\n"
"disable: zakázat filtry\n"
" toggle: přepnout filtry\n"
" add: přidat filtr\n"
" del: smazat filtr\n"
" číslo: číslo filtru pro smazání (podívejte se na list pro nalezení)\n"
" buffer: buffer kde je filtr aktivní: může to být jméno (kategorie.jméno) "
"nebo \"*\" pro všechny buffery\n"
" tagy: čárkami rozdělený seznam tagů, například: \"irc_join,irc_part,"
"irc_quit\"\n"
" regex: regulární výraz hledaný v řádku (použíjte \\t pro oddělení prefixu "
"od zprávy)"
msgid "display help about commands and options"
msgstr "zobrazí nápovědu k příkazům a volbám"
msgid "[command | option]"
msgstr "[příkaz | volba]"
msgid ""
"command: a command name\n"
" option: an option name (use /set to see list)"
msgstr ""
"příkaz: jméno příkazu\n"
" volba: jméno volby (použijte /set pro zobrazení seznamu)"
msgid "show buffer command history"
msgstr "zobrazit historii příkazů bufferu"
msgid "[clear | value]"
msgstr "[clear | value]"
msgid ""
"clear: clear history\n"
"value: number of history entries to show"
msgstr ""
"clear: vyčistit historii\n"
"value: číslo z položek historie kterou ukazat"
msgid "functions for command line"
msgstr "funkce pro příkazovou řádku"
msgid "This command is used by key bindings or plugins."
msgstr "Tento příkaz je používán napojenou klávesou nebo pluginy."
msgid "bind/unbind keys"
msgstr "napojit/odpojit klávesy"
#, fuzzy
msgid "[key [command [args]]] | [unbind key] | [reset -yes]"
msgstr ""
"[klávesa [funkce/příkaz]] [unbind klávesa] [functions] [call funkce "
"[\"argumenty\"]] [reset -yes]"
#, fuzzy
msgid ""
" key: display or bind this key to a command\n"
" unbind: unbind a key\n"
" reset: restore bindings to the default values and delete ALL personal "
"bindings (use carefully!)"
msgstr ""
" klávesa: zobrazí nebo napojí klávesu na vnitřní funkci nebo příkaz "
"(začínající \"/\")\n"
" unbind: odpojí klávesu\n"
"functions: vypíše seznam interních funkcí pro napojení kláves\n"
" call: zavolá funkci podle jména (s volitelnými parametry)\n"
" reset: obnoví klávesy na výchozí hodnoty a smaže VŠECHNY uživatlské "
"zkratky (používejte opatrně!)"
msgid "save/apply/reset layout for buffers and windows"
msgstr "uložit/použít/resetovat rozložení bufferů a oken"
msgid "[[save | apply | reset] [buffers | windows]]"
msgstr "[[save | apply | reset] [buffers | windows]]"
msgid ""
" save: save current layout\n"
" apply: apply saved layout\n"
" reset: remove saved layout\n"
"buffers: save/apply only buffers (order of buffers)\n"
"windows: save/apply only windows (buffer displayed by each window)\n"
"\n"
"Without argument, this command displays saved layout."
msgstr ""
msgid "list/load/unload plugins"
msgstr "seznam/načíst/odebrat pluginy"
msgid ""
"[list [name]] | [listfull [name]] | [load filename] | [autoload] | [reload "
"[name]] | [unload [name]]"
msgstr ""
"[list [jméno]] | [listfull [jméno]] | [load jméno_souboru] | [autoload] | "
"[reload [name]] | [unload [name]]"
#, fuzzy
msgid ""
" list: list loaded plugins\n"
"listfull: list loaded plugins (verbose)\n"
" load: load a plugin\n"
"autoload: autoload plugins in system or user directory\n"
" reload: reload one plugin (if no name given, unload all plugins, then "
"autoload plugins)\n"
" unload: unload one or all plugins\n"
"\n"
"Without argument, this command lists loaded plugins."
msgstr ""
" list: vypíše načtené pluginy\n"
"listfull: vypíše načtené s detailními informacemi\n"
" load: načte plugin\n"
"autolaod: automaticky načte pluginy v systému nebo uživatelském adresáři\n"
" reload: znovu načte jeden plugin (pokud není zadané žádné jméno odebere "
"všechny pluginy pak automaticky načte pluginy)\n"
" unload: odebere všechny pluginy\n"
"\n"
"Zavolání příkazu /plugin bez parametrů vypíše načtené pluginy."
#, fuzzy
msgid "manage proxies"
msgstr "řídit pole"
msgid ""
"[add proxyname type address port [username [password]]] | [del proxyname|-"
"all] | [set proxyname option value] | [list]"
msgstr ""
msgid ""
" add: add a new proxy\n"
" proxyname: name of proxy (must be unique)\n"
" type: http, socks4 or socks5\n"
" address: IP or hostname\n"
" port: port\n"
" username: username (optional)\n"
" password: password (optional)\n"
" del: delete a proxy (or all proxies with -all)\n"
" set: set a value for a proxy property\n"
" option: option to change (for options list, look at /set weechat."
"proxy.<proxyname>.*)\n"
" value: new value for option\n"
" list: list all proxies\n"
"\n"
"Examples:\n"
" create a http proxy, running on local host, port 8888:\n"
" /proxy add local http 127.0.0.1 8888\n"
" create a http proxy using IPv6 protocol:\n"
" /proxy add local http 127.0.0.1 8888\n"
" /proxy set local ipv6 on\n"
" create a socks5 proxy with username/password:\n"
" /proxy add myproxy socks5 sample.host.org 3128 myuser mypass\n"
" delete a proxy:\n"
" /proxy del myproxy"
msgstr ""
msgid "quit WeeChat"
msgstr "ukončit WeeChat"
msgid "reload configuration files from disk"
msgstr "znovu načíst konfikurační soubory z disku"
msgid "[file [file...]]"
msgstr "[soubor [soubor...]]"
msgid ""
"file: configuration file to reload\n"
"\n"
"Without argument, all files (WeeChat and plugins) are reloaded."
msgstr ""
"soubor: konfigurační soubor pro znovunačtení\n"
"\n"
"Bez argumentu jsou načteny všechny soubory (WeeChat a pluginů)."
msgid "save configuration files to disk"
msgstr "uložit soubory s nastavením na disk"
msgid ""
"file: configuration file to save\n"
"\n"
"Without argument, all files (WeeChat and plugins) are saved."
msgstr ""
"soubor: konfigurační soubor pro uložení\n"
"\n"
"Bez argumentu jsou uloženy všechny soubory (WeeChat a pluginy)."
msgid "set config options"
msgstr "nastaví konfigurační možnosti"
#, fuzzy
msgid "[option [value]]"
msgstr "[možnost [ = hodnota]]"
msgid ""
"option: name of an option\n"
" value: new value for option\n"
"\n"
"New value can be, according to variable type:\n"
" boolean: on, off ou toggle\n"
" integer: number, ++number ou --number string : any string (\"\" for empty "
"string)\n"
" color : color name, ++number ou --number\n"
"\n"
"For all types, you can use null to remove option value (undefined value). "
"This works only for some special plugin variables."
msgstr ""
msgid "unset/reset config options"
msgstr "odnastavit/resetovat konfigurační možnosti"
msgid "[option]"
msgstr "[volba]"
msgid ""
"option: name of an option (may begin or end with \"*\" to mass-reset "
"options, use carefully!)\n"
"\n"
"According to option, it's reset (for standard options) or removed (for "
"optional settings, like server values)."
msgstr ""
"volba: jméno volby (může být začátek nebo konec s \"*\" pro hromadný reset "
"voleb, používejte obezřetně!).\n"
"\n"
"Podle volby je volba resetována (pro standardní volby) nebo odebrána (pro "
"nepovinné volby jako hodnoty serveru)."
msgid "upgrade WeeChat without disconnecting from servers"
msgstr "aktualizovat WeeChat bez odpojení od serveru"
msgid "[path_to_binary]"
msgstr "[cesta_k_binárce]"
msgid ""
"path_to_binary: path to WeeChat binary (default is current binary)\n"
"\n"
"This command run again a WeeChat binary, so it should have been compiled or "
"installed with a package manager before running this command."
msgstr ""
"cesta_k_binárce: cesta k WeeChat binárce (výchozí je aktuální binárka)\n"
"\n"
"Tento příkaz znovu spustí binární soubor WeeChat, je třeba mít WeeChat "
"předem zkompilovaný nebo nainstalovaný pomocí balíčkovacího systému."
msgid "show WeeChat uptime"
msgstr "zobrazit jak dlouho WeeChat běží"
msgid "[-o]"
msgstr "[-o]"
msgid "-o: send uptime on current channel as an IRC message"
msgstr "-o: poslat čas běhu na aktuální kanál jako IRC zprávu"
msgid "manage windows"
msgstr "spravuje okna"
#, fuzzy
msgid ""
"[list | -1 | +1 | b# | up | down | left | right | splith [pct] | splitv "
"[pct] | resize pct | merge [all] | page_up | page_down | scroll | scroll_up "
"| scroll_down | scroll_top | scroll_bottom | scroll_previous_highlight | "
"scroll_next_highlight ]"
msgstr ""
"[list | -1 | +1 | b# | up | down | left | right | splith [pct] | splitv "
"[pct] | resize pct | merge [all]]"
#, fuzzy
msgid ""
" list: list opened windows (no parameter implies this list)\n"
" -1: jump to previous window\n"
" +1: jump to next window\n"
" b#: jump to next window displaying buffer number #\n"
" up: switch to window above current one\n"
" down: switch to window below current one\n"
" left: switch to window on the left\n"
" right: switch to window on the right\n"
" splith: split current window horizontally\n"
" splitv: split current window vertically\n"
" resize: resize window size, new size is <pct> percentage of parent "
"window\n"
" merge: merge window with another (all = keep only one window)\n"
"\n"
" page_up: scroll one page up\n"
" page_down: scroll one page down\n"
" scroll: scroll number of lines (+/-N) or with time: s=seconds, "
"m=minutes, h=hours, d=days, M=months, y=years\n"
" scroll_up: scroll a few lines up\n"
" scroll_down: scroll a few lines down\n"
" scroll_top: scroll to top of buffer\n"
"scroll_bottom: scroll to bottom of buffer\n"
"scroll_previous_highlight: scroll to previous highlight\n"
"scroll_next_highlight: scroll to next highlight\n"
" refresh: refresh screen\n"
"\n"
"For splith and splitv, pct is a percentage which represents size of new "
"window, computed with current window as size reference. For example 25 means "
"create a new window with size = current_size / 4\n"
"\n"
"Examples:\n"
" jump to window displaying buffer #1: /window b1 scroll 2 lines up: /"
"window scroll -2\n"
" scroll 2 days up: /window scroll -2d\n"
" scroll to beginning of current day: /window scroll -d"
msgstr ""
" list: vypíše otevřené okna (bez paramatru implikuje tenhle list)\n"
" -1: přepne na přechozí okno\n"
" +1: přepne na další okno\n"
" b#: přepne na okno, které zobrazuje buffer číslo #\n"
" up: přepne na okno nad aktuálním oknem\n"
" down: přepne na okno pod aktuálním oknem\n"
" left: přepne na okno nalevo\n"
" right: přepne na okno napravo\n"
"splith: rozdělí aktuální okno horizontálně\n"
"splitv: rozdělí aktuální okno vertikálně\n"
"resize: změní velikost okna, nová velikost je <pct> nadřazeného okna\n"
" merge: spojí okno s jiným (all = nechej akorát jedno okno)\n"
"\n"
"Pro splith a splitv je pct procento reprezentující velikost nového okna, "
"spočítána s aktuálním oknem jako velikost reference. Např. 25 znamená "
"vytvořít nové okno s velikostí = aktuální_velikost / 4"
#, fuzzy
msgid ""
"Warning: you should now issue /save to write \"save_config_on_exit\" option "
"in configuration file"
msgstr ""
"%s mel by ste nyní provést /save pro zapsání volby \"save_on_exit\" "
"dokonfiguračního souboru.\n"
#, c-format
msgid "\t\tDay changed to %s"
msgstr "\t\tZměnil se den na %s"
msgid "debug level for plugin (\"core\" for WeeChat core)"
msgstr ""
msgid "command executed when WeeChat starts, after loading plugins"
msgstr "příkaz spuštěný při startu WeeChat, po načtení pluginů"
msgid "command executed when WeeChat starts, before loading plugins"
msgstr "příkaz spuštěný při startu WeeChat, před načtením pluginů"
msgid "display WeeChat logo at startup"
msgstr "zobrazí WeeChat logo při spuštění"
msgid "display WeeChat version at startup"
msgstr "zobrazí verzi WeeChat při spuštění"
msgid "WeeChat slogan (if empty, slogan is not used)"
msgstr "WeeChat slogan (pokud je prázdné, není slogan použit)"
msgid "the geekiest chat client!"
msgstr "nejgeekovatější povídací klient!"
msgid ""
"default notify level for buffers (used to tell WeeChat if buffer must be "
"displayed in hotlist or not, according to importance of message)"
msgstr ""
"výchozí upozorňovací úrovně pro buffery (používano WeeChatem pro určení "
"jestli má být buffer zobrazen v hotlistu nebo ne, podle důležitosti zprávy)"
msgid "time format for buffers"
msgstr "formát času pro buffer"
msgid "number of colors to use for nicks colors"
msgstr "počet barev použitých pro barvy přezdívek"
msgid ""
"if set, uses real white color, disabled by default for terms with white "
"background (if you never use white background, you should turn on this "
"option to see real white instead of default term foreground color)"
msgstr ""
"pokud je nastaveno, použije se skutečná bílá barva, ve výchozím nastavení je "
"vypnuto pro slova s bílým pozadím (pokud nikdy neoupžíváte bílou barvu, mělí "
"byste toto nastavení zapnout, pro zobrazení skutečně bílé barvy místo "
"výchozí barvy popředí terminálu)"
msgid "display special message when day changes"
msgstr "zobrazit speiální zprávy při změně dne"
msgid "time format for date displayed when day changed"
msgstr "formát času pro zobrazení dne při změně dne"
msgid ""
"comma separated list of words to highlight (case insensitive comparison, "
"words may begin or end with \"*\" for partial match)"
msgstr ""
"čárkou oddělený seznam slov pro zvýraznění (neporovnává se velikost písmen, "
"slova mohou začínat nebo končit \"*\" pro částečnou schodu)"
msgid ""
"max number of names in hotlist (0 = no name displayed, only buffer numbers)"
msgstr ""
"maximální počet jmen v hotlistu (0 = žádné jméno není zobrazeno, pouze čísla "
"bufferů)"
msgid "max length of names in hotlist (0 = no limit)"
msgstr "maximální délka jmen v hotlistu (0 = bez limitu)"
msgid ""
"level for displaying names in hotlist (combination of: 1=join/part, "
"2=message, 4=private, 8=highlight, for example: 12=private+highlight)"
msgstr ""
"úroveň pro zobrazování jmen v hotlistu (kombinace: 1=připojení/odpojení "
"2=zpráva, 4=soukromé, 8=zvýraznění, příklad: 12=soukromé+zvýraznění)"
msgid ""
"if set, uses short names to display buffer names in hotlist (start after "
"first '.' in name)"
msgstr ""
msgid ""
"hotlist sort type (group_time_asc (default), group_time_desc, "
"group_number_asc, group_number_desc, number_asc, number_desc)"
msgstr ""
"druh řazení hotlistu (group_time_asc [skupina_čas_vzestupně] (výchozí), "
"group_time_desc [skupina_čas_sestupne], group_number_asc "
"[skupina_číslo_vzestupně], group_number_desc [skupina_číslo_sestupně], "
"number_asc [číslo_vzestupně], number_desc [číslo_sestupně] ) "
msgid "time format for \"time\" bar item"
msgstr "formát času pro \"time\" položu pole"
msgid "display nick mode ((half)op/voice) before each nick"
msgstr "zobrazit mód přezdívky ((částečný)op/voice) před každou přezdívkou"
msgid "display space if nick mode is not (half)op/voice"
msgstr "zobrazit mezeru pokud mód přezdívkz není (částečný)op/voice"
msgid ""
"max number of lines for paste without asking user (0 = disable this feature)"
msgstr ""
"maximální počet řádků pro vložení bez dotazování uživatele (0 = vypnout tuto "
"vlastnost)"
msgid "prefix for error messages"
msgstr "prefix pro chybové zprávy"
msgid "prefix for network messages"
msgstr "prefix pro zprávy sítě"
msgid "prefix for action messages"
msgstr "prefix pro zprávy akcí"
msgid "prefix for join messages"
msgstr "prefix pro zprávy připojení"
msgid "prefix for quit messages"
msgstr "prefix pro zprávy ukončení"
msgid "prefix alignment (none, left, right (default))"
msgstr "zarovnání prefixu (none, left, right (výchozí))"
msgid "max size for prefix (0 = no max size)"
msgstr "maximální velikost prefixu (0 = žádná maximální velikost)"
msgid "string displayed after prefix"
msgstr "řetězec zobrazený za prefixem"
msgid "use a marker (line or char) on buffers to show first unread line"
msgstr ""
"použít značku (řádek nebo znak) v bufferech pro zobrazení první nepřečtené "
"řádky"
msgid "save configuration file on exit"
msgstr "uložit soubor s nastavením při ukončení"
msgid "save layout on exit (buffers, windows, or both)"
msgstr "uložit rozložení při ukončení (buffery, okna nebo obojí)"
msgid "how many lines to scroll by with scroll_up and scroll_down"
msgstr "o kolik řádů posunou pomocí scroll_up a scroll_down"
msgid ""
"percent of screen to scroll when scrolling one page up or down (for example "
"100 means one page, 50 half-page)"
msgstr ""
"procenta obrazovky, o které posunout, při posunutí o stránku nahoru nebo "
"dolů (například 100 znamená jedna stránka, 50 půl stránky)"
msgid "set title for window (terminal for Curses GUI) with name and version"
msgstr "nastaví titulek okna (terminálu pro Cruses GUI) s jménem a verzí"
#, fuzzy
msgid "background color for window separators (when splitted)"
msgstr "barva děliče oken (při rozdělení)"
#, fuzzy
msgid "text color for '+' when scrolling bars"
msgstr "barva pro '+' při procházení tématu"
#, fuzzy
msgid "text color for chat"
msgstr "barva pro text rozhovoru"
#, fuzzy
msgid "background color for chat"
msgstr "pozadí přezdívek"
#, fuzzy
msgid "text color for time in chat window"
msgstr "barva času v okně rozhovoru"
#, fuzzy
msgid "text color for time delimiters"
msgstr "barva děličů v infobaru"
#, fuzzy
msgid "text color for error prefix"
msgstr "barva pro šipku pri 'join' (prefix)"
#, fuzzy
msgid "text color for network prefix"
msgstr "barva pro šipku pri 'join' (prefix)"
#, fuzzy
msgid "text color for action prefix"
msgstr "barva pro šipku při 'quit'/'part' (prefix)"
#, fuzzy
msgid "text color for join prefix"
msgstr "barva pro šipku pri 'join' (prefix)"
#, fuzzy
msgid "text color for quit prefix"
msgstr "barva pro šipku při 'quit'/'part' (prefix)"
#, fuzzy
msgid "text color for '+' when prefix is too long"
msgstr "barva pro '+' při procházení tématu"
#, fuzzy
msgid "text color for suffix (after prefix)"
msgstr "barva pro šipku pri 'join' (prefix)"
#, fuzzy
msgid "text color for buffer names"
msgstr "barva pro jeméno serveru"
#, fuzzy
msgid "text color for server names"
msgstr "barva pro jeméno serveru"
#, fuzzy
msgid "text color for channel names"
msgstr "barva kanálu v akcích"
#, fuzzy
msgid "text color for nicks in chat window"
msgstr "barva času v okně rozhovoru"
#, fuzzy
msgid "text color for local nick in chat window"
msgstr "text pro zobrazení před přezdívkou v okně rozhovoru"
#, fuzzy
msgid "text color for other nick in private buffer"
msgstr "barva jiné přezdívky v soukromém okně"
#, fuzzy
msgid "text color #1 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #2 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #3 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #4 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #5 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #6 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #7 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #8 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #9 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color #10 for nick"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for hostnames"
msgstr "barva jména hosta"
#, fuzzy
msgid "text color for delimiters"
msgstr "barva děličů v infobaru"
#, fuzzy
msgid "text color for highlighted prefix"
msgstr "barva pro zvýraznění přezdívky"
#, fuzzy
msgid "background color for highlighted prefix"
msgstr "pozadí pro title bar"
#, fuzzy
msgid "text color for unread data marker"
msgstr "barva pro značku nepřečtených dat"
#, fuzzy
msgid "background color for unread data marker"
msgstr "pozadí pro značku nepřečtených dat"
#, fuzzy
msgid "text color for marker on lines where text sought is found"
msgstr "barva pro jeméno serveru"
#, fuzzy
msgid "background color for marker on lines where text sought is found"
msgstr "barva pro vstupní text"
#, fuzzy
msgid "text color for current buffer number in status bar"
msgstr "barva pro aktuální kanál v stavovém řádku"
#, fuzzy
msgid "text color for current buffer name in status bar"
msgstr "barva pro aktuální kanál v stavovém řádku"
#, fuzzy
msgid "text color for buffer with new messages (status bar)"
msgstr "barva okna s novými zprávami (status bar)"
#, fuzzy
msgid "text color for buffer with private message (status bar)"
msgstr "barva okna se soukromou zprávou (status bar)"
#, fuzzy
msgid "text color for buffer with highlight (status bar)"
msgstr "barva okna se zvýrazněním (stavový řádek)"
#, fuzzy
msgid "text color for buffer with new data (not messages) (status bar)"
msgstr "barva okna s novými daty (ne zprávami) (status bar)"
#, fuzzy
msgid "text color for buffer with new data (status bar)"
msgstr "barva okna s novými daty (status bar)"
#, fuzzy
msgid "text color for nick name in input line"
msgstr "barva přezdívek"
#, fuzzy
msgid "text color for unsucessful text search in input line"
msgstr "barva děličů v infobaru"
#, fuzzy
msgid "text color for actions in input line"
msgstr "barva akcí ve vstupním okně"
#, fuzzy
msgid "text color for groups in nicklist"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for away nicknames"
msgstr "barva přezdívek, které jsou pryč"
#, fuzzy
msgid "text color for prefix #1 in nicklist"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for prefix #2 in nicklist"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for prefix #3 in nicklist"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for prefix #4 in nicklist"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for prefix #5 in nicklist"
msgstr "barva přezdívky"
#, fuzzy
msgid "text color for '+' when scrolling nicks in nicklist"
msgstr "barva pro '+' při procházení přezdívek"
#, fuzzy
msgid "text color for nicklist separator"
msgstr "barva děliče přezdívek"
#, fuzzy
msgid "string inserted after nick completion"
msgstr "řetězec vložený za doplňování přezdívky"
msgid "complete only with first nick found"
msgstr "dokončit pouze s prvním nalezenou přezdívkou"
msgid "chars ignored for nick completion"
msgstr "znaky ignorovány pro doplňování přezdívky"
msgid "alert user when a partial completion occurs"
msgstr "upozornit uživatele pokud nastane částečné doplnění"
msgid ""
"partially complete nicks (stop when many nicks found begin with same letters)"
msgstr ""
"částečně doplňovat přezdívky (zastavit pokud je nalezeno více přezdívek "
"začínajících stejnými písmenemy)"
msgid ""
"partially complete command names (stop when many commands found begin with "
"same letters)"
msgstr ""
"částečně doplňovat jména příkazů (zastavit pokud je nalezeno více příkazů "
"začínajících stejnými písmeny)"
msgid ""
"partially complete command arguments (stop when many arguments found begin "
"with same prefix)"
msgstr ""
"částečně doplňovat argumenty příkazů (zastavit pokud je nalezeno více "
"argumentů začínající stejným prefixem)"
msgid "display count for each partial completion in bar item"
msgstr "zobrazit počet každého částečného doplnění v položce pole"
#, fuzzy
msgid "maximum number of lines in history per buffer (0 = unlimited)"
msgstr "maximální počet uživatelských příkazů v historii (0 = nekonečně)"
msgid "maximum number of user commands in history (0 = unlimited)"
msgstr "maximální počet uživatelských příkazů v historii (0 = nekonečně)"
msgid ""
"maximum number of commands to display by default in history listing (0 = "
"unlimited)"
msgstr ""
"maximální počet příkazů, který zobrazit jako výchozí v seznamu historie (0 = "
"nekonečno)"
#, fuzzy
msgid ""
"comma separated list of plugins to load automatically at startup, \"*\" "
"means all plugins found (names may be partial, for example \"perl\" is ok "
"for \"perl.so\")"
msgstr ""
"čárkou rozdělený seznam pluginů pro automatické načtení při spuštění \"*\" "
"znamená všechny nalezené pluginy (jména mohou být částečná, například \"perl"
"\" je OK pro \"libperl.so\")"
msgid ""
"enable debug messages by default in all plugins (option disabled by default, "
"which is highly recommended)"
msgstr ""
"povolit ladící zprávy defaultně ve všech pluginech (volba je defaultně "
"vypnuta, což je velice doporučeno)"
msgid ""
"standard plugins extension in filename (for example \".so\" under Linux or "
"\".dll\" under Microsoft Windows)"
msgstr ""
"standardní přípona souboru pluginů (například \".so\" pod Linuxem nebo \".dll"
"\" pod Microsoft Windows)"
msgid ""
"path for searching plugins ('%h' will be replaced by WeeChat home, ~/."
"weechat by default)"
msgstr ""
"cesta pro hledání pluginů ('%h' bude nahrazeno domácím adresářem WeeChat, ~/."
"weechat je výchozí)"
#, fuzzy
msgid "save configuration files when unloading plugins"
msgstr "uložit soubor s nastavením při ukončení"
#, fuzzy, c-format
msgid "%sError: cannot create file \"%s\""
msgstr "%s nemohu vytvořit soubor \"%s\"\n"
#, fuzzy, c-format
msgid "Writing configuration file %s %s"
msgstr "uložit soubor s nastavením při ukončení"
msgid "(default options)"
msgstr "(výchozí volby)"
#, fuzzy, c-format
msgid "%sWarning: configuration file \"%s\" not found"
msgstr "%s konfigurační soubor \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid "Reading configuration file %s"
msgstr "říct serveru, aby znovu načetl svůj konfigurační soubor"
#, fuzzy, c-format
msgid "%sWarning: %s, line %d: invalid syntax, missing \"]\""
msgstr "%s %s, řádek %d: nevalidní syntaxe, chybí \"]\"\n"
#, fuzzy, c-format
msgid "%sWarning: %s, line %d: unknown section identifier (\"%s\")"
msgstr "%s %s, řádek %d: neznámý identifikátor sekce (\"%s\")\n"
#, fuzzy, c-format
msgid "%sWarning: %s, line %d: option \"%s\" unknown for section \"%s\""
msgstr "%s %s, řádek %d: neznámý identifikátor sekce (\"%s\")\n"
#, fuzzy, c-format
msgid "%sWarning: %s, line %d: unknown option \"%s\" (outside a section)"
msgstr "%s %s, řádek %d: neznámý identifikátor sekce (\"%s\")\n"
#, fuzzy, c-format
msgid "%sWarning: %s, line %d: invalid value for option \"%s\""
msgstr "%s %s, řádek %d: nevalidní volba \"%s\"\n"
#, fuzzy, c-format
msgid "Reloading configuration file %s"
msgstr "Ukládám konfiguraci na disk\n"
#, c-format
msgid "System clock skew detected (%+ld seconds), reinitializing all timers"
msgstr ""
#, fuzzy, c-format
msgid "%sYou can not write text in this buffer"
msgstr "%s nemohu zavřít jediný buffer\n"
#, fuzzy, c-format
msgid "%sError with command \"%s\" (try /help %s)"
msgstr "%s alias nebo příkaz \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid "%sError: too much calls to command \"%s\" (looping)"
msgstr "%s nekorektní hodnota pro volbu \"%s\"\n"
#, fuzzy, c-format
msgid "%sError: unknown command \"%s\" (type /help for help)"
msgstr "%s alias nebo příkaz \"%s\" nenalezen\n"
#, fuzzy
msgid ""
"Error: unable to create/append to log file (weechat.log)\n"
"If another WeeChat process is using this file, try to run WeeChat\n"
"with another home using \"--dir\" command line option.\n"
msgstr ""
"%s nemohu vytvořit/přidávat do logovacího souboru (weechat.log)\n"
"Pokud používá tento soubor jiný proces WeeChat, skuste WeeChat pustit\n"
"s jiným domovským adresářem pomocí \"--dir\" volby příkazové řádky.\n"
msgid "proxy type (http (default), socks4, socks5)"
msgstr "typ proxy (http (výchozí), socks4, socks5)"
#, fuzzy
msgid "connect to proxy using ipv6"
msgstr "připojit na proxy v ipv6"
msgid "proxy server address (IP or hostname)"
msgstr "adresa proxy serveru (IP nebo jméno hosta)"
msgid "port for connecting to proxy server"
msgstr "port pro připojení na proxy server"
msgid "username for proxy server"
msgstr "uživatelské jméno pro proxy server"
msgid "password for proxy server"
msgstr "heslo pro proxy server"
msgid "bytes"
msgstr "bajtů"
msgid "KB"
msgstr "KB"
msgid "MB"
msgstr "MB"
msgid "GB"
msgstr "GB"
#, fuzzy
msgid "byte"
msgstr "bajtů"
#, fuzzy, c-format
msgid "%sError upgrading WeeChat with file \"%s\":"
msgstr "%s nemohu vytvořit soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s error: %s%s%s%s"
msgstr "%sServer: %s%s\n"
#, c-format
msgid "%s last read: position: %ld, length: %d"
msgstr ""
#, fuzzy, c-format
msgid "%s source: %s, line: %d"
msgstr " napsal \"%s\", licence: %s"
#, c-format
msgid "%s *** Please report above info to developers ***"
msgstr ""
#, fuzzy
msgid "write - object type"
msgstr " . typ: celočíselný\n"
msgid "write - object id"
msgstr ""
msgid "write - variable name"
msgstr ""
#, fuzzy
msgid "write - infolist type"
msgstr " . typ: celočíselný\n"
#, fuzzy
msgid "write - variable"
msgstr " . typ: celočíselný\n"
msgid "read - object type"
msgstr ""
msgid "read - bad object type ('object start' expected)"
msgstr ""
msgid "read - object id"
msgstr ""
msgid "read - infolist creation"
msgstr ""
msgid "read - infolist item creation"
msgstr ""
msgid "read - variable name"
msgstr ""
msgid "read - variable type"
msgstr ""
#, fuzzy
msgid "read - variable"
msgstr " . typ: celočíselný\n"
#, fuzzy
msgid "read - signature not found"
msgstr "%s IP adresa nenalezena\n"
msgid ""
"read - bad signature (upgrade file format may have changed since last "
"version)"
msgstr ""
msgid "Terminal lost, exiting WeeChat..."
msgstr "Terminál ztracen, ukončuji WeeChat..."
#, c-format
msgid "Signal %s received, exiting WeeChat..."
msgstr "Obdržen signál %s, ukončuji WeeChat.."
#, fuzzy
msgid "Signal SIGHUP received, reloading configuration files"
msgstr "%s selhalo uložení konfiguračního souboru\n"
msgid "server"
msgstr "server"
#, c-format
msgid ""
"%sUnable to change bar type: you must delete bar and create another to do "
"that"
msgstr ""
"%sNemohu změnit typ pole: musíte smazat pole a vytvořit jiný nový pro změnu "
"typu"
msgid "true if bar is hidden, false if it is displayed"
msgstr "pravda, pokud je pole schováno, nepravda, pokud je zobrazeno"
msgid "bar priority (high number means bar displayed first)"
msgstr "priorita pole (vyšší číslo znamená zobrazení pole jako první)"
msgid "bar type (root, window, window_active, window_inactive)"
msgstr "typ pole (root, window, window_active, window_inactive)"
msgid "condition(s) for displaying bar (for bars of type \"window\")"
msgstr "podmínka/podmínky pro zobrazení pole (pro pole typu \"window\")"
#, fuzzy
msgid "bar position (bottom, top, left, right)"
msgstr "pozice seznamu přezdívek (top, left, right (výchozí), bottom)"
msgid ""
"bar filling direction (\"horizontal\" (from left to right) or \"vertical"
"\" (from top to bottom)) when bar position is top or bottom"
msgstr ""
"směr plnění pole (\"horizontal\" (z leva do prava) nebo \"vertical\" (z hora "
"dolů)) když je pozice pole nahoře nebo dole"
msgid ""
"bar filling direction (\"horizontal\" (from left to right) or \"vertical"
"\" (from top to bottom)) when bar position is left or right"
msgstr ""
"směr plnění pole (\"horizontal\" (z leva do prava) nebo \"vertical\" (z hora "
"dolů)) když je pozice pole vlevo nebo vpravo"
msgid "bar size in chars (0 = auto size)"
msgstr "velikost pole ve znacích (0 = automatická velikost)"
#, fuzzy
msgid "max bar size in chars (0 = no limit)"
msgstr "maximální délka jmen v hotlistu (0 = bez limitu)"
#, fuzzy
msgid "default text color for bar"
msgstr "barva textu v info baru"
#, fuzzy
msgid "default delimiter color for bar"
msgstr "barva textu v info baru"
#, fuzzy
msgid "default background color for bar"
msgstr "barva textu v info baru"
#, fuzzy
msgid "separator line between bar and other bars/windows"
msgstr "oddělovač mezi rozhovorem a seznamem přezdívek"
#, fuzzy
msgid "items of bar"
msgstr "Seznam pro aliasy:\n"
#, fuzzy, c-format
msgid "Bar \"%s\" updated"
msgstr "Alias \"%s\" => \"%s\" vytvořen\n"
#, fuzzy, c-format
msgid "%sPaste %d lines ? [ctrl-Y] Yes [ctrl-N] No"
msgstr " Vložit %d řádků ? [ctrl-Y] Ano [ctrl-N] Ne"
#, fuzzy
msgid "Text search"
msgstr "Vyhledávání textu: "
#, fuzzy
msgid "Text search (exact)"
msgstr "Vyhledávání textu (rozlišování velikosti znaků): "
#, fuzzy
msgid "filtered"
msgstr "uživatel byl zablokován"
#, fuzzy, c-format
msgid "%s-MORE(%d)-"
msgstr "-VÍCE-"
msgid "Act: "
msgstr "Aktivní: "
#, fuzzy, c-format
msgid "%sError: a buffer with same name (%s) already exists"
msgstr ""
"%s nemohu načíst plugin \"%s\": plugin se stejným jménem již existuje\n"
#, fuzzy
msgid "Not enough memory for new line"
msgstr "Nedostatek paměti pro nový řádek\n"
#, fuzzy
msgid "Error: not enough memory to add a buffer to hotlist"
msgstr "%s nemohu přidat buffer do hotlistu\n"
#, fuzzy, c-format
msgid "Error: unable to bind key \"%s\""
msgstr "%s nemohu napojit kalávesu \"%s\"\n"
#, fuzzy
msgid "Error: not enough memory for key binding"
msgstr "%s nedostatek paměti pro klávesovou zkratku\n"
#, fuzzy, c-format
msgid "%s%s: error, circular reference when calling alias \"%s\""
msgstr "%s cyklický odkaz při volání aliasu \"/%s\"\n"
#, fuzzy, c-format
msgid "%s%s: error creating alias \"%s\" => \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy, c-format
msgid "Alias \"%s\" => \"%s\" created"
msgstr "Alias \"%s\" => \"%s\" vytvořen\n"
#, fuzzy
msgid "Alias:"
msgstr "Alias:\n"
#, fuzzy
msgid "No alias found"
msgstr "Žádné aliasy nenalezeny.\n"
#, fuzzy
msgid "List of aliases:"
msgstr "Seznam pro aliasy:\n"
#, fuzzy
msgid "No alias defined"
msgstr "Žádné aliasy nejsou definovány.\n"
#, fuzzy, c-format
msgid "%sAlias \"%s\" not found"
msgstr "%s adresa \"%s\" nenalezena\n"
#, fuzzy, c-format
msgid "Alias \"%s\" removed"
msgstr "Alias \"%s\" odebrán\n"
msgid "create an alias for a command"
msgstr "vytvoří alias pro příkaz"
msgid "[alias_name [command [arguments]]]"
msgstr "[jméno_aliasu [příkaz [argumenty]]]"
#, fuzzy
msgid ""
"alias_name: name of alias\n"
" command: command name (many commands can be separated by semicolons)\n"
" arguments: arguments for command\n"
"\n"
"Note: in command, special variables $1, $2,..,$9 are replaced by arguments "
"given by user, and $* is replaced by all arguments.\n"
"Variables $nick, $channel and $server are replaced by current nick/channel/"
"server."
msgstr ""
"jméno_aliasu: jméno aliasu\n"
" příkaz: jméno příkazu (WeeChat nebo IRC příkaz, více příkazů se "
"rozděluje středníky)\n"
" argumenty: argumenty příkazu\n"
"\n"
"Poznámka: v příkazu, speciální proměnné $1, $2,...,$9 jsou nahrazeny "
"argumenty, které zadá uživatel a $* je nahrazeno všemi argumenty.\n"
"Proměnné $nick, $channel a $server jsou nahrazeny aktuální přezdívkou/"
"kanálem/serverem."
msgid "remove an alias"
msgstr "odebere alias"
msgid "alias_name"
msgstr "jméno_aliasu"
msgid "alias_name: name of alias to remove"
msgstr "jméno_aliasu: jméno aliasu pro odebrání"
#, fuzzy
msgid "list of alias"
msgstr "Seznam pro aliasy:\n"
#, fuzzy, c-format
msgid "%s: \"%s\" removed"
msgstr "Alias \"%s\" odebrán\n"
#. TRANSLATORS: %s is "aspell"
#, fuzzy, c-format
msgid "%s dictionaries list:"
msgstr "konec /who seznamu"
#, c-format
msgid "%s: error: dictionary \"%s\" is not available on your system"
msgstr ""
#, c-format
msgid "%s: word \"%s\" added to personal dictionary"
msgstr ""
#, c-format
msgid "%s%s: failed to add word to personal dictionary"
msgstr ""
#, c-format
msgid "%s%s: no dictionary on this buffer for adding word"
msgstr ""
#, c-format
msgid ""
"%s%s: many dictionaries are defined for this buffer, please specify "
"dictionary"
msgstr ""
#, fuzzy
msgid "aspell plugin configuration"
msgstr "Ukládám konfiguraci na disk\n"
msgid "dictlist | enable lang | disable | addword [lang] word"
msgstr ""
msgid ""
"dictlist: show installed dictionaries\n"
" enable: enable aspell on current buffer\n"
" disable: disable aspell on current buffer\n"
" addword: add a word in your personal aspell dictionary\n"
"\n"
"Input line beginning with a '/' is not checked, except for some commands."
msgstr ""
msgid "comma separated list of dictionaries to use on this buffer"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: error creating aspell dictionary \"%s\" => \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
msgid "color used for mispelled words"
msgstr ""
msgid ""
"comma separated list of commands for which spell checking is enabled (spell "
"checking is disabled for all other commands)"
msgstr ""
msgid ""
"default dictionary (or comma separated list of dictionaries) to use when "
"buffer has no dictionary defined (leave blank to disable aspell on buffers "
"for which you didn't explicitely enabled it)"
msgstr ""
msgid ""
"minimum length for a word to be spell checked (use 0 to check all words)"
msgstr ""
msgid "check words during text search in buffer"
msgstr ""
#, c-format
msgid "%s: warning: dictionary \"%s\" is not available on your system"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: not enough memory to create new speller"
msgstr "%s nedostatek paměti pro nové DCC\n"
#, fuzzy, c-format
msgid "%s%s: error creating charset \"%s\" => \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
msgid "global decoding charset"
msgstr "globální znaková sada pro dekódování"
msgid "global encoding charset"
msgstr "globální znaková sada pro kódování"
#, fuzzy, c-format
msgid "%s: %s, \"%s\": removed"
msgstr "Alias \"%s\" odebrán\n"
#, fuzzy, c-format
msgid "%s%s: missing parameters"
msgstr "%s chybí argument pro volbu \"%s\"\n"
#, c-format
msgid "%s%s: wrong charset type (decode or encode expected)"
msgstr "%s%s: špatný typ znakové sady (očekáváno decode nebo encode)"
#, fuzzy, c-format
msgid "%s%s: invalid charset: \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s: terminal: %s, internal: %s"
msgstr "%s plugin \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid "%s%s: error creating configuration file"
msgstr "říct serveru, aby znovu načetl svůj konfigurační soubor"
#, fuzzy
msgid "change charset for current buffer"
msgstr "nenalezeno jméno kanálu pro buffer"
msgid "[[decode | encode] charset] | [reset]"
msgstr "[[decode | encode] charset] | [reset]"
msgid ""
" decode: change decoding charset\n"
" encode: change encoding charset\n"
"charset: new charset for current buffer\n"
" reset: reset charsets for current buffer"
msgstr ""
" decode: změní dekódovací znakovou sadu\n"
" encode: změní kódovací znakovou sadu\n"
"charset: nová znaková sada pro aktuální buffer\n"
" reset: resetovat znakové sady aktuálního bufferu"
msgid "demo message without prefix"
msgstr "demo zpráva bez prefixu"
#, c-format
msgid "%sdemo message with error prefix"
msgstr "%sdemo zpráva s chybovým prefixem"
#, c-format
msgid "colors: %s buffer %s nick1 %s nick2 %s nick3 %s nick4"
msgstr ""
"barvy: %s buffer %s přezdívka1 %s přezdívka2 %s přezdívka3 %s přezdívka4"
msgid "Available infos:"
msgstr ""
msgid "Available infolists:"
msgstr ""
#, fuzzy, c-format
msgid "demo_signal: signal: %s, type_data: %s, signal_data: \"%s\""
msgstr "ukázkový_signál: signál: %s, typ_dat: %s, data_signálu: '%s'"
#, c-format
msgid "demo_signal: signal: %s, type_data: %s, signal_data: %d"
msgstr "ukázkový_signál: signál: %s, typ_dat: %s, data_signalu: %d"
#, fuzzy, c-format
msgid "demo_signal: signal: %s, type_data: %s, signal_data: 0x%lx"
msgstr "ukázkový_signál: signál: %s, typ_dat: %s, data_signalu: 0x%x"
#, fuzzy, c-format
msgid ""
"demo_signal: signal: %s, type_data: %s, signal_data: 0x%lx (unknown type)"
msgstr ""
"ukázkový_signál: signál: %s, typ_dat: %s, data_signál: 0x%x (neznámý typ)"
msgid "print some messages on current ubffer"
msgstr "vypsat nějaké zprávy do aktuálního bufferu"
#, fuzzy
msgid "[text]"
msgstr "text"
#, fuzzy
msgid "text: write this text"
msgstr "časová značka pro čas v infobaru"
#, fuzzy
msgid "open a new buffer"
msgstr "nemohu vytvořit nový buffer"
msgid "name"
msgstr ""
#, fuzzy
msgid "set a buffer property"
msgstr "hledání textu v historii bufferu"
msgid "property value"
msgstr "hodnota vlastnosti"
#, fuzzy
msgid "get and display an info"
msgstr "maximální počtet příkazů, který zobarzit"
#, fuzzy
msgid "[info [arguments]]"
msgstr "příjemce typ [argumenty]"
msgid ""
" info: info to display\n"
"arguments: optional arguments for info\n"
"\n"
"Without argument, this command displays list of available infos"
msgstr ""
#, fuzzy
msgid "get and display an infolist"
msgstr "maximální počtet příkazů, který zobarzit"
#, fuzzy
msgid "[infolist [arguments]]"
msgstr "příjemce typ [argumenty]"
msgid ""
" infolist: infolist to display\n"
"arguments: optional arguments for infolist\n"
"\n"
"Without argument, this command displays list of available infolists"
msgstr ""
#, fuzzy, c-format
msgid "%s: pipe opened"
msgstr "FIFO roura je otevřena\n"
#, fuzzy, c-format
msgid "%s%s: unable to open pipe (%s) for reading"
msgstr "%s nemohu otevřít FIFO rouru (%s) pro čtení\n"
#, fuzzy, c-format
msgid "%s%s: unable to create pipe for remote control (%s)"
msgstr "%s nemohu zpravit FIFO rouru pro vzdálené ovládání (%s)\n"
#, fuzzy, c-format
msgid "%s: pipe closed"
msgstr "FIFO roura zavřena\n"
#, fuzzy, c-format
msgid "%s%s: error, invalid text received on pipe"
msgstr "%s nekorektní text přijat na FIFO rouře\n"
#, fuzzy, c-format
msgid "%s%s: error, buffer not found for pipe data"
msgstr "%s server \"%s\" nenalezen (data FIFO roury)\n"
#, fuzzy, c-format
msgid "%s%s: error reading pipe, closing it"
msgstr "%s chyba při čtení FIFO roury, zavírám ji\n"
#, fuzzy, c-format
msgid "%s%s: error opening file, closing it"
msgstr "%s chyba při čtení FIFO roury, zavírám ji\n"
msgid "name of FIFO pipe"
msgstr ""
#, fuzzy
msgid "servers"
msgstr "server"
msgid "away"
msgstr ""
msgid "Lag"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: error with server from URL (\"%s\"), ignored"
msgstr "%s nevalidní syntaxe pro IRC server ('%s'), ignorován\n"
#, c-format
msgid ""
"%s%s: WARNING: some network connections may still be opened and not visible, "
"you should restart WeeChat now (with /quit)."
msgstr ""
#, fuzzy, c-format
msgid "%s%s: cannot allocate new channel"
msgstr "%s nemohu přidělit nový kanál"
#, fuzzy, c-format
msgid "%s%s: cannot find nick for sending message"
msgstr "%s nemohu najít přezdívku pro poslání zprávy\n"
#, fuzzy, c-format
msgid "%s%s: future away: %s"
msgstr "Budoucí zpráva o nepřítomnosit na %s%s%s: %s\n"
#, fuzzy, c-format
msgid "%s%s: future away removed"
msgstr "Budoucí zpráva o nepřítomnosti na %s%s%s odebrána.\n"
#, fuzzy, c-format
msgid "%s%s: \"%s\" command can only be executed in a channel buffer"
msgstr "%s \"%s\" příkaz může být spuštěn pouze v bufferu kanálu\n"
#, fuzzy, c-format
msgid "%s%s: already connected to server \"%s\"!"
msgstr "%s již vytvořený server \"%s\"!\n"
#, fuzzy, c-format
msgid "%s%s: currently connecting to server \"%s\"!"
msgstr "%s zrovna připojuji k serveru \"%s\"!\n"
#, fuzzy, c-format
msgid "%s%s: missing argument for \"%s\" option"
msgstr "%s chybí argument pro volbu \"%s\"\n"
#, fuzzy, c-format
msgid "%s: server %s%s%s created (temporary server, NOT SAVED!)"
msgstr "Server %s%s%s vytvořen\n"
#, fuzzy, c-format
msgid "%s%s: unable to create server \"%s\""
msgstr "%s nemohu vytvořit server \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: \"%s\" command can not be executed on a server buffer"
msgstr "%s \"%s\" příkaz nemůže být spuštěn v bufferu serveru\n"
#, fuzzy, c-format
msgid "%s%s: wrong arguments for \"%s\" command"
msgstr "%s špatné parametry pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: not connected to server \"%s\"!"
msgstr "%s nepřipojen k serveru \"%s\"!\n"
#, fuzzy, c-format
msgid "%s%s: auto-reconnection is cancelled"
msgstr "Automatické znovupřipojené je zrušeno\n"
#, fuzzy, c-format
msgid "%s%s: server \"%s\" not found"
msgstr "%s server \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid " %s[%s%d%s]%s mask: %s / server: %s / channel: %s"
msgstr " (není obsluhovač zprávy)\n"
#, fuzzy, c-format
msgid "%s: ignore list:"
msgstr "konec /who seznamu"
#, c-format
msgid "%s: no ignore in list"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: missing arguments for \"%s\" command"
msgstr "%s chybí argumenty pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: ignore already exists"
msgstr "%s ignorování již existuje\n"
#, fuzzy, c-format
msgid "%s: ignore added:"
msgstr "uživatel byl zablokován"
#, fuzzy, c-format
msgid "%s%s: error adding ignore"
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy, c-format
msgid "%s: all ignore deleted"
msgstr "uživatel byl zablokován"
#, fuzzy, c-format
msgid "%s: ignore deleted"
msgstr "uživatel byl zablokován"
#, fuzzy, c-format
msgid "%s%s: ignore not found"
msgstr "%s IP adresa nenalezena\n"
#, fuzzy, c-format
msgid "%s%s: wrong ignore number"
msgstr "%s nekorektní číslo bufferu\n"
#, fuzzy, c-format
msgid "%s%s: unknown option for \"%s\" command"
msgstr "%s neznámá volba pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: \"%s\" is not a valid regular expression (%s)"
msgstr "%s \"%s\" není validní regulární výraz (%s)\n"
#, fuzzy, c-format
msgid "%s%s: not enough memory for regular expression"
msgstr "%s nedostatek paměti pro regulární výraz\n"
#, fuzzy, c-format
msgid ""
"%s%s: \"%s\" command can only be executed in a channel or private buffer"
msgstr ""
"%s \"%s\" příkaz může být spuštěn pouze v bufferu kanálu nebo soukromého "
"rozhovoru\n"
#, fuzzy, c-format
msgid "%s%s: cannot create new private buffer \"%s\""
msgstr "%s nemohu vytvořít nové soukromý buffer\"%s\"\n"
#, fuzzy
msgid "All servers:"
msgstr "Všechny servery:\n"
#, fuzzy
msgid "No server"
msgstr "žádný server.\n"
#, fuzzy, c-format
msgid "Servers with \"%s\":"
msgstr "Server s '%s':\n"
#, fuzzy, c-format
msgid "No server found with \"%s\""
msgstr "Žádný server s '%s' nenalezen.\n"
#, fuzzy, c-format
msgid "%s%s: server \"%s\" already exists, can't create it!"
msgstr "%s server \"%s\" již existuje, nemohu jej vytvořít!\n"
#, fuzzy, c-format
msgid "%s%s: unable to create server"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s: server %s%s%s created"
msgstr "Server %s%s%s vytvořen\n"
#, fuzzy, c-format
msgid "%s%s: server \"%s\" not found for \"%s\" command"
msgstr "%s server \"%s\" nenalezen pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: server \"%s\" already exists for \"%s\" command"
msgstr "%s server \"%s\" pro příkaz \"%s\" již existuje\n"
#, fuzzy, c-format
msgid "%s: server %s%s%s has been copied to %s%s"
msgstr "Server %s%s%s byl zkopírován do %s%s\n"
#, fuzzy, c-format
msgid "%s: server %s%s%s has been renamed to %s%s"
msgstr "Server %s%s%s byl přejmenován na %s%s\n"
#, fuzzy, c-format
msgid "%s%s: server \"%s\" is not a temporary server"
msgstr "Server %s%s%s vytvořen\n"
#, fuzzy, c-format
msgid "%s: server %s%s%s is not temporary any more"
msgstr "Server %s%s%s vytvořen\n"
#, fuzzy, c-format
msgid ""
"%s%s: you can not delete server \"%s\" because you are connected to. Try \"/"
"disconnect %s\" before."
msgstr ""
"%s nemůžete odebrat server \"%s\", protože jste k němu připojent. Skuste "
"nejprve /dissconnect %s.\n"
#, fuzzy, c-format
msgid "%s: Server %s%s%s has been deleted"
msgstr "Server %s%s%s byl odebrán\n"
#, fuzzy, c-format
msgid ""
"%s: messages outqueue DELETED for all servers. Some messages from you or "
"WeeChat may have been lost!"
msgstr ""
"Fronty odchozích zpráv všech serverů byly SMAZÁNY. Některé zprávy od Vás "
"nebo WeeChat mohou být ztraceny!\n"
#, fuzzy, c-format
msgid "%s%s: wrong argument count for \"%s\" command"
msgstr "%s špatný počet parametrů pro příkaz \"%s\"\n"
msgid "find information about the administrator of the server"
msgstr "najít informace o administrátorovi serveru"
msgid "[target]"
msgstr "[cíl]"
msgid "target: server"
msgstr "cíl: server"
msgid "send a CTCP action to all channels of all connected servers"
msgstr "poslat CTCP akci na všechny kanály všech připojených serverů"
msgid "message"
msgstr "zpráva"
msgid "message: message to send"
msgstr "zpráva: zpráva, která se má poslat"
msgid "send message to all channels of all connected servers"
msgstr "poslat zprávu na všechny kanály všech připojených serverů"
msgid "text"
msgstr "text"
msgid "text: text to send"
msgstr "text: texk k poslání"
msgid "toggle away status"
msgstr "přepnout status nepřítomnosti"
msgid "[-all] [message]"
msgstr "[-all] [zpráva]"
msgid ""
" -all: toggle away status on all connected servers\n"
"message: message for away (if no message is given, away status is removed)"
msgstr ""
" -all: přepnout status nečinnosti na všech připojených serverech\n"
"zpráva: zpráva pro nepřítomnost (pokud není zadána je status nepřítomnosti "
"odebrán)"
#, fuzzy
msgid "ban nicks or hosts"
msgstr "zakázat přezdívky nebo hosty"
msgid "[channel] [nickname [nickname ...]]"
msgstr "[kanál] [přezdívka [přezdívka ...]]"
msgid ""
" channel: channel for ban\n"
"nickname: user or host to ban"
msgstr ""
" kanál: kanál pro zakázání\n"
"přezdívka: uživatel nebo host, který bude zakáhán"
#, fuzzy
msgid "connect to IRC server(s)"
msgstr "připojit se k serveru/serverům"
msgid ""
"[-all [-nojoin] | servername [servername ...] [-nojoin] | hostname [-port "
"port] [-ipv6] [-ssl]]"
msgstr ""
"[-all [-nojoin] | jméno_serveru [jméno_serveru ...] [-nojoin] | hostname [-"
"port port] [-ipv6] [-ssl]]"
#, fuzzy
msgid ""
" -all: connect to all servers\n"
"servername: internal server name to connect\n"
" -nojoin: do not join any channel (even if autojoin is enabled on server)\n"
" hostname: hostname to connect\n"
" port: port for server (integer, default is 6667)\n"
" ipv6: use IPv6 protocol\n"
" ssl: use SSL protocol"
msgstr ""
" -all: připojit ke všem serverům\n"
"jméno_serveru: jméno serveru pro přípojení -nojoin: nepřipojovat se na "
"kanály (i pokud je na serveru zpanuto automatické připojování)\n"
" hostname: hostname pro připojení, vytvoří dočasný server\n"
" port: port pro server (celé číslo, výchozí je 6667)\n"
" ipv6: použít IPv6 protokol\n"
" ssl: použít SSL protokol"
msgid "send a CTCP message (Client-To-Client Protocol)"
msgstr "poslat CTCP zprávu (Client-To-Client Protocol)"
msgid "receiver type [arguments]"
msgstr "příjemce typ [argumenty]"
msgid ""
" receiver: nick or channel to send CTCP to\n"
" type: CTCP type (examples: \"version\", \"ping\", ..)\n"
"arguments: arguments for CTCP"
msgstr ""
" příjemce: uživatel kterému se pošle CTCP\n"
" typ: CTCP typ (například: \"version\", \"ping\", ..)\n"
"argumenty: argumenty pro CTCP"
msgid "leave and rejoin a channel"
msgstr "opustit a znovu se připojit ke kanálu"
msgid "[channel[,channel]] [part_message]"
msgstr "[kanál[,kanál]] [zpráva_části]"
msgid ""
" channel: channel name for cycle\n"
"part_message: part message (displayed to other users)"
msgstr ""
" kanál: jméno kanálu pro cyklus\n"
"zpráva_části: zpráva při opuštění (zobrazí se ostatním uživatelům)"
#, fuzzy
msgid "start DCC (file or chat)"
msgstr "spustit DCC (soubor nebo rozhovor) nebo zavřít rozhovor"
msgid "action [nickname [file]]"
msgstr "akce [přezdívka [soubor]]"
#, fuzzy
msgid ""
" action: 'send' (file) or 'chat'\n"
"nickname: nickname to send file or chat\n"
" file: filename (on local host)"
msgstr ""
" akce: 'send' (soubor) nebo 'chat' nebo 'close' (rozhovor)\n"
"nickname: přezdívka, které poslat soubor nebo rozhovor\n"
" soubor: jméno souboru (na lokálním počítači)"
#, fuzzy
msgid "remove half channel operator status from nickname(s)"
msgstr "odebrat status operátora polovičního kanálu z přezdívky (přezdívek)"
msgid "[nickname [nickname]]"
msgstr "[přezdívka [přezdívka]]"
#, fuzzy
msgid "remove channel operator status from nickname(s)"
msgstr "odebrat status operátora kanálu z přezdívky (přezdívek)"
#, fuzzy
msgid "remove voice from nickname(s)"
msgstr "odebrat hlas z přezdívky (přezdívek)"
msgid "shutdown the server"
msgstr "vypnout server"
#, fuzzy
msgid "disconnect from IRC server(s)"
msgstr "odpojit ze serveru/serverů"
msgid "[-all | servername [servername ...]]"
msgstr "[-all | jméno_serveru [jméno_serveru ...]]"
msgid ""
" -all: disconnect from all servers\n"
"servername: server name to disconnect"
msgstr ""
" -all: odpojit od všech serverů\n"
"jméno_serveru: jméno serveru pro odpojení"
#, fuzzy
msgid "give half channel operator status to nickname(s)"
msgstr "dát přezdívce (přezdívkám) status operátora polovičního kanálu"
msgid "ignore nicks/hosts from servers or channels"
msgstr ""
msgid "[list] | [add [re:]nick/host [server [channel]]] | [del number|-all]"
msgstr ""
msgid ""
" list: list all ignore\n"
" add: add a ignore\n"
" del: del a ignore\n"
" number: number of ignore to delete (look at list to find it)\n"
" -all: delete all ignore\n"
"nick/host: nick or host to ignore: syntax is \"re:regex\" or \"mask\" (a "
"mask is a string with some \"*\" to replace one or more chars)\n"
" server: internal server name where ignore is working\n"
" channel: channel name where ignore is working\n"
"\n"
"Examples:\n"
" ignore nick \"toto\" everywhere:\n"
" /ignore add toto\n"
" ignore host \"toto@domain.com\" on freenode server:\n"
" /ignore add toto@domain.com freenode\n"
" ignore host \"toto*@*.domain.com\" on freenode/#weechat:\n"
" /ignore add toto*@*.domain.com freenode #weechat"
msgstr ""
msgid "get information describing the server"
msgstr "získat informace popisující server"
msgid "target: server name"
msgstr "cíl: server jméno"
msgid "invite a nick on a channel"
msgstr "pozvat přezdívku na kanál"
msgid "nickname channel"
msgstr "přezdívka kanál"
msgid ""
"nickname: nick to invite\n"
" channel: channel to invite"
msgstr ""
"přezdívka: přezdívka, kterou pozvat\n"
" kanál: kanál na kterou ji pozvat"
msgid "check if a nickname is currently on IRC"
msgstr "zkontrolovat jestli je přezdívka momentálne na IRC"
msgid "nickname [nickname ...]"
msgstr "přezdívka [přezdívka ...]"
msgid "nickname: nickname"
msgstr "přezdívka: přezdívka"
msgid "join a channel"
msgstr "připojit se ke kanálu"
msgid "channel[,channel] [key[,key]]"
msgstr "kanál[,kanál] [klíč[,klíč]]"
msgid ""
"channel: channel name to join\n"
" key: key to join the channel"
msgstr ""
"kanál: jméno kanálu na který se připojit\n"
" klíč: klíč pro připojení ke kanálu"
msgid "forcibly remove a user from a channel"
msgstr "násilně odebrat uživatele z kanálu"
msgid "[channel] nickname [comment]"
msgstr "[kanál] přezdívka [komentář]"
msgid ""
" channel: channel where user is\n"
"nickname: nickname to kick\n"
" comment: comment for kick"
msgstr ""
" kanál: kanál na kterém je uživatel\n"
"přezdívka: přezdívka, kterou vykopnout\n"
" komentář: komentář pro vykopnutí"
msgid "kicks and bans a nick from a channel"
msgstr "vyhodit a zakázat přezdívku na kanálu"
msgid ""
" channel: channel where user is\n"
"nickname: nickname to kick and ban\n"
" comment: comment for kick"
msgstr ""
" kanál: kanál na kterém je uživatel\n"
"přezdívka: přezdívka, kterou vykopnout a zakázat\n"
" komentář: komentář pro vykopnutí"
msgid "close client-server connection"
msgstr "zavřít spojení klient-server"
msgid "nickname comment"
msgstr "přezdívka komentář"
msgid ""
"nickname: nickname\n"
" comment: comment for kill"
msgstr ""
"přezdívka: přezdívka\n"
" komentář: komentář pro zabít"
msgid "list all servernames which are known by the server answering the query"
msgstr ""
"vypsat všechny jména serverů, které jsou známy serveru odpovídajícím na query"
msgid "[[server] server_mask]"
msgstr "[[server] maska_serveru]"
msgid ""
" server: this server should answer the query\n"
"server_mask: list of servers must match this mask"
msgstr ""
" server: tento server by měl odpovědět na query\n"
"maska_serveru: seznam serverů musí odpovídat této masce"
msgid "list channels and their topic"
msgstr "vypsat kanály a jejich témata"
msgid "[channel[,channel] [server]]"
msgstr "[kanál,[,kanál] [server]]"
msgid ""
"channel: channel to list (a regexp is allowed)\n"
"server: server name"
msgstr ""
"kanál: kanál, který se má vypsat (regulární výraz je povolen)\n"
"server: jméno serveru"
msgid "get statistics about the size of the IRC network"
msgstr "získat statistiku o velikosti IRC sítě"
msgid "[mask [target]]"
msgstr "[maska [cíl]]"
msgid ""
" mask: servers matching the mask only\n"
"target: server for forwarding request"
msgstr ""
"maska: pouze servery odpovídající této masce\n"
" cíl: server pro dopravující požadavek"
msgid "send a CTCP action to the current channel"
msgstr "poslat CTCP akci na aktuální kanál"
msgid "change channel or user mode"
msgstr "změní mód kanálu nebo uživatele"
msgid ""
"{ channel {[+|-]|o|p|s|i|t|n|b|v} [limit] [user] [ban mask] } | { nickname "
"{[+|-]|i|w|s|o} }"
msgstr ""
"{ kanál {[+|-]|o|p|s|i|t|n|b|v} [limit] [uživatel] [maska k zakázání] } | "
"{ přezdívka {[+|-]|i|w|s|o} }"
msgid ""
"channel modes:\n"
" channel: channel name to modify\n"
" o: give/take channel operator privileges\n"
" p: private channel flag\n"
" s: secret channel flag\n"
" i: invite-only channel flag\n"
" t: topic settable by channel operator only flag\n"
" n: no messages to channel from clients on the outside\n"
" m: moderated channel\n"
" l: set the user limit to channel\n"
" b: set a ban mask to keep users out\n"
" e: set exception mask\n"
" v: give/take the ability to speak on a moderated channel\n"
" k: set a channel key (password)\n"
"user modes:\n"
" nickname: nickname to modify\n"
" i: mark a user as invisible\n"
" s: mark a user for receive server notices\n"
" w: user receives wallops\n"
" o: operator flag"
msgstr ""
"módy kanálu:\n"
" kanál: jméno kanálu, která změnit\n"
" o: dát/vzít práva operátora kanálu\n"
" p: značka soukromého kanálu\n"
" s: značka tajného kanálu\n"
" i: značka kanálu pouze pozvaných\n"
" t: téma můžou nastavovat jen operátoři kanálu\n"
" n: na kanál nesmí přicházet zprávy od lidí, kteří nejsou na kanále\n"
" m: moderovaný kanál\n"
" l: nastaví limit počtu uživatelů pro kanál\n"
" b: nastaví masku k zakázání pro udržení uživatele mimo kanál\n"
" e: nastaví masku vyjímky\n"
" v: dát/vzít schopnost mluvit na moderovaných kanálech\n"
" k: nastavit klíč (heslo) ke kanálu\n"
"uživatelské módy:\n"
" přezdívka: přezdívka, kterou změnit\n"
" i: označit uživatele za neviditelného\n"
" s: označit uživatele aby mu byly zasílány notifikace serveru\n"
" w: uživatel dostává wallops\n"
" o: značka operátora"
msgid "get the \"Message Of The Day\""
msgstr "získat \"Zprávu dne\""
msgid "send message to a nick or channel"
msgstr "poslat zprávu přezdívce nebo kanálu"
msgid "receiver[,receiver] text"
msgstr "příjemce[,příjemce] text"
msgid ""
"receiver: nick or channel (may be mask, '*' = current channel)\n"
"text: text to send"
msgstr ""
"příjemce: přezdívka nebo kanál (může být maska, '*' = aktuální kanál)\n"
"text: text, který se má poslat"
msgid "list nicknames on channels"
msgstr "vypsat přezdívky na kanále"
msgid "[channel[,channel]]"
msgstr "[kanál[,]kanál]"
msgid "channel: channel name"
msgstr "kanál: jméno kanálu"
msgid "change current nickname"
msgstr "změnit aktuální přezdívku"
msgid "[-all] nickname"
msgstr "[-all] přezdívka"
msgid ""
" -all: set new nickname for all connected servers\n"
"nickname: new nickname"
msgstr ""
" -all: nastavit novou přezdívku přo všechny připojené servery\n"
"přezdívka: nová přezdívka"
msgid "send notice message to user"
msgstr "poslat notifikační zprávu uživateli"
msgid "nickname text"
msgstr "přezdívka text"
msgid ""
"nickname: user to send notice to\n"
" text: text to send"
msgstr ""
"přezdívka: uživatel, kterému poslat notifikaci\n"
" text: text, který poslat"
#, fuzzy
msgid "give channel operator status to nickname(s)"
msgstr "dát status operátora kanálu přezdívce (přezdívkám)"
msgid "nickname [nickname]"
msgstr "přezdívka [přezdívka]"
msgid "get operator privileges"
msgstr "dát práva operátora"
msgid "user password"
msgstr "uživatel heslo"
msgid "user/password: used to get privileges on current IRC server"
msgstr "uživatel/heslo: použité pro získání práv na aktuálním IRC serveru"
msgid "leave a channel"
msgstr "opustit kanál"
msgid ""
" channel: channel name to leave\n"
"part_message: part message (displayed to other users)"
msgstr ""
" kanál: kanál, který opustit\n"
"zpráva_části: zpráva při opuštění (zobrazí se ostatním uživatelům)"
msgid "ping server"
msgstr "pingnout server"
msgid "server1 [server2]"
msgstr "server1 [server2]"
msgid ""
"server1: server to ping\n"
"server2: forward ping to this server"
msgstr ""
"server1: server, který pingnout\n"
"server2: poslat ping na tento server"
msgid "answer to a ping message"
msgstr "odpovědět na ping zprávu"
msgid "daemon [daemon2]"
msgstr "démon [démon2]"
msgid ""
" daemon: daemon who has responded to Ping message\n"
"daemon2: forward message to this daemon"
msgstr ""
" démon: démon, který odpověděl na ping zprávu\n"
"démon2: poslat zprávu tomuto démonovi"
msgid "send a private message to a nick"
msgstr "poslat soukromou zprávu přezdívce"
msgid "nickname [text]"
msgstr "přezdívka [text]"
msgid ""
"nickname: nickname for private conversation\n"
" text: text to send"
msgstr ""
"přezdívka: přezdívka pro soukromé spojení\n"
" text: text, který poslat"
msgid "send raw data to server without parsing"
msgstr "poslat čistá data na server bez pársování"
msgid "data"
msgstr "data"
msgid "data: raw data to send"
msgstr "data: čístá data pro server"
msgid "reconnect to server(s)"
msgstr "znovu připojit k serveru/serverům"
msgid "[-all [-nojoin] | servername [servername ...] [-nojoin]]"
msgstr "[-all [-nojoin] | jméno_serveru [jméno_serveru ...] [-nojoin]]"
msgid ""
" -all: reconnect to all servers\n"
"servername: server name to reconnect\n"
" -nojoin: do not join any channel (even if autojoin is enabled on server)"
msgstr ""
" -all: znovu připojit ke všem serverům\n"
"jméno_serveru: jméno serveru pro znovu přípojení\n"
" -nojoin: nepřipojovat se na kanály (i pokud je na serveru zpanuto "
"automatické připojování)"
msgid "tell the server to reload its config file"
msgstr "říct serveru, aby znovu načetl svůj konfigurační soubor"
msgid "tell the server to restart itself"
msgstr "říct serveru, aby se restartoval"
msgid "register a new service"
msgstr "zaregistrovat novou službu"
msgid "nickname reserved distribution type reserved info"
msgstr "přezdívka reserved distribuce typ reserved info"
msgid ""
"distribution: visibility of service\n"
" type: reserved for future usage"
msgstr ""
"distribuce: viditelnost servisu\n"
" typ: rezervováné pro příští použití"
#, fuzzy
msgid "list, add or remove IRC servers"
msgstr "vypíše, přídá nebo odebere servery"
#, fuzzy
msgid ""
"[list [servername]] | [listfull [servername]] | [add servername hostname[/"
"port] [-auto | -noauto] [-ipv6] [-ssl]] | [copy servername newservername] | "
"[rename servername newservername] | [keep servername] | [del servername] | "
"[deloutq] | [switch]"
msgstr ""
"[list [jméno_serveru]] | [listfull [jméno_serveru]] | [add jméno_serveru "
"jméno_hosta [-port port] [-temp] [-auto | -noauto] [-ipv6] [-ssl] [-pwd "
"heslo] [-nick přezdívka1 přezdívka2 přezdívka3] [-username "
"uživatelské_jméno] [-realname pravé_jméno] [-command příkaz] [-autojoin kanál"
"[,kanál]] ] | [copy jméno_serveru nové_jméno_serveru] | [rename "
"jméno_serveru nové_jméno_serveru] | [keep jméno_serveru] | [del "
"jméno_serveru]"
#, fuzzy
msgid ""
" list: list servers (no parameter implies this list)\n"
" listfull: list servers with detailed info for each server\n"
" add: create a new server\n"
"servername: server name, for internal and display use\n"
" hostname: name or IP address of server, with optional port (default: "
"6667)\n"
" auto: automatically connect to server when WeeChat starts\n"
" noauto: do not connect to server when WeeChat starts (default)\n"
" ipv6: use IPv6 protocol\n"
" ssl: use SSL protocol\n"
" copy: duplicate a server\n"
" rename: rename a server\n"
" keep: keep server in config file (for temporary servers only)\n"
" del: delete a server\n"
" deloutq: delete messages out queue for all servers (all messages WeeChat "
"is currently sending)\n"
" switch: switch active server (when one buffer is used for all servers, "
"default key: alt-s on server buffer)\n"
"\n"
"Examples:\n"
" /server listfull\n"
" /server add oftc irc.oftc.net/6697 -ssl\n"
" /server add oftc6 irc6.oftc.net/6697 -ipv6 -ssl\n"
" /server add freenode2 chat.eu.freenode.net/6667,chat.us.freenode.net/6667\n"
" /server copy oftc oftcbis\n"
" /server rename oftc newoftc\n"
" /server del freenode\n"
" /server deloutq\n"
" /server switch"
msgstr ""
" list: vypsat servery (pokud nejsou uvedeny žádné parametry bude "
"vypsán tento seznam)\n"
" listfull: vypsat servery s detailními informacemi o každém serveru\n"
" add: vytvoří nový server\n"
" jméno_serveru: jméno serveru pro vnitřní a zobrazovací použití\n"
" jméno_hosta: jméno nebo IP adresa serveru\n"
" port: port pro server (celé číslo, výchozí je 6667)\n"
" temp: vytvořit dočasný server (neukládá se do konfiguračního "
"souboru)\n"
" auto: automatickz pripojit k serveru při startu WeeChat\n"
" noauto: nepřipojovat k serveru automatickz při startu WeeChat "
"(výchozí)\n"
" ipv6: používat IPv6 protokol\n"
" ssl: používat SSL protokol\n"
" heslo: heslo pro server\n"
" přezdívka1: první přezdívka pro server\n"
" přezdívka2: alternativní přezdívka pro server\n"
" přezdívka3: druhá alternativní přezdívka pro server\n"
"uživatelské_jméno: uživatelské jméno\n"
" pravé_jméno: pravé jméno uživatele\n"
" copy: zkopírovat server\n"
" rename: přejmenovat server\n"
" keep: zachovat server v konfiguračním souboru (pouze pro "
"dočasné servery)\n"
" del: smazat server\n"
" deloutq: smazat zprávy v odchozích frontách všech serverů (všechny "
"zprávy, které WeeChat právě posílá)"
msgid "list services currently connected to the network"
msgstr "vypsat služby, které jsou zrovna připojeny k síti"
msgid "[mask [type]]"
msgstr "[maska [typ]]"
msgid ""
"mask: list only services matching this mask\n"
"type: list only services of this type"
msgstr ""
"maska: vypsat pouze služby odpovídající této masce\n"
"typ: vypsat pouze služby tohoto typu"
msgid "deliver a message to a service"
msgstr "doručit zprávu službě"
msgid "service text"
msgstr "služba text"
msgid ""
"service: name of service\n"
"text: text to send"
msgstr ""
"služba: jméno služby\n"
"text: text, který se má poslat"
msgid "disconnect server links"
msgstr "odpojit spojení serveru"
msgid "server comment"
msgstr "server komentář"
msgid ""
"server: server name\n"
"comment: comment for quit"
msgstr ""
"server: jméno serveru\n"
"komentář: komentář pro ukončení"
msgid "query statistics about server"
msgstr "dotázat se na statistiku o serveru"
msgid "[query [server]]"
msgstr "[dotaz [server]]"
msgid ""
" query: c/h/i/k/l/m/o/y/u (see RFC1459)\n"
"server: server name"
msgstr ""
" dotaz: c/h/i/k/l/m/o/y/u (viz. RFC1459)\n"
"server: jméno serveru"
msgid ""
"give users who are on a host running an IRC server a message asking them to "
"please join IRC"
msgstr ""
"dát uživatelům, kteří jsou na stroji, kde běží IRC server, zprávu a zeptat "
"se na prosím připojte se na IRC"
msgid "user [target [channel]]"
msgstr "uživatel [cíl [kanál]]"
msgid ""
" user: username\n"
"target: server name\n"
"channel: channel name"
msgstr ""
"uživatel: uživatelské jméno\n"
" cíl: jméno server\n"
" kanál: jméno kanálu"
msgid "query local time from server"
msgstr "získat lokální čas ze serveru"
msgid "target: query time from specified server"
msgstr "cíl: získat čas z uvedeného serveru"
msgid "get/set channel topic"
msgstr "získat/nastavit téma kanálu"
msgid "[channel] [topic]"
msgstr "[kanál] [téma]"
msgid ""
"channel: channel name\n"
"topic: new topic for channel (if topic is \"-delete\" then topic is deleted)"
msgstr ""
"kanál: jméno kanálu\n"
"téma: nové téma pro kanál (pokud je téma \"-delete\" je téma vymazáno)"
msgid "find the route to specific server"
msgstr "najít cestu k určenému serveru"
#, fuzzy
msgid "unban nicks or hosts"
msgstr "zruší zakázání pro přezdívku nebo hosta"
msgid "[channel] nickname [nickname ...]"
msgstr "[kanál] přezdívka [přezdívka ...]"
msgid ""
" channel: channel for unban\n"
"nickname: user or host to unban"
msgstr ""
" kanál: kanál pro unban\n"
"přezdívka: uživatel nebo host pro unban"
msgid "return a list of information about nicknames"
msgstr "vrátí seznam informací o přezdívce"
msgid "list of users logged into the server"
msgstr "seznam uživatelů přihlášených k serveru"
#, fuzzy
msgid "give the version info of nick or server (current or specified)"
msgstr "dát informace o verzi přezdívky nebo serveru (aktuální nebo určené)"
msgid "[server | nickname]"
msgstr "[server | přezdívka]"
msgid ""
" server: server name\n"
"nickname: nickname"
msgstr ""
" server: jméno serveru\n"
"přezdívka: přezdívka"
#, fuzzy
msgid "give voice to nickname(s)"
msgstr "dá hlas přezdívce (přezdívkám)"
msgid ""
"send a message to all currently connected users who have set the 'w' user "
"mode for themselves"
msgstr ""
"poslat zprávu všem aktuálně připojeným uživatelům, kteří mají u sebe "
"nastaven uživatelský mód 'w'"
msgid "text to send"
msgstr "text pro poslání"
msgid "generate a query which returns a list of information"
msgstr "vygenerovat dotaz, který vrátí seznam informací"
msgid "[mask [\"o\"]]"
msgstr "[maska [\"o\"]]"
msgid ""
"mask: only information which match this mask\n"
" o: only operators are returned according to the mask supplied"
msgstr ""
"maska: pouze informace, které odpovídají zadané masce\n"
" o: jsou vráceni pouze operátoři, kteří odpovídají masce"
msgid "query information about user(s)"
msgstr "dotázat se na informace o uživateli (uživatelích)"
msgid "[server] nickname[,nickname]"
msgstr "[server] přezdívka[,přezdívka]"
msgid ""
" server: server name\n"
"nickname: nickname (may be a mask)"
msgstr ""
" server: jméno serveru\n"
"přezdívka: přezdívka (může být maska)"
msgid "ask for information about a nickname which no longer exists"
msgstr "dotázat se na informace o přezdívce, která již neexistuje"
msgid "nickname [,nickname [,nickname ...]] [count [target]]"
msgstr "přezdívka [,přezdívka [,přezdívka ...]] [počet [cíl]]"
msgid ""
"nickname: nickname to search\n"
" count: number of replies to return (full search if negative number)\n"
" target: reply should match this mask"
msgstr ""
"přezdívka: přezdívka, kterou hledat\n"
" počet: počet odpovědí, které vrátit (úplné vyhledávání je negativní "
"číslo)\n"
" cíl: odpověď musí odpovídat této masce"
#, fuzzy, c-format
msgid "%s%s: too few arguments for \"%s\" command"
msgstr "%s špatné parametry pro příkaz \"%s\"\n"
#, c-format
msgid ""
"%s%s: warning: server \"%s\" not found in configuration file, not deleted in "
"memory because it's currently used"
msgstr ""
"%s%s: varování: server \"%s\" nenalezen v konfiguračním souboru, nesmazáno z "
"paměti, protože se stále používá"
#, fuzzy
msgid "list of hostname/port or IP/port for server (separated by comma)"
msgstr "přezdívka použitá na IRC serveru"
msgid "proxy used for this server (optional)"
msgstr ""
msgid "use IPv6 protocol for server communication"
msgstr "použít protokol IPv6 pro komunikaci se serverem"
msgid "use SSL for server communication"
msgstr "použít SSL pro komunikaci se serverem"
#, fuzzy
msgid "password for server"
msgstr "heslo pro IRC server"
msgid "automatically connect to server when WeeChat is starting"
msgstr "automaticky připojit k serveru, když je WeeChat spouštěn"
msgid "automatically reconnect to server when disconnected"
msgstr "automaticky znovu připojit server, když je odpojen"
msgid "delay (in seconds) before trying again to reconnect to server"
msgstr "doba (v sekundách) před novým zkušením znovupřipojení na server"
#, fuzzy
msgid "nicknames to use on server (separated by comma)"
msgstr "přezdívka použitá na IRC serveru"
#, fuzzy
msgid "user name to use on server"
msgstr "uživatelské jméno použité na IRC serveru"
#, fuzzy
msgid "real name to use on server"
msgstr "skutečné jméno použité na IRC serveru"
#, fuzzy
msgid ""
"custom local hostname/IP for server (optional, if empty local hostname is "
"used)"
msgstr ""
"vlastní jméno hosta/IP pro server (nepovinné, pokud je volné použije se "
"lokální jméno hosta)"
msgid ""
"command(s) to run when connected to server (many commands should be "
"separated by ';', use '\\;' for a semicolon, special variables $nick, "
"$channel and $server are replaced by their value)"
msgstr ""
"příkaz(y), které provést po přípojení k serveru (více příkazů se odděluje "
"pomocí ';', použijte '\\;' pro středník, speciální proměnné $nick, $channel "
"a $server jsou přepsány svou hodnotou)"
msgid ""
"delay (in seconds) after command was executed (example: give some time for "
"authentication)"
msgstr ""
"počkání (v sekundách) po spuštění příkazu (například: dád nějaký čas pro "
"autorizaci)"
msgid ""
"comma separated list of channels to join when connected to server (example: "
"\"#chan1,#chan2,#chan3 key1,key2\")"
msgstr ""
"čárkou rozdělený seznam kanálů na které přistoupit po připojení na server "
"(příklad: \"#kanál1,#kanál2,#kanál3 klíč1,klíč2\")"
msgid "automatically rejoin channels when kicked"
msgstr "automaticky znovu přijít na kanál po vykopnutí"
#, fuzzy, c-format
msgid "%s%s: error creating server \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy, c-format
msgid "%s%s: error creating server option \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy
msgid "use nick color in messages from server"
msgstr "získat lokální čas ze serveru"
msgid "use same buffer for all servers"
msgstr "pužít stejný buffer pro všechny servery"
msgid "open new channels/privates near server"
msgstr "otevřít nový kanál/soukromý rozhovor poblíž serveru"
msgid "text to display before nick in chat window"
msgstr "text pro zobrazení před přezdívkou v okně rozhovoru"
msgid "text to display after nick in chat window"
msgstr "text pro zobrazení za přezdívkou v okně rozhovoru"
msgid "smart completion for nicks (completes with last speakers first)"
msgstr "chytré doplňování přezdívek (doplňovat posledně mluvící jako první)"
msgid "display message when (un)marking as away"
msgstr "zobrazit zprávu, když označen/odznačen jako nepřítomen"
msgid "display channel modes in \"buffer_name\" bar item"
msgstr ""
msgid "hide password displayed by nickserv"
msgstr "schovat heslo zobrazené nickservem"
msgid ""
"comma separated list of tags for messages that may produce highlight "
"(usually any message from another user, not server messages,..)"
msgstr ""
"čárkami oddělený seznam tagů pro zprávy, které mohou vyprodukovat zvýraznění "
"(obvykle jakákoliv zpráva od jiného uživatele, ne zprávy serveru,...)"
msgid "show remote away message only once in private"
msgstr "zobrazit vzdálený zprávu o nepřítomnosti pouze jednou v soukromém okně"
msgid ""
"filter join/part/quit messages for a nick if not speaking for some minutes "
"on channel (you must create a filter on tag \"irc_smart_filter\")"
msgstr ""
msgid "delay for filtering join/part/quit messages (in minutes)"
msgstr ""
msgid "display notices as private messages"
msgstr "zobrazit upozornění jako soukromé zprávy"
#, fuzzy
msgid "color for text in join messages"
msgstr "prefix pro zprávy připojení"
#, fuzzy
msgid "color for text in part/quit messages"
msgstr "prefix pro zprávy ukončení"
#, fuzzy
msgid "color for nick in input bar"
msgstr "barva přezdívek"
msgid ""
"default part message (leaving channel) ('%v' will be replaced by WeeChat "
"version in string)"
msgstr ""
"výchozí zpráva při odchodu z kanálu ('%v' bude nahrazeno verzí WeeChat v "
"řetězci)"
#, fuzzy
msgid ""
"default quit message (disconnecting from server) ('%v' will be replaced by "
"WeeChat version in string)"
msgstr ""
"výchozí zpráva při uknočnení ('%v' bude nahrazeno verzí WeeChat v řetězci)"
msgid "interval between two checks for away (in minutes, 0 = never check)"
msgstr ""
"interval mezi dvěmi knotrolami pro nepřítomnost (v minutách, 0 = nikdy "
"nekontrolovat)"
msgid ""
"do not check away nicks on channels with high number of nicks (0 = unlimited)"
msgstr ""
"nekontrolovat nepřítomnost přezdívek na kanále s vetším počtem přezdívek (0 "
"= nekonečno)"
#, fuzzy
msgid "interval between two checks for lag (in seconds, 0 = never check)"
msgstr ""
"interval mezi dvěmi knotrolami pro nepřítomnost (v minutách, 0 = nikdy "
"nekontrolovat)"
msgid "minimum lag to show (in seconds)"
msgstr "minimální lag, který zobrazit (v sekundách)"
msgid "disconnect after important lag (in minutes, 0 = never disconnect)"
msgstr "odpojit po závažném lagu (v minutách, 0 = nikny neodpojit)"
msgid "anti-flood: # seconds between two user messages (0 = no anti-flood)"
msgstr ""
"anti-flood: počet sekund mezi dvěmi uživatelovými zprávami (0 = vypnutí anti-"
"flood)"
msgid "when off, colors codes are ignored in incoming messages"
msgstr "pokud je off, jsou barvy v příchozích zprávách ignorovány"
msgid ""
"allow user to send colors with special codes (^Cb=bold, ^Ccxx=color, ^Ccxx,"
"yy=color+background, ^Cu=underline, ^Cr=reverse)"
msgstr ""
"povolit uživateli posílat barvy se speciálními kódy (^Cb=tlustě, "
"^Ccxx=barva, ^Ccxx,yy=barva+pozadí, ^Cu=podtržené, ^Cr=obrácené)"
#, fuzzy
msgid "send unknown commands to server"
msgstr "poslat neznámý příkaz na IRC server"
#, fuzzy
msgid "IRC debug messages"
msgstr "vypsat debug zprávy"
#, fuzzy, c-format
msgid "%sServer: %s%s %s[%s%s%s]%s%s"
msgstr "%sServer: %s%s %s[%s%s%s]\n"
msgid "connected"
msgstr "připojen"
msgid "not connected"
msgstr "nepřipojen"
msgid " (temporary)"
msgstr ""
msgid "on"
msgstr "na"
msgid "off"
msgstr "off"
#, fuzzy
msgid "channel"
msgid_plural "channels"
msgstr[0] "%d kanál"
msgstr[1] "%d kanálů"
#, fuzzy
msgid "1 if string is an IRC channel"
msgstr "seznam uživatelů na kanálu"
#, fuzzy
msgid "get nick from IRC host"
msgstr "zakázat přezdívky nebo hosty"
msgid "get buffer pointer for an IRC server/channel"
msgstr ""
#, fuzzy
msgid "list of IRC servers"
msgstr "heslo pro IRC server"
#, fuzzy
msgid "list of channels for an IRC server"
msgstr "seznam uživatelů přihlášených k serveru"
#, fuzzy
msgid "list of nicks for an IRC channel"
msgstr "seznam uživatelů na kanálu"
#, fuzzy
msgid "list of IRC ignore"
msgstr "heslo pro IRC server"
#, fuzzy, c-format
msgid "%s%s: you are not connected to server"
msgstr "%s nepřipojen k serveru\n"
#, fuzzy, c-format
msgid "%s: this buffer is not a channel!"
msgstr "Tohe není okno kanálu!\n"
#, fuzzy, c-format
msgid "%sYou have been invited to %s%s%s by %s%s"
msgstr "Byl jsi pozván na %s%s%s od %s%s\n"
#, fuzzy, c-format
msgid "%s%s: cannot create new channel \"%s\""
msgstr "%s nemohu vytvořit nový kanál \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s%s %s(%s%s%s)%s has joined %s%s"
msgstr "%s%s %s(%s%s%s)%s se připojil %s%s\n"
#, fuzzy, c-format
msgid "%s%s: channel \"%s\" not found for \"%s\" command"
msgstr "%s kanál \"%s\" nebyl nalezen příkazem \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s%s%s has kicked %s%s %s(%s%s%s)"
msgstr "%s%s%s byl vykopnut %s%s%s z %s%s"
#, fuzzy, c-format
msgid "%s%s%s%s has kicked %s%s"
msgstr "%s%s%s byl vykopnut %s%s%s z %s%s"
#, fuzzy, c-format
msgid "%s%sYou were killed by %s%s %s(%s%s%s)"
msgstr "%s%s%s byl zabit %s%s%s ze serveru"
#, fuzzy, c-format
msgid "%s%sYou were killed by %s%s"
msgstr "Nyní známý jako %s%s\n"
#, fuzzy, c-format
msgid "%sMode %s%s %s[%s%s%s]%s by %s%s"
msgstr "Mód %s%s %s[%s%s%s]%s od %s%s\n"
#, fuzzy, c-format
msgid "%sUser mode %s[%s%s%s]%s by %s%s"
msgstr "Uživatelský mód %s[%s%s%s]%s od %s%s\n"
#, fuzzy, c-format
msgid "%sYou are now known as %s%s"
msgstr "Nyní známý jako %s%s\n"
#, fuzzy, c-format
msgid "%s%s%s%s is now known as %s%s"
msgstr "%s%s%s nyní známý jako %s%s\n"
#, fuzzy, c-format
msgid "%sCTCP %sVERSION%s reply from %s%s%s: %s"
msgstr "CTCP %sVERSION%s odpověď od %s%s%s: %s\n"
#, fuzzy, c-format
msgid "%sCTCP %sPING%s reply from %s%s%s: %ld.%ld %s"
msgstr "CTCP %sPING%s odpověď od %s%s%s: %ld.%ld sekund\n"
#, fuzzy, c-format
msgid "%s%s%s %s(%s%s%s)%s has left %s%s %s(%s%s%s)"
msgstr "%s%s %s(%s%s%s)%s opustil %s%s"
#, fuzzy, c-format
msgid "%s%s%s %s(%s%s%s)%s has left %s%s"
msgstr "%s%s %s(%s%s%s)%s opustil %s%s"
#, fuzzy, c-format
msgid "%sCTCP %sVERSION%s received from %s%s%s: %s"
msgstr "CTCP %sVERSION%s obdržen od %s%s"
#, fuzzy, c-format
msgid "%sCTCP %sVERSION%s received from %s%s"
msgstr "CTCP %sVERSION%s obdržen od %s%s"
#, fuzzy, c-format
msgid "%sReceived a CTCP %sSOUND%s \"%s\" from %s%s"
msgstr "Obdržen CTCP %sZVUK%s \"%s\" od %s%s\n"
#, fuzzy, c-format
msgid "%sCTCP %sPING%s received from %s%s"
msgstr "CTCP %sPING%s obdržen od %s%s\n"
#, fuzzy, c-format
msgid "%sUnknown CTCP %s%s%s received from %s%s%s: %s"
msgstr "Neznámý CTCP %s%s%s obdržen od %s%s"
#, fuzzy, c-format
msgid "%sUnknown CTCP %s%s%s received from %s%s"
msgstr "Neznámý CTCP %s%s%s obdržen od %s%s"
#, fuzzy, c-format
msgid "%s%s: cannot parse \"%s\" command"
msgstr "%s nemohu rozpársovat příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: not enough memory for \"%s\" command"
msgstr "%s nedostatek paměti pro nové DCC\n"
#, fuzzy, c-format
msgid "%s%s: unknown DCC CHAT type received from %s%s%s: \"%s\""
msgstr "%s neznámý DCC CHAT typ obdržen od "
#, fuzzy, c-format
msgid "%s%s%s %s(%s%s%s)%s has quit %s(%s%s%s)"
msgstr "%s%s %s(%s%s%s)%s skončil"
#, fuzzy, c-format
msgid "%s%s%s %s(%s%s%s)%s has quit"
msgstr "%s%s %s(%s%s%s)%s skončil"
#, fuzzy, c-format
msgid "%s%s: \"%s\" command received without channel"
msgstr "%s \"%s\" příkaz obdržen bez kanálu\n"
#, fuzzy, c-format
msgid "%s%s%s%s has changed topic for %s%s%s to: \"%s%s\""
msgstr "%s%s%s změnil téma pro %s%s%s na:"
#, fuzzy, c-format
msgid "%s%s%s%s has unset topic for %s%s"
msgstr "%s%s%s zrušil téma pro %s%s\n"
#, fuzzy, c-format
msgid "%sWallops from %s%s %s(%s%s%s)%s: %s"
msgstr "%s%s %s(%s%s@%s%s)%s byl %s\n"
#, fuzzy, c-format
msgid "%sUser mode for %s%s%s is %s[%s%s%s]"
msgstr "Uživatelský mód pro %s%s%s je %s[%s%s%s]\n"
#, fuzzy, c-format
msgid "%s%s[%s%s%s]%s is away: %s"
msgstr "%s%s%s je pryč: %s\n"
#, fuzzy, c-format
msgid "%sUsers online: %s%s"
msgstr "Uživatelů online: "
#, fuzzy, c-format
msgid "%s%s%s %s(%s%s@%s%s)%s was %s"
msgstr "%s%s %s(%s%s@%s%s)%s byl %s\n"
#, fuzzy, c-format
msgid ""
"%s%s[%s%s%s]%s idle: %s%d %s%s, %s%02d %s%s %s%02d %s%s %s%02d %s%s, signon "
"at: %s%s"
msgstr "%s%02d %s%s %s%02d %s%s %s%02d %s%s, přihlášen v: %s%s"
#, fuzzy
msgid "hour"
msgid_plural "hours"
msgstr[0] "hodina"
msgstr[1] "hodina"
#, fuzzy
msgid "minute"
msgid_plural "minutes"
msgstr[0] "minuta"
msgstr[1] "minuta"
#, fuzzy, c-format
msgid ""
"%s%s[%s%s%s]%s idle: %s%02d %s%s %s%02d %s%s %s%02d %s%s, signon at: %s%s"
msgstr "%s%02d %s%s %s%02d %s%s %s%02d %s%s, přihlášen v: %s%s"
#, fuzzy, c-format
msgid "%sURL for %s%s%s: %s"
msgstr "Téma pro %s%s%s je: "
#, fuzzy, c-format
msgid "%sChannel created on %s"
msgstr "Kanál vytvořen v %s"
#, fuzzy, c-format
msgid "%sChannel %s%s%s created on %s"
msgstr "Kanál vytvořen v %s"
#, fuzzy, c-format
msgid "%sNo topic set for channel %s%s"
msgstr "Není nastaveno téma pro %s%s\n"
#, fuzzy, c-format
msgid "%sTopic for %s%s%s is: \"%s%s\""
msgstr "Téma pro %s%s%s je: "
#, fuzzy, c-format
msgid "%sTopic set by %s%s%s on %s"
msgstr "Téma nastevil %s%s%s, %s"
#, fuzzy, c-format
msgid "%sTopic for %s%s%s set by %s%s%s on %s"
msgstr "Téma nastevil %s%s%s, %s"
#, fuzzy, c-format
msgid "%s%s%s%s has invited %s%s%s on %s%s"
msgstr "%s%s%s pozval %s%s%s na %s%s\n"
#, fuzzy, c-format
msgid "%sChannel reop %s%s%s: %s%s"
msgstr "Reop kanálu %s%s%s: %s%s\n"
#, fuzzy, c-format
msgid "%s%s[%s%s%s]%s exception %s%s%s by %s%s %s(%s%s%s)%s on %s"
msgstr "%s[%s%s%s] %s%s%s takázaný\n"
#, fuzzy, c-format
msgid "%s%s[%s%s%s]%s exception %s%s"
msgstr "%s[%s%s%s] %s%s%s takázaný\n"
#, fuzzy, c-format
msgid "%s%s: cannot create nick \"%s\" for channel \"%s\""
msgstr "%s nemohu vztvořit přezdívku \"%s\" pro kanál \"%s\"\n"
#, fuzzy, c-format
msgid "%sNicks %s%s%s: %s[%s%s%s]"
msgstr "%sServer: %s%s %s[%s%s%s]\n"
#, fuzzy, c-format
msgid "%sNicks %s%s%s: %s[%s%s]"
msgstr "%sServer: %s%s %s[%s%s%s]\n"
#, fuzzy, c-format
msgid ""
"%sChannel %s%s%s: %s%d%s %s %s(%s%d%s %s, %s%d%s %s, %s%d%s %s, %s%d%s %s%s)"
msgstr ""
"Kanál %s%s%s: %s%d%s %s %s(%s%d%s %s, %s%d%s %s, %s%d%s %s, %s%d%s %s%s)\n"
msgid "nicks"
msgstr "přezdívky"
msgid "nick"
msgstr "přezdívka"
msgid "ops"
msgstr "ops"
msgid "op"
msgstr "op"
msgid "halfops"
msgstr "částeční-ops"
msgid "halfop"
msgstr "částečný-op"
msgid "voices"
msgstr "voices"
msgid "voice"
msgstr "voice"
msgid "normal"
msgstr "normální"
#, fuzzy, c-format
msgid "%s%s[%s%s%s] %s%s%s banned by %s%s %s(%s%s%s)%s on %s"
msgstr "%s[%s%s%s] %s%s%s zakázal "
#, fuzzy, c-format
msgid "%s%s[%s%s%s] %s%s%s banned by %s%s %s(%s%s%s)"
msgstr "%s[%s%s%s] %s%s%s zakázal "
#, fuzzy, c-format
msgid ""
"%s%s: all declared nicknames are already in use or invalid, closing "
"connection with server"
msgstr ""
"%s: všechny deklarované přezdívky jsou již používány nebo nevalidní, zavírám "
"spojení se serverem!\n"
#, fuzzy, c-format
msgid "%s%s: nickname \"%s\" is invalid, trying nickname #%d (\"%s\")"
msgstr ""
"%s: přezdívka \"%s\" je již používaná, zkouším druhou přezdívku \"%s\"\n"
#, fuzzy, c-format
msgid ""
"%s%s: all declared nicknames are already in use, closing connection with "
"server"
msgstr ""
"%s: všechny deklarované přezdívky jsou již používány, zavírám spojení se "
"serverem!\n"
#, fuzzy, c-format
msgid "%s%s: nickname \"%s\" is already in use, trying nickname #%d (\"%s\")"
msgstr ""
"%s: přezdívka \"%s\" je již používaná, zkouším druhou přezdívku \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: command \"%s\" not found:"
msgstr "%s plugin \"%s\" nenalezen\n"
#, c-format
msgid "%s%s: failed to parse command \"%s\" (please report to developers):"
msgstr "%s%s: selhalo parsování příkazu \"%s\" (prosím oznamte to vývojárům):"
#, c-format
msgid ""
"%s%s: too few arguments received from IRC server for command \"%s"
"\" (received: %d arguments, expected: at least %d)"
msgstr ""
"%s%s: přijato příliš málo argumentů od IRC serveru pro příkaz \"%s"
"\" (obdrženo: %d argumentů, očekáváno: alespoň %d)"
#, fuzzy, c-format
msgid "%s%s: \"%s\" command received without host"
msgstr "%s \"%s\" příkaz obdržen bez hosta\n"
#, fuzzy, c-format
msgid "%s%s: error when allocating new server"
msgstr "%s nemůžu přidělit nový server\n"
#, fuzzy, c-format
msgid "%s%s: error creating new server \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, c-format
msgid ""
"%s%s: error sending data to IRC server: null pointer (please report problem "
"to developers)"
msgstr ""
"%s%s: chyba při posílání dat na IRC server: nulový ukazatel (prosím oznamte "
"problém vývojářům)"
#, c-format
msgid ""
"%s%s: error sending data to IRC server: empty buffer (please report problem "
"to developers)"
msgstr ""
"%s%s: chyba při posílání dat na IRC server: prázdný buffer (prosím oznamte "
"problém vývojářům)"
#, fuzzy, c-format
msgid "%s%s: error sending data to IRC server (%s)"
msgstr "%s chyba při zasílání dat na IRC server\n"
msgid "(message dropped)"
msgstr "(zpráva zahozena)"
#, fuzzy, c-format
msgid "%s%s: not enough memory for received message"
msgstr "%s nedostatek paměti pro získání IRC zprávy\n"
#, fuzzy, c-format
msgid "%s%s: cannot read data from socket, disconnecting from server..."
msgstr "%s nemůžu přečíst data ze soketu, odpojuji se od serveru...\n"
#, fuzzy, c-format
msgid "%s%s: lag is high, disconnecting from server..."
msgstr "%s zpoždění je veliké, odpojuji se od serveru...\n"
#, fuzzy, c-format
msgid "%s%s: reconnecting to server in %d %s"
msgstr "%s: Navazuji nové spojení se serverem za %d sekund\n"
#, fuzzy, c-format
msgid "%s%s: switching address to %s/%d"
msgstr "%s IP adresa nenalezena\n"
#, fuzzy, c-format
msgid "%s%s: connected to %s (%s)"
msgstr "%s nepřipojen k serveru \"%s\"!\n"
#, fuzzy, c-format
msgid "%s%s: proxy address \"%s\" not found"
msgstr "%s adresa proxy \"%s\" nenalezena\n"
#, fuzzy, c-format
msgid "%s%s: address \"%s\" not found"
msgstr "%s adresa \"%s\" nenalezena\n"
#, fuzzy, c-format
msgid "%s%s: proxy IP address not found"
msgstr "%s IP adresa proxy nenalezena\n"
#, fuzzy, c-format
msgid "%s%s: IP address not found"
msgstr "%s IP adresa nenalezena\n"
#, fuzzy, c-format
msgid "%s%s: proxy connection refused"
msgstr "%s proxy odmítla spojení\n"
#, fuzzy, c-format
msgid "%s%s: connection refused"
msgstr "%s spojení odmítnuto\n"
#, fuzzy, c-format
msgid ""
"%s%s: proxy fails to establish connection to server (check username/password "
"if used and if server address/port is allowed by proxy)"
msgstr ""
"%s selhalo zjednání spojení s proxy serverem (zkontrolujte uživatelské jméno "
"a heslo pokud jsou vyžadovány)\n"
#, fuzzy, c-format
msgid "%s%s: unable to set local hostname/IP"
msgstr "%s nemohu nastavit lokální hostname/IP\n"
#, fuzzy, c-format
msgid "%s%s: GnuTLS init error"
msgstr "%s chyba inicializace gnutls\n"
#, fuzzy, c-format
msgid "%s%s: GnuTLS handshake failed"
msgstr "%s handshake s gnutls selhal\n"
#, fuzzy, c-format
msgid "%s%s: not enough memory"
msgstr "Nedostatek paměti pro nový řádek\n"
#, c-format
msgid "%s%s: addresses not defined for server \"%s\", cannot connect"
msgstr "%s%s: adresa pro server \"%s\" není definována, nemohu se připojit"
#, fuzzy, c-format
msgid "%s%s: proxy \"%s\" not found for server \"%s\", cannot connect"
msgstr "%s přezdívka \"%s\" nebyla nalezena pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: missing proxy settings, check options for proxy \"%s\""
msgstr "%sChyba: nemohu nastavit volbu \"%s\" pro pole \"%s\""
#, fuzzy, c-format
msgid "%s%s: nicks not defined for server \"%s\", cannot connect"
msgstr "%s přezdívka \"%s\" nebyla nalezena pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid ""
"%s%s: cannot connect with SSL because WeeChat was not built with GnuTLS "
"support"
msgstr ""
"%s nemohu se připojit pomocí SSL, protže WeeChat nebyl sestaven s podporou "
"GNUtls\n"
#, fuzzy, c-format
msgid "%s%s: connecting to server %s/%d%s%s via %s proxy %s/%d%s..."
msgstr "%s: připojuji se k serveru %s:%d%s%s přes %s proxy %s:%d%s...\n"
#, fuzzy, c-format
msgid "Connecting to server %s/%d%s%s via %s proxy %s/%d%s..."
msgstr "Připojuji se k serveru %s:%d%s%s přes %s proxy %s:%d%s...\n"
#, fuzzy, c-format
msgid "%s%s: connecting to server %s/%d%s%s..."
msgstr "%s: připojuji se k serveru %s:%d%s%s...\n"
#, fuzzy, c-format
msgid "%s%s: cannot create socket"
msgstr "%s nemohu vytvořit soket\n"
#, fuzzy, c-format
msgid "%s%s: cannot set socket option \"SO_REUSEADDR\""
msgstr "%s nemohu nastavit nastavení sketu \"SO_REUSEADDR\"\n"
#, fuzzy, c-format
msgid "%s%s: cannot set socket option \"SO_KEEPALIVE\""
msgstr "%s nemohu nastavit nastavení soketu \"SO_KEEPALIVE\"\n"
#, fuzzy, c-format
msgid "%s%s: reconnecting to server..."
msgstr "%s: Připojuji se znovu k serveru...\n"
#, fuzzy, c-format
msgid "%s%s: disconnected from server"
msgstr "Odpojen od serveru!\n"
#, fuzzy
msgid "list, add or remove Jabber servers"
msgstr "vypíše, přídá nebo odebere servery"
#, fuzzy
msgid ""
"[list [servername]] | [listfull [servername]] | [add servername username "
"hostname[/port] password [-auto | -noauto] [-ipv6] [-tls] [-sasl]] | [copy "
"servername newservername] | [rename servername newservername] | [keep "
"servername] | [del servername] | [switch]"
msgstr ""
"[list [jméno_serveru]] | [listfull [jméno_serveru]] | [add jméno_serveru "
"jméno_hosta [-port port] [-temp] [-auto | -noauto] [-ipv6] [-ssl] [-pwd "
"heslo] [-nick přezdívka1 přezdívka2 přezdívka3] [-username "
"uživatelské_jméno] [-realname pravé_jméno] [-command příkaz] [-autojoin kanál"
"[,kanál]] ] | [copy jméno_serveru nové_jméno_serveru] | [rename "
"jméno_serveru nové_jméno_serveru] | [keep jméno_serveru] | [del "
"jméno_serveru]"
#, fuzzy
msgid ""
" list: list servers (no parameter implies this list)\n"
" listfull: list servers with detailed info for each server\n"
" add: create a new server\n"
"servername: server name, for internal and display use\n"
" username: username to use on server\n"
" hostname: name or IP address of server, with optional port (default: "
"5222)\n"
" password: password for username on server\n"
" auto: automatically connect to server when WeeChat starts\n"
" noauto: do not connect to server when WeeChat starts (default)\n"
" ipv6: use IPv6 protocol\n"
" tls: use TLS cryptographic protocol\n"
" sasl: use SASL for authentication\n"
" copy: duplicate a server\n"
" rename: rename a server\n"
" keep: keep server in config file (for temporary servers only)\n"
" del: delete a server\n"
" switch: switch active server (when one buffer is used for all servers, "
"default key: alt-s on server buffer)\n"
"\n"
"Examples:\n"
" /jabber listfull\n"
" /jabber add jabberfr user jabber.fr/5222 password -tls\n"
" /jabber copy jabberfr jabberfr2\n"
" /jabber rename jabberfr jabbfr\n"
" /jabber del jabberfr\n"
" /jabber switch"
msgstr ""
" list: vypsat servery (pokud nejsou uvedeny žádné parametry bude "
"vypsán tento seznam)\n"
" listfull: vypsat servery s detailními informacemi o každém serveru\n"
" add: vytvoří nový server\n"
" jméno_serveru: jméno serveru pro vnitřní a zobrazovací použití\n"
" jméno_hosta: jméno nebo IP adresa serveru\n"
" port: port pro server (celé číslo, výchozí je 6667)\n"
" temp: vytvořit dočasný server (neukládá se do konfiguračního "
"souboru)\n"
" auto: automatickz pripojit k serveru při startu WeeChat\n"
" noauto: nepřipojovat k serveru automatickz při startu WeeChat "
"(výchozí)\n"
" ipv6: používat IPv6 protokol\n"
" ssl: používat SSL protokol\n"
" heslo: heslo pro server\n"
" přezdívka1: první přezdívka pro server\n"
" přezdívka2: alternativní přezdívka pro server\n"
" přezdívka3: druhá alternativní přezdívka pro server\n"
"uživatelské_jméno: uživatelské jméno\n"
" pravé_jméno: pravé jméno uživatele\n"
" copy: zkopírovat server\n"
" rename: přejmenovat server\n"
" keep: zachovat server v konfiguračním souboru (pouze pro "
"dočasné servery)\n"
" del: smazat server\n"
" deloutq: smazat zprávy v odchozích frontách všech serverů (všechny "
"zprávy, které WeeChat právě posílá)"
msgid "chat with a buddy"
msgstr ""
#, fuzzy
msgid "buddy [text]"
msgstr "text"
#, fuzzy
msgid ""
"buddy: buddy name for chat\n"
" text: text to send"
msgstr ""
"služba: jméno služby\n"
"text: text, který se má poslat"
#, fuzzy
msgid "connect to Jabber server(s)"
msgstr "připojit se k serveru/serverům"
#, fuzzy
msgid ""
"[-all [-nojoin] | servername [servername ...] [-nojoin] | hostname [-port "
"port] [-ipv6] [-tls] [-sasl]]"
msgstr ""
"[-all [-nojoin] | jméno_serveru [jméno_serveru ...] [-nojoin] | hostname [-"
"port port] [-ipv6] [-ssl]]"
#, fuzzy
msgid ""
" -all: connect to all servers\n"
"servername: internal server name to connect\n"
" -nojoin: do not join any MUC (even if autojoin is enabled on server)\n"
" hostname: hostname to connect\n"
" port: port for server (integer, default is 6667)\n"
" ipv6: use IPv6 protocol\n"
" tls: use TLS cryptographic protocol\n"
" saal: use SASL for authentication"
msgstr ""
" -all: připojit ke všem serverům\n"
"jméno_serveru: jméno serveru pro přípojení -nojoin: nepřipojovat se na "
"kanály (i pokud je na serveru zpanuto automatické připojování)\n"
" hostname: hostname pro připojení, vytvoří dočasný server\n"
" port: port pro server (celé číslo, výchozí je 6667)\n"
" ipv6: použít IPv6 protokol\n"
" ssl: použít SSL protokol"
#, fuzzy
msgid "disconnect from Jabber server(s)"
msgstr "odpojit ze serveru/serverů"
#, fuzzy
msgid "hostname/port or IP/port for server"
msgstr "přezdívka použitá na IRC serveru"
#, fuzzy
msgid "use TLS cryptographic protocol for server communication"
msgstr "použít protokol IPv6 pro komunikaci se serverem"
#, fuzzy
msgid "use SASL for authentication"
msgstr "použít SSL pro komunikaci se serverem"
msgid "resource (for example: Home or Work)"
msgstr ""
#, fuzzy
msgid "password"
msgstr "uživatel heslo"
#, fuzzy
msgid "local alias"
msgstr "Seznam pro aliasy:\n"
#, fuzzy
msgid ""
"command(s) to run when connected to server (many commands should be "
"separated by ';', use '\\;' for a semicolon, special variables $nick, $muc "
"and $server are replaced by their value)"
msgstr ""
"příkaz(y), které provést po přípojení k serveru (více příkazů se odděluje "
"pomocí ';', použijte '\\;' pro středník, speciální proměnné $nick, $channel "
"a $server jsou přepsány svou hodnotou)"
#, fuzzy
msgid ""
"comma separated list of MUCs to join when connected to server (example: "
"\"#chan1,#chan2,#chan3 key1,key2\")"
msgstr ""
"čárkou rozdělený seznam kanálů na které přistoupit po připojení na server "
"(příklad: \"#kanál1,#kanál2,#kanál3 klíč1,klíč2\")"
#, fuzzy
msgid "automatically rejoin MUCs when kicked"
msgstr "automaticky znovu přijít na kanál po vykopnutí"
#, fuzzy
msgid "open new MUCs/privates near server"
msgstr "otevřít nový kanál/soukromý rozhovor poblíž serveru"
msgid "display MUC modes in \"buffer_name\" bar item"
msgstr ""
msgid ""
"filter join/part/quit messages for a nick if not speaking for some minutes "
"on MUC (you must create a filter on tag \"jabber_smart_filter\")"
msgstr ""
#, fuzzy
msgid ""
"default part message (leaving MUC) ('%v' will be replaced by WeeChat version "
"in string)"
msgstr ""
"výchozí zpráva při odchodu z kanálu ('%v' bude nahrazeno verzí WeeChat v "
"řetězci)"
#, fuzzy
msgid "Jabber debug messages"
msgstr "vypsat debug zprávy"
msgid "MUC"
msgid_plural "MUCs"
msgstr[0] ""
msgstr[1] ""
#, fuzzy
msgid "get buffer pointer for a Jabber server/MUC"
msgstr "seznam uživatelů přihlášených k serveru"
#, fuzzy
msgid "list of Jabber servers"
msgstr "heslo pro IRC server"
#, fuzzy
msgid "list of MUCs for a Jabber server"
msgstr "seznam uživatelů přihlášených k serveru"
#, fuzzy
msgid "list of buddies for a Jabber server or MUC"
msgstr "seznam uživatelů přihlášených k serveru"
#, fuzzy, c-format
msgid "%s: this buffer is not a MUC!"
msgstr "Tohe není okno kanálu!\n"
#, fuzzy, c-format
msgid "%s%s: cannot allocate new MUC"
msgstr "%s nemohu přidělit nový kanál"
#, fuzzy, c-format
msgid "%s%s: connecting to server %s/%d%s%s%s via %s proxy %s/%d%s..."
msgstr "%s: připojuji se k serveru %s:%d%s%s přes %s proxy %s:%d%s...\n"
#, fuzzy, c-format
msgid "Connecting to server %s/%d%s%s%s via %s proxy %s/%d%s..."
msgstr "Připojuji se k serveru %s:%d%s%s přes %s proxy %s:%d%s...\n"
#, fuzzy, c-format
msgid "%s%s: connecting to server %s/%d%s%s%s..."
msgstr "%s: připojuji se k serveru %s:%d%s%s...\n"
#, fuzzy, c-format
msgid "%s%s: username or server not defined for server \"%s\", cannot connect"
msgstr "%s přezdívka \"%s\" nebyla nalezena pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: hostname/IP not defined for server \"%s\", cannot connect"
msgstr "%s přezdívka \"%s\" nebyla nalezena pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid ""
"%s%s: cannot connect with TLS because iksemel library was not built with "
"GnuTLS support"
msgstr ""
"%s nemohu se připojit pomocí SSL, protže WeeChat nebyl sestaven s podporou "
"GNUtls\n"
#, fuzzy, c-format
msgid "%s%s: failed to create stream parser"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: failed to create id"
msgstr "%s DCC: nemohu vytvořit rouru\n"
#, fuzzy, c-format
msgid "%s%s: TLS handshake failed"
msgstr "%s handshake s gnutls selhal\n"
#, fuzzy, c-format
msgid "%s%s: I/O error (%d)"
msgstr "%sServer: %s%s\n"
#, fuzzy, c-format
msgid "%s%s: SASL authentication failed (check SASL option and password)"
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: server disconnected"
msgstr "Server %s%s%s vytvořen\n"
#, fuzzy, c-format
msgid "%s%s: stream error"
msgstr "%sServer: %s%s\n"
#, fuzzy, c-format
msgid "%s%s: login ok"
msgstr "%s DCC: nemohu provést fork\n"
#, fuzzy, c-format
msgid "%s%s: authentication failed (check SASL option and password)"
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, c-format
msgid ""
"%s%s: unable to find filename mask for buffer \"%s\", logging is disabled "
"for this buffer"
msgstr ""
#, c-format
msgid ""
"%s%s: unable to start logging for buffer \"%s\": filename \"%s\" is already "
"user by another buffer (check your log settings)"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: unable to create directory for logs (\"%s\")"
msgstr "%s nemohu vytvořit server \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to write log file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s\t**** Beginning of log ****"
msgstr "**** Beginning of log "
#, fuzzy, c-format
msgid "%s\t**** End of log ****"
msgstr "**** End of log "
#, fuzzy
msgid "Logging on buffers:"
msgstr "Seznam pro aliasy:\n"
#, c-format
msgid "logging (level: %d)"
msgstr ""
#, c-format
msgid "not logging"
msgstr ""
#, fuzzy
msgid "log not started"
msgstr "Nebylo uloženo žádné rozložení"
#, fuzzy, c-format
msgid "%s: \"%s\" => level %d"
msgstr "Alias \"%s\" odebrán\n"
#, c-format
msgid "===\t========== End of backlog (%d lines) =========="
msgstr "===\t========== Konec zpětného logu (%d řádků) =========="
#, fuzzy
msgid "logger plugin configuration"
msgstr "Ukládám konfiguraci na disk\n"
msgid "[list | set level | disable]"
msgstr ""
msgid ""
" list: show logging status for opened buffers\n"
" set: set logging level on current buffer\n"
" level: level for messages to be logged (0 = logging disabled, 1 = a few "
"messages (most important) .. 9 = all messages)\n"
"disable: disable logging on current buffer (set level to 0)\n"
"\n"
"Options \"logger.level.*\" and \"logger.mask.*\" can be used to set level or "
"mask for a buffer, or buffers beginning with name.\n"
"\n"
"Examples:\n"
" set level to 5 for current buffer:\n"
" /logger set 5\n"
" disable logging for current buffer:\n"
" /logger disable\n"
"\n"
" set level to 3 for all IRC buffers:\n"
" /set logger.level.irc 3\n"
" disable logging for main WeeChat buffer:\n"
" /set logger.level.core.weechat 0\n"
" use a directory per IRC server and a file per channel inside:\n"
" /set logger.mask.irc \"$server/$channel.weechatlog\"\n"
"\n"
"Log levels used by IRC plugin:\n"
" 1: user message, notice, private\n"
" 2: nick change\n"
" 3: server message\n"
" 4: join/part/quit\n"
" 9: all other messages"
msgstr ""
msgid ""
"logging level for this buffer (0 = logging disabled, 1 = a few messages "
"(most important) .. 9 = all messages)"
msgstr ""
msgid "file mask for log file; local buffer variables are permitted"
msgstr ""
#, fuzzy
msgid ""
"maximum number of lines to display from log file when creating new buffer (0 "
"= no backlog)"
msgstr "maximální počet uživatelských příkazů v historii (0 = nekonečně)"
msgid ""
"automatically save content of buffers to files (unless a buffer disables log)"
msgstr ""
msgid "use only lower case for log filenames"
msgstr ""
#, fuzzy
msgid ""
"path for WeeChat log files ('%h' will be replaced by WeeChat home, ~/."
"weechat by default)"
msgstr ""
"cesta pro hledání pluginů ('%h' bude nahrazeno domácím adresářem WeeChat, ~/."
"weechat je výchozí)"
msgid ""
"default file name mask for log files (format is 'directory/to/file' or "
"'file', without first '/' because 'path' option is used to build complete "
"path to file); local buffer variables are permitted"
msgstr ""
msgid "write information line in log file when log starts or ends for a buffer"
msgstr ""
msgid "timestamp used in log files (see man strftime for date/time specifiers)"
msgstr ""
#, fuzzy
msgid "list of logger buffers"
msgstr "časová známka pro buffer"
#, c-format
msgid "notify: debug: set notify for buffer %s to %d (%s)"
msgstr "notify: debug: nastavit notifikaci pro buffer %s na %d (%s)"
#, fuzzy, c-format
msgid "%s%s: unable to set notify level \"%s\" => \"%s\""
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy, c-format
msgid "%s%s: unknown notify level \"%s\""
msgstr "%s neznámá klávesová funkce \"%s\"\n"
#, fuzzy
msgid "change notify level for current buffer"
msgstr "nenalezeno jméno kanálu pro buffer"
msgid "reset | none | highlight | message | all"
msgstr "reset | none | highlight | message | all"
msgid ""
" reset: reset notify level to default value\n"
" none: buffer will never be in hotlist\n"
"highlight: buffer will be in hotlist for highlights only\n"
" message: buffer will be in hotlist for highlights and user messages only\n"
" all: buffer will be in hotlist for any text printed"
msgstr ""
" reset: resetovat úroveň notifikace do výchozí hodnoty\n"
" none: buffer nikdy nebude v hotlistu\n"
"highlight: buffer bude v hotlistu pouze při zvýraznění\n"
" message: buffer bude v hotlistu pouze při zvýraznění a uživatelských "
"zprávách\n"
" all: buffer bude v hotlistu pro jakýkoliv vytištěný text"
#, fuzzy
msgid "WeeChat version"
msgstr "verze serveru"
#, fuzzy
msgid "WeeChat compilation date"
msgstr "datum vytvoření kanálu"
#, fuzzy
msgid "directory separator"
msgstr "barva pro dělič času"
msgid "WeeChat directory"
msgstr ""
msgid "WeeChat \"lib\" directory"
msgstr ""
msgid "WeeChat \"share\" directory"
msgstr ""
msgid "WeeChat \"locale\" directory"
msgstr ""
msgid "terminal charset"
msgstr ""
msgid "WeeChat internal charset"
msgstr ""
msgid "keyboard inactivity (seconds)"
msgstr ""
#, fuzzy
msgid "1 if filters are enabled"
msgstr "uživatel byl zablokován"
#, fuzzy
msgid "list of bars"
msgstr "Seznam polí:"
#, fuzzy
msgid "list of bar items"
msgstr "Seznam položek polí:"
#, fuzzy
msgid "list of bar windows"
msgstr "Seznam položek polí:"
#, fuzzy
msgid "list of buffers"
msgstr "Seznam pro aliasy:\n"
#, fuzzy
msgid "lines of a buffer"
msgstr "nevalidní délka pro buffer"
#, fuzzy
msgid "list of filters"
msgstr "Seznam pro aliasy:\n"
#, fuzzy
msgid "list of hooks"
msgstr "Seznam pro aliasy:\n"
#, fuzzy
msgid "list of buffers in hotlist"
msgstr "zobrazit historii příkazů bufferu"
#, fuzzy
msgid "nicks in nicklist for a buffer"
msgstr "nevalidní délka pro buffer"
#, fuzzy
msgid "list of options"
msgstr "nastaví konfigurační možnosti"
#, fuzzy
msgid "list of plugins"
msgstr "nastaví konfigurační možnosti"
msgid "list of windows"
msgstr ""
#, fuzzy, c-format
msgid "%sError: unable to load plugin \"%s\": %s"
msgstr "%s nemůžu načist plugin \"%s\": %s\n"
#, fuzzy, c-format
msgid "%sError: symbol \"%s\" not found in plugin \"%s\", failed to load"
msgstr ""
"%s symbol \"plugin_name\" nebyl v pluginu \"%s\" nalezen, načtení selhalo\n"
#, fuzzy, c-format
msgid ""
"%sError: unable to load plugin \"%s\": a plugin with same name already exists"
msgstr ""
"%s nemohu načíst plugin \"%s\": plugin se stejným jménem již existuje\n"
#, fuzzy, c-format
msgid ""
"%sError: plugin \"%s\" is compiled for WeeChat %s and you are running "
"version %s, failed to load"
msgstr ""
"%s funkce \"weechat_plugin_init\" nebyla v pluginu \"%s\" nalezena, načtení "
"selhalo\n"
#, fuzzy, c-format
msgid "%sError: function \"%s\" not found in plugin \"%s\", failed to load"
msgstr ""
"%s funkce \"weechat_plugin_init\" nebyla v pluginu \"%s\" nalezena, načtení "
"selhalo\n"
#, fuzzy, c-format
msgid "%sError: unable to initialize plugin \"%s\""
msgstr "%s nemohu načíst plugin \"%s\"\n"
#, fuzzy, c-format
msgid "%sError: unable to load plugin \"%s\" (not enough memory)"
msgstr "%s nemohu načíst plugin \"%s\" (nedostatek paměti)\n"
#, fuzzy, c-format
msgid "Plugin \"%s\" loaded"
msgstr "Plugin \"%s\" odebrán.\n"
#, fuzzy, c-format
msgid "Plugin \"%s\" unloaded"
msgstr "Plugin \"%s\" odebrán.\n"
#, fuzzy, c-format
msgid "%sError: plugin \"%s\" not found"
msgstr "%s plugin \"%s\" nenalezen\n"
msgid "Actions (letter+enter):"
msgstr "Akce (písmeno+enter):"
msgid " [D] Disconnect"
msgstr ""
msgid " [R] Remove"
msgstr " [R] Odebrat"
#, fuzzy
msgid " [P] Purge finished"
msgstr " [P] Pročistit staré DCC"
#, fuzzy
msgid " [Q] Close this buffer"
msgstr " [Q] Zavřít DCC pohled"
#, fuzzy, c-format
msgid "%s%s[%s%s%s%s] %s (started on: %s)"
msgstr "%s%s%s je pryč: %s\n"
#, fuzzy, c-format
msgid "%s%-26s received: %s, sent: %s"
msgstr "DCC: soubor %s%s%s"
msgid "List of clients for relay"
msgstr ""
#, fuzzy
msgid "connecting"
msgstr "Připojuji"
#, fuzzy
msgid "waiting auth"
msgstr "Čekám"
#, fuzzy
msgid "auth failed"
msgstr "Selhal"
#, fuzzy
msgid "disconnected"
msgstr "připojen"
#, fuzzy, c-format
msgid "%s%s: error sending data to client %s"
msgstr "%s chyba při zasílání dat na IRC server\n"
#, c-format
msgid "%s: new client @ %s"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: not enough memory for new client"
msgstr "%s nedostatek paměti pro nové DCC\n"
#, fuzzy, c-format
msgid "%s%s: authentication failed with client @ %s"
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s: disconnected from client @ %s"
msgstr "Odpojen od serveru!\n"
msgid "Clients for relay:"
msgstr ""
#, c-format
msgid "%3d. %s, started on: %s, last activity: %s, bytes: %lu recv, %lu sent"
msgstr ""
#, c-format
msgid "%3d. %s, started on: %s"
msgstr ""
msgid "No client for relay"
msgstr ""
#, fuzzy
msgid "relay control"
msgstr "ovládání xfer"
msgid ""
" list: list relay clients\n"
"listfull: list relay clients (verbose)\n"
"\n"
"Without argument, this command opens buffer with list of relay clients."
msgstr ""
#, fuzzy
msgid "auto open relay buffer when a new client is connecting"
msgstr ""
"automaticky otevřít xfer buffer, když je přidána nová položka do xfer seznamu"
#, fuzzy
msgid "text color"
msgstr "barva pro text rozhovoru"
#, fuzzy
msgid "background color"
msgstr "pozadí přezdívek"
#, fuzzy
msgid "text color of selected client line"
msgstr "barva pro jeméno serveru"
#, fuzzy
msgid "text color for \"connecting\" status"
msgstr "barva pro \"connecting\" status dcc"
#, fuzzy
msgid "text color for \"waiting authentication\" status"
msgstr "barva pro \"waiting\" status dcc"
#, fuzzy
msgid "text color for \"connected\" status"
msgstr "barva pro \"connecting\" status dcc"
#, fuzzy
msgid "text color for \"authentication failed\" status"
msgstr "barva pro \"failed\" status dcc"
#, fuzzy
msgid "text color for \"disconnected\" status"
msgstr "barva pro \"connecting\" status dcc"
msgid "enable relay"
msgstr ""
#, fuzzy
msgid ""
"port number (or range of ports) that relay plugin listens on (syntax: a "
"single port, ie. 5000 or a port range, ie. 5000-5015)"
msgstr ""
"omezit odchozí dcc pro používaní portů pouze v zadaném rozsahu (užitečné pro "
"NAT) (syntaxe: samostatný port, např. 5000 nebo rozsah portů např. 5000-"
"5015, prázdná hodnota znamená jakýkoliv port)"
#, fuzzy
msgid "list of relay clients"
msgstr "Seznam pro aliasy:\n"
#, fuzzy, c-format
msgid "%s: socket closed"
msgstr "FIFO roura zavřena\n"
#, fuzzy, c-format
msgid "%s%s: cannot accept client"
msgstr "%s nemohu vytvořit soket\n"
#, c-format
msgid "%s%s: option \"listen_port_range\" is not defined"
msgstr ""
#, fuzzy, c-format
msgid "%s%s: cannot find available port for listening"
msgstr "%s nemůžu najít dostupný port pro DCC\n"
#, c-format
msgid "%s: listening on port %d"
msgstr ""
#, c-format
msgid ""
"%s%s: unable to register script \"%s\" (another script already exists with "
"this name)"
msgstr ""
"%s%s: nemohu registrovat skript \"%s\" (jiný skript se stejným jménem již "
"existuje)"
#, c-format
msgid "%s: registered script \"%s\", version %s (%s)"
msgstr "%s: zaregistrován skript \"%s\", verze %s (%s)"
#, fuzzy, c-format
msgid "%s%s: unable to run function \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: error: %s"
msgstr "%sServer: %s%s\n"
#, fuzzy, c-format
msgid "%s%s: script \"%s\" not found"
msgstr "%s server \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid "%s: loading script \"%s\""
msgstr "sezeni: načítám server \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to create new sub-interpreter"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: unable to redirect stdout and stderr"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: unable to load file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to execute file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: function \"register\" not found (or failed) in file \"%s\""
msgstr ""
"%s funkce \"weechat_plugin_init\" nebyla v pluginu \"%s\" nalezena, načtení "
"selhalo\n"
#, fuzzy, c-format
msgid "%s: unloading script \"%s\""
msgstr "sezeni: načítám server \"%s\"\n"
#, fuzzy, c-format
msgid "%s: script \"%s\" unloaded"
msgstr "Plugin \"%s\" odebrán.\n"
#, fuzzy, c-format
msgid "%s%s: script \"%s\" not loaded"
msgstr "%s server \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid "%s%s: unknown option for command \"%s\""
msgstr "%s neznámá volba pro příkaz \"%s\"\n"
#, c-format
msgid "%s%s: function \"%s\" must return one valid value (%d)"
msgstr "%s%s: funkce \"%s\" musí vracet jednu validní hodnotu (%d)"
#, fuzzy, c-format
msgid "%s%s: function \"%s\" is internally misused"
msgstr "%s plugin \"%s\" nenalezen\n"
#, fuzzy, c-format
msgid "%s%s: not enough memory in function \"%s\""
msgstr "%s nedostatek paměti pro nové DCC\n"
#, fuzzy, c-format
msgid "%s%s: not enough memory to parse file \"%s\""
msgstr "%s nedostatek paměti pro nové DCC\n"
#, fuzzy, c-format
msgid "%s%s: unable to parse file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to run file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unknown error while loading file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to initialize %s"
msgstr "%s nemohu načíst plugin \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s unable to run function \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: function \"%s\" must return a valid value"
msgstr "%s plugin \"%s\" nenalezen\n"
#, c-format
msgid "%s: stdout/stderr: %s%s"
msgstr "%s: stdout/stderr: %s%s"
#, fuzzy, c-format
msgid "%s%s: unable to initialize WeeChat module"
msgstr "%s nemohu načíst plugin \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to redirect stdout"
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to redirect stderr"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: unable to launch global interpreter"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: unable to get current interpreter state"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: unable to free interpreter"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: error: \"%s\""
msgstr "%sServer: %s%s\n"
#, fuzzy, c-format
msgid "%s%s: stdout/stderr: %s%s"
msgstr "%sServer: %s%s\n"
#, fuzzy, c-format
msgid "%s%s: unable to read file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: error while loading file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: function \"weechat_init\" is missing in file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to eval function \"weechat_init\" in file \"%s\""
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to eval WeeChat ruby internal code"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy
msgid "list/load/unload scripts"
msgstr "seznam/načíst/odebrat pluginy"
#, fuzzy
msgid ""
"[list [name]] | [listfull [name]] [load filename] | [autoload] | [reload] | "
"[unload [name]]"
msgstr ""
"[list [jméno]] | [listfull [jméno]] | [load jméno_souboru] | [autoload] | "
"[reload [jméno]] | [unload [jméno]]"
msgid ""
"filename: script (file) to load\n"
"name: a script name\n"
"\n"
"Without argument, this command lists all loaded scripts."
msgstr ""
"jméno_souboru: skript (soubor) pro načtení\n"
"jméno: jméno skriptu\n"
"\n"
"Pokud nejsou uvedeny argumenty, jsou vypsány všechny načtené skripty."
#, c-format
msgid "%s: error loading script \"%s\" (bad name, spaces are forbidden)"
msgstr "%s: chyba načítání skriptu \"%s\" (špatné jméno, mezery jsou zakázány)"
#, c-format
msgid ""
"%s%s: warning, license \"%s\" for script \"%s\" differs from plugin license "
"(\"%s\")"
msgstr ""
"%s%s: varování, licence \"%s\" pro skript \"%s\" je rozdílná od licence "
"pluginu (\"%s\")"
#, fuzzy, c-format
msgid "%s: error loading script \"%s\" (not enough memory)"
msgstr "%s nemohu načíst plugin \"%s\" (nedostatek paměti)\n"
#. TRANSLATORS: %s is language (for example "perl")
#, fuzzy, c-format
msgid "%s scripts loaded:"
msgstr "FIFO roura zavřena\n"
#, fuzzy, c-format
msgid " file: %s"
msgstr " IRC(%s)\n"
#, c-format
msgid " written by \"%s\", license: %s"
msgstr " napsal \"%s\", licence: %s"
#, fuzzy
msgid " (none)"
msgstr "(neznámý)"
#, c-format
msgid "%s%s: unable to call function \"%s\", script is not initialized"
msgstr "%s%s: nemohu zavolat funkci \"%s\", skript není inicializován"
#, fuzzy, c-format
msgid "%s%s: wrong arguments for function \"%s\""
msgstr "%s špatné parametry pro příkaz \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s unable to run function \"%s\": %s"
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unable to create new interpreter"
msgstr "%s nemohu vytvořit server\n"
#, fuzzy, c-format
msgid "%s%s: error occured while parsing file \"%s\": %s"
msgstr "Nemůžu zapsat log soubor \"%s\"\n"
msgid " [A] Accept"
msgstr " [A] Akceptovat"
msgid " [C] Cancel"
msgstr " [C] Storno"
msgid "xfer chat"
msgstr "xfer chat"
msgid "ETA"
msgstr "ETA"
#, fuzzy
msgid "Xfer list"
msgstr "vyčisti hotlist"
#, fuzzy
msgid "waiting"
msgstr "Čekám"
#, fuzzy
msgid "active"
msgstr "Aktivní"
#, fuzzy
msgid "done"
msgstr "Provedeno"
#, fuzzy
msgid "failed"
msgstr "Selhal"
#, fuzzy
msgid "aborted"
msgstr "Zrušeno"
#, fuzzy, c-format
msgid "%s%s: file %s %s %s: %s"
msgstr "DCC: soubor %s%s%s"
#, fuzzy
msgid "sent to"
msgstr " poslán "
#, fuzzy
msgid "received from"
msgstr " obdržen od "
msgid "OK"
msgstr "OK"
msgid "FAILED"
msgstr "SELHALO"
#, fuzzy, c-format
msgid "%s: chat closed with %s (%d.%d.%d.%d)"
msgstr "DCC rozhovor zavřen s %s%s %s(%s%d.%d.%d.%d%s)\n"
#, fuzzy, c-format
msgid "%s%s: not enough memory for new xfer"
msgstr "%s nedostatek paměti pro nové DCC\n"
#, fuzzy, c-format
msgid "%s: incoming file from %s (%d.%d.%d.%d): %s, %lu bytes (protocol: %s)"
msgstr ""
"Příchozí DCC soubor od %s%s%s (%s%d.%d.%d.%d%s)%s: %s%s%s, %s%lu%s bytů\n"
#, fuzzy, c-format
msgid ""
"%s: sending file to %s: %s (local filename: %s), %lu bytes (protocol: %s)"
msgstr ""
"Posílám DCC soubor k %s%s%s: %s%s%s (lokální jméno souboru: %s%s%s), %s%lu%s "
"bytů\n"
#, fuzzy, c-format
msgid "%s: incoming chat request from %s (%d.%d.%d.%d)"
msgstr "Příchozí požadavek DCC rozhovoru od %s%s%s (%s%d.%d.%d.%d%s)\n"
#, fuzzy, c-format
msgid "%s: sending chat request to %s"
msgstr "Posílám požadavek DCC rozhovoru na %s%s\n"
#, fuzzy, c-format
msgid "%s: file %s (local filename: %s) will be resumed at position %lu"
msgstr ""
"DCC: soubor %s%s%s (lokální jméno souboru: %s%s%s) bude obnoven na pozici %"
"u\n"
#, fuzzy, c-format
msgid "%s%s: missing arguments (%s)"
msgstr "%s chybí argument pro volbu \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unknown xfer type \"%s\""
msgstr "%s neznámá klávesová funkce \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: unknown xfer protocol \"%s\""
msgstr "%s neznámá klávesová funkce \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: cannot access file \"%s\""
msgstr "%s nemohu přistupovat k souboru \"%s\"\n"
#, fuzzy, c-format
msgid "%s%s: could not find address for \"%s\", falling back to local IP"
msgstr "%s nemůžu najíž adresu pro '%s'. Navracím se k lokální IP.\n"
#, fuzzy, c-format
msgid "%s%s: cannot create socket for xfer"
msgstr "%s nemohu vytvořit soket\n"
#, fuzzy, c-format
msgid "%s%s: cannot find available port for xfer"
msgstr "%s nemůžu najít dostupný port pro DCC\n"
#, fuzzy, c-format
msgid "%s%s: error creating xfer"
msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy, c-format
msgid ""
"%s%s: unable to resume file \"%s\" (port: %d, start position: %lu): xfer not "
"found or not ready for transfert"
msgstr ""
"%s nemohu obnovit soubor \"%s\" (port: %d, počáteční pozice: %u): DCC "
"nenalezeno nebo ukončeno\n"
#, fuzzy, c-format
msgid "%s: file %s resumed at position %lu"
msgstr "DCC: soubor %s%s%s bude obnoven na pozici %u\n"
#, fuzzy, c-format
msgid ""
"%s%s: unable to accept resume file \"%s\" (port: %d, start position: %lu): "
"xfer not found or not ready for transfert"
msgstr ""
"%s nemohu obnovit soubor \"%s\" (port: %d, počáteční pozice: %u): DCC "
"nenalezeno nebo ukončeno\n"
#, fuzzy, c-format
msgid "%s%s: aborting active xfer: \"%s\" from %s"
msgstr "Ruším aktivní DCC: \"%s\" od %s\n"
#, fuzzy, c-format
msgid "%s%s: error sending data to \"%s\" via xfer chat"
msgstr "%s chyba posílání dat k \"%s\" přes DCC CHAT\n"
#, fuzzy, c-format
msgid "Connected to %s (%d.%d.%d.%d) via xfer chat"
msgstr "Připojeno na %s%s %s(%s%d.%d.%d.%d.%s)%s přes DCC rozhovor\n"
#, fuzzy
msgid "Xfer list:"
msgstr "vyčisti hotlist"
#, c-format
msgid ""
"%3d. %s (%s), file: \"%s\" (local: \"%s\"), %s %s, status: %s%s%s (%lu %%)"
msgstr ""
"%3d. %s (%s), soubor: \"%s\" (lokální: \"%s\"), %s %s, status: %s%s%s (%lu %"
"%)"
#, c-format
msgid "%3d. %s, chat with %s (local nick: %s), started on %s, status: %s%s"
msgstr ""
"%3d. %s, komunikace s %s (lokální přezdívka: %s), začalo %s, status: %s%s"
#, c-format
msgid ""
" plugin: %s (id: %s), file: %lu bytes (position: %lu), address: %d.%d.%d."
"%d (port %d)"
msgstr ""
" plugin: %s (id: %s), soubor: %lu bytů (pozice: %lu), adresa: %d.%d.%d.%"
"d (port %d)"
#, c-format
msgid " fast_send: %s, blocksize: %d, started on %s"
msgstr " fast_send: %s, blocksize: %d, začalo %s"
msgid "yes"
msgstr "ano"
msgid "no"
msgstr "ne"
msgid "No xfer"
msgstr "Žádný xfer"
msgid "xfer control"
msgstr "ovládání xfer"
msgid ""
" list: list xfer\n"
"listfull: list xfer (verbose)\n"
"\n"
"Without argument, this command opens buffer with xfer list."
msgstr ""
msgid "auto open xfer buffer when a new xfer is added to list"
msgstr ""
"automaticky otevřít xfer buffer, když je přidána nová položka do xfer seznamu"
msgid "size of progress bar, in chars (if 0, progress bar is disabled)"
msgstr "velikost ukazatele průběhu ve znacích (0 pro vypnutí ukazatele)"
#, fuzzy
msgid "text color of selected xfer line"
msgstr "barva pro jeméno serveru"
#, fuzzy
msgid "text color for \"waiting\" status"
msgstr "barva pro \"waiting\" status dcc"
#, fuzzy
msgid "text color for \"active\" status"
msgstr "barva pro \"active\" status dcc"
#, fuzzy
msgid "text color for \"done\" status"
msgstr "barva pro \"done\" status dcc"
#, fuzzy
msgid "text color for \"failed\" status"
msgstr "barva pro \"failed\" status dcc"
#, fuzzy
msgid "text color for \"aborted\" status"
msgstr "barva pro \"aborted\" status dcc"
#, fuzzy
msgid "timeout for xfer request (in seconds)"
msgstr "časový limit pro dcc požadavek (v sekundách)"
#, fuzzy
msgid "block size for sending packets, in bytes"
msgstr "velikost bloku pro dcc pakety"
msgid "does not wait for ACK when sending file"
msgstr "nečekat na ACK při odesílání souboru"
#, fuzzy
msgid ""
"restricts outgoing files/chats to use only ports in the given range (useful "
"for NAT) (syntax: a single port, ie. 5000 or a port range, ie. 5000-5015, "
"empty value means any port)"
msgstr ""
"omezit odchozí dcc pro používaní portů pouze v zadaném rozsahu (užitečné pro "
"NAT) (syntaxe: samostatný port, např. 5000 nebo rozsah portů např. 5000-"
"5015, prázdná hodnota znamená jakýkoliv port)"
#, fuzzy
msgid ""
"IP or DNS address used for sending files/chats (if empty, local interface IP "
"is used)"
msgstr ""
"IP nebo DNS adresa použitá pro odchozí dcc (pokud je prázdné použije se "
"lokální IP)"
msgid ""
"speed limit for sending files, in kilo-bytes by second (0 means no limit)"
msgstr ""
"rychlostní limit pro posílání souboru, v kilobytech za sekundu (0 znamená "
"žádný limit)"
#, fuzzy
msgid "path for writing incoming files"
msgstr "cesta pro příchozí dcc soubory"
#, fuzzy
msgid "path for reading files when sending (when no path is specified by user)"
msgstr ""
"cesta pro čtení souborů při odesílání přes dcc (když není specifikována "
"cesta)"
msgid "use remote nick as prefix in local filename when receiving a file"
msgstr ""
"použít vzdálenou přezdívku jako prefix lokálního souboru při přijímání "
"souboru"
msgid "convert spaces to underscores when sending files"
msgstr "konvertovat mezery na podtržítka při odesílání souborů"
msgid "rename incoming files if already exists (add '.1', '.2', ...)"
msgstr ""
"přejmenovat příchozí soubory, jestliže již existují (přídat '.1', '.2', ...)"
#, fuzzy
msgid ""
"automatically resume file transfer if connection with remote host is lost"
msgstr "automaticky obnovit dcc přenos pokud bylo ztraceno spojení s hostem"
#, fuzzy
msgid "automatically accept incoming files (use carefully!)"
msgstr "automaticky akceptovat dcc rozhovor (používejte opatrně!)"
#, fuzzy
msgid "automatically accept chat requests (use carefully!)"
msgstr "automaticky akceptovat dcc rozhovor (používejte opatrně!)"
#, fuzzy
msgid "list of xfer"
msgstr "Seznam pro aliasy:\n"
#, fuzzy, c-format
msgid "%s%s: unable to create pipe"
msgstr "%s DCC: nemohu vytvořit rouru\n"
#, fuzzy, c-format
msgid "%s%s: unable to read local file"
msgstr "%s DCC: nemohu číst lokální soubor\n"
#, fuzzy, c-format
msgid "%s%s: unable to send block to receiver"
msgstr "%s DCC: nemohu odeslat blok příjemci\n"
#, fuzzy, c-format
msgid "%s%s: unable to read ACK from receiver"
msgstr "%s DCC: nemohu číst ACK od příjemce\n"
#, fuzzy, c-format
msgid "%s%s: unable to connect to sender"
msgstr "%s DCC: nemohu se připojit k odesílateli\n"
#, fuzzy, c-format
msgid "%s%s: unable to receive block from sender"
msgstr "%s DCC: nemohu přijmout blok od odesílatele\n"
#, fuzzy, c-format
msgid "%s%s: unable to write local file"
msgstr "%s DCC: nemohu zapisovat do lokálního souboru\n"
#, fuzzy, c-format
msgid "%s%s: unable to fork"
msgstr "%s DCC: nemohu provést fork\n"
#, fuzzy, c-format
msgid "%s%s: unable to create socket for sending file"
msgstr "%s DCC: nemohu vytvořit socket pro odesílání souboru\n"
#, fuzzy, c-format
msgid "%s%s: unable to set option \"nonblock\" for socket"
msgstr "%s DCC: nemohu nastavit 'neblokovaci' volbu na soket\n"
#, fuzzy, c-format
msgid "%s%s: timeout for \"%s\" with %s"
msgstr "%s chybí argument pro volbu \"%s\"\n"
#, fuzzy
#~ msgid ""
#~ "%s%s: cannot connect with TLS because WeeChat was not built with GnuTLS "
#~ "support"
#~ msgstr ""
#~ "%s nemohu se připojit pomocí SSL, protže WeeChat nebyl sestaven s "
#~ "podporou GNUtls\n"
#, fuzzy
#~ msgid ""
#~ "%s%s: cannot connect with SSL since WeeChat was not built with GnuTLS "
#~ "support"
#~ msgstr ""
#~ "%s nemohu se připojit pomocí SSL, protže WeeChat nebyl sestaven s "
#~ "podporou GNUtls\n"
#, fuzzy
#~ msgid "%s%s: authentication failed"
#~ msgstr "Nemůžu zapsat log soubor \"%s\"\n"
#, fuzzy
#~ msgid "list of Jabber ignore"
#~ msgstr "heslo pro IRC server"
#, fuzzy
#~ msgid "1 if string is a Jabber channel"
#~ msgstr "seznam uživatelů na kanálu"
#, fuzzy
#~ msgid "get nick from Jabber host"
#~ msgstr "zakázat přezdívky nebo hosty"
#, fuzzy
#~ msgid "list of nicks for a Jabber channel"
#~ msgstr "seznam uživatelů na kanálu"
#, fuzzy
#~ msgid ""
#~ "%s%s: error sending data to server: null pointer (please report problem "
#~ "to developers)"
#~ msgstr ""
#~ "%s%s: chyba při posílání dat na IRC server: nulový ukazatel (prosím "
#~ "oznamte problém vývojářům)"
#, fuzzy
#~ msgid ""
#~ "%s%s: error sending data to server: empty buffer (please report problem "
#~ "to developers)"
#~ msgstr ""
#~ "%s%s: chyba při posílání dat na IRC server: prázdný buffer (prosím "
#~ "oznamte problém vývojářům)"
#, fuzzy
#~ msgid "%s%s: error sending data to server (%s)"
#~ msgstr "%s chyba při zasílání dat na IRC server\n"
#, fuzzy
#~ msgid ""
#~ "[list [servername]] | [listfull [servername]] | [add username server[/"
#~ "port] [-auto | -noauto] [-ipv6] [-ssl]] | [copy servername newservername] "
#~ "| [rename servername newservername] | [keep servername] | [del "
#~ "servername] | [deloutq] | [switch]"
#~ msgstr ""
#~ "[list [jméno_serveru]] | [listfull [jméno_serveru]] | [add jméno_serveru "
#~ "jméno_hosta [-port port] [-temp] [-auto | -noauto] [-ipv6] [-ssl] [-pwd "
#~ "heslo] [-nick přezdívka1 přezdívka2 přezdívka3] [-username "
#~ "uživatelské_jméno] [-realname pravé_jméno] [-command příkaz] [-autojoin "
#~ "kanál[,kanál]] ] | [copy jméno_serveru nové_jméno_serveru] | [rename "
#~ "jméno_serveru nové_jméno_serveru] | [keep jméno_serveru] | [del "
#~ "jméno_serveru]"
#, fuzzy
#~ msgid "nicknames to use on Jabber server (separated by comma)"
#~ msgstr "přezdívka použitá na IRC serveru"
#, fuzzy
#~ msgid "user name to use on Jabber server"
#~ msgstr "uživatelské jméno použité na IRC serveru"
#, fuzzy
#~ msgid "real name to use on Jabber server"
#~ msgstr "skutečné jméno použité na IRC serveru"
#, fuzzy
#~ msgid "send unknown commands to Jabber server"
#~ msgstr "poslat neznámý příkaz na IRC server"
#, fuzzy
#~ msgid "password for Jabber server"
#~ msgstr "heslo pro proxy server"
#~ msgid " . type: boolean\n"
#~ msgstr " . typ: boolean\n"
#, fuzzy
#~ msgid " . values: \"on\" or \"off\"\n"
#~ msgstr " . hodnoty: 'on' or 'off'\n"
#, fuzzy
#~ msgid " . default value: \"%s\"\n"
#~ msgstr " . výchozí hodnota: '%s'\n"
#~ msgid " . type: string\n"
#~ msgstr " . typ: řetězec\n"
#~ msgid " . values: "
#~ msgstr " . hodnoty: "
#~ msgid " . type: integer\n"
#~ msgstr " . typ: celočíselný\n"
#~ msgid " . values: between %d and %d\n"
#~ msgstr " . hodnoty: mezi %d a %d\n"
#~ msgid " . default value: %d\n"
#~ msgstr " . výchozí hodnota: %d\n"
#~ msgid " . values: any string\n"
#~ msgstr " . hodnoty: typ řetězec (jakýkoliv řetězec)\n"
#~ msgid " . type: char\n"
#~ msgstr " . typ: znak\n"
#~ msgid " . values: any char\n"
#~ msgstr " . hodnoty: jakýkolív znak\n"
#~ msgid " . values: any string (limit: %d chars)\n"
#~ msgstr " . hodnoty: jakýkoliv řetězec (limit: %d znaků)\n"
#~ msgid " . type: color\n"
#~ msgstr " . typ: barva\n"
#, fuzzy
#~ msgid " . values: color (depends on GUI used)\n"
#~ msgstr " . hodnoty: mezi %d a %d\n"
#~ msgid " . description: %s\n"
#~ msgstr " . popis: %s\n"
#, fuzzy
#~ msgid "%sWarning: %s, line %d: invalid syntax, missing \"=\""
#~ msgstr "%s %s, řádek %d: nevalidní syntax, chybí \"=\"\n"
#, fuzzy
#~ msgid "value not defined"
#~ msgstr "Žádné pole nejsou definovány"
#, fuzzy
#~ msgid "hidden"
#~ msgstr "(skrytý)"
#, fuzzy
#~ msgid ""
#~ "%s%s: error creating option \"%s\" for server \"%s\" (server not found)"
#~ msgstr "%s volba nastavení \"%s\" nenalezena\n"
#~ msgid ""
#~ "option: name of an option\n"
#~ " value: value for option"
#~ msgstr ""
#~ "možnost: jméno volby\n"
#~ "hodnota: hodnota volby"
#~ msgid "display nicklist (on buffers with nicklist enabled)"
#~ msgstr ""
#~ "zobrazit okno se seznamem přezdívek (pro buffery s povoleným seznamem "
#~ "přezdívek)"
#, fuzzy
#~ msgid ""
#~ "max size for nicklist (width or height, depending on nicklist_position (0 "
#~ "= no max size; if min = max and > 0, then size is fixed))"
#~ msgstr ""
#~ "maximální velikost pro seznam přezdívek (šířka nebo výška, závisí na "
#~ "look_nicklist_position (0 = není maximální velikost; jestliže min = max a "
#~ "> 0 pak je velikost fixní ))"
#, fuzzy
#~ msgid ""
#~ "min size for nicklist (width or height, depending on nicklist_position (0 "
#~ "= no min size))"
#~ msgstr ""
#~ "minimální velikost pro seznam přezdívek (šířka nebo výšhak, závisí na "
#~ "look_nicklist_position (0 = není minimální velikost))"
#~ msgid "nicklist position (top, left, right (default), bottom)"
#~ msgstr "pozice seznamu přezdívek (top, left, right (výchozí), bottom)"
#~ msgid "separator between chat and nicklist"
#~ msgstr "oddělovač mezi rozhovorem a seznamem přezdívek"
#, fuzzy
#~ msgid "%sBinary file not found: \"%s\""
#~ msgstr "%s plugin \"%s\" nenalezen\n"
#~ msgid "Upgrading WeeChat..."
#~ msgstr "Upgraduji WeeChat..."
#, fuzzy
#~ msgid "timeout for relay request (in seconds)"
#~ msgstr "časový limit pro dcc požadavek (v sekundách)"
#, fuzzy
#~ msgid "Open buffer with relay clients list"
#~ msgstr "Otevřené buffery s xfer seznamem"
#~ msgid "Open buffer with xfer list"
#~ msgstr "Otevřené buffery s xfer seznamem"
#, fuzzy
#~ msgid "%s%s: disconnecting client @ %s"
#~ msgstr "%s: Navazuji nové spojení se serverem za %d sekund\n"
#, fuzzy
#~ msgid "%s%s: cannot bind socket"
#~ msgstr "%s nemohu vytvořit soket\n"
#, fuzzy
#~ msgid " [Q] Close client list"
#~ msgstr " [Q] Zavřít DCC pohled"
#, fuzzy
#~ msgid "use a proxy server"
#~ msgstr "uživatelské jméno pro proxy server"
#, fuzzy
#~ msgid "text color for title bar"
#~ msgstr "barva pro title bar"
#, fuzzy
#~ msgid "background color for title bar"
#~ msgstr "pozadí pro title bar"
#, fuzzy
#~ msgid "text color for status bar"
#~ msgstr "barva status baru"
#, fuzzy
#~ msgid "background color for status bar"
#~ msgstr "barva status baru"
#, fuzzy
#~ msgid "text color for status bar delimiters"
#~ msgstr "barva děličů status barů"
#, fuzzy
#~ msgid "text color for input line"
#~ msgstr "barva pro vstupní text"
#, fuzzy
#~ msgid "background color for input line"
#~ msgstr "barva pro vstupní text"
#, fuzzy
#~ msgid "text color for server name in input line"
#~ msgstr "barva pro jeméno serveru"
#, fuzzy
#~ msgid "text color for channel name in input line"
#~ msgstr "barva kanálu v akcích"
#, fuzzy
#~ msgid "text color for delimiters in input line"
#~ msgstr "barva děličů v infobaru"
#, fuzzy
#~ msgid "text color for nicklist"
#~ msgstr "barva přezdívky"
#, fuzzy
#~ msgid "background color for nicklist"
#~ msgstr "pozadí přezdívek"
#, fuzzy
#~ msgid "debug: \"%s\" => %d"
#~ msgstr "Alias \"%s\" odebrán\n"
#, fuzzy
#~ msgid "%s: debug enabled"
#~ msgstr "FIFO roura je otevřena\n"
#, fuzzy
#~ msgid "dump | buffer | windows | text"
#~ msgstr "dump | buffer | windows"
#~ msgid "automatically log server messages"
#~ msgstr "automati logovat zprávy server"
#~ msgid "automatically log channel chats"
#~ msgstr "automaticky logovat rozhovory kanálu"
#~ msgid "automatically log private chats"
#~ msgstr "automaticky logovat soukromé rozhovory"
#, fuzzy
#~ msgid "New level for buffer \"%s\" is %d"
#~ msgstr "Lokální proměnné pro buffer \"%s\":"
#, fuzzy
#~ msgid " %s[%s%d%s]%s (%s) %s%s%s: %s%s%s%s"
#~ msgstr "%s%s %s(%s%s%s)%s skončil"
#, fuzzy
#~ msgid "Notify level: %s => %s"
#~ msgstr "Level upozornění:"
#, fuzzy
#~ msgid "Notify level: %s: removed"
#~ msgstr "Level upozornění:"
#~ msgid "Error: unable to create \"%s\" directory\n"
#~ msgstr "Chyba: nemohu vytvořit adresář \"%s\"\n"
#, fuzzy
#~ msgid "%sError: filter not \"%s\" found"
#~ msgstr "%s plugin \"%s\" nenalezen\n"
#, fuzzy
#~ msgid "Filter added"
#~ msgstr "uživatel byl zablokován"
#, fuzzy
#~ msgid "%sError: wrong filter number"
#~ msgstr "%s nekorektní číslo bufferu\n"
#, fuzzy
#~ msgid "Message filtering is enabled"
#~ msgstr "Filtry zpráv:"
#, fuzzy
#~ msgid "Message filtering is disabled"
#~ msgstr "Filtry zpráv:"
#, fuzzy
#~ msgid "Filters are enabled"
#~ msgstr "uživatel byl zablokován"
#, fuzzy
#~ msgid "Filters are disabled"
#~ msgstr "uživatel byl zablokován"
#~ msgid ""
#~ "format for input prompt ('%c' is replaced by channel or server, '%n' by "
#~ "nick and '%m' by nick modes)"
#~ msgstr ""
#~ "formát vstupního řádku ('%c' se přepíše na jeméno kanálu nebo serveru, '%"
#~ "n' se přepíše na přezdívku a '%m' na módy přezdívky"
#~ msgid "Text search (exact): "
#~ msgstr "Vyhledávání textu (rozlišování velikosti znaků): "
#~ msgid "Text search: "
#~ msgstr "Vyhledávání textu: "
#, fuzzy
#~ msgid "%s: creating new speller for lang \"%s\""
#~ msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy
#~ msgid "%s: removing speller for lang \"%s\""
#~ msgstr "%s nedostatek paměti pro infobar zprávu\n"
#, fuzzy
#~ msgid "Charset: %s, %s => %s"
#~ msgstr "Alias \"%s\" => \"%s\" vytvořen\n"
#~ msgid " Paste %d lines ? [ctrl-Y] Yes [ctrl-N] No"
#~ msgstr " Vložit %d řádků ? [ctrl-Y] Ano [ctrl-N] Ne"
#~ msgid "-MORE-"
#~ msgstr "-VÍCE-"
#, fuzzy
#~ msgid "Saved buffers layout:"
#~ msgstr "Seznam bufferů:"
#, fuzzy
#~ msgid "%s: connecting to server %s/%d%s%s..."
#~ msgstr "%s: připojuji se k serveru %s:%d%s%s...\n"
|