File: sk.po

package info (click to toggle)
gimp 2.10.8-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 218,716 kB
  • sloc: ansic: 787,125; makefile: 11,685; python: 6,198; lisp: 5,456; sh: 4,486; cpp: 4,114; perl: 3,807; xml: 1,481; yacc: 588; lex: 342
file content (2256 lines) | stat: -rw-r--r-- 58,251 bytes parent folder | download | duplicates (2)
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
# translation of gimp-script-fu.HEAD.po to Slovak
# translation of gimp-script-fu.HEAD.sk.po to Slovak
# gimp-script-fu sk.po
# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
# Zdenko Podobný <zdpo@mailbox.sk>, 2002,2003, 2004.
# Marcel Telka <marcel@telka.sk>, 2005.
# Dušan Kazik <prescott66@gmail.com>, 2015.
#
# $Id$
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-script-fu\n"
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gimp/issues\n"
"POT-Creation-Date: 2016-02-13 07:16+0000\n"
"PO-Revision-Date: 2016-02-13 17:12+0100\n"
"Last-Translator: Dušan Kazik <prescott66@gmail.com>\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"
"X-Generator: Poedit 1.8.7\n"

#: ../plug-ins/script-fu/script-fu.c:111
msgid "Interactive console for Script-Fu development"
msgstr "Interaktívna konzola pre vývoj skriptov Script-Fu"

#: ../plug-ins/script-fu/script-fu.c:117
msgid "_Console"
msgstr "_Konzola"

#: ../plug-ins/script-fu/script-fu.c:141
msgid "Server for remote Script-Fu operation"
msgstr "Server pre vzdialené operácie skriptu Script-Fu"

#: ../plug-ins/script-fu/script-fu.c:151
msgid "_Start Server..."
msgstr "Štart _servera..."

#: ../plug-ins/script-fu/script-fu.c:306
msgid "_GIMP Online"
msgstr "_GIMP online"

#: ../plug-ins/script-fu/script-fu.c:307
msgid "_User Manual"
msgstr "_Používateľská príručka"

#: ../plug-ins/script-fu/script-fu.c:310
msgid "_Script-Fu"
msgstr "_Script-Fu"

#: ../plug-ins/script-fu/script-fu.c:312
msgid "_Test"
msgstr "_Test"

#: ../plug-ins/script-fu/script-fu.c:315
msgid "_Buttons"
msgstr "_Tlačidlá"

#: ../plug-ins/script-fu/script-fu.c:317
msgid "_Logos"
msgstr "_Logá"

#: ../plug-ins/script-fu/script-fu.c:319
msgid "_Patterns"
msgstr "_Vzorky"

#: ../plug-ins/script-fu/script-fu.c:322
msgid "_Web Page Themes"
msgstr "Témy _www stránky"

#: ../plug-ins/script-fu/script-fu.c:324
msgid "_Alien Glow"
msgstr "Mimo_zemská žiara"

#: ../plug-ins/script-fu/script-fu.c:326
msgid "_Beveled Pattern"
msgstr "_Skosená vzorka"

#: ../plug-ins/script-fu/script-fu.c:328
msgid "_Classic.Gimp.Org"
msgstr "_Classic.Gimp.Org"

#: ../plug-ins/script-fu/script-fu.c:331
msgid "Alpha to _Logo"
msgstr "Alfa do _loga"

#: ../plug-ins/script-fu/script-fu.c:334
msgid "Re-read all available Script-Fu scripts"
msgstr "Znovu načítať všetky dostupné skripty Script-Fu"

#: ../plug-ins/script-fu/script-fu.c:339
msgid "_Refresh Scripts"
msgstr "_Znovunačítať skripty"

#: ../plug-ins/script-fu/script-fu.c:362
msgid ""
"You can not use \"Refresh Scripts\" while a Script-Fu dialog box is open.  "
"Please close all Script-Fu windows and try again."
msgstr ""
"Nemôžete použiť „Obnoviť skripty“ pokiaľ je otvorené dialógové okno Script-"
"Fu. Prosím, zavrite všetky okná Script-Fu a skúste to znovu."

#: ../plug-ins/script-fu/script-fu-console.c:127
#: ../plug-ins/script-fu/script-fu-console.c:194
msgid "Script-Fu Console"
msgstr "Script-Fu konzola"

#: ../plug-ins/script-fu/script-fu-console.c:190
msgid "Welcome to TinyScheme"
msgstr "Vitajte v TinyScheme"

#: ../plug-ins/script-fu/script-fu-console.c:196
msgid "Interactive Scheme Development"
msgstr "Vývoj interaktívnej schémy"

#: ../plug-ins/script-fu/script-fu-console.c:232
msgid "_Browse..."
msgstr "_Prehliadať..."

# dialog title
#: ../plug-ins/script-fu/script-fu-console.c:288
msgid "Save Script-Fu Console Output"
msgstr "Uloženie výstupu konzoly skriptu Script-Fu"

#: ../plug-ins/script-fu/script-fu-console.c:335
#, c-format
msgid "Could not open '%s' for writing: %s"
msgstr "Nie je možné otvoriť „%s“ pre zápis: %s"

#: ../plug-ins/script-fu/script-fu-console.c:364
msgid "Script-Fu Procedure Browser"
msgstr "Prehliadač procedúr Script-Fu"

#: ../plug-ins/script-fu/script-fu-eval.c:60
msgid "Script-Fu evaluation mode only allows non-interactive invocation"
msgstr "Skúšobný režim Script-Fu umožňuje iba neinteraktívne vyvolanie"

#: ../plug-ins/script-fu/script-fu-interface.c:200
msgid "Script-Fu cannot process two scripts at the same time."
msgstr "Script-Fu nemôže spracovať dva skritpy v rovnakom čase"

#: ../plug-ins/script-fu/script-fu-interface.c:202
#, c-format
msgid "You are already running the \"%s\" script."
msgstr "Už spúšťate skript  „%s“."

#: ../plug-ins/script-fu/script-fu-interface.c:228
#, c-format
msgid "Script-Fu: %s"
msgstr "Script-Fu: %s"

#. we add a colon after the label;
#. *  some languages want an extra space here
#.
#: ../plug-ins/script-fu/script-fu-interface.c:291
#, c-format
msgid "%s:"
msgstr "%s:"

#: ../plug-ins/script-fu/script-fu-interface.c:338
msgid "Script-Fu Color Selection"
msgstr "Script-Fu výber farby"

#: ../plug-ins/script-fu/script-fu-interface.c:448
msgid "Script-Fu File Selection"
msgstr "Script-Fu výber súboru"

#: ../plug-ins/script-fu/script-fu-interface.c:451
msgid "Script-Fu Folder Selection"
msgstr "Script-Fu výber priečinka"

#: ../plug-ins/script-fu/script-fu-interface.c:464
msgid "Script-Fu Font Selection"
msgstr "Script-Fu výber písma"

#: ../plug-ins/script-fu/script-fu-interface.c:472
msgid "Script-Fu Palette Selection"
msgstr "Script-Fu výber farby"

#: ../plug-ins/script-fu/script-fu-interface.c:481
msgid "Script-Fu Pattern Selection"
msgstr "Script-Fu výber vzorky"

#: ../plug-ins/script-fu/script-fu-interface.c:490
msgid "Script-Fu Gradient Selection"
msgstr "Script-Fu výber prechodu"

#: ../plug-ins/script-fu/script-fu-interface.c:499
msgid "Script-Fu Brush Selection"
msgstr "Script-Fu výber štetca"

#: ../plug-ins/script-fu/script-fu-interface.c:868
#, c-format
msgid "Error while executing %s:"
msgstr "Chyba počas spúšťania %s:"

#: ../plug-ins/script-fu/script-fu-scripts.c:149
msgid "Too few arguments to 'script-fu-register' call"
msgstr "Príliš málo parametrov na volanie „script-fu-register“"

#: ../plug-ins/script-fu/script-fu-scripts.c:648
#, c-format
msgid "Error while loading %s:"
msgstr "Chyba počas načítavania %s:"

#: ../plug-ins/script-fu/script-fu-server.c:827
msgid "Script-Fu Server Options"
msgstr "Nastavenia Script-Fu servera"

#: ../plug-ins/script-fu/script-fu-server.c:832
msgid "_Start Server"
msgstr "_Spustiť server"

#: ../plug-ins/script-fu/script-fu-server.c:865
msgid "Listen on IP:"
msgstr "Počúvať na IP:"

#: ../plug-ins/script-fu/script-fu-server.c:872
msgid "Server port:"
msgstr "Port servera:"

#: ../plug-ins/script-fu/script-fu-server.c:878
msgid "Server logfile:"
msgstr "Súbor záznamov servera:"

#: ../plug-ins/script-fu/script-fu-server.c:891
msgid ""
"Listening on an IP address other than 127.0.0.1 (especially 0.0.0.0) can "
"allow attackers to remotely execute arbitrary code on this machine."
msgstr ""
"Počúvaním na IP adrese inej ako 127.0.0.1 (obzvlášť 0.0.0.0) umožníte "
"útočníkom vzdialene spustiť ľubovoľný kód na tomto počítači."

#: ../plug-ins/script-fu/scripts/add-bevel.scm:76
msgid "Bumpmap"
msgstr "Mapa vyvýšenia"

#: ../plug-ins/script-fu/scripts/add-bevel.scm:185
msgid "Add B_evel..."
msgstr "Pridať _skosenie..."

#: ../plug-ins/script-fu/scripts/add-bevel.scm:186
msgid "Add a beveled border to an image"
msgstr "Pridá skosený okraj do obrázku"

#: ../plug-ins/script-fu/scripts/add-bevel.scm:193
msgid "Thickness"
msgstr "Hrúbka"

#: ../plug-ins/script-fu/scripts/add-bevel.scm:194
#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:160
#: ../plug-ins/script-fu/scripts/old-photo.scm:104
#: ../plug-ins/script-fu/scripts/round-corners.scm:143
#: ../plug-ins/script-fu/scripts/slide.scm:248
#: ../plug-ins/script-fu/scripts/spinning-globe.scm:106
msgid "Work on copy"
msgstr "Pracovať s kópiou"

#: ../plug-ins/script-fu/scripts/add-bevel.scm:195
msgid "Keep bump layer"
msgstr "Uchovať vrstvu vyvýšenia"

#: ../plug-ins/script-fu/scripts/addborder.scm:108
msgid "Border Layer"
msgstr "Vrstva okraju"

#: ../plug-ins/script-fu/scripts/addborder.scm:160
msgid "Add _Border..."
msgstr "Pridať o_kraj..."

#: ../plug-ins/script-fu/scripts/addborder.scm:161
msgid "Add a border around an image"
msgstr "Pridá okraj okolo obrázku"

#: ../plug-ins/script-fu/scripts/addborder.scm:168
msgid "Border X size"
msgstr "Veľkosť okraja X"

#: ../plug-ins/script-fu/scripts/addborder.scm:169
msgid "Border Y size"
msgstr "Veľkosť okraja Y"

#: ../plug-ins/script-fu/scripts/addborder.scm:170
msgid "Border color"
msgstr "Farba okraja"

#: ../plug-ins/script-fu/scripts/addborder.scm:171
msgid "Delta value on color"
msgstr "Delta hodnota farby"

#: ../plug-ins/script-fu/scripts/blend-anim.scm:206
#: ../plug-ins/script-fu/scripts/spyrogimp.scm:327
msgid "Frame"
msgstr "Rám"

#: ../plug-ins/script-fu/scripts/blend-anim.scm:222
msgid "Blend Animation needs at least three source layers"
msgstr ""

#: ../plug-ins/script-fu/scripts/blend-anim.scm:228
msgid "_Blend..."
msgstr "_Miešať..."

#: ../plug-ins/script-fu/scripts/blend-anim.scm:229
msgid ""
"Create intermediate layers to blend two or more layers over a background as "
"an animation"
msgstr ""

#: ../plug-ins/script-fu/scripts/blend-anim.scm:236
msgid "Intermediate frames"
msgstr "Medziľahlé políčka"

#: ../plug-ins/script-fu/scripts/blend-anim.scm:237
msgid "Max. blur radius"
msgstr "Max. polomer rozmazania"

#: ../plug-ins/script-fu/scripts/blend-anim.scm:238
msgid "Looped"
msgstr "Slučka"

#. --- false form of "if-1"
#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:212
msgid ""
"The Burn-In script needs two layers in total. A foreground layer with "
"transparency and a background layer."
msgstr ""

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:219
msgid "B_urn-In..."
msgstr "_Vpálenie..."

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:220
msgid ""
"Create intermediate layers to produce an animated 'burn-in' transition "
"between two layers"
msgstr ""

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:227
msgid "Glow color"
msgstr "Farba žiary"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:228
msgid "Fadeout"
msgstr "Zanikanie"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:229
msgid "Fadeout width"
msgstr "Šírka miznutia"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:230
msgid "Corona width"
msgstr "Šírka korony"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:231
msgid "After glow"
msgstr "Po žiare"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:232
msgid "Add glowing"
msgstr "Pridať vyžarovanie"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:233
msgid "Prepare for GIF"
msgstr "Prepraviť pre GIF"

#: ../plug-ins/script-fu/scripts/burn-in-anim.scm:234
msgid "Speed (pixels/frame)"
msgstr "Rýchlosť (body/políčko)"

#: ../plug-ins/script-fu/scripts/carve-it.scm:168
msgid "Carved Surface"
msgstr ""

#: ../plug-ins/script-fu/scripts/carve-it.scm:169
msgid "Bevel Shadow"
msgstr "Tieň skosenia"

#: ../plug-ins/script-fu/scripts/carve-it.scm:170
msgid "Bevel Highlight"
msgstr "Zvýraznenie skosenia"

#: ../plug-ins/script-fu/scripts/carve-it.scm:171
#, fuzzy
msgid "Cast Shadow"
msgstr "Vytvoriť tieň"

#: ../plug-ins/script-fu/scripts/carve-it.scm:172
msgid "Inset"
msgstr ""

#: ../plug-ins/script-fu/scripts/carve-it.scm:182
msgid "Stencil C_arve..."
msgstr "Šablóna _vyrezania..."

#: ../plug-ins/script-fu/scripts/carve-it.scm:183
msgid ""
"Use the specified drawable as a stencil to carve from the specified image."
msgstr ""

#: ../plug-ins/script-fu/scripts/carve-it.scm:190
msgid "Image to carve"
msgstr "Obrázok na vyrezanie"

#: ../plug-ins/script-fu/scripts/carve-it.scm:191
msgid "Carve white areas"
msgstr "Vyrezať biele oblasti"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:103
msgid "Background"
msgstr "Pozadie"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:104
msgid "Layer 1"
msgstr "Vrstva 1"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:105
msgid "Layer 2"
msgstr "Vrstva 2"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:106
msgid "Layer 3"
msgstr "Vrstva 3"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:107
msgid "Drop Shadow"
msgstr "Vrhnúť tieň"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:201
msgid "Chrome"
msgstr "Chróm"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:202
#: ../plug-ins/script-fu/scripts/xach-effect.scm:68
msgid "Highlight"
msgstr "Zvýrazniť"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:214
msgid "Stencil C_hrome..."
msgstr "Šablóna c_hrómovania..."

#: ../plug-ins/script-fu/scripts/chrome-it.scm:215
msgid ""
"Add a chrome effect to the selected region (or alpha) using a specified "
"(grayscale) stencil"
msgstr ""

#: ../plug-ins/script-fu/scripts/chrome-it.scm:222
msgid "Chrome saturation"
msgstr "Sýtosť chrómovania"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:223
msgid "Chrome lightness"
msgstr "Svetlosť chrómovania"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:224
msgid "Chrome factor"
msgstr "Faktor chrómovania"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:225
msgid "Environment map"
msgstr "Mapa prostredia"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:228
msgid "Highlight balance"
msgstr "Vyváženie svetiel"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:229
msgid "Chrome balance"
msgstr "Vyváženosť chrómovania"

#: ../plug-ins/script-fu/scripts/chrome-it.scm:230
msgid "Chrome white areas"
msgstr "Pochrómovať biele oblasti"

#: ../plug-ins/script-fu/scripts/circuit.scm:74
msgid "Effect layer"
msgstr "Vrstva efektov"

#: ../plug-ins/script-fu/scripts/circuit.scm:127
msgid "_Circuit..."
msgstr "O_bvod..."

#: ../plug-ins/script-fu/scripts/circuit.scm:128
msgid ""
"Fill the selected region (or alpha) with traces like those on a circuit board"
msgstr ""

#: ../plug-ins/script-fu/scripts/circuit.scm:135
msgid "Oilify mask size"
msgstr "Veľkosť masky olejomaľby"

#: ../plug-ins/script-fu/scripts/circuit.scm:136
msgid "Circuit seed"
msgstr "Hniezdo okruhu"

#: ../plug-ins/script-fu/scripts/circuit.scm:137
msgid "No background (only for separate layer)"
msgstr "Bez pozadia (iba pre oddelenú vrstvu)"

#: ../plug-ins/script-fu/scripts/circuit.scm:138
#: ../plug-ins/script-fu/scripts/lava.scm:129
#: ../plug-ins/script-fu/scripts/predator.scm:132
#: ../plug-ins/script-fu/scripts/xach-effect.scm:138
msgid "Keep selection"
msgstr "Uchovať výber"

#: ../plug-ins/script-fu/scripts/circuit.scm:139
#: ../plug-ins/script-fu/scripts/lava.scm:130
#: ../plug-ins/script-fu/scripts/predator.scm:133
msgid "Separate layer"
msgstr "Oddelená vrstva"

#: ../plug-ins/script-fu/scripts/clothify.scm:51
msgid "_Clothify..."
msgstr "_Plátno..."

#: ../plug-ins/script-fu/scripts/clothify.scm:52
msgid "Add a cloth-like texture to the selected region (or alpha)"
msgstr ""

#: ../plug-ins/script-fu/scripts/clothify.scm:59
msgid "Blur X"
msgstr "Rozmazanie X"

#: ../plug-ins/script-fu/scripts/clothify.scm:60
msgid "Blur Y"
msgstr "Rozmazanie Y"

#: ../plug-ins/script-fu/scripts/clothify.scm:61
msgid "Azimuth"
msgstr "Azimut"

#: ../plug-ins/script-fu/scripts/clothify.scm:62
msgid "Elevation"
msgstr "Zdvih"

#: ../plug-ins/script-fu/scripts/clothify.scm:63
msgid "Depth"
msgstr "Hĺbka"

#: ../plug-ins/script-fu/scripts/coffee.scm:36
msgid "Stain"
msgstr "Škvrna"

#: ../plug-ins/script-fu/scripts/coffee.scm:81
msgid "_Coffee Stain..."
msgstr "_Kávová škrna..."

#: ../plug-ins/script-fu/scripts/coffee.scm:82
msgid "Add realistic looking coffee stains to the image"
msgstr ""

#: ../plug-ins/script-fu/scripts/coffee.scm:89
msgid "Stains"
msgstr "Škvrny"

#: ../plug-ins/script-fu/scripts/coffee.scm:90
msgid "Darken only"
msgstr "Len stmavenie"

#: ../plug-ins/script-fu/scripts/difference-clouds.scm:67
msgid "Difference Clouds..."
msgstr ""

#: ../plug-ins/script-fu/scripts/difference-clouds.scm:68
msgid "Solid noise applied with Difference layer mode"
msgstr ""

#: ../plug-ins/script-fu/scripts/distress-selection.scm:105
msgid "_Distort..."
msgstr "_Deformovať..."

#: ../plug-ins/script-fu/scripts/distress-selection.scm:106
msgid "Distress the selection"
msgstr "Zdeformuje výber"

#: ../plug-ins/script-fu/scripts/distress-selection.scm:113
msgid "Threshold (bigger 1<-->254 smaller)"
msgstr "Prah (väčší 1<-->254 menší)"

#: ../plug-ins/script-fu/scripts/distress-selection.scm:114
msgid "Spread"
msgstr "Roztiahnuť"

#: ../plug-ins/script-fu/scripts/distress-selection.scm:115
msgid "Granularity (1 is low)"
msgstr "Zrnitosť (1 je malá)"

#: ../plug-ins/script-fu/scripts/distress-selection.scm:116
msgid "Smooth"
msgstr "Vyhladiť"

#: ../plug-ins/script-fu/scripts/distress-selection.scm:117
msgid "Smooth horizontally"
msgstr "Vyhladiť vodorovne"

#: ../plug-ins/script-fu/scripts/distress-selection.scm:118
msgid "Smooth vertically"
msgstr "Vyhladiť zvislo"

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:170
msgid "_Drop Shadow..."
msgstr "_Vrhnúť tieň..."

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:171
msgid "Add a drop shadow to the selected region (or alpha)"
msgstr ""

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:178
msgid "Offset X"
msgstr "Posun X"

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:179
msgid "Offset Y"
msgstr "Posun Y"

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:180
#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:209
#: ../plug-ins/script-fu/scripts/round-corners.scm:141
msgid "Blur radius"
msgstr "Polomer rozostrenia"

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:181
#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:154
#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:210
#: ../plug-ins/script-fu/scripts/spyrogimp.scm:350
msgid "Color"
msgstr "Farba"

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:182
#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:211
msgid "Opacity"
msgstr "Krytie"

#: ../plug-ins/script-fu/scripts/drop-shadow.scm:183
#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:213
msgid "Allow resizing"
msgstr "Povoliť zmenu veľkosti"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:39
msgid "_Erase Every Other Row..."
msgstr "_Vymazať každý druhý riadok..."

#: ../plug-ins/script-fu/scripts/erase-rows.scm:40
msgid "Erase every other row or column"
msgstr "Vymazať každý druhý riadok"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:47
msgid "Rows/cols"
msgstr "Riadky/Stĺpce"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:47
msgid "Rows"
msgstr "Riadky"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:47
msgid "Columns"
msgstr "Stĺpce"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:48
msgid "Even/odd"
msgstr "Párny/Nepárny"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:48
msgid "Even"
msgstr "Párny"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:48
msgid "Odd"
msgstr "Nepárny"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:49
msgid "Erase/fill"
msgstr "Zmazať/Vyplniť"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:49
msgid "Erase"
msgstr "Zmazať"

#: ../plug-ins/script-fu/scripts/erase-rows.scm:49
msgid "Fill with BG"
msgstr "Vyplniť s pozadím"

#: ../plug-ins/script-fu/scripts/font-map.scm:152
msgid "Render _Font Map..."
msgstr "Generovať mapu _písma..."

#: ../plug-ins/script-fu/scripts/font-map.scm:153
msgid ""
"Create an image filled with previews of fonts matching a fontname filter"
msgstr ""

#: ../plug-ins/script-fu/scripts/font-map.scm:158
msgid "_Text"
msgstr "_Text"

#: ../plug-ins/script-fu/scripts/font-map.scm:159
msgid "Use font _name as text"
msgstr "Používať _názov písma ako text"

#: ../plug-ins/script-fu/scripts/font-map.scm:160
msgid "_Labels"
msgstr "_Označenia"

#: ../plug-ins/script-fu/scripts/font-map.scm:161
msgid "_Filter (regexp)"
msgstr "_Filter (regexp)"

#: ../plug-ins/script-fu/scripts/font-map.scm:162
msgid "Font _size (pixels)"
msgstr "Veľkosť pí_sma (v bodoch)"

#: ../plug-ins/script-fu/scripts/font-map.scm:163
msgid "_Border (pixels)"
msgstr "_Okraj (v bodoch)"

#: ../plug-ins/script-fu/scripts/font-map.scm:164
msgid "_Color scheme"
msgstr "_Farebná schéma"

#: ../plug-ins/script-fu/scripts/font-map.scm:164
msgid "Black on white"
msgstr "Čierna na bielom"

#: ../plug-ins/script-fu/scripts/font-map.scm:164
msgid "Active colors"
msgstr "Aktívne farby"

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:146
msgid "_Fuzzy Border..."
msgstr "N_eostrý okraj..."

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:147
msgid "Add a jagged, fuzzy border to an image"
msgstr ""

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:155
#: ../plug-ins/script-fu/scripts/old-photo.scm:98
msgid "Border size"
msgstr "Veľkosť okraja"

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:156
msgid "Blur border"
msgstr "Hranica rozmazania"

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:157
msgid "Granularity (1 is Low)"
msgstr "Zrnitosť (1 je malá)"

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:158
msgid "Add shadow"
msgstr "Pridať tieň"

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:159
msgid "Shadow weight (%)"
msgstr "Výška tieňa (%)"

#: ../plug-ins/script-fu/scripts/fuzzyborder.scm:161
msgid "Flatten image"
msgstr "Do jednej vrstvy"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:59
msgid "Using _Paths"
msgstr "Používanie _ciest"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:60
#: ../plug-ins/script-fu/scripts/gimp-online.scm:73
#: ../plug-ins/script-fu/scripts/gimp-online.scm:86
#: ../plug-ins/script-fu/scripts/gimp-online.scm:99
#: ../plug-ins/script-fu/scripts/gimp-online.scm:112
#: ../plug-ins/script-fu/scripts/gimp-online.scm:125
#: ../plug-ins/script-fu/scripts/gimp-online.scm:138
#: ../plug-ins/script-fu/scripts/gimp-online.scm:151
msgid "Bookmark to the user manual"
msgstr "Záložka používateľskej príručky"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:72
msgid "_Preparing your Images for the Web"
msgstr "_Príprava vašich obrázkov pre web"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:85
msgid "_Working with Digital Camera Photos"
msgstr "P_ráca s fotografiami z digitálneho fotoaparátu"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:98
msgid "Create, Open and Save _Files"
msgstr "Vytvoriť, otvoriť a uložiť _súbory"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:111
msgid "_Basic Concepts"
msgstr "_Základné koncepty"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:124
msgid "How to Use _Dialogs"
msgstr "Ako používať _dialógové okná"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:137
msgid "Drawing _Simple Objects"
msgstr "Kreslenie _jednoduchých objektov"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:150
msgid "Create and Use _Selections"
msgstr "Vytvoriť a použiť _výbery"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:178
msgid "_Main Web Site"
msgstr "_Hlavná web stránka"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:179
#: ../plug-ins/script-fu/scripts/gimp-online.scm:192
#: ../plug-ins/script-fu/scripts/gimp-online.scm:205
#: ../plug-ins/script-fu/scripts/gimp-online.scm:218
msgid "Bookmark to the GIMP web site"
msgstr "Záložka webovej stránky programu GIMP"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:191
msgid "_Developer Web Site"
msgstr "_Web stránka pre vývojárov"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:204
msgid "_User Manual Web Site"
msgstr "Webová stránka s _používateľskou príručkou"

#: ../plug-ins/script-fu/scripts/gimp-online.scm:217
msgid "Plug-in _Registry"
msgstr "_Register zásuvných modulov"

#: ../plug-ins/script-fu/scripts/gradient-example.scm:63
msgid "Custom _Gradient..."
msgstr "Vlastný _prechod..."

#: ../plug-ins/script-fu/scripts/gradient-example.scm:64
msgid "Create an image filled with an example of the current gradient"
msgstr ""

#: ../plug-ins/script-fu/scripts/gradient-example.scm:69
#: ../plug-ins/script-fu/scripts/mkbrush.scm:70
#: ../plug-ins/script-fu/scripts/mkbrush.scm:138
#: ../plug-ins/script-fu/scripts/mkbrush.scm:194
#: ../plug-ins/script-fu/scripts/mkbrush.scm:263
msgid "Width"
msgstr "Šírka"

#: ../plug-ins/script-fu/scripts/gradient-example.scm:70
#: ../plug-ins/script-fu/scripts/mkbrush.scm:71
#: ../plug-ins/script-fu/scripts/mkbrush.scm:139
#: ../plug-ins/script-fu/scripts/mkbrush.scm:195
#: ../plug-ins/script-fu/scripts/mkbrush.scm:264
msgid "Height"
msgstr "Výška"

#: ../plug-ins/script-fu/scripts/gradient-example.scm:71
msgid "Gradient reverse"
msgstr "Obrátený prechod"

#: ../plug-ins/script-fu/scripts/grid-system.scm:84
msgid "_Grid..."
msgstr "_Mriežka..."

#: ../plug-ins/script-fu/scripts/grid-system.scm:85
msgid ""
"Draw a grid as specified by the lists of X and Y locations using the current "
"brush"
msgstr ""

#: ../plug-ins/script-fu/scripts/grid-system.scm:92
msgid "X divisions"
msgstr "Rozdelenie X"

#: ../plug-ins/script-fu/scripts/grid-system.scm:93
msgid "Y divisions"
msgstr "Rozdelenie Y"

#: ../plug-ins/script-fu/scripts/guides-from-selection.scm:32
msgid "New Guides from _Selection"
msgstr "Nové vodítka z výberu"

#: ../plug-ins/script-fu/scripts/guides-from-selection.scm:33
msgid "Create four guides around the bounding box of the current selection"
msgstr "Vytvorí štyri vodítka okolo ohraničujúcej plochy aktuálneho výberu"

#: ../plug-ins/script-fu/scripts/guides-new-percent.scm:27
msgid "New Guide (by _Percent)..."
msgstr "Nové vodítka (podľa _percent)..."

#: ../plug-ins/script-fu/scripts/guides-new-percent.scm:28
msgid "Add a guide at the position specified as a percentage of the image size"
msgstr ""

#: ../plug-ins/script-fu/scripts/guides-new-percent.scm:35
#: ../plug-ins/script-fu/scripts/guides-new.scm:35
msgid "Direction"
msgstr "Smer"

#: ../plug-ins/script-fu/scripts/guides-new-percent.scm:35
#: ../plug-ins/script-fu/scripts/guides-new.scm:35
msgid "Horizontal"
msgstr "Vodorovne"

#: ../plug-ins/script-fu/scripts/guides-new-percent.scm:36
#: ../plug-ins/script-fu/scripts/guides-new.scm:35
msgid "Vertical"
msgstr "Zvisle"

#: ../plug-ins/script-fu/scripts/guides-new-percent.scm:37
msgid "Position (in %)"
msgstr "Pozícia (v %)"

#: ../plug-ins/script-fu/scripts/guides-new.scm:27
msgid "New _Guide..."
msgstr "Nové v_odítko..."

#: ../plug-ins/script-fu/scripts/guides-new.scm:28
msgid "Add a guide at the orientation and position specified (in pixels)"
msgstr ""

#: ../plug-ins/script-fu/scripts/guides-new.scm:36
msgid "Position"
msgstr "Pozícia"

#: ../plug-ins/script-fu/scripts/guides-remove-all.scm:19
msgid "_Remove all Guides"
msgstr "_Odstrániť všetky vodítka"

#: ../plug-ins/script-fu/scripts/guides-remove-all.scm:20
msgid "Remove all horizontal and vertical guides"
msgstr ""

#: ../plug-ins/script-fu/scripts/lava.scm:117
msgid "_Lava..."
msgstr "_Láva..."

#: ../plug-ins/script-fu/scripts/lava.scm:118
msgid "Fill the current selection with lava"
msgstr "Vyplní aktuálny výber lávou"

#: ../plug-ins/script-fu/scripts/lava.scm:125
msgid "Seed"
msgstr "Hniezdo"

#: ../plug-ins/script-fu/scripts/lava.scm:126
msgid "Size"
msgstr "Veľkosť"

#: ../plug-ins/script-fu/scripts/lava.scm:127
msgid "Roughness"
msgstr "Drsnosť"

#: ../plug-ins/script-fu/scripts/lava.scm:128
#: ../plug-ins/script-fu/scripts/spyrogimp.scm:351
msgid "Gradient"
msgstr "Prechod"

#: ../plug-ins/script-fu/scripts/lava.scm:131
msgid "Use current gradient"
msgstr "Použiť aktuálny prechod"

#: ../plug-ins/script-fu/scripts/line-nova.scm:108
msgid "Line _Nova..."
msgstr "Čiarová _nova..."

#: ../plug-ins/script-fu/scripts/line-nova.scm:109
msgid ""
"Fill a layer with rays emanating outward from its center using the "
"foreground color"
msgstr ""

#: ../plug-ins/script-fu/scripts/line-nova.scm:116
msgid "Number of lines"
msgstr "Počet čiar"

#: ../plug-ins/script-fu/scripts/line-nova.scm:117
msgid "Sharpness (degrees)"
msgstr "Ostrosť (v stupňoch)"

#: ../plug-ins/script-fu/scripts/line-nova.scm:118
msgid "Offset radius"
msgstr "Polomer posunu"

#: ../plug-ins/script-fu/scripts/line-nova.scm:119
msgid "Randomness"
msgstr "Náhodnosť"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:63
msgid "_Rectangular..."
msgstr "O_bdĺžnikový..."

#: ../plug-ins/script-fu/scripts/mkbrush.scm:64
msgid "Create a rectangular brush"
msgstr "Vytvoriť obdĺžnikový štetec"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:69
#: ../plug-ins/script-fu/scripts/mkbrush.scm:137
#: ../plug-ins/script-fu/scripts/mkbrush.scm:193
#: ../plug-ins/script-fu/scripts/mkbrush.scm:262
msgid "Name"
msgstr "Názov"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:72
#: ../plug-ins/script-fu/scripts/mkbrush.scm:141
#: ../plug-ins/script-fu/scripts/mkbrush.scm:196
#: ../plug-ins/script-fu/scripts/mkbrush.scm:266
#: ../plug-ins/script-fu/scripts/paste-as-brush.scm:70
#: ../plug-ins/script-fu/scripts/select-to-brush.scm:143
msgid "Spacing"
msgstr "Rozostup"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:131
msgid "Re_ctangular, Feathered..."
msgstr "Ob_dĺžnikový, neostrý..."

#: ../plug-ins/script-fu/scripts/mkbrush.scm:132
msgid "Create a rectangular brush with feathered edges"
msgstr "Vytvorí obdĺžnikový štetec so zjemnenými hranami"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:140
#: ../plug-ins/script-fu/scripts/mkbrush.scm:265
msgid "Feathering"
msgstr "Neostrosť"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:187
msgid "_Elliptical..."
msgstr "_Eliptický..."

#: ../plug-ins/script-fu/scripts/mkbrush.scm:188
msgid "Create an elliptical brush"
msgstr "Vytvoriť kruhový štetec"

#: ../plug-ins/script-fu/scripts/mkbrush.scm:256
msgid "Elli_ptical, Feathered..."
msgstr "E_liptický, neostrý..."

#: ../plug-ins/script-fu/scripts/mkbrush.scm:257
msgid "Create an elliptical brush with feathered edges"
msgstr "Vytvorí kruhový štetec so zjemnenými hranami"

#: ../plug-ins/script-fu/scripts/old-photo.scm:89
msgid "_Old Photo..."
msgstr "Stará f_otografia..."

#: ../plug-ins/script-fu/scripts/old-photo.scm:90
msgid "Make an image look like an old photo"
msgstr "Upraví obrázok na spôsob starej fotografie"

#: ../plug-ins/script-fu/scripts/old-photo.scm:97
msgid "Defocus"
msgstr "Rozostrenie"

#. since this plug-in uses the fuzzy-border plug-in, I used the
#. values of the latter, with the exception of the initial value
#. and the 'minimum' value.
#: ../plug-ins/script-fu/scripts/old-photo.scm:102
msgid "Sepia"
msgstr "Sépia"

#: ../plug-ins/script-fu/scripts/old-photo.scm:103
msgid "Mottle"
msgstr "Škvrnka"

#: ../plug-ins/script-fu/scripts/palette-export.scm:226
msgid "Folder for the output file"
msgstr "Zložka pre výstupný súbor"

#: ../plug-ins/script-fu/scripts/palette-export.scm:227
msgid ""
"The name of the file to create (if a file with this name already exist, it "
"will be replaced)"
msgstr ""
"Názov súbor na vytvorenie (ak súbor s týmto názvom už existuje, bude "
"nahradený)"

#: ../plug-ins/script-fu/scripts/palette-export.scm:235
msgid "The filename you entered is not a suitable name for a file."
msgstr "Názov súboru, ktorý ste zadali, nie je vhodný ako názov súboru."

#: ../plug-ins/script-fu/scripts/palette-export.scm:237
msgid ""
"All characters in the name are either white-spaces or characters which can "
"not appear in filenames."
msgstr ""
"Všetky znaky v názve sú buď medzery, alebo znaky, ktoré sa nedajú zobraziť v "
"názvoch súborov."

#: ../plug-ins/script-fu/scripts/palette-export.scm:265
msgid ""
"Export the active palette as a CSS stylesheet with the color entry name as "
"their class name, and the color itself as the color attribute"
msgstr ""

#: ../plug-ins/script-fu/scripts/palette-export.scm:291
msgid "Export the active palette as a PHP dictionary (name => color)"
msgstr ""

#: ../plug-ins/script-fu/scripts/palette-export.scm:323
msgid "Export the active palette as a Python dictionary (name: color)"
msgstr ""

#: ../plug-ins/script-fu/scripts/palette-export.scm:352
msgid ""
"Write all the colors in a palette to a text file, one hexadecimal value per "
"line (no names)"
msgstr ""

#: ../plug-ins/script-fu/scripts/palette-export.scm:399
msgid "Export the active palette as a java.util.Hashtable<String, Color>"
msgstr ""

#: ../plug-ins/script-fu/scripts/paste-as-brush.scm:56
#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm:44
msgid "There is no image data in the clipboard to paste."
msgstr "V schránke sa nenachádzajú žiadne údaje obrázku na vloženie."

#: ../plug-ins/script-fu/scripts/paste-as-brush.scm:62
msgid "New _Brush..."
msgstr "Nový š_tetec..."

#: ../plug-ins/script-fu/scripts/paste-as-brush.scm:63
msgid "Paste the clipboard contents into a new brush"
msgstr "Vloží obsah schránky do nového štetca"

#: ../plug-ins/script-fu/scripts/paste-as-brush.scm:68
#: ../plug-ins/script-fu/scripts/select-to-brush.scm:141
msgid "Brush name"
msgstr "Názov štetca"

#: ../plug-ins/script-fu/scripts/paste-as-brush.scm:69
#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm:57
#: ../plug-ins/script-fu/scripts/select-to-brush.scm:142
#: ../plug-ins/script-fu/scripts/select-to-pattern.scm:102
msgid "File name"
msgstr "Názov súboru"

#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm:50
msgid "New _Pattern..."
msgstr "Nová _vzorka..."

#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm:51
msgid "Paste the clipboard contents into a new pattern"
msgstr "Vloží obsah schránky do nového vzoru"

#: ../plug-ins/script-fu/scripts/paste-as-pattern.scm:56
#: ../plug-ins/script-fu/scripts/select-to-pattern.scm:101
msgid "Pattern name"
msgstr "Názov vzorky"

#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:198
msgid "_Perspective..."
msgstr "_Perspektíva..."

#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:199
msgid "Add a perspective shadow to the selected region (or alpha)"
msgstr ""

#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:206
msgid "Angle"
msgstr "Uhol"

#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:207
msgid "Relative distance of horizon"
msgstr "Relatívna vzdialenosť horizontu"

#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:208
msgid "Relative length of shadow"
msgstr "Relatívna dĺžka tieňa"

#: ../plug-ins/script-fu/scripts/perspective-shadow.scm:212
msgid "Interpolation"
msgstr "Interpolácia"

#: ../plug-ins/script-fu/scripts/predator.scm:121
msgid "_Predator..."
msgstr "_Predátor..."

#: ../plug-ins/script-fu/scripts/predator.scm:122
msgid "Add a 'Predator' effect to the selected region (or alpha)"
msgstr ""

#: ../plug-ins/script-fu/scripts/predator.scm:129
msgid "Edge amount"
msgstr "Miera hrán"

#: ../plug-ins/script-fu/scripts/predator.scm:130
msgid "Pixelize"
msgstr "Pixelizovať"

#: ../plug-ins/script-fu/scripts/predator.scm:131
msgid "Pixel amount"
msgstr "Veľkosť bodov"

#: ../plug-ins/script-fu/scripts/reverse-layers.scm:42
msgid "Reverse Layer Order"
msgstr "Prevrátiť poradie vrstiev"

#: ../plug-ins/script-fu/scripts/reverse-layers.scm:43
msgid "Reverse the order of layers in the image"
msgstr "Prevráti poradie vrstiev obrázku"

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:67
msgid "_Rippling..."
msgstr "V_lnenie..."

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:68
msgid ""
"Create a multi-layer image by adding a ripple effect to the current layer"
msgstr ""

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:75
msgid "Rippling strength"
msgstr "Sila zvlnenia"

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:76
#: ../plug-ins/script-fu/scripts/waves-anim.scm:105
msgid "Number of frames"
msgstr "Počet snímok"

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:77
msgid "Edge behavior"
msgstr "Správanie sa hrán"

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:77
msgid "Wrap"
msgstr "Zalamovať"

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:77
msgid "Smear"
msgstr "Rozmazať"

#: ../plug-ins/script-fu/scripts/ripply-anim.scm:77
msgid "Black"
msgstr "Čierna"

#: ../plug-ins/script-fu/scripts/round-corners.scm:129
msgid "_Round Corners..."
msgstr "_Zaobliť rohy..."

#: ../plug-ins/script-fu/scripts/round-corners.scm:130
msgid ""
"Round the corners of an image and optionally add a drop-shadow and background"
msgstr "Zaoblí rohy obrázku a voliteľne pridá vrhanie tieňa a pozadie"

#: ../plug-ins/script-fu/scripts/round-corners.scm:137
msgid "Edge radius"
msgstr "Polomer hrany"

#: ../plug-ins/script-fu/scripts/round-corners.scm:138
msgid "Add drop-shadow"
msgstr "Pridať vrhanie tieňa"

#: ../plug-ins/script-fu/scripts/round-corners.scm:139
msgid "Shadow X offset"
msgstr "X posun tieňa"

#: ../plug-ins/script-fu/scripts/round-corners.scm:140
msgid "Shadow Y offset"
msgstr "Y posun tieňa"

#: ../plug-ins/script-fu/scripts/round-corners.scm:142
msgid "Add background"
msgstr "Pridať pozadie"

#: ../plug-ins/script-fu/scripts/script-fu-set-cmap.scm:53
msgid "Se_t Colormap..."
msgstr "Nas_taviť mapu farieb..."

#: ../plug-ins/script-fu/scripts/script-fu-set-cmap.scm:54
msgid "Change the colormap of an image to the colors in a specified palette."
msgstr "Zmení mapu farieb obrázku na farby z určenej palety."

#: ../plug-ins/script-fu/scripts/script-fu-set-cmap.scm:61
msgid "Palette"
msgstr "Paleta"

#: ../plug-ins/script-fu/scripts/selection-round.scm:139
msgid "Rounded R_ectangle..."
msgstr "Zaobl_ený obdĺžnik..."

#: ../plug-ins/script-fu/scripts/selection-round.scm:140
msgid "Round the corners of the current selection"
msgstr "Zaobliť rohy aktuálneho výberu"

#: ../plug-ins/script-fu/scripts/selection-round.scm:147
msgid "Radius (%)"
msgstr "Polomer (%)"

#: ../plug-ins/script-fu/scripts/selection-round.scm:148
msgid "Concave"
msgstr "Konkáva"

#: ../plug-ins/script-fu/scripts/select-to-brush.scm:133
msgid "To _Brush..."
msgstr "Do štetca..."

#: ../plug-ins/script-fu/scripts/select-to-brush.scm:134
msgid "Convert a selection to a brush"
msgstr "Skonvertuje výber do štetca"

#: ../plug-ins/script-fu/scripts/select-to-image.scm:81
msgid "To _Image"
msgstr "Do o_brázku"

#: ../plug-ins/script-fu/scripts/select-to-image.scm:82
msgid "Convert a selection to an image"
msgstr ""

#: ../plug-ins/script-fu/scripts/select-to-pattern.scm:93
msgid "To _Pattern..."
msgstr "Do _vzorky..."

#: ../plug-ins/script-fu/scripts/select-to-pattern.scm:94
msgid "Convert a selection to a pattern"
msgstr ""

#: ../plug-ins/script-fu/scripts/slide.scm:236
msgid "_Slide..."
msgstr "_Snímka..."

#: ../plug-ins/script-fu/scripts/slide.scm:237
msgid "Add a slide-film like frame, sprocket holes, and labels to an image"
msgstr ""

#: ../plug-ins/script-fu/scripts/slide.scm:244
msgid "Text"
msgstr "Text"

#: ../plug-ins/script-fu/scripts/slide.scm:245
msgid "Number"
msgstr "Počet"

#: ../plug-ins/script-fu/scripts/slide.scm:246
msgid "Font"
msgstr "Písmo"

#: ../plug-ins/script-fu/scripts/slide.scm:247
msgid "Font color"
msgstr "Farba písma"

#: ../plug-ins/script-fu/scripts/spinning-globe.scm:94
msgid "_Spinning Globe..."
msgstr "_Rotujúci glóbus..."

#: ../plug-ins/script-fu/scripts/spinning-globe.scm:95
msgid "Create an animation by mapping the current image onto a spinning sphere"
msgstr ""

#: ../plug-ins/script-fu/scripts/spinning-globe.scm:102
msgid "Frames"
msgstr "Rámy"

#: ../plug-ins/script-fu/scripts/spinning-globe.scm:103
msgid "Turn from left to right"
msgstr "Točiť zľava doprava"

#: ../plug-ins/script-fu/scripts/spinning-globe.scm:104
msgid "Transparent background"
msgstr "Priesvitné pozadie"

#: ../plug-ins/script-fu/scripts/spinning-globe.scm:105
msgid "Index to n colors (0 = remain RGB)"
msgstr "Indexovaný v n farbách (0 = nechá RGB)"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:240
msgid "Rendering Spyro"
msgstr ""

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:314
msgid "_Spyrogimp..."
msgstr "_Spyrogimp..."

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:315
msgid ""
"Add Spirographs, Epitrochoids, and Lissajous Curves to the current layer"
msgstr ""
"Pridá Spirografy, Epitrochoidy a Lissajouské krivky do aktuálnej vrstvy"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:323
msgid "Type"
msgstr "Typ"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:323
msgid "Spyrograph"
msgstr "Spyrograf"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:324
msgid "Epitrochoid"
msgstr "Epitrochoid"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:325
msgid "Lissajous"
msgstr "Lissajouské"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:326
msgid "Shape"
msgstr "Tvar"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:326
msgid "Circle"
msgstr "Kruh"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:328
msgid "Triangle"
msgstr "Trojuholník"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:329
msgid "Square"
msgstr "Štvorec"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:330
msgid "Pentagon"
msgstr "Päťuholník"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:331
msgid "Hexagon"
msgstr "Šesťuholník"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:332
msgid "Polygon: 7 sides"
msgstr "Mnohouholník: 7 strán"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:333
msgid "Polygon: 8 sides"
msgstr "Mnohouholník: 8 strán"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:334
msgid "Polygon: 9 sides"
msgstr "Mnohouholník: 9 strán"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:335
msgid "Polygon: 10 sides"
msgstr "Mnohouholník: 10 strán"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:336
msgid "Outer teeth"
msgstr "Vonkajšie zuby"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:337
msgid "Inner teeth"
msgstr "Vnútorné zuby"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:338
msgid "Margin (pixels)"
msgstr "Okraj (v bodoch)"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:339
msgid "Hole ratio"
msgstr "Miera dier"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:340
msgid "Start angle"
msgstr "Počiatočný uhol"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:342
msgid "Tool"
msgstr "Nástroj"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:342
msgid "Pencil"
msgstr "Ceruzka"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:343
#: ../plug-ins/script-fu/scripts/spyrogimp.scm:345
msgid "Brush"
msgstr "Štetec"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:344
msgid "Airbrush"
msgstr "Rozprašovač"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:347
msgid "Color method"
msgstr "Farebná metóda"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:347
msgid "Solid Color"
msgstr "Jednoliata farba"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:348
msgid "Gradient: Loop Sawtooth"
msgstr "Prechod: cyklická píla"

#: ../plug-ins/script-fu/scripts/spyrogimp.scm:349
msgid "Gradient: Loop Triangle"
msgstr "Prechod: cyklický trojuholník"

#: ../plug-ins/script-fu/scripts/test-sphere.scm:267
msgid "_Sphere..."
msgstr "_Guľa..."

#: ../plug-ins/script-fu/scripts/tileblur.scm:68
msgid "_Tileable Blur..."
msgstr "_Dlaždicoviteľné rozmazanie..."

#: ../plug-ins/script-fu/scripts/tileblur.scm:69
msgid "Blur the edges of an image so the result tiles seamlessly"
msgstr ""

#: ../plug-ins/script-fu/scripts/tileblur.scm:76
msgid "Radius"
msgstr "Polomer"

#: ../plug-ins/script-fu/scripts/tileblur.scm:77
msgid "Blur vertically"
msgstr "Rozmazať zvisle"

#: ../plug-ins/script-fu/scripts/tileblur.scm:78
msgid "Blur horizontally"
msgstr "Rozmazať vodorovne"

#: ../plug-ins/script-fu/scripts/tileblur.scm:79
msgid "Blur type"
msgstr "Typ rozostrenia"

#: ../plug-ins/script-fu/scripts/tileblur.scm:79
msgid "IIR"
msgstr "IIR"

#: ../plug-ins/script-fu/scripts/tileblur.scm:79
msgid "RLE"
msgstr "RLE"

#: ../plug-ins/script-fu/scripts/unsharp-mask.scm:82
msgid "Mask size"
msgstr "Veľkosť masky"

#: ../plug-ins/script-fu/scripts/unsharp-mask.scm:83
msgid "Mask opacity"
msgstr "Krytie masky"

#: ../plug-ins/script-fu/scripts/waves-anim.scm:95
msgid "_Waves..."
msgstr "_Vlny..."

#: ../plug-ins/script-fu/scripts/waves-anim.scm:96
msgid ""
"Create a multi-layer image with an effect like a stone was thrown into the "
"current image"
msgstr ""

#: ../plug-ins/script-fu/scripts/waves-anim.scm:103
msgid "Amplitude"
msgstr "Rozkmit"

#: ../plug-ins/script-fu/scripts/waves-anim.scm:104
msgid "Wavelength"
msgstr "Vlnová dĺžka"

#: ../plug-ins/script-fu/scripts/waves-anim.scm:106
msgid "Invert direction"
msgstr "Obrátiť smer"

#: ../plug-ins/script-fu/scripts/weave.scm:389
msgid "_Weave..."
msgstr "_Tkať..."

#: ../plug-ins/script-fu/scripts/weave.scm:390
msgid ""
"Create a new layer filled with a weave effect to be used as an overlay or "
"bump map"
msgstr ""

#: ../plug-ins/script-fu/scripts/weave.scm:397
msgid "Ribbon width"
msgstr "Šírka pásov"

#: ../plug-ins/script-fu/scripts/weave.scm:398
msgid "Ribbon spacing"
msgstr "Rozostup pásov"

#: ../plug-ins/script-fu/scripts/weave.scm:399
msgid "Shadow darkness"
msgstr "Tmavosť tieňa"

#: ../plug-ins/script-fu/scripts/weave.scm:400
msgid "Shadow depth"
msgstr "Hĺbka tieňa"

#: ../plug-ins/script-fu/scripts/weave.scm:401
msgid "Thread length"
msgstr "Dĺžka vlákna"

#: ../plug-ins/script-fu/scripts/weave.scm:402
msgid "Thread density"
msgstr "Hustota vlákna"

#: ../plug-ins/script-fu/scripts/weave.scm:403
msgid "Thread intensity"
msgstr "Intenzita vlákna"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:92
msgid "Shadow"
msgstr "Tieň"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:121
msgid "_Xach-Effect..."
msgstr "Efekt _Xach..."

#: ../plug-ins/script-fu/scripts/xach-effect.scm:122
msgid "Add a subtle translucent 3D effect to the selected region (or alpha)"
msgstr ""

#: ../plug-ins/script-fu/scripts/xach-effect.scm:129
msgid "Highlight X offset"
msgstr "Posun X svetiel"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:130
msgid "Highlight Y offset"
msgstr "Posun Y svetiel"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:131
msgid "Highlight color"
msgstr "Farba zvýraznenia"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:132
msgid "Highlight opacity"
msgstr "Krytie svetiel"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:133
msgid "Drop shadow color"
msgstr "Farba vrhaného tieňa"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:134
msgid "Drop shadow opacity"
msgstr "Krytie vrhaného tieňa"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:135
msgid "Drop shadow blur radius"
msgstr "Polomer rozmazania vrhaného tieňa"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:136
msgid "Drop shadow X offset"
msgstr "Posun X vrhaného tieňa"

#: ../plug-ins/script-fu/scripts/xach-effect.scm:137
msgid "Drop shadow Y offset"
msgstr "Posun Y vrhaného tieňa"

#~ msgid "Script-Fu console mode allows only interactive invocation"
#~ msgstr "Iba interaktívne spustenie umožňuje režim Script-Fu konzoly"

#~ msgid "/Script-Fu/"
#~ msgstr "/Script-Fu/"

#~ msgid "About %s"
#~ msgstr "O programe %s"

#~ msgid "Author:"
#~ msgstr "Autor:"

#~ msgid "Copyright:"
#~ msgstr "Copyright:"

#~ msgid "Date:"
#~ msgstr "Dátum:"

#~ msgid "Image Types:"
#~ msgstr "Typ obrázka:"

#~ msgid "<Toolbox>/Xtns/Languages/Script-Fu"
#~ msgstr "<Toolbox>/Rozš./Jazyky/Script-Fu"

#~ msgid "_Misc"
#~ msgstr "_Rôzne"

#~ msgid "_Utils"
#~ msgstr "_Nástroje"

#~ msgid "A_nimators"
#~ msgstr "A_nimátori"

#~ msgid "_Decor"
#~ msgstr "_Ozdoba"

#~ msgid "_Render"
#~ msgstr "_Vykresliť"

#~ msgid "3D _Outline..."
#~ msgstr "3D _obrys..."

#~ msgid "Bumpmap (alpha layer) blur radius"
#~ msgstr "Polomer rozmazania mapy vyvýšenia (alfa vrstvy)"

#~ msgid "Default bumpmap settings"
#~ msgstr "Štandardné nastavenie mapy vyvýšenia"

#~ msgid "Font size (pixels)"
#~ msgstr "Veľkosť písma (v bodoch)"

#~ msgid "Outline blur radius"
#~ msgstr "Polomer rozmazania obrysu"

#~ msgid "Pattern"
#~ msgstr "Vzorka"

#~ msgid "Shadow blur radius"
#~ msgstr "Polomer rozmazania tieňa"

#~ msgid "3_D Truchet..."
#~ msgstr "3_D Truchet..."

#~ msgid "Block size"
#~ msgstr "Veľkosť bloku"

#~ msgid "End blend"
#~ msgstr "Splývanie konca"

#~ msgid "Number of X tiles"
#~ msgstr "Počet X dlaždíc"

#~ msgid "Number of Y tiles"
#~ msgstr "Počet Y dlaždíc"

#~ msgid "Start blend"
#~ msgstr "Začiatok miešania"

#~ msgid "Supersample"
#~ msgstr "Prevzorkovanie"

#~ msgid "Down"
#~ msgstr "Dole"

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

#~ msgid "Orientation"
#~ msgstr "Orientácia"

#~ msgid "Right"
#~ msgstr "Vpravo"

#~ msgid "Up"
#~ msgstr "Hore"

#~ msgid "_Arrow..."
#~ msgstr "Šípk_a..."

#~ msgid "Bar height"
#~ msgstr "Výška pásu"

#~ msgid "Bar length"
#~ msgstr "Dĺžka pásu"

#~ msgid "_Hrule..."
#~ msgstr "_Vodorovné pravítko..."

#~ msgid "_Bullet..."
#~ msgstr "_Bodka..."

#~ msgid "B_utton..."
#~ msgstr "Tlačí_tko..."

#~ msgid "Glow radius"
#~ msgstr "Polomer žiary"

#~ msgid "Padding"
#~ msgstr "Výplň"

#~ msgid "Text color"
#~ msgstr "Farba textu"

#~ msgid "Alien _Glow..."
#~ msgstr "Mimo_zemská žiara..."

#~ msgid "Glow size (pixels * 4)"
#~ msgstr "Veľkosť žiary (body * 4)"

#~ msgid "Alien _Neon..."
#~ msgstr "Mimozemský _neón..."

#~ msgid "Fade away"
#~ msgstr "Vyblednúť"

#~ msgid "Number of bands"
#~ msgstr "Počet pruhov"

#~ msgid "Width of bands"
#~ msgstr "Šírka pruhov"

#~ msgid "Width of gaps"
#~ msgstr "Šírka medzier"

#~ msgid "_Basic I..."
#~ msgstr "_Základné I..."

#~ msgid "B_asic II..."
#~ msgstr "Z_ákladné II..."

#~ msgid "Lower-right color"
#~ msgstr "Dolná pravá farba"

#~ msgid "Pressed"
#~ msgstr "Stlačené"

#~ msgid "Simple _Beveled Button..."
#~ msgstr "Jednoduché skosené _tlačítko..."

#~ msgid "Upper-left color"
#~ msgstr "Ľavá horná farba"

#~ msgid "Diameter"
#~ msgstr "Priemer"

#~ msgid "H_eading..."
#~ msgstr "Nadp_is..."

#~ msgid "Blen_ded..."
#~ msgstr "Mie_šané..."

#~ msgid "Blend mode"
#~ msgstr "Režim miešania"

#~ msgid "FG-BG-HSV"
#~ msgstr "Popredie-pozadie-HSV"

#~ msgid "FG-BG-RGB"
#~ msgstr "Popredie-pozadie-RGB"

#~ msgid "FG-Transparent"
#~ msgstr "Transparentné popredie"

#~ msgid "Offset (pixels)"
#~ msgstr "Posun (v bodoch)"

#~ msgid "Bo_vination..."
#~ msgstr "_Flaky..."

#~ msgid "Spots density X"
#~ msgstr "X hustota bodiek"

#~ msgid "Spots density Y"
#~ msgstr "Y hustota bodiek"

#~ msgid "Burn-In: Need two layers in total!"
#~ msgstr "Vpálenie: Potrebné sú celkom dve vrstvy!"

#~ msgid "Color 1"
#~ msgstr "Farba 1"

#~ msgid "Color 2"
#~ msgstr "Farba 2"

#~ msgid "Color 3"
#~ msgstr "Farba 3"

#~ msgid "Granularity"
#~ msgstr "Zrnitosť"

#~ msgid "Image size"
#~ msgstr "Veľkosť obrázka"

#~ msgid "_Camouflage..."
#~ msgstr "_Kamufláž..."

#~ msgid "Background image"
#~ msgstr "Obrázok pozadia"

#~ msgid "Carve raised text"
#~ msgstr "Vyrezať zvýšený text"

#~ msgid "Carved..."
#~ msgstr "Rezba..."

#~ msgid "Padding around text"
#~ msgstr "Výplň okolo textu"

#~ msgid "Chalk color"
#~ msgstr "Farba kriedy"

#~ msgid "_Chalk..."
#~ msgstr "_Krieda..."

#~ msgid "Blur amount"
#~ msgstr "Miera rozmazania"

#~ msgid "Chip Awa_y..."
#~ msgstr "_Odštiepiť..."

#~ msgid "Chip amount"
#~ msgstr "Miera odštiepenia"

#~ msgid "Fill BG with pattern"
#~ msgstr "Vyplniť pozadie so vzorkou"

#~ msgid "Invert"
#~ msgstr "Invertovať"

#~ msgid "Keep background"
#~ msgstr "Nemeniť pozadie"

#~ msgid "Offsets (pixels * 2)"
#~ msgstr "Posun (v bodoch * 2)"

#~ msgid ""
#~ "Darken only\n"
#~ "(Better, but only for images with a lot of white)"
#~ msgstr ""
#~ "Iba stmaviť\n"
#~ "(Lepšie, ale len pre obrázky s množstvom bielej)"

#~ msgid "Comic Boo_k..."
#~ msgstr "_Kniha komiksov..."

#~ msgid "Outline color"
#~ msgstr "Farba obrysu"

#~ msgid "Outline size"
#~ msgstr "Veľkosť obrysu"

#~ msgid "Cool _Metal..."
#~ msgstr "St_udený kov..."

#~ msgid "Effect size (pixels)"
#~ msgstr "Veľkosť efektu (body)"

#~ msgid "Crystal..."
#~ msgstr "Kryštál..."

#~ msgid "Apply generated layermask"
#~ msgstr "Použiť generovanú masku vrsty"

#~ msgid "Clear unselected maskarea"
#~ msgstr "Vymazať nevybrané oblasti masky"

#~ msgid "Fade from %"
#~ msgstr "Vyblednúť z %"

#~ msgid "Fade to %"
#~ msgstr "Vyblednúť do %"

#~ msgid "Use growing selection"
#~ msgstr "Použiť rastúci výber"

#~ msgid "_Fade to Layer Mask..."
#~ msgstr "_Vyblednúť na masku vrstvy..."

#~ msgid "Detail level"
#~ msgstr "Úroveň detailov"

#~ msgid "Image height"
#~ msgstr "Výška obrázka"

#~ msgid "Image width"
#~ msgstr "Šírka obrázka"

#~ msgid "Random seed"
#~ msgstr "Hniezdo náhodných čísel"

#~ msgid "Scale X"
#~ msgstr "Zväčšenie X"

#~ msgid "Scale Y"
#~ msgstr "Zväčšenie Y"

#~ msgid "_Flatland..."
#~ msgstr "_Rovina..."

#~ msgid "_Frosty..."
#~ msgstr "_Mrazivo..."

#~ msgid "Autocrop"
#~ msgstr "Automatické orezanie"

#~ msgid "Index image"
#~ msgstr "Indexový obrázok"

#~ msgid "Number of colors"
#~ msgstr "Počet farieb"

#~ msgid "Remove background"
#~ msgstr "Odstrániť pozadie"

#~ msgid "Select-by-color threshold"
#~ msgstr "Prah výberu podľa farby"

#~ msgid "Shadow color"
#~ msgstr "Farba tieňa"

#~ msgid "_Big Header..."
#~ msgstr "Ve_ľká hlavička..."

#~ msgid "_Small Header..."
#~ msgstr "_Malá hlavička..."

#~ msgid "T_ube Sub-Button Label..."
#~ msgstr "Nápis podtlačítka na tr_ubici..."

#~ msgid "Tub_e Sub-Sub-Button Label..."
#~ msgstr "Nápis podpodtlačítka na tr_ubici..."

#~ msgid "_General Tube Labels..."
#~ msgstr "_Všeobecné označenia na trubici..."

#~ msgid "_Tube Button Label..."
#~ msgstr "Označenie _tlačítka na trubici..."

#~ msgid "Blend gradient (outline)"
#~ msgstr "Prechod miešania (obrys)"

#~ msgid "Blend gradient (text)"
#~ msgstr "Prechod miešania (text)"

#~ msgid "Glo_ssy..."
#~ msgstr "_Lesk..."

#~ msgid "Outline gradient reverse"
#~ msgstr "Obrátený prechod obrysu"

#~ msgid "Pattern (outline)"
#~ msgstr "Vzorka (obrys)"

#~ msgid "Pattern (overlay)"
#~ msgstr "Vzorka (prerytie)"

#~ msgid "Pattern (text)"
#~ msgstr "Vzorka (text)"

#~ msgid "Text gradient reverse"
#~ msgstr "Obrátený prechod textu"

#~ msgid "Use pattern for outline instead of gradient"
#~ msgstr "Namiesto prechodu použiť na obrys vzorku"

#~ msgid "Use pattern for text instead of gradient"
#~ msgstr "Namiesto vzorky použiť na text prechod"

#~ msgid "Use pattern overlay"
#~ msgstr "Použiť prekrytie vzoriek"

#~ msgid "Effect size (pixels * 3)"
#~ msgstr "Veľkosť efektu (v bodoch *3)"

#~ msgid "Glo_wing Hot..."
#~ msgstr "_Sálajúca žiara..."

#~ msgid "Bevel height (sharpness)"
#~ msgstr "Výška skosenia (ostrosť)"

#~ msgid "Border size (pixels)"
#~ msgstr "Veľkosť ohraničenia (v bodoch)"

#~ msgid "Gradient Beve_l..."
#~ msgstr "_Skosený prechod..."

#~ msgid "Render _Image..."
#~ msgstr "Generovať _obrázok..."

#~ msgid "_Divisions..."
#~ msgstr "_Rozdelenia..."

#~ msgid "BG opacity"
#~ msgstr "Krytie pozadia"

#~ msgid "Draw _HSV Graph..."
#~ msgstr "Kresliť _HSV graf..."

#~ msgid "End X"
#~ msgstr "Koniec X"

#~ msgid "End Y"
#~ msgstr "Koniec Y"

#~ msgid "From top-left to bottom-right"
#~ msgstr "Zľava hore doprava dole"

#~ msgid "Graph scale"
#~ msgstr "Mierka grafu"

#~ msgid "Start X"
#~ msgstr "X začiatok"

#~ msgid "Start Y"
#~ msgstr "Y začiatok"

#~ msgid "Use selection bounds instead of belows"
#~ msgstr "Použiť hranice výberu namiesto nižšie uvedeného"

#~ msgid "Frame color"
#~ msgstr "Farba rámu"

#~ msgid "Frame size"
#~ msgstr "Veľkosť rámu"

#~ msgid "Imigre-_26..."
#~ msgstr "Imigre-_26..."

#~ msgid "Land height"
#~ msgstr "Výška zeme"

#~ msgid "Sea depth"
#~ msgstr "Hĺbka mora"

#~ msgid "Effect size (pixels * 5)"
#~ msgstr "Veľkosť efektu (v bodoch *5)"

#~ msgid "N_eon..."
#~ msgstr "N_eón..."

#~ msgid "Cell size (pixels)"
#~ msgstr "Veľkosť bunky (v bodoch)"

#~ msgid "Density (%)"
#~ msgstr "Intenzita (%)"

#~ msgid "Newsprint Te_xt..."
#~ msgstr "Novinový te_xt..."

#~ msgid "Lower color"
#~ msgstr "Dolná farba"

#~ msgid "Lower color (active)"
#~ msgstr "Dolná farba (aktívna)"

#~ msgid "Not pressed"
#~ msgstr "Nestlačené"

#~ msgid "Not pressed (active)"
#~ msgstr "Nestlačené (aktívne)"

#~ msgid "Padding X"
#~ msgstr "Výplň X"

#~ msgid "Padding Y"
#~ msgstr "Výplň Y"

#~ msgid "Round ratio"
#~ msgstr "Pomer zaoblenia"

#~ msgid "Text color (active)"
#~ msgstr "Farba textu (aktívna)"

#~ msgid "Upper color"
#~ msgstr "Horná farba"

#~ msgid "Upper color (active)"
#~ msgstr "Horná farba (aktívna)"

#~ msgid "_Round Button..."
#~ msgstr "_Oblé tlačítko..."

#~ msgid "Behavior"
#~ msgstr "Správanie"

#~ msgid "Detail in middle"
#~ msgstr "Detaily v strede"

#~ msgid "Render _Map..."
#~ msgstr "Generovať _mapu..."

#~ msgid "Tile"
#~ msgstr "Dlaždice"

#~ msgid "SOTA Chrome..."
#~ msgstr "SOTA chróm..."

#~ msgid "Speed Text..."
#~ msgstr "Rýchly text..."

#~ msgid "Lighting (degrees)"
#~ msgstr "Osvetlenie (v stupňoch)"

#~ msgid "Radius (pixels)"
#~ msgstr "Polomer (v bodoch)"

#~ msgid "Sphere color"
#~ msgstr "Farba gule"

#~ msgid "Burst color"
#~ msgstr "Farba prenikania"

#~ msgid "Effect size (pixels * 30)"
#~ msgstr "Veľkosť efektu (v bodoch * 30)"

#~ msgid "Starb_urst..."
#~ msgstr "_Prenikanie hviezd..."

#~ msgid "Effect size (pixels * 4)"
#~ msgstr "Veľkosť efektu (v bodoch *4)"

#~ msgid "Sta_rscape..."
#~ msgstr "P_renikanie hviezd..."

#~ msgid "Swirl-_Tile..."
#~ msgstr "Vírivá _dlaždica..."

#~ msgid "Whirl amount"
#~ msgstr "Miera zvlnenia"

#~ msgid "Number of times to whirl"
#~ msgstr "Počet opakovaní zvlnenia"

#~ msgid "Quarter size"
#~ msgstr "Štvrtinová veľkosť"

#~ msgid "Whirl angle"
#~ msgstr "Uhol vírenia:"

#~ msgid "_Swirly..."
#~ msgstr "_Vírivé..."

#~ msgid "Base color"
#~ msgstr "Základná farba"

#~ msgid "Edge only"
#~ msgstr "Iba hrana"

#~ msgid "Edge width"
#~ msgstr "Šírka hrany"

#~ msgid "Hit rate"
#~ msgstr "Pomer úderov"

#~ msgid "_Particle Trace..."
#~ msgstr "Sto_pa častíc..."

#~ msgid "Antialias"
#~ msgstr "Vyhladzovanie"

#~ msgid "Fill angle"
#~ msgstr "Uhol výplne"

#~ msgid "Text C_ircle..."
#~ msgstr "Textový _kruh..."

#~ msgid "Ending blend"
#~ msgstr "Koncové splývanie"

#~ msgid "Hexagons"
#~ msgstr "Šesťuholník"

#~ msgid "Mosaic tile type"
#~ msgstr "Typ dlaždicovania mozaiky"

#~ msgid "Octagons"
#~ msgstr "Osemuholník"

#~ msgid "Squares"
#~ msgstr "Štvorce"

#~ msgid "Starting blend"
#~ msgstr "Počiatočné miešanie"

#~ msgid "Text pattern"
#~ msgstr "Vzorka textu"

#~ msgid "_Textured..."
#~ msgstr "_Textúrované..."

#~ msgid "Web Title Header..."
#~ msgstr "Hlavička web nadpisu..."

#~ msgid "Foreground color"
#~ msgstr "Farba popredia"

#~ msgid "T_ruchet..."
#~ msgstr "T_ruchet..."