File: sk.po

package info (click to toggle)
lxpanel 0.10.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,588 kB
  • sloc: ansic: 31,210; sh: 4,369; makefile: 466; python: 20
file content (2309 lines) | stat: -rw-r--r-- 54,948 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
# Slovak translation of lxpanel
# Copyright (C) 2006 lxde team
# This file is distributed under the same license as the lxpanel package.
# Ivan Masár <helix84@centrum.sk>, 2007, 2009, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: lxpanel\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-02-22 00:29+0200\n"
"PO-Revision-Date: 2019-02-23 20:59+0000\n"
"Last-Translator: mirek <mirek@cnl.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.8\n"
"X-Pootle-Path: /sk/lxpanel/po/sk.po\n"
"X-Pootle-Revision: 0\n"
"X-POOTLE-MTIME: 1550955553.433579\n"

#: ../src/configurator.c:148
msgid ""
"Space reservation is not available for this panel because there is another "
"monitor beyond this edge and reservation would cover it if enabled."
msgstr ""

#: ../src/configurator.c:632
msgid "Currently loaded plugins"
msgstr "Momentálne načítané moduly"

#: ../src/configurator.c:641
msgid "Stretch"
msgstr "Natiahnuť"

#: ../src/configurator.c:779
msgid "Add plugin to panel"
msgstr "Pridať modul do panela"

#: ../src/configurator.c:807
msgid "Available plugins"
msgstr "Dostupné moduly"

#: ../src/configurator.c:1427
msgid "Logout command is not set"
msgstr "Príkaz na odhlásenie nie je nastavený"

#: ../src/configurator.c:1495
msgid "Select a directory"
msgstr "Vyberte adresár"

#: ../src/configurator.c:1495 ../src/configurator.c:1607
msgid "Select a file"
msgstr "Vyberte súbor"

#: ../src/configurator.c:1640
msgid "_Browse"
msgstr "_Prechádzať"

#: ../src/panel.c:1292
msgid "There is no room for another panel. All the edges are taken."
msgstr ""
"Na vytvorenie nového panela už nie je miesto. Všetky okraje sú už obsadené."

#: ../src/panel.c:1318
msgid ""
"Really delete this panel?\n"
"<b>Warning: This can not be recovered.</b>"
msgstr ""
"Skutočne chcete zmazať tento panel?\n"
"<b>Upozornenie: Túto operáciu nemožno vrátiť.</b>"

#: ../src/panel.c:1320
msgid "Confirm"
msgstr "Potvrdiť"

#. TRANSLATORS: Replace this string with your names, one name per line.
#: ../src/panel.c:1355
msgid "translator-credits"
msgstr ""
"Ivan Masár <helix84@centrum.sk>, 2007, 2009.\n"
"Miroslav Biňas <mirek@cnl.sk>, 2018, 2019"

#: ../src/panel.c:1360
msgid "LXPanel"
msgstr "LXPanel"

#: ../src/panel.c:1378
msgid "Copyright (C) 2008-2019"
msgstr "Copyright (C) 2008-2019"

#: ../src/panel.c:1379
msgid "Desktop panel for LXDE project"
msgstr "Panel plochy projektu LXDE"

#: ../src/panel.c:1421
#, c-format
msgid "\"%s\" Settings"
msgstr "Nastavenia „%s“"

#: ../src/panel.c:1442
msgid "Add / Remove Panel Items"
msgstr "Pridať / odstrániť položky panela"

#: ../src/panel.c:1450
#, c-format
msgid "Remove \"%s\" From Panel"
msgstr "Odstrániť „%s“ z panela"

#: ../src/panel.c:1462
msgid "Panel Settings"
msgstr "Nastavenia panela"

#: ../src/panel.c:1468
msgid "Create New Panel"
msgstr "Vytvoriť nový panel"

#: ../src/panel.c:1474
msgid "Delete This Panel"
msgstr "Zmazať tento panel"

#: ../src/panel.c:1485
msgid "About"
msgstr "O aplikácii"

#: ../src/panel.c:1492
msgid "Panel"
msgstr "Panel"

#: ../src/panel.c:1708 ../src/panel.c:1716 ../data/ui/panel-pref.glade.h:22
msgid "Height:"
msgstr "Výška:"

#: ../src/panel.c:1709 ../src/panel.c:1715 ../data/ui/panel-pref.glade.h:21
msgid "Width:"
msgstr "Šírka:"

#: ../src/panel.c:1710 ../data/ui/panel-pref.glade.h:13
msgid "Left"
msgstr "Vľavo"

#: ../src/panel.c:1711 ../data/ui/panel-pref.glade.h:14
msgid "Right"
msgstr "Vpravo"

#: ../src/panel.c:1717 ../data/ui/panel-pref.glade.h:12
msgid "Top"
msgstr "Hore"

#: ../src/panel.c:1718 ../data/ui/panel-pref.glade.h:11
msgid "Bottom"
msgstr "Dolu"

#: ../src/plugin.c:348
msgid "No file manager is configured."
msgstr "Nie je nakonfigurovaný žiadny správca súborov."

#. { "configure", N_("Preferences"), configure },
#: ../src/gtk-run.c:385 ../src/main.c:69 ../plugins/menu.c:718
msgid "Run"
msgstr "Spustiť"

#: ../src/gtk-run.c:399
msgid "Enter the command you want to execute:"
msgstr "Zadajte príkaz, ktorý chcete vykonať:"

#: ../src/main.c:70 ../plugins/menu.c:719
msgid "Restart"
msgstr "Reštartovať"

#: ../src/main.c:71 ../plugins/menu.c:720
msgid "Logout"
msgstr "Odhlásiť"

#: ../src/main.c:323
#, c-format
msgid "lxpanel %s - lightweight GTK2+ panel for UNIX desktops\n"
msgstr "lxpanel %s - odľahčený GTK2+ panel pre unixové pracovné prostredia\n"

#: ../src/main.c:324
#, c-format
msgid "Command line options:\n"
msgstr "Voľby príkazového riadka:\n"

#: ../src/main.c:325
#, c-format
msgid " --help      -- print this help and exit\n"
msgstr " --help      -- vypísať tohto pomocníka a skončiť\n"

#: ../src/main.c:326
#, c-format
msgid " --version   -- print version and exit\n"
msgstr " --version   -- vypísať verziu a skončiť\n"

#. g_print(_(" --log <number> -- set log level 0-5. 0 - none 5 - chatty\n"));
#. g_print(_(" --configure -- launch configuration utility\n"));
#: ../src/main.c:329
#, c-format
msgid " --profile name -- use specified profile\n"
msgstr " --profile meno -- použiť uvedený profil\n"

#: ../src/main.c:331
#, c-format
msgid " -h  -- same as --help\n"
msgstr " -h  -- ekvivalent --help\n"

#: ../src/main.c:332
#, c-format
msgid " -p  -- same as --profile\n"
msgstr " -p  -- ekvivalent --profile\n"

#: ../src/main.c:333
#, c-format
msgid " -v  -- same as --version\n"
msgstr " -v  -- ekvivalent --version\n"

#. g_print(_(" -C  -- same as --configure\n"));
#: ../src/main.c:335
#, c-format
msgid ""
"\n"
"Visit http://lxde.org/ for detail.\n"
"\n"
msgstr ""
"\n"
"Podrobnosti nájdete na http://lxde.org/\n"
"\n"

#: ../src/input-button.c:147
#, fuzzy
msgid "LeftBtn"
msgstr "Vľavo"

#: ../src/input-button.c:150
msgid "MiddleBtn"
msgstr ""

#: ../src/input-button.c:153
#, fuzzy
msgid "RightBtn"
msgstr "Vpravo"

#: ../src/input-button.c:156
#, c-format
msgid "Btn%s"
msgstr ""

#: ../src/input-button.c:228
#, c-format
msgid "Key combination '%s' cannot be used as a global hotkey, sorry."
msgstr ""
"Prepáčte, ale kombinácia kláves '%s' sa nedá použiť ako globálna klávesová "
"skratka."

#: ../src/input-button.c:231 ../src/input-button.c:415
#: ../plugins/netstatus/netstatus-iface.c:191
#: ../plugins/netstatus/netstatus-util.c:167
msgid "Error"
msgstr "Chyba"

#. GtkRadioButton "None"
#: ../src/input-button.c:329 ../data/ui/panel-pref.glade.h:5
msgid "None"
msgstr "Žiadny"

#: ../src/input-button.c:336
#, fuzzy
msgid "Custom:"
msgstr "Vlastná farba"

#: ../src/input-button.c:413
#, c-format
msgid "Cannot assign '%s' as a global hotkey: it is already bound."
msgstr ""
"Nie je možné priradiť '%s' ako globálnu klávesovú skratku: už sa používa."

#: ../src/space.c:394 ../src/space.c:403
msgid "Spacer"
msgstr "Rozostup"

#: ../src/space.c:396 ../data/ui/panel-pref.glade.h:32
#: ../plugins/batt/batt.c:710
msgid "Size"
msgstr "Veľkosť"

#: ../src/space.c:404
msgid "Allocate space"
msgstr "Vyhradiť miesto"

#: ../data/ui/launchtaskbar.glade.h:1 ../plugins/launchtaskbar.c:2482
#, fuzzy
msgid "Application Launch and Task Bar"
msgstr "Spúšťací panel"

#. Launchtaskbar mode: launchbar, taskbar, or combined
#: ../data/ui/launchtaskbar.glade.h:3
msgid "<b>Mode:</b>"
msgstr "<b>Režim:</b>"

#: ../data/ui/launchtaskbar.glade.h:4
msgid "Launchers"
msgstr "Spúšťače"

#: ../data/ui/launchtaskbar.glade.h:5
#, fuzzy
msgid "<b>Launchbar</b>"
msgstr "<b>Priesvitnosť</b>"

#: ../data/ui/launchtaskbar.glade.h:6
msgid "Show tooltips"
msgstr "Zobraziť bublinové tipy"

#: ../data/ui/launchtaskbar.glade.h:7
msgid "Icons only"
msgstr "Iba ikony"

#: ../data/ui/launchtaskbar.glade.h:8
msgid "Flat buttons"
msgstr "Ploché tlačidlá"

#: ../data/ui/launchtaskbar.glade.h:9
msgid "Show windows from all desktops"
msgstr "Zobraziť okná zo všetkých plôch"

#: ../data/ui/launchtaskbar.glade.h:10
msgid "Only show windows on the same monitor as the task bar"
msgstr "Okná zobrazovať len na tom istom monitore, na ktorom je panel úloh."

#: ../data/ui/launchtaskbar.glade.h:11
msgid "Use mouse wheel"
msgstr "Používať koliesko myši"

#: ../data/ui/launchtaskbar.glade.h:12
msgid "Flash when there is any window requiring attention"
msgstr "Blikať, keď niektoré okno vyžaduje pozornosť"

#: ../data/ui/launchtaskbar.glade.h:13
msgid "Combine multiple application windows into a single button"
msgstr "Zoskupovať okná viacerých aplikácií do jedného tlačidla"

#: ../data/ui/launchtaskbar.glade.h:14
msgid "Disable enlargement for small task icons"
msgstr ""

#: ../data/ui/launchtaskbar.glade.h:15
msgid "Show task icons smaller than rest of panel icons"
msgstr ""

#: ../data/ui/launchtaskbar.glade.h:16
msgid "Maximum width of task button"
msgstr "Maximálna šírka tlačidla úlohy"

#: ../data/ui/launchtaskbar.glade.h:17
msgid "Spacing"
msgstr "Rozostupy"

#: ../data/ui/launchtaskbar.glade.h:18
msgid "<b>Taskbar</b>"
msgstr "<b>Panel úloh</b>"

#: ../data/ui/launchtaskbar.glade.h:19
#, fuzzy
msgid "Only Application Launch Bar"
msgstr "Spúšťací panel"

#: ../data/ui/launchtaskbar.glade.h:20
#, fuzzy
msgid "Only Task Bar (Window List)"
msgstr "Panel úloh (Zoznam okien)"

#: ../data/ui/launchtaskbar.glade.h:21
#, fuzzy
msgid "Integrated Application Launch Bar and Task Bar"
msgstr "Spúšťací panel"

#: ../data/ui/netstatus.glade.h:1
msgid "<b>Connection</b>"
msgstr "<b>Pripojenie</b>"

#: ../data/ui/netstatus.glade.h:2
msgid "Status:"
msgstr "Stav:"

#: ../data/ui/netstatus.glade.h:3
msgid "_Name:"
msgstr "_Názov:"

#: ../data/ui/netstatus.glade.h:4
msgid "<b>Activity</b>"
msgstr "<b>Aktivita</b>"

#: ../data/ui/netstatus.glade.h:5
msgid "Received:"
msgstr "Prijaté:"

#: ../data/ui/netstatus.glade.h:6
msgid "Sent:"
msgstr "Poslané:"

#: ../data/ui/netstatus.glade.h:7
msgid "<b>Signal Strength</b>"
msgstr "<b>Sila signálu</b>"

#: ../data/ui/netstatus.glade.h:9
#, no-c-format
msgid "0%"
msgstr "0 %"

#: ../data/ui/netstatus.glade.h:10
msgid "General"
msgstr "Všeobecné"

#: ../data/ui/netstatus.glade.h:11
msgid "<b>Internet Protocol (IPv4)</b>"
msgstr "<b>Internet Protocol (IPv4)</b>"

#: ../data/ui/netstatus.glade.h:12
msgid "Address:"
msgstr "Adresa:"

#: ../data/ui/netstatus.glade.h:13
msgid "Destination:"
msgstr "Cieľ:"

#: ../data/ui/netstatus.glade.h:14 ../plugins/netstat/netstat.c:372
#: ../plugins/netstat/netstat.c:383
msgid "Broadcast:"
msgstr "Broadcast:"

#: ../data/ui/netstatus.glade.h:15
msgid "Subnet Mask:"
msgstr "Maska podsiete:"

#: ../data/ui/netstatus.glade.h:16
msgid "<b>Internet Protocol (IPv6)</b>"
msgstr "<b>Internet Protocol (IPv6)</b>"

#: ../data/ui/netstatus.glade.h:17
msgid "Scope:"
msgstr "Rozsah:"

#: ../data/ui/netstatus.glade.h:18
msgid "<b>Network Device</b>"
msgstr "<b>Sieťové zariadenie</b>"

#: ../data/ui/netstatus.glade.h:19
msgid "Type:"
msgstr "Typ:"

#: ../data/ui/netstatus.glade.h:20
msgid "Support"
msgstr "Podpora"

#: ../data/ui/netstatus.glade.h:21
msgid "Con_figure"
msgstr "Kon_figurácia"

#: ../data/ui/panel-pref.glade.h:1
msgid "Dynamic"
msgstr "Dynamická"

#: ../data/ui/panel-pref.glade.h:2
msgid "Pixels"
msgstr "Pixelov"

#: ../data/ui/panel-pref.glade.h:4
#, no-c-format
msgid "% Percent"
msgstr "% percent"

#: ../data/ui/panel-pref.glade.h:6
#, fuzzy
msgid "Err"
msgstr "Chyba"

#: ../data/ui/panel-pref.glade.h:7
#, fuzzy
msgid "Warn"
msgstr "Upozornenie1"

#: ../data/ui/panel-pref.glade.h:8
msgid "Info"
msgstr ""

#: ../data/ui/panel-pref.glade.h:9
msgid "All"
msgstr ""

#: ../data/ui/panel-pref.glade.h:10
msgid "Panel Preferences"
msgstr "Nastavenia panelu"

#: ../data/ui/panel-pref.glade.h:15
msgid "Edge:"
msgstr "Okraj:"

#: ../data/ui/panel-pref.glade.h:16 ../plugins/volumealsa/volumealsa.c:1313
msgid "Center"
msgstr "Stred"

#: ../data/ui/panel-pref.glade.h:17
msgid "Alignment:"
msgstr "Zarovnanie:"

#: ../data/ui/panel-pref.glade.h:18
msgid "Margin:"
msgstr "Okraj:"

#: ../data/ui/panel-pref.glade.h:19
msgid "Monitor:"
msgstr "Monitor:"

#: ../data/ui/panel-pref.glade.h:20
msgid "<b>Position</b>"
msgstr "<b>Poloha</b>"

#: ../data/ui/panel-pref.glade.h:23
msgid "Icon size:"
msgstr "Veľkosť ikony:"

#: ../data/ui/panel-pref.glade.h:24
msgid "<b>Size</b>"
msgstr "<b>Veľkosť</b>"

#: ../data/ui/panel-pref.glade.h:25
msgid "Geometry"
msgstr "Geometria"

#: ../data/ui/panel-pref.glade.h:26
msgid "System theme"
msgstr "Vzhľad systému"

#: ../data/ui/panel-pref.glade.h:27
msgid "Solid color (with opacity)"
msgstr "Súvislá farba (s krytím)"

#: ../data/ui/panel-pref.glade.h:28 ../plugins/xkb/xkb-plugin.c:1455
msgid "Image"
msgstr "Obrázok"

#: ../data/ui/panel-pref.glade.h:29
msgid "Select an image file"
msgstr "Vyberte súbor obrázka"

#: ../data/ui/panel-pref.glade.h:30
msgid "<b>Background</b>"
msgstr "<b>Pozadie</b>"

#: ../data/ui/panel-pref.glade.h:31
msgid "Custom color"
msgstr "Vlastná farba"

#: ../data/ui/panel-pref.glade.h:33
msgid "<b>Font</b>"
msgstr "<b>Písmo</b>"

#: ../data/ui/panel-pref.glade.h:34
msgid "Appearance"
msgstr "Vzhľad"

#: ../data/ui/panel-pref.glade.h:35
msgid "Panel Applets"
msgstr "Aplety v paneli"

#: ../data/ui/panel-pref.glade.h:36
msgid "Logout Command:"
msgstr "Príkaz na odhlásenie:"

#: ../data/ui/panel-pref.glade.h:37
msgid "Terminal Emulator:"
msgstr "Emulátor terminálu:"

#: ../data/ui/panel-pref.glade.h:38
msgid "File Manager:"
msgstr "Správca súborov:"

#: ../data/ui/panel-pref.glade.h:39
msgid "<b>Set Preferred Applications</b>"
msgstr "<b>Nastaviť preferované aplikácie</b>"

#: ../data/ui/panel-pref.glade.h:40
msgid "Make window managers treat the panel as dock"
msgstr "Správcovia okien majú ukotvovať panel"

#: ../data/ui/panel-pref.glade.h:41
msgid "Reserve space, and not covered by maximized windows"
msgstr "Rezervovať miesto, nezakrývať maximalizovanými oknami"

#: ../data/ui/panel-pref.glade.h:42
msgid "<b>Properties</b>"
msgstr "<b>Vlastnosti</b>"

#: ../data/ui/panel-pref.glade.h:43
msgid "Minimize panel when not in use"
msgstr "Minimalizovať panel, keď sa napoužíva"

#: ../data/ui/panel-pref.glade.h:44
msgid "Size when minimized"
msgstr "Veľkosť keď je minimalizovaný"

#: ../data/ui/panel-pref.glade.h:45
msgid "pixels"
msgstr "pixely"

#: ../data/ui/panel-pref.glade.h:46
msgid "<b>Automatic hiding</b>"
msgstr "<b>Automatické skrývanie</b>"

#: ../data/ui/panel-pref.glade.h:47
msgid "Log level"
msgstr "Úroveň logovania"

#: ../data/ui/panel-pref.glade.h:48
msgid "<b>Log level</b>"
msgstr "<b>Úroveň logovania</b>"

#: ../data/ui/panel-pref.glade.h:49
msgid "Advanced"
msgstr "Pokročilé"

#: ../plugins/cpu/cpu.c:310
msgid "CPU Usage Monitor"
msgstr "Monitor využitia CPU"

#: ../plugins/cpu/cpu.c:311 ../plugins/monitors/monitors.c:734
msgid "Display CPU usage"
msgstr "Zobraziť využitie CPU"

#: ../plugins/deskno/deskno.c:210 ../plugins/deskno/deskno.c:230
msgid "Desktop Number / Workspace Name"
msgstr "Číslo plochy / Názov plochy"

#: ../plugins/deskno/deskno.c:212 ../plugins/dclock.c:439
msgid "Bold font"
msgstr "Hrubé písmo"

#: ../plugins/deskno/deskno.c:213
msgid "Display desktop names"
msgstr "Zobraziť názvy plôch"

#: ../plugins/deskno/deskno.c:231
msgid "Display workspace number, by cmeury@users.sf.net"
msgstr "Zobrazenie čísla plochy, cmeury@users.sf.net"

#: ../plugins/launchtaskbar.c:1831 ../plugins/launchtaskbar.c:2452
msgid "Application Launch Bar"
msgstr "Spúšťací panel"

#: ../plugins/launchtaskbar.c:1834 ../plugins/launchtaskbar.c:2462
msgid "Task Bar (Window List)"
msgstr "Panel úloh (Zoznam okien)"

#: ../plugins/launchtaskbar.c:1985
msgid "A_dd to Launcher"
msgstr "Pri_dať do spúšťača"

#: ../plugins/launchtaskbar.c:1987
msgid "Rem_ove from Launcher"
msgstr "_Odstrániť zo spúšťača"

#: ../plugins/launchtaskbar.c:1989
msgid "_New Instance"
msgstr "_Nová inštancia"

#: ../plugins/launchtaskbar.c:2453
msgid "Bar with buttons to launch application"
msgstr "Panel s tlačidlami pre spúšťanie aplikácií"

#: ../plugins/launchtaskbar.c:2463
msgid ""
"Taskbar shows all opened windows and allow to iconify them, shade or get "
"focus"
msgstr ""
"Panel úloh zobrazuje všetky otvorené okná a umožňuje ich ikonifikovať, "
"zatieniť alebo aktivovať"

#: ../plugins/launchtaskbar.c:2483
#, fuzzy
msgid "Bar with buttons to launch application and/or show all opened windows"
msgstr "Panel s tlačidlami pre spúšťanie aplikácií"

#. Add Raise menu item.
#: ../plugins/task-button.c:352
msgid "_Raise"
msgstr "_Zdvihnúť"

#. Add Restore menu item.
#: ../plugins/task-button.c:357
msgid "R_estore"
msgstr "_Obnoviť"

#. Add Maximize menu item.
#: ../plugins/task-button.c:362
msgid "Ma_ximize"
msgstr "Ma_ximalizovať"

#. Add Iconify menu item.
#: ../plugins/task-button.c:367
msgid "Ico_nify"
msgstr "Iko_nifikovať"

#: ../plugins/task-button.c:388
#, c-format
msgid "Workspace _%d"
msgstr "Pracovná plocha _%d"

#: ../plugins/task-button.c:393
#, c-format
msgid "Workspace %d"
msgstr "Pracovná plocha %d"

#. Add "move to all workspaces" item.  This causes the window to be visible no matter what desktop is active.
#: ../plugins/task-button.c:410
msgid "_All workspaces"
msgstr "Všetky pr_acovné plochy"

#. FIXME: add "Current workspace" item, active if not on a current
#. Add Move to Workspace menu item as a submenu.
#: ../plugins/task-button.c:418
msgid "_Move to Workspace"
msgstr "_Presunúť na plochu"

#: ../plugins/task-button.c:433
msgid "_Close Window"
msgstr "_Zatvoriť okno"

#: ../plugins/task-button.c:1256
msgid "_Close all windows"
msgstr "_Zatvoriť všetky okná"

#: ../plugins/dclock.c:433 ../plugins/dclock.c:453
msgid "Digital Clock"
msgstr "Digitálne hodiny"

#: ../plugins/dclock.c:435
msgid "Clock Format"
msgstr "Formát hodín"

#: ../plugins/dclock.c:436
msgid "Tooltip Format"
msgstr "Formát bublinových tipov"

#: ../plugins/dclock.c:437
#, c-format
msgid "Format codes: man 3 strftime; %n for line break"
msgstr "Formátovacie kódy: man 3 strftime; %n pre zalomenie riadka"

#: ../plugins/dclock.c:438
msgid "Action when clicked (default: display calendar)"
msgstr "Operácia po kliknutí (predvolená: zobraziť kalendár)"

#: ../plugins/dclock.c:440
msgid "Tooltip only"
msgstr "Iba bublinové tipy"

#: ../plugins/dclock.c:441
msgid "Center text"
msgstr "Zarovnať text na stred"

#: ../plugins/dclock.c:454
msgid "Display digital clock and tooltip"
msgstr "Zobraziť digitálne hodiny a bublinové tipy"

#: ../plugins/menu.c:360
msgid "Add to desktop"
msgstr "Pridať na plochu"

#: ../plugins/menu.c:367
msgid "Properties"
msgstr "Vlastnosti"

#: ../plugins/menu.c:989 ../plugins/menu.c:997
msgid "Menu"
msgstr "Ponuka"

#: ../plugins/menu.c:990 ../plugins/dirmenu.c:359
msgid "Icon"
msgstr "Ikona"

#: ../plugins/menu.c:998
msgid "Application Menu"
msgstr "Aplikačné menu"

#: ../plugins/separator.c:73
msgid "Separator"
msgstr "Oddeľovač"

#: ../plugins/separator.c:74
msgid "Add a separator to the panel"
msgstr "Pridať oddeľovač do panela"

#: ../plugins/pager.c:141
msgid "Sorry, there was no window manager configuration program found."
msgstr ""

#: ../plugins/pager.c:193 ../plugins/pager.c:209
msgid "Desktop Pager"
msgstr "Stránkovač plôch"

#: ../plugins/pager.c:194 ../plugins/pager.c:210
msgid "Simple pager plugin"
msgstr "Jednoduchý stránkovací modul"

#: ../plugins/tray.c:691
msgid "System Tray"
msgstr "Oznamovacia oblasť"

#: ../plugins/tray.c:692
msgid "System tray"
msgstr "Oznamovacia oblasť"

#: ../plugins/xkb/xkb-plugin.c:409
msgid "New session is required for this option to take effect"
msgstr ""

#. dialog
#: ../plugins/xkb/xkb-plugin.c:590
msgid "Select Keyboard Model"
msgstr "Vyberte si model klávesnice"

#: ../plugins/xkb/xkb-plugin.c:614 ../plugins/xkb/xkb-plugin.c:743
#: ../plugins/xkb/xkb-plugin.c:921
msgid "Description"
msgstr "Opis"

#: ../plugins/xkb/xkb-plugin.c:619 ../plugins/xkb/xkb-plugin.c:750
msgid "Id"
msgstr "Id"

#. dialog
#: ../plugins/xkb/xkb-plugin.c:714
#, fuzzy
msgid "Select Layout Change Type"
msgstr "Vyberte súbor obrázka"

#. dialog
#: ../plugins/xkb/xkb-plugin.c:887
msgid "Add Keyboard Layout"
msgstr "Pridať rozloženie klávesnice"

#: ../plugins/xkb/xkb-plugin.c:911 ../plugins/xkb/xkb-plugin.c:1302
msgid "Flag"
msgstr "Vlajka"

#: ../plugins/xkb/xkb-plugin.c:916 ../plugins/xkb/xkb-plugin.c:1306
msgid "Layout"
msgstr "Rozloženie"

#: ../plugins/xkb/xkb-plugin.c:1212 ../plugins/xkb/xkb-plugin.c:1544
msgid "Keyboard Layout Handler"
msgstr "Správca rozloženia klávesnice"

#: ../plugins/xkb/xkb-plugin.c:1235
msgid "Keyboard Model"
msgstr "Model klávesnice"

#: ../plugins/xkb/xkb-plugin.c:1256
msgid "Keyboard Layouts"
msgstr "Rozloženia klávesnice"

#: ../plugins/xkb/xkb-plugin.c:1310
msgid "Variant"
msgstr "Varianta"

#: ../plugins/xkb/xkb-plugin.c:1319
msgid "Change Layout Option"
msgstr "Prepínanie rozloženia klávesnice"

#: ../plugins/xkb/xkb-plugin.c:1339
msgid "Advanced setxkbmap Options"
msgstr "Pokročilé voľby pre setxkbmap"

#: ../plugins/xkb/xkb-plugin.c:1360
msgid "Do _not reset existing options"
msgstr "_Neresetovať existujúce voľby"

#: ../plugins/xkb/xkb-plugin.c:1365
msgid "Keep _system layouts"
msgstr "Ponechať _systémové rozloženie"

#: ../plugins/xkb/xkb-plugin.c:1374
#, fuzzy
msgid "Per Window Settings"
msgstr "Nastavenia panela"

#: ../plugins/xkb/xkb-plugin.c:1386
msgid "_Remember layout for each window"
msgstr "_Pamätať si rozloženie pre každú aplikáciu samostatne"

#: ../plugins/xkb/xkb-plugin.c:1395
msgid "Show Layout as"
msgstr "Zobraziť rozloženie ako"

#: ../plugins/xkb/xkb-plugin.c:1456
msgid "Custom Image"
msgstr "Vlastný obrázok"

#: ../plugins/xkb/xkb-plugin.c:1457
msgid "Text"
msgstr "Text"

#: ../plugins/xkb/xkb-plugin.c:1483
msgid "Panel Icon Size"
msgstr "Veľkosť ikony v paneli"

#: ../plugins/xkb/xkb-plugin.c:1545
#, fuzzy
msgid "Handle keyboard layouts"
msgstr "Prepínať medzi dostupnými rozloženiami klávesnice"

#: ../plugins/wincmd.c:207
msgid "Left click to iconify all windows.  Middle click to shade them."
msgstr ""
"Po kliknutí ľavým tlačidlom zminimalizujete všetky okná. Stredným tlačidlom "
"ich skryjete."

#: ../plugins/wincmd.c:245 ../plugins/wincmd.c:255
msgid "Minimize All Windows"
msgstr "Minimalizovať všetky okná"

#: ../plugins/wincmd.c:247
msgid "Alternately iconify/shade and raise"
msgstr "Alternatívna ikonifikácia/tieňovanie a zdvihnutie"

#: ../plugins/wincmd.c:256
msgid ""
"Sends commands to all desktop windows.\n"
"Supported commands are 1) iconify and 2) shade"
msgstr ""
"Posiela príkazy všetkým oknám plochy.\n"
"Podporované príkazy sú 1) ikonifikovať a 2) tieňovať"

#: ../plugins/dirmenu.c:213
msgid "Open in _Terminal"
msgstr "Otvoriť v _termináli"

#: ../plugins/dirmenu.c:355 ../plugins/dirmenu.c:365
msgid "Directory Menu"
msgstr "Menu adresára"

#: ../plugins/dirmenu.c:357
msgid "Directory"
msgstr "Adresár"

#: ../plugins/dirmenu.c:358
msgid "Label"
msgstr "Označenie"

#: ../plugins/dirmenu.c:366
#, fuzzy
msgid "Browse directory tree via menu (Author = PCMan)"
msgstr "Prechádzať strom adresárov pomocou menu (autor: PCMan)"

#: ../plugins/thermal/thermal.c:563 ../plugins/thermal/thermal.c:581
msgid "Temperature Monitor"
msgstr "Monitor teploty"

#: ../plugins/thermal/thermal.c:565
msgid "Normal color"
msgstr "Normálna farba"

#: ../plugins/thermal/thermal.c:566
msgid "Warning1 color"
msgstr "Farba upozornenia 1"

#: ../plugins/thermal/thermal.c:567
msgid "Warning2 color"
msgstr "Farba upozornenia 2"

#: ../plugins/thermal/thermal.c:568
msgid "Automatic sensor location"
msgstr "Automatické umiestnenie snímača"

#. FIXME: if off, disable next one
#: ../plugins/thermal/thermal.c:569
msgid "Sensor"
msgstr "Snímač"

#. FIXME: create a list to select instead
#: ../plugins/thermal/thermal.c:570
msgid "Automatic temperature levels"
msgstr "Automatické teplotné hladiny"

#. FIXME: if off, disable two below
#: ../plugins/thermal/thermal.c:571
#, fuzzy
msgid "Warning1 temperature"
msgstr "Upozornenie1 Teplota"

#: ../plugins/thermal/thermal.c:572
#, fuzzy
msgid "Warning2 temperature"
msgstr "Upozornenie2 Teplota"

#: ../plugins/thermal/thermal.c:582
msgid "Display system temperature"
msgstr "Zobrazovanie teploty systému"

#: ../plugins/cpufreq/cpufreq.c:325
#, c-format
msgid ""
"Frequency: %d MHz\n"
"Governor: %s"
msgstr ""

#: ../plugins/cpufreq/cpufreq.c:401
msgid "CPUFreq frontend"
msgstr ""

#: ../plugins/cpufreq/cpufreq.c:402
msgid "Display CPU frequency and allow to change governors and frequency"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:245
msgid "ALSA (or pulseaudio) had a problem. Please check the lxpanel logs."
msgstr ""
"ALSA (alebo pulseaudio) mal problém. Skontrolujte prosím logy aplikácie "
"lxpanel."

#. Display current level in tooltip.
#: ../plugins/volumealsa/volumealsa.c:613
#: ../plugins/volumealsa/volumealsa.c:973
msgid "Volume control"
msgstr "Ovládanie hlasitosti"

#: ../plugins/volumealsa/volumealsa.c:701
msgid ""
"Error, you need to install an application to configure the sound "
"(pavucontrol, alsamixer ...)"
msgstr ""

#. Create a frame as the child of the viewport.
#: ../plugins/volumealsa/volumealsa.c:895
msgid "Volume"
msgstr "Hlasitosť"

#. Create a check button as the child of the vertical box.
#: ../plugins/volumealsa/volumealsa.c:914
msgid "Mute"
msgstr "Stlmiť"

#. Just to have these translated
#: ../plugins/volumealsa/volumealsa.c:1313
msgid "Line"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1313
msgid "LineOut"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1313
msgid "Front"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1313
msgid "Surround"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1313
msgid "Speaker+LO"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1352
msgid "default"
msgstr "predvolená"

#. desc, index
#: ../plugins/volumealsa/volumealsa.c:1412
msgid "Master"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1416
msgid "PCM"
msgstr "PCM"

#: ../plugins/volumealsa/volumealsa.c:1420
msgid "Headphone"
msgstr "Slúchadlá"

#: ../plugins/volumealsa/volumealsa.c:1442
msgid "Click for Volume Slider"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1446
msgid "Click for Toggle Mute"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1450
msgid "Click for Open Mixer"
msgstr ""

#. setup hotkeys
#: ../plugins/volumealsa/volumealsa.c:1454
msgid "Hotkey for Volume Up"
msgstr "Klávesová skratka pre zvýšenie hlasitosti"

#: ../plugins/volumealsa/volumealsa.c:1456
msgid "Hotkey for Volume Down"
msgstr "Klávesová skratka pre stíšenie hlasitosti"

#: ../plugins/volumealsa/volumealsa.c:1458
msgid "Hotkey for Volume Mute"
msgstr "Klávesová skratka pre stlmenie hlasitosti"

#: ../plugins/volumealsa/volumealsa.c:1514
#: ../plugins/volumealsa/volumealsa.c:1553
#: ../plugins/volumealsa/volumealsa.c:1574
msgid "Volume Control"
msgstr "Ovládanie hlasitosti"

#: ../plugins/volumealsa/volumealsa.c:1516
msgid "Audio Card"
msgstr "Zvuková karta"

#: ../plugins/volumealsa/volumealsa.c:1519
msgid "Channel to Operate"
msgstr ""

#: ../plugins/volumealsa/volumealsa.c:1527
msgid "Command to Open Mixer"
msgstr "Príkaz na spustenie zmiešavača zvuku"

#: ../plugins/volumealsa/volumealsa.c:1542
msgid "Launch Mixer"
msgstr "Spustiť zmiešavač zvuku"

#: ../plugins/volumealsa/volumealsa.c:1554
#: ../plugins/volumealsa/volumealsa.c:1575
msgid "Display and control volume"
msgstr ""

#: ../plugins/netstat/netstat.c:183
msgid "<Hidden Access Point>"
msgstr "<Skrytý prístupový bod>"

#: ../plugins/netstat/netstat.c:220
msgid "Wireless Networks not found in range"
msgstr "V dosahu neboli nájdené bezdrôtové siete"

#. Repair
#: ../plugins/netstat/netstat.c:256
msgid "Repair"
msgstr "Opraviť"

#. interface down
#: ../plugins/netstat/netstat.c:261
msgid "Disable"
msgstr "Vypnúť"

#: ../plugins/netstat/netstat.c:352
msgid "Wireless Connection has no connectivity"
msgstr "Bezdrôtové pripojenie nie je pripojené"

#: ../plugins/netstat/netstat.c:354
msgid "Network cable is plugged out"
msgstr "Sieťový kábel je odpojený"

#: ../plugins/netstat/netstat.c:356
msgid "Connection has limited or no connectivity"
msgstr "Pripojenie je obmedzené alebo nepripojené"

#: ../plugins/netstat/netstat.c:360 ../plugins/netstat/netstat.c:371
#: ../plugins/netstat/netstat.c:382
msgid "IP Address:"
msgstr "IP adresa:"

#: ../plugins/netstat/netstat.c:361
msgid "Remote IP:"
msgstr "Vzdialená IP:"

#: ../plugins/netstat/netstat.c:362 ../plugins/netstat/netstat.c:373
#: ../plugins/netstat/netstat.c:384
msgid "Netmask:"
msgstr "Maska siete:"

#: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375
#: ../plugins/netstat/netstat.c:386
msgid "Activity"
msgstr "Aktivita"

#: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375
#: ../plugins/netstat/netstat.c:386
msgid "Sent"
msgstr "Poslané"

#: ../plugins/netstat/netstat.c:363 ../plugins/netstat/netstat.c:375
#: ../plugins/netstat/netstat.c:386
msgid "Received"
msgstr "Prijaté"

#: ../plugins/netstat/netstat.c:364 ../plugins/netstat/netstat.c:376
#: ../plugins/netstat/netstat.c:387
msgid "bytes"
msgstr "bajtov"

#: ../plugins/netstat/netstat.c:365 ../plugins/netstat/netstat.c:377
#: ../plugins/netstat/netstat.c:388
msgid "packets"
msgstr "paketov"

#: ../plugins/netstat/netstat.c:368 ../plugins/netstatus/netstatus-iface.c:173
msgid "Wireless"
msgstr "Bezdrôtové"

#: ../plugins/netstat/netstat.c:370
msgid "Protocol:"
msgstr "Protokol:"

#: ../plugins/netstat/netstat.c:374 ../plugins/netstat/netstat.c:385
msgid "HW Address:"
msgstr "HW adresa:"

#: ../plugins/netstat/netstat.c:505
msgid "Manage Networks"
msgstr "Spravovať siete"

#: ../plugins/netstat/netstat.c:506
msgid "Monitor and Manage networks"
msgstr "Monitorovať a spravovať siete"

#. create dialog
#: ../plugins/netstat/passwd_gui.c:90
msgid "Setting Encryption Key"
msgstr "Nastavenie šifrovacieho kľúča"

#: ../plugins/netstat/passwd_gui.c:101
msgid ""
"This wireless network was encrypted.\n"
"You must have the encryption key."
msgstr ""
"Táto bezdrôtová sieť je šifrovaná.\n"
"Musíte mať šifrovací kľúč."

#: ../plugins/netstat/passwd_gui.c:106
msgid "Encryption Key:"
msgstr "Šifrovací kľúč:"

#: ../plugins/netstatus/netstatus.c:154 ../plugins/netstatus/netstatus.c:166
msgid "Network Status Monitor"
msgstr "Monitor stavu siete"

#: ../plugins/netstatus/netstatus.c:156
msgid "Interface to monitor"
msgstr "Monitorovať rozhranie"

#: ../plugins/netstatus/netstatus.c:157
msgid "Config tool"
msgstr "Konfiguračný nástroj"

#: ../plugins/netstatus/netstatus.c:167
msgid "Monitor network status"
msgstr "Monitorovať stav siete"

#: ../plugins/netstatus/netstatus-dialog.c:52
#: ../plugins/netstatus/netstatus-dialog.c:316
msgid "Unknown"
msgstr "Neznáme"

#: ../plugins/netstatus/netstatus-dialog.c:117
msgid "Connection Properties"
msgstr "Vlastnosti pripojenia"

#: ../plugins/netstatus/netstatus-dialog.c:123
#, c-format
msgid "Connection Properties: %s"
msgstr "Vlastnosti pripojenia: %s"

#: ../plugins/netstatus/netstatus-dialog.c:136
#, c-format
msgid "%lu packet"
msgid_plural "%lu packets"
msgstr[0] "%lu paket"
msgstr[1] "%lu pakety"
msgstr[2] "%lu paketov"

#: ../plugins/netstatus/netstatus-dialog.c:400
#, c-format
msgid ""
"There was an error displaying help:\n"
"%s"
msgstr ""
"Pri zobrazovaní pomocníka nastala chyba:\n"
"%s"

#: ../plugins/netstatus/netstatus-icon.c:381
#, c-format
msgid "Network Connection: %s"
msgstr "Sieťové pripojenie: %s"

#: ../plugins/netstatus/netstatus-icon.c:386
msgid "Network Connection"
msgstr "Sieťové pripojenie"

#: ../plugins/netstatus/netstatus-icon.c:847
msgid "Interface"
msgstr "Rozhranie"

#: ../plugins/netstatus/netstatus-icon.c:848
msgid "The current interface the icon is monitoring."
msgstr "Aktuálne rozhranie, ktoré táto ikona monitoruje."

#: ../plugins/netstatus/netstatus-icon.c:855
msgid "Orientation"
msgstr "Orientácia"

#: ../plugins/netstatus/netstatus-icon.c:856
msgid "The orientation of the tray."
msgstr "Orientácia oznamovacej oblasti."

#: ../plugins/netstatus/netstatus-icon.c:864
msgid "Tooltips Enabled"
msgstr "Bublinové tipy zapnuté"

#: ../plugins/netstatus/netstatus-icon.c:865
msgid "Whether or not the icon's tooltips are enabled."
msgstr "Či sú alebo nie sú zapnuté bublinové tipy."

#: ../plugins/netstatus/netstatus-icon.c:872
msgid "Show Signal"
msgstr "Zobrazovať signál"

#: ../plugins/netstatus/netstatus-icon.c:873
msgid "Whether or not the signal strength should be displayed."
msgstr "Či sa má alebo nemá zobrazovať sila signálu."

#: ../plugins/netstatus/netstatus-icon.c:982
#, c-format
msgid ""
"Please contact your system administrator to resolve the following problem:\n"
"\n"
"%s"
msgstr ""
"Prosím, kontaktujte správcu svojho systému, aby vyriešil nasledovný "
"problém:\n"
"\n"
"%s"

#: ../plugins/netstatus/netstatus-iface.c:148
msgid "Name"
msgstr "Názov"

#: ../plugins/netstatus/netstatus-iface.c:149
msgid "The interface name"
msgstr "Názov rozhrania"

#: ../plugins/netstatus/netstatus-iface.c:156
#: ../plugins/weather/weatherwidget.c:2136
msgid "State"
msgstr "Stav"

#: ../plugins/netstatus/netstatus-iface.c:157
msgid "The interface state"
msgstr "Stav rozhrania"

#: ../plugins/netstatus/netstatus-iface.c:165
msgid "Stats"
msgstr "Štatistiky"

#: ../plugins/netstatus/netstatus-iface.c:166
msgid "The interface packets/bytes statistics"
msgstr "Štatistika bajtov/paketov rozhrania"

#: ../plugins/netstatus/netstatus-iface.c:174
msgid "Whether the interface is a wireless interface"
msgstr "Či je rozhranie bezdrôtové"

#: ../plugins/netstatus/netstatus-iface.c:181
msgid "Signal"
msgstr "Signál"

#: ../plugins/netstatus/netstatus-iface.c:182
msgid "Wireless signal strength percentage"
msgstr "Percentá sily bezdrôtového signálu"

#: ../plugins/netstatus/netstatus-iface.c:192
msgid "The current error condition"
msgstr "Aktuálny chybový stav"

#: ../plugins/netstatus/netstatus-iface.c:440
#: ../plugins/netstatus/netstatus-iface.c:1205
#, c-format
msgid "Unable to open socket: %s"
msgstr "Nie je možné otvoriť socket: %s"

#: ../plugins/netstatus/netstatus-iface.c:502
#: ../plugins/netstatus/netstatus-iface.c:1231
#, c-format
msgid "SIOCGIFFLAGS error: %s"
msgstr "Chyba SIOCGIFFLAGS: %s"

#: ../plugins/netstatus/netstatus-iface.c:879
msgid "AMPR NET/ROM"
msgstr "AMPR NET/ROM"

#: ../plugins/netstatus/netstatus-iface.c:882
msgid "Ethernet"
msgstr "Ethernet"

#: ../plugins/netstatus/netstatus-iface.c:888
msgid "AMPR AX.25"
msgstr "AMPR AX.25"

#: ../plugins/netstatus/netstatus-iface.c:897
#: ../plugins/netstatus/netstatus-iface.c:1017
msgid "16/4 Mbps Token Ring"
msgstr "16/4 Mbps Token Ring"

#: ../plugins/netstatus/netstatus-iface.c:900
msgid "ARCnet"
msgstr "ARCnet"

#: ../plugins/netstatus/netstatus-iface.c:906
msgid "Frame Relay DLCI"
msgstr "Frame Relay DLCI"

#: ../plugins/netstatus/netstatus-iface.c:912
msgid "Metricom Starmode IP"
msgstr "Metricom Starmode IP"

#: ../plugins/netstatus/netstatus-iface.c:915
msgid "Serial Line IP"
msgstr "IP na sériovej linke"

#: ../plugins/netstatus/netstatus-iface.c:918
msgid "VJ Serial Line IP"
msgstr "IP na VJ sériovej linke"

#: ../plugins/netstatus/netstatus-iface.c:921
msgid "6-bit Serial Line IP"
msgstr "IP na 6-bitovej sériovej linke"

#: ../plugins/netstatus/netstatus-iface.c:924
msgid "VJ 6-bit Serial Line IP"
msgstr "IP na VJ 6-bitovej sériovej linke"

#: ../plugins/netstatus/netstatus-iface.c:930
msgid "Adaptive Serial Line IP"
msgstr "IP na adaptívnej sériovej linke"

#: ../plugins/netstatus/netstatus-iface.c:933
msgid "AMPR ROSE"
msgstr "AMPR ROSE"

#: ../plugins/netstatus/netstatus-iface.c:936
msgid "Generic X.25"
msgstr "Všeobecný X.25"

#: ../plugins/netstatus/netstatus-iface.c:939
msgid "Point-to-Point Protocol"
msgstr "Point-to-Point Protocol"

#: ../plugins/netstatus/netstatus-iface.c:945
msgid "(Cisco)-HDLC"
msgstr "(Cisco)-HDLC"

#: ../plugins/netstatus/netstatus-iface.c:948
msgid "LAPB"
msgstr "LAPB"

#: ../plugins/netstatus/netstatus-iface.c:957
msgid "IPIP Tunnel"
msgstr "IPIP tunel"

#: ../plugins/netstatus/netstatus-iface.c:963
msgid "Frame Relay Access Device"
msgstr "Prístupové zariadenie Frame Relay"

#: ../plugins/netstatus/netstatus-iface.c:969
msgid "Local Loopback"
msgstr "Lokálne rozhranie (loopback)"

#: ../plugins/netstatus/netstatus-iface.c:975
msgid "Fiber Distributed Data Interface"
msgstr "Fiber Distributed Data Interface"

#: ../plugins/netstatus/netstatus-iface.c:981
msgid "IPv6-in-IPv4"
msgstr "IPv6-in-IPv4"

#: ../plugins/netstatus/netstatus-iface.c:993
msgid "HIPPI"
msgstr "HIPPI"

#: ../plugins/netstatus/netstatus-iface.c:996
msgid "Ash"
msgstr "Ash"

#: ../plugins/netstatus/netstatus-iface.c:999
msgid "Econet"
msgstr "Econet"

#: ../plugins/netstatus/netstatus-iface.c:1002
msgid "IrLAP"
msgstr "IrLAP"

#: ../plugins/netstatus/netstatus-iface.c:1163
#, c-format
msgid "SIOCGIFCONF error: %s"
msgstr "Chyba SIOCGIFCONF: %s"

#: ../plugins/netstatus/netstatus-iface.c:1256
#, c-format
msgid "No network devices found"
msgstr "Neboli nájdené žiadne sieťové zariadenia"

#: ../plugins/netstatus/netstatus-sysdeps.c:180
#, c-format
msgid "Cannot open /proc/net/dev: %s"
msgstr "Nepodarilo sa otvoriť /proc/net/dev: %s"

#: ../plugins/netstatus/netstatus-sysdeps.c:185
#, fuzzy
msgid "Could not parse /proc/net/dev. No data."
msgstr "Nepodarilo sa prečítať /proc/net/dev. Neznámy formát."

#: ../plugins/netstatus/netstatus-sysdeps.c:190
msgid "Could not parse /proc/net/dev. Unknown format."
msgstr "Nepodarilo sa prečítať /proc/net/dev. Neznámy formát."

#: ../plugins/netstatus/netstatus-sysdeps.c:205
#: ../plugins/netstatus/netstatus-sysdeps.c:332
#, c-format
msgid "Could not parse interface name from '%s'"
msgstr "Nepodarilo sa zistiť názov rozhrania z „%s“"

#: ../plugins/netstatus/netstatus-sysdeps.c:218
#: ../plugins/netstatus/netstatus-sysdeps.c:647
#, c-format
msgid ""
"Could not parse interface statistics from '%s'. prx_idx = %d; ptx_idx = %d; "
"brx_idx = %d; btx_idx = %d;"
msgstr ""
"Nepodarili sa zistiť štatistiky rozhrania z „%s“. prx_idx = %d; ptx_idx = "
"%d; brx_idx = %d; btx_idx = %d;"

#: ../plugins/netstatus/netstatus-sysdeps.c:312
msgid "Could not parse /proc/net/wireless. No data."
msgstr "Nepodarilo sa prečítať /proc/net/wireless. Žiadne údaje."

#: ../plugins/netstatus/netstatus-sysdeps.c:316
msgid "Could not parse /proc/net/wireless. Unknown format."
msgstr "Nepodarilo sa prečítať /proc/net/wireless. Neznámy formát."

#: ../plugins/netstatus/netstatus-sysdeps.c:343
#, c-format
msgid "Could not parse wireless details from '%s'. link_idx = %d;"
msgstr ""
"Nepodarili sa zistiť podrobnosti bezdrôtového pripojenia z „%s“. link_idx = "
"%d;"

#: ../plugins/netstatus/netstatus-sysdeps.c:416
#, c-format
msgid "Could not connect to interface, '%s'"
msgstr "Nepodarilo sa pripojiť k rozhraniu, „%s“"

#: ../plugins/netstatus/netstatus-sysdeps.c:422
#, c-format
msgid "Could not send ioctl to interface, '%s'"
msgstr "Nepodarilo sa poslať ioctl rozhraniu, „%s“"

#: ../plugins/netstatus/netstatus-sysdeps.c:600
#, c-format
msgid "Could not parse command line '%s': %s"
msgstr "Nepodarilo sa analyzovať príkazový riadok „%s“: %s"

#: ../plugins/netstatus/netstatus-sysdeps.c:637
msgid "Could not parse 'netstat' output. Unknown format"
msgstr "Nepodarilo sa prečítať výstup „netstat“. Neznámy formát."

#: ../plugins/netstatus/netstatus-util.c:152
msgid "Disconnected"
msgstr "Odpojené"

#: ../plugins/netstatus/netstatus-util.c:155
msgid "Idle"
msgstr "Nečinné"

#: ../plugins/netstatus/netstatus-util.c:158
msgid "Sending"
msgstr "Posiela sa"

#: ../plugins/netstatus/netstatus-util.c:161
msgid "Receiving"
msgstr "Prijíma"

#: ../plugins/netstatus/netstatus-util.c:164
msgid "Sending/Receiving"
msgstr "Odosiela/prijíma"

#: ../plugins/batt/batt.c:155
#, c-format
msgid "Battery %d: %d%% charged, %d:%02d until full"
msgstr "Batéria %d: nabitá na %d %%, %d:%02d do plného nabitia"

#: ../plugins/batt/batt.c:169
#, c-format
msgid "Battery %d: %d%% charged, %d:%02d left"
msgstr "Batéria %d: nabitá na %d %%, %d: zostáva %02d"

#: ../plugins/batt/batt.c:176
#, c-format
msgid "Battery %d: %d%% charged"
msgstr "Batéria %d: nabitá na %d %%"

#: ../plugins/batt/batt.c:186
#, c-format
msgid ""
"\n"
"%sEnergy full design:\t\t%5d mWh"
msgstr ""

#: ../plugins/batt/batt.c:188
#, c-format
msgid ""
"\n"
"%sEnergy full:\t\t\t%5d mWh"
msgstr ""

#: ../plugins/batt/batt.c:190
#, c-format
msgid ""
"\n"
"%sEnergy now:\t\t\t%5d mWh"
msgstr ""

#: ../plugins/batt/batt.c:192
#, c-format
msgid ""
"\n"
"%sPower now:\t\t\t%5d mW"
msgstr ""

#: ../plugins/batt/batt.c:195
#, c-format
msgid ""
"\n"
"%sCharge full design:\t%5d mAh"
msgstr ""

#: ../plugins/batt/batt.c:197
#, c-format
msgid ""
"\n"
"%sCharge full:\t\t\t%5d mAh"
msgstr ""

#: ../plugins/batt/batt.c:199
#, c-format
msgid ""
"\n"
"%sCharge now:\t\t\t%5d mAh"
msgstr ""

#: ../plugins/batt/batt.c:201
#, c-format
msgid ""
"\n"
"%sCurrent now:\t\t\t%5d mA"
msgstr ""

#: ../plugins/batt/batt.c:204
#, c-format
msgid ""
"\n"
"%sCurrent Voltage:\t\t%.3lf V"
msgstr ""

#: ../plugins/batt/batt.c:242
msgid "No batteries found"
msgstr "Neboli nájdené batérie"

#: ../plugins/batt/batt.c:542 ../plugins/batt/batt.c:675
msgid "Battery low"
msgstr "Slabá batéria"

#: ../plugins/batt/batt.c:698 ../plugins/batt/batt.c:722
msgid "Battery Monitor"
msgstr "Monitor batérie"

#: ../plugins/batt/batt.c:700
msgid "Hide if there is no battery"
msgstr "Skryť ak neexistujú batérie"

#: ../plugins/batt/batt.c:701
msgid "Alarm command"
msgstr "Príkaz budíka"

#: ../plugins/batt/batt.c:702
msgid "Alarm time (minutes left)"
msgstr "Čas budíka (zostáva minút)"

#: ../plugins/batt/batt.c:703
msgid "Background color"
msgstr "Farba pozadia"

#: ../plugins/batt/batt.c:704
msgid "Charging color 1"
msgstr "Farba nabíjania 1"

#: ../plugins/batt/batt.c:705
msgid "Charging color 2"
msgstr "Farba nabíjania 2"

#: ../plugins/batt/batt.c:706
msgid "Discharging color 1"
msgstr "Farba vybíjania 1"

#: ../plugins/batt/batt.c:707
msgid "Discharging color 2"
msgstr "Farba vybíjania 2"

#: ../plugins/batt/batt.c:708
msgid "Border width"
msgstr "Šírka okraja"

#: ../plugins/batt/batt.c:712
msgid "Show Extended Information"
msgstr "Zobraziť rozširujúce informácie"

#: ../plugins/batt/batt.c:713
msgid "Number of battery to monitor"
msgstr "Počet batérií na monitorovanie"

#: ../plugins/batt/batt.c:723
msgid "Display battery status using ACPI"
msgstr "Zobrazovať stav batérie pomocou ACPI"

#: ../plugins/kbled/kbled.c:203 ../plugins/kbled/kbled.c:234
msgid "Keyboard LED"
msgstr "LED klávesnice"

#: ../plugins/kbled/kbled.c:205
msgid "Show CapsLock"
msgstr "Zobrazovať CapsLock"

#: ../plugins/kbled/kbled.c:206
msgid "Show NumLock"
msgstr "Zobrazovať NumLock"

#: ../plugins/kbled/kbled.c:207
msgid "Show ScrollLock"
msgstr "Zobrazovať ScrollLock"

#: ../plugins/kbled/kbled.c:235
msgid "Indicators for CapsLock, NumLock, and ScrollLock keys"
msgstr "Indikátory stavu klávesov CapsLock, NumLock a ScrollLock"

#. A label to allow for click through
#: ../plugins/indicator/indicator.c:694
msgid "No Indicators"
msgstr ""

#: ../plugins/indicator/indicator.c:863 ../plugins/indicator/indicator.c:881
msgid "Indicator applets"
msgstr ""

#: ../plugins/indicator/indicator.c:865
#, fuzzy
msgid "Indicator Applications"
msgstr "Aplikácie"

#: ../plugins/indicator/indicator.c:866
msgid "Clock Indicator"
msgstr ""

#: ../plugins/indicator/indicator.c:867
msgid "Messaging Menu"
msgstr ""

#: ../plugins/indicator/indicator.c:868
#, fuzzy
msgid "Network Menu"
msgstr "Menu adresára"

#: ../plugins/indicator/indicator.c:869
msgid "Session Menu"
msgstr ""

#: ../plugins/indicator/indicator.c:870
#, fuzzy
msgid "Sound Menu"
msgstr "Poskytnúť ponuku"

#: ../plugins/indicator/indicator.c:882
#, fuzzy
msgid "Add indicator applets to the panel"
msgstr "Pridať oddeľovač do panela"

#: ../plugins/monitors/monitors.c:285
#, c-format
msgid "CPU usage: %.2f%%"
msgstr "Využitie CPU: %.2f%%"

#: ../plugins/monitors/monitors.c:386
#, c-format
msgid "RAM usage: %.1fMB (%.2f%%)"
msgstr "Využitie RAM: %.1fMB (%.2f%%)"

#: ../plugins/monitors/monitors.c:732 ../plugins/monitors/monitors.c:821
#, fuzzy
msgid "Resource monitors"
msgstr "Monitorovať rozhranie"

#: ../plugins/monitors/monitors.c:735
msgid "CPU color"
msgstr "Farba CPU"

#: ../plugins/monitors/monitors.c:736
msgid "Display RAM usage"
msgstr "Zobraziť využitie RAM"

#: ../plugins/monitors/monitors.c:737
msgid "RAM color"
msgstr "Farba RAM"

#: ../plugins/monitors/monitors.c:738
msgid "Action when clicked (default: lxtask)"
msgstr "Operácia po kliknutí (predvolená: lxtask)"

#: ../plugins/monitors/monitors.c:822
msgid "Display monitors (CPU, RAM)"
msgstr "Zobraziť monitory (CPU, RAM)"

#: ../plugins/weather/weatherwidget.c:52
msgid "[N/A]"
msgstr "[N/A]"

#: ../plugins/weather/weatherwidget.c:807
msgid "Enter New Location"
msgstr "Zadajte nové umiestnenie"

#: ../plugins/weather/weatherwidget.c:821
msgid "_New Location:"
msgstr "_Nové umiestnenie:"

#: ../plugins/weather/weatherwidget.c:832
msgid ""
"Enter the:\n"
"- city, or\n"
"- city and state/country, or\n"
"- postal code\n"
"for which to retrieve the weather forecast."
msgstr ""

#: ../plugins/weather/weatherwidget.c:869
#: ../plugins/weather/weatherwidget.c:1002
msgid "You must specify a location."
msgstr "Musíte zadať umiestnenie."

#: ../plugins/weather/weatherwidget.c:916
#, c-format
msgid "Location '%s' not found!"
msgstr "Umiestnenie '%s' sa nenašlo!"

#: ../plugins/weather/weatherwidget.c:1075
msgid "Preferences"
msgstr "Predvoľby"

#: ../plugins/weather/weatherwidget.c:1081
msgid "Refresh"
msgstr "Obnoviť"

#: ../plugins/weather/weatherwidget.c:1087
msgid "Quit"
msgstr "Ukončiť"

#: ../plugins/weather/weatherwidget.c:1254
msgid "Weather Preferences"
msgstr "Predvoľby počasia"

#: ../plugins/weather/weatherwidget.c:1268
msgid "Current Location"
msgstr "Súčasná poloha"

#: ../plugins/weather/weatherwidget.c:1272
#: ../plugins/weather/weatherwidget.c:1574
#, fuzzy
msgid "None configured"
msgstr "Kon_figurácia"

#: ../plugins/weather/weatherwidget.c:1274
#: ../plugins/weather/weatherwidget.c:1571
msgid "_Set"
msgstr "Na_staviť"

#: ../plugins/weather/weatherwidget.c:1295
msgid "Display"
msgstr ""

#: ../plugins/weather/weatherwidget.c:1299
#, fuzzy
msgid "Name:"
msgstr "_Názov:"

#: ../plugins/weather/weatherwidget.c:1303
msgid "Units:"
msgstr "Jednotky:"

#: ../plugins/weather/weatherwidget.c:1307
msgid "_Metric (°C)"
msgstr "_Metrické (°C)"

#: ../plugins/weather/weatherwidget.c:1309
msgid "_English (°F)"
msgstr "_Anglické (°F)"

#: ../plugins/weather/weatherwidget.c:1344
msgid "Forecast"
msgstr "Predpoveď"

#: ../plugins/weather/weatherwidget.c:1348
msgid "Updates:"
msgstr "Aktualizácie:"

#: ../plugins/weather/weatherwidget.c:1352
msgid "Ma_nual"
msgstr "Ma_nuálne"

#: ../plugins/weather/weatherwidget.c:1356
msgid "_Automatic, every"
msgstr "_Automatické, každých"

#: ../plugins/weather/weatherwidget.c:1377
msgid "minutes"
msgstr "minút"

#: ../plugins/weather/weatherwidget.c:1386
msgid "Source:"
msgstr "Zdroj:"

#: ../plugins/weather/weatherwidget.c:1522
msgid "C_hange"
msgstr ""

#. Both are available
#: ../plugins/weather/weatherwidget.c:1613
#, c-format
msgid "Current Conditions for %s"
msgstr "Aktuálna predpoveď pre %s"

#: ../plugins/weather/weatherwidget.c:1637
msgid "Location:"
msgstr "Poloha:"

#: ../plugins/weather/weatherwidget.c:1660
msgid "Last updated:"
msgstr "Posledná aktualizácia:"

#: ../plugins/weather/weatherwidget.c:1694
msgid "Feels like:"
msgstr ""

#: ../plugins/weather/weatherwidget.c:1720
msgid "Humidity:"
msgstr "Vlhkosť:"

#: ../plugins/weather/weatherwidget.c:1747
msgid "Pressure:"
msgstr "Tlak:"

#: ../plugins/weather/weatherwidget.c:1774
msgid "Visibility:"
msgstr "Viditeľnosť:"

#: ../plugins/weather/weatherwidget.c:1802
msgid "Wind:"
msgstr "Vietor:"

#: ../plugins/weather/weatherwidget.c:1825
msgid "Sunrise:"
msgstr "Východ slnka:"

#: ../plugins/weather/weatherwidget.c:1848
msgid "Sunset:"
msgstr "Západ slnka:"

#: ../plugins/weather/weatherwidget.c:1954
#: ../plugins/weather/weatherwidget.c:2295
#, c-format
msgid "Forecast for %s unavailable."
msgstr "Predpoveď pre %s nie je dostupná."

#: ../plugins/weather/weatherwidget.c:1963
#: ../plugins/weather/weatherwidget.c:2300
#, c-format
msgid "Location not set."
msgstr "Umiestnenie nie je zadané."

#: ../plugins/weather/weatherwidget.c:1980
#, c-format
msgid "Searching for '%s'..."
msgstr "Vyhľadáva sa '%s'..."

#: ../plugins/weather/weatherwidget.c:2106
#, c-format
msgid "Location matches for '%s'"
msgstr ""

#: ../plugins/weather/weatherwidget.c:2126
msgid "City"
msgstr "Mesto"

#: ../plugins/weather/weatherwidget.c:2146
msgid "Country"
msgstr "Krajina"

#. make it nice and pretty
#: ../plugins/weather/weatherwidget.c:2278
#, fuzzy
msgid "Currently in "
msgstr "Momentálne načítané moduly"

#: ../plugins/weather/weatherwidget.c:2281
msgid "Today: "
msgstr "Dnes:"

#: ../plugins/weather/weatherwidget.c:2282
msgid "Tomorrow: "
msgstr "Zajtra:"

#: ../plugins/weather/weather.c:419
msgid "Weather Plugin"
msgstr "Predpoveď počasia"

#: ../plugins/weather/weather.c:420
msgid "Show weather conditions for a location."
msgstr "Zobrazí predpoveď počasia pre danú lokáciu."

#: ../plugins/weather/yahooutil.c:51
msgid "N"
msgstr ""

#: ../plugins/weather/yahooutil.c:52
msgid "NNE"
msgstr ""

#: ../plugins/weather/yahooutil.c:53
msgid "NE"
msgstr ""

#: ../plugins/weather/yahooutil.c:54
msgid "ENE"
msgstr ""

#: ../plugins/weather/yahooutil.c:55
msgid "E"
msgstr ""

#: ../plugins/weather/yahooutil.c:56
msgid "ESE"
msgstr ""

#: ../plugins/weather/yahooutil.c:57
msgid "SE"
msgstr ""

#: ../plugins/weather/yahooutil.c:58
msgid "SSE"
msgstr ""

#: ../plugins/weather/yahooutil.c:59
msgid "S"
msgstr ""

#: ../plugins/weather/yahooutil.c:60
msgid "SSW"
msgstr ""

#: ../plugins/weather/yahooutil.c:61
msgid "SW"
msgstr ""

#: ../plugins/weather/yahooutil.c:62
msgid "WSW"
msgstr ""

#: ../plugins/weather/yahooutil.c:63
msgid "W"
msgstr ""

#: ../plugins/weather/yahooutil.c:64
msgid "WNW"
msgstr ""

#: ../plugins/weather/yahooutil.c:65
msgid "NW"
msgstr ""

#: ../plugins/weather/yahooutil.c:66
msgid "NNW"
msgstr ""

#: ../plugins/weather/yahooutil.c:1086
msgid "Yahoo! Weather"
msgstr ""

#: ../plugins/weather/openweathermap.c:347
msgid "Mph"
msgstr ""

#: ../plugins/weather/openweathermap.c:347
msgid "m/s"
msgstr ""

#: ../plugins/weather/openweathermap.c:501
msgid "m"
msgstr ""

#: ../plugins/weather/openweathermap.c:916
msgid "OpenWeatherMap"
msgstr ""

#~ msgid " --log <number> -- set log level 0-5. 0 - none 5 - chatty\n"
#~ msgstr ""
#~ " --log <číslo>  -- nastaviť podrobnosti záznamu 0-5. 0 - žiadny 5 - "
#~ "podrobný\n"

#~ msgid "Display Image and Tooltip"
#~ msgstr "Zobraziť obrázok a bublinový tip"

#~ msgid "Normal"
#~ msgstr "Normálne"

#~ msgid "Warning1"
#~ msgstr "Upozornenie1"

#~ msgid "Warning2"
#~ msgstr "Upozornenie2"

#~ msgid "Failed to launch time configuration tool: %s"
#~ msgstr "Nepodarilo sa spustiť nástroj na nastavenie času: %s"

#~ msgid "<b>Icon</b>"
#~ msgstr "<b>Ikona</b>"

#~ msgid "Configure Keyboard Layout Switcher"
#~ msgstr "Nastaviť Prepínanie rozloženia klávesnice"

#~ msgid "image"
#~ msgstr "obrázok"

#~ msgid "text"
#~ msgstr "text"

#~ msgid "Per application settings"
#~ msgstr "Podľa nastavenia aplikácie"

#~ msgid "Default layout:"
#~ msgstr "Štandardné rozloženie:"

#~ msgid "Available Applications"
#~ msgstr "Dostupné aplikácie"

#~ msgid "Display system temperature, by kesler.daniel@gmail.com"
#~ msgstr "Zobrazenie teploty systému, kesler.daniel@gmail.com"

#~ msgid "Left\t"
#~ msgstr "Vľavo\t"

#~ msgid "Top\t"
#~ msgstr "Hore\t"

#~ msgid "Couldn't find pixmap file: %s"
#~ msgstr "Nebol nájdený súbor pixmap: %s"

#~ msgid "Desktop No / Workspace Name"
#~ msgstr "Č. plochy / Názov plochy"

#~ msgid ""
#~ "Allows you to switch the keyboard layout and\n"
#~ "displays the currently selected layout."
#~ msgstr ""
#~ "Umožňuje vám prepínať rozloženie klávesnice\n"
#~ "zobrazuje práve vybrané rozloženie."

#~ msgid "Other plugins available here"
#~ msgstr "Ostatné zásuvné moduly sú dostupné tu"

#~ msgid "Old KDE/GNOME Tray"
#~ msgstr "Stará oznamovacia oblasť KDE/GNOME"

#~ msgid "Enable Image:"
#~ msgstr "Zapnúť obrázok:"

#~ msgid "Enable Transparency"
#~ msgstr "Zapnúť priesvitnosť"

#~ msgid " --configure -- launch configuration utility\n"
#~ msgstr " --configure -- spustiť konfiguračný nástroj\n"

#~ msgid " -C  -- same as --configure\n"
#~ msgstr " -C  -- ekvivalent --configure\n"

#~ msgid "Add Button"
#~ msgstr "Pridať tlačidlo"

#~ msgid "Button Properties"
#~ msgstr "Vlastnosti tlačidla"

#~ msgid "Remove Button"
#~ msgstr "Odstrániť tlačidlo"

#~ msgid "Buttons"
#~ msgstr "Tlačidlá"

#~ msgid "Accept SkipPager"
#~ msgstr "Prijať SkipPager"

#~ msgid "Show Iconified windows"
#~ msgstr "Zobraziť ikonifikované okná"

#~ msgid "Show mapped windows"
#~ msgstr "Zobraziť mapované okná"

#~ msgid "Action"
#~ msgstr "Činnosť"

#~ msgid "Kayboard Layout switcher"
#~ msgstr "Prepínanie rozloženia klávesnice"

#~ msgid ""
#~ "Dynamic\n"
#~ "Pixels\n"
#~ "% Percent"
#~ msgstr ""
#~ "Dynamicky\n"
#~ "Pixelov\n"
#~ "% percent"

#~ msgid ""
#~ "Left\n"
#~ "Center\n"
#~ "Right"
#~ msgstr ""
#~ "Vľavo\n"
#~ "Na stred\n"
#~ "Vpravo"

#~ msgid ""
#~ "Left\n"
#~ "Right\n"
#~ "Top\n"
#~ "Bottom"
#~ msgstr ""
#~ "Vľavo\n"
#~ "Vpravo\n"
#~ "Hore\n"
#~ "Dolu"

#~ msgid "Where to put the panel?"
#~ msgstr "Kam umiestniť panel?"

#~ msgid "Battery: %d%% charged, %s"
#~ msgstr "Batéria: nabitá na %d %%, %s"

#~ msgid "charging finished"
#~ msgstr "nabíjanie dokončené"

#~ msgid "charging"
#~ msgstr "nabíja sa"

#, fuzzy
#~ msgid "Add to desktop panel"
#~ msgstr "Pridať modul do panela"

#~ msgid "Development"
#~ msgstr "Vývoj"

#~ msgid "Graphics"
#~ msgstr "Grafika"

#~ msgid "System Tools"
#~ msgstr "Systémové nástroje"

#~ msgid "Office"
#~ msgstr "Kancelária"

#~ msgid "Accessories"
#~ msgstr "Príslušenstvo"

#~ msgid "% of edge"
#~ msgstr "% okraja"

#~ msgid "Plugins"
#~ msgstr "Moduly"

#, fuzzy
#~ msgid "Logout Command"
#~ msgstr "Príkaz na odhlásenie:"

#~ msgid "lxpanel configurator"
#~ msgstr "Konfigurátor lxpanel"

#~ msgid "Set Dock Type"
#~ msgstr "Dokk típus beállítása"

#~ msgid "_Add"
#~ msgstr "新增(_A)"

#~ msgid "_Remove"
#~ msgstr "移除(_R)"

#~ msgid "Right-click to get context menu. Drag & Drop to change order."
#~ msgstr "可以按右鍵使用選單,用拖曳改變順序"

#~ msgid "Plugins..."
#~ msgstr "外掛..."