1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
|
msgid ""
msgstr ""
"Project-Id-Version: inkstitch\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-17 00:51+0000\n"
"PO-Revision-Date: 2021-09-15 00:54\n"
"Last-Translator: \n"
"Language-Team: Catalan\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.9.1\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: easygettext\n"
"Project-Id-Version: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Crowdin-Project: inkstitch\n"
"X-Crowdin-Project-ID: 299419\n"
"X-Crowdin-Language: ca\n"
"X-Crowdin-File: /main/messages.po\n"
"X-Crowdin-File-ID: 8\n"
"Language: ca_ES\n"
#. name of font in fonts/amita
#: inkstitch-fonts-metadata.py:2
msgid "Amita"
msgstr ""
#. description of font in fonts/amita
#: inkstitch-fonts-metadata.py:4
#, python-format
msgid "Amita bold. The capital M is 25.3 millimeter wide at 100% scale. Can be scaled down to 80% or up to 160%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/apex_lake
#: inkstitch-fonts-metadata.py:6
msgid "Apex Lake"
msgstr ""
#. description of font in fonts/apex_lake
#: inkstitch-fonts-metadata.py:8
msgid "Police de lettrines 59.4 par 57.8mm. Majuscules, chiffres, ! et ?"
msgstr ""
#. name of font in fonts/baumans
#: inkstitch-fonts-metadata.py:10
msgid "Baumans"
msgstr ""
#. description of font in fonts/baumans
#: inkstitch-fonts-metadata.py:12
#, python-format
msgid "The capital M is 22.3 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/chopin
#: inkstitch-fonts-metadata.py:14
msgid "Chopin Script"
msgstr ""
#. description of font in fonts/chopin
#: inkstitch-fonts-metadata.py:16
#, python-format
msgid "The capital M is 38.3 millimeter wide at 100% scale. Can be scaled down to 80% or up to 120%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/coronaviral
#: inkstitch-fonts-metadata.py:18
msgid "Coronaviral"
msgstr ""
#. description of font in fonts/coronaviral
#: inkstitch-fonts-metadata.py:20
msgid "A font created with manual sitch. Do not change the size or very little. The capital em is 22mm wide at 100%"
msgstr ""
#. name of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:22
msgid "Dejavu Serif"
msgstr ""
#. description of font in fonts/dejavufont
#: inkstitch-fonts-metadata.py:24
#, python-format
msgid "DejaVu Serif Condensed. The capital M is 19,8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has center-walk underlay."
msgstr ""
#. name of font in fonts/digory_doodles_bean
#: inkstitch-fonts-metadata.py:26
msgid "Digory Doodles Bean"
msgstr ""
#. description of font in fonts/digory_doodles_bean
#: inkstitch-fonts-metadata.py:28
msgid "All letteres have mixed satin and bean stitch; The capital M is 16mm tall. The small x is 7 mm"
msgstr ""
#. name of font in fonts/emilio_20
#: inkstitch-fonts-metadata.py:30
msgid "Emilio 20"
msgstr ""
#. description of font in fonts/emilio_20
#: inkstitch-fonts-metadata.py:32
#, python-format
msgid "Emilio 20 is a font with capital only ans numbers. M is 48.5 millimeter wide at 100% scale. Can be scaled down to 70% or up to 140%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/espresso_dolce
#: inkstitch-fonts-metadata.py:34
msgid "Espresso Dolce"
msgstr ""
#. description of font in fonts/espresso_dolce
#: inkstitch-fonts-metadata.py:36
msgid "The capital M is 16.2 mm high at 100 scale. Every satin has zigzag underlay. x is 11.5 mm high, q is 17.5 mm high, l is 17.2 mm high."
msgstr ""
#. name of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:38
msgid "Geneva Simple Sans Rounded"
msgstr ""
#. description of font in fonts/geneva_rounded
#: inkstitch-fonts-metadata.py:40
msgid "Suitable for small fonts (8 to 20 mm)"
msgstr ""
#. name of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:42
msgid "Geneva Simple Sans"
msgstr ""
#. description of font in fonts/geneva_simple
#: inkstitch-fonts-metadata.py:44
msgid "Suitable for small fonts (6 to 15mm)"
msgstr ""
#. name of font in fonts/kaushan_script
#: inkstitch-fonts-metadata.py:46
msgid "Kaushan Script"
msgstr ""
#. description of font in fonts/kaushan_script
#: inkstitch-fonts-metadata.py:48
#, python-format
msgid "The capital M is 29 millimeter wide at 100% scale. Can be scaled down to 80% or up to 200%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/learning_curve
#: inkstitch-fonts-metadata.py:50
msgid "Learning curve"
msgstr ""
#. description of font in fonts/learning_curve
#: inkstitch-fonts-metadata.py:52
msgid "Cursive italique en point triple pour des minuscules de 6 à 14mm"
msgstr ""
#. name of font in fonts/lobster
#: inkstitch-fonts-metadata.py:54
msgid "Lobster Two"
msgstr ""
#. description of font in fonts/lobster
#: inkstitch-fonts-metadata.py:56
#, python-format
msgid "Lobster Two Bold Italic. The capital M is 19.8 millimeter wide at 100% scale. Can be scaled down to 80% or up to 150%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/magnolia_ script
#: inkstitch-fonts-metadata.py:58
msgid "Magnolia Script"
msgstr ""
#. description of font in fonts/magnolia_ script
#: inkstitch-fonts-metadata.py:60
msgid "The Capital M is a bit less than 2 cm high. It can be scaled down to 80% and up to 120%"
msgstr ""
#. name of font in fonts/manuskript_gotisch
#: inkstitch-fonts-metadata.py:62
msgid "Manuskript Gothisch"
msgstr ""
#. description of font in fonts/manuskript_gotisch
#: inkstitch-fonts-metadata.py:64
#, python-format
msgid "The capital M is 35 millimeter wide at 100% scale. Can be scaled down to 70% or up to 140%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:66
msgid "Ink/Stitch Medium Font"
msgstr ""
#. description of font in fonts/medium_font
#: inkstitch-fonts-metadata.py:68
#, python-format
msgid "A basic font suited for medium-sized characters. The capital em is 0.6 inches wide at 100% scale. Can be scaled down to 75% or up to 150%. Every satin has contour underlay."
msgstr ""
#. name of font in fonts/romanaugusa
#: inkstitch-fonts-metadata.py:70
msgid "Romanaugusa"
msgstr ""
#. description of font in fonts/romanaugusa
#: inkstitch-fonts-metadata.py:72
#, python-format
msgid "Based on Latin Modern Roman 10 Bold italic. The capital M is 42.5 millimeter wide at 100% scale. Can be scaled down to 70% or up to 130%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/romanaugusa_bicolor
#: inkstitch-fonts-metadata.py:74
msgid "Romanaugusa bicolor"
msgstr ""
#. description of font in fonts/romanaugusa_bicolor
#: inkstitch-fonts-metadata.py:76
#, python-format
msgid "Based on Latin Modern Roman 10 Bold italic. A font with capital letters with 2 colors. Very easy to use with letters from Romanaugusa. The capital M is 42.5 millimeter wide at 100% scale. Can be scaled down to 70% or up to 130%. Every satin has zigzag underlay"
msgstr ""
#. name of font in fonts/sacramarif
#: inkstitch-fonts-metadata.py:78
msgid "Sacramarif"
msgstr ""
#. description of font in fonts/sacramarif
#: inkstitch-fonts-metadata.py:80
msgid "Based on Sacramento. Very small font with runstitch. It can be scaled from 80% to 150%"
msgstr ""
#. name of font in fonts/small_font
#: inkstitch-fonts-metadata.py:82
msgid "Ink/Stitch Small Font"
msgstr ""
#. description of font in fonts/small_font
#: inkstitch-fonts-metadata.py:84
#, python-format
msgid "A font suited for small characters. The capital em is 0.2 inches wide at 100% scale. Can be scaled up to 300%."
msgstr ""
#. name of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:86
msgid "TT Directors"
msgstr ""
#. description of font in fonts/tt_directors
#: inkstitch-fonts-metadata.py:88
msgid "A font suited for directing"
msgstr ""
#. name of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:90
msgid "TT Masters"
msgstr ""
#. description of font in fonts/tt_masters
#: inkstitch-fonts-metadata.py:92
msgid "A font suited for heavy typing :)"
msgstr ""
#: inkstitch.py:61
msgid "Ink/Stitch cannot read your SVG file. This is often the case when you use a file which has been created with Adobe Illustrator."
msgstr ""
#: inkstitch.py:64
msgid "Try to import the file into Inkscape through 'File > Import...' (Ctrl+I)"
msgstr ""
#: inkstitch.py:75
msgid "Ink/Stitch experienced an unexpected error."
msgstr ""
#: inkstitch.py:76
msgid "If you'd like to help, please file an issue at https://github.com/inkstitch/inkstitch/issues and include the entire error description below:"
msgstr ""
#. command attached to an object
#: lib/commands.py:24
msgid "Fill stitch starting position"
msgstr ""
#. command attached to an object
#: lib/commands.py:27
msgid "Fill stitch ending position"
msgstr ""
#. command attached to an object
#: lib/commands.py:30
msgid "Auto-route satin stitch starting position"
msgstr ""
#. command attached to an object
#: lib/commands.py:33
msgid "Auto-route satin stitch ending position"
msgstr ""
#. command attached to an object
#: lib/commands.py:36
msgid "Stop (pause machine) after sewing this object"
msgstr ""
#. command attached to an object
#: lib/commands.py:39
msgid "Trim thread after sewing this object"
msgstr ""
#. command attached to an object
#: lib/commands.py:42
msgid "Ignore this object (do not stitch)"
msgstr ""
#. command attached to an object
#: lib/commands.py:45
msgid "Satin cut point (use with Cut Satin Column)"
msgstr ""
#. command that affects a layer
#: lib/commands.py:48
msgid "Ignore layer (do not stitch any objects in this layer)"
msgstr ""
#. command that affects entire document
#: lib/commands.py:51
msgid "Origin for exported embroidery files"
msgstr ""
#. command that affects entire document
#: lib/commands.py:54
msgid "Jump destination for Stop commands (a.k.a. \"Frame Out position\")."
msgstr ""
#: lib/commands.py:212
#, python-format
msgid "Error: there is more than one %(command)s command in the document, but there can only be one. Please remove all but one."
msgstr ""
#. This is a continuation of the previous error message, letting the user know
#. what command we're talking about since we don't normally expose the actual
#. command name to them. Contents of %(description)s are in a separate
#. translation
#. string.
#: lib/commands.py:219
#, python-format
msgid "%(command)s: %(description)s"
msgstr ""
#: lib/commands.py:284 lib/commands.py:397
msgid "Ink/Stitch Command"
msgstr ""
#. : the name of the line that connects a command to the object it applies to
#: lib/commands.py:310
msgid "connector"
msgstr ""
#. : the name of a command symbol (example: scissors icon for trim command)
#: lib/commands.py:326
msgid "command marker"
msgstr ""
#: lib/elements/auto_fill.py:23
msgid "Small Fill"
msgstr ""
#: lib/elements/auto_fill.py:24
msgid "This fill object is so small that it would probably look better as running stitch or satin column. For very small shapes, fill stitch is not possible, and Ink/Stitch will use running stitch around the outline instead."
msgstr ""
#: lib/elements/auto_fill.py:30 lib/elements/auto_fill.py:146
msgid "Expand"
msgstr ""
#: lib/elements/auto_fill.py:31
msgid "The expand parameter for this fill object cannot be applied. Ink/Stitch will ignore it and will use original size instead."
msgstr ""
#: lib/elements/auto_fill.py:36 lib/elements/auto_fill.py:123
msgid "Inset"
msgstr ""
#: lib/elements/auto_fill.py:37
msgid "The underlay inset parameter for this fill object cannot be applied. Ink/Stitch will ignore it and will use the original size instead."
msgstr ""
#: lib/elements/auto_fill.py:42
msgid "AutoFill"
msgstr ""
#: lib/elements/auto_fill.py:45
msgid "Automatically routed fill stitching"
msgstr ""
#: lib/elements/auto_fill.py:65
msgid "Running stitch length (traversal between sections)"
msgstr ""
#: lib/elements/auto_fill.py:66
msgid "Length of stitches around the outline of the fill region used when moving from section to section."
msgstr ""
#: lib/elements/auto_fill.py:74
msgid "Underlay"
msgstr ""
#: lib/elements/auto_fill.py:74 lib/elements/auto_fill.py:83
#: lib/elements/auto_fill.py:105 lib/elements/auto_fill.py:116
#: lib/elements/auto_fill.py:126 lib/elements/auto_fill.py:138
#: lib/elements/auto_fill.py:172
msgid "AutoFill Underlay"
msgstr ""
#: lib/elements/auto_fill.py:80
msgid "Fill angle"
msgstr ""
#: lib/elements/auto_fill.py:81
msgid "Default: fill angle + 90 deg. Insert comma-seperated list for multiple layers."
msgstr ""
#: lib/elements/auto_fill.py:102
msgid "Row spacing"
msgstr ""
#: lib/elements/auto_fill.py:103
msgid "default: 3x fill row spacing"
msgstr ""
#: lib/elements/auto_fill.py:113
msgid "Max stitch length"
msgstr ""
#: lib/elements/auto_fill.py:114
msgid "default: equal to fill max stitch length"
msgstr ""
#: lib/elements/auto_fill.py:124
msgid "Shrink the shape before doing underlay, to prevent underlay from showing around the outside of the fill."
msgstr ""
#: lib/elements/auto_fill.py:135 lib/elements/fill.py:75
msgid "Skip last stitch in each row"
msgstr ""
#: lib/elements/auto_fill.py:136 lib/elements/fill.py:76
msgid "The last stitch in each row is quite close to the first stitch in the next row. Skipping it decreases stitch count and density."
msgstr ""
#: lib/elements/auto_fill.py:147
msgid "Expand the shape before fill stitching, to compensate for gaps between shapes."
msgstr ""
#: lib/elements/auto_fill.py:156 lib/elements/auto_fill.py:168
msgid "Underpath"
msgstr ""
#: lib/elements/auto_fill.py:157 lib/elements/auto_fill.py:169
msgid "Travel inside the shape when moving from section to section. Underpath stitches avoid traveling in the direction of the row angle so that they are not visible. This gives them a jagged appearance."
msgstr ""
#: lib/elements/auto_fill.py:266
msgid "Error during autofill! This means that there is a problem with Ink/Stitch."
msgstr ""
#. this message is followed by a URL:
#. https://github.com/inkstitch/inkstitch/issues/new
#: lib/elements/auto_fill.py:269
msgid "If you'd like to help us make Ink/Stitch better, please paste this whole message into a new issue at: "
msgstr ""
#: lib/elements/clone.py:27
msgid "Clone Object"
msgstr ""
#: lib/elements/clone.py:28
msgid "There are one or more clone objects in this document. Ink/Stitch can work with single clones, but you are limited to set a very few parameters. "
msgstr ""
#: lib/elements/clone.py:31
msgid "If you want to convert the clone into a real element, follow these steps:"
msgstr ""
#: lib/elements/clone.py:32
msgid "* Select the clone"
msgstr ""
#: lib/elements/clone.py:33 lib/elements/clone.py:44
msgid "* Run: Edit > Clone > Unlink Clone (Alt+Shift+D)"
msgstr ""
#: lib/elements/clone.py:38
msgid "Clone is not embroiderable"
msgstr ""
#: lib/elements/clone.py:39
msgid "There are one ore more clone objects in this document. A clone must be a direct child of an embroiderable element. Ink/Stitch cannot embroider clones of groups or other not embroiderable elements (text or image)."
msgstr ""
#: lib/elements/clone.py:42
msgid "Convert the clone into a real element:"
msgstr ""
#: lib/elements/clone.py:43
msgid "* Select the clone."
msgstr ""
#: lib/elements/clone.py:58
msgid "Clone"
msgstr ""
#: lib/elements/clone.py:64
msgid "Custom fill angle"
msgstr ""
#: lib/elements/clone.py:65
msgid "This setting will apply a custom fill angle for the clone."
msgstr ""
#: lib/elements/element.py:198
msgid "Allow lock stitches"
msgstr ""
#: lib/elements/element.py:199
msgid "Tie thread at the beginning and/or end of this object. Manual stitch will not add lock stitches."
msgstr ""
#. options to allow lock stitch before and after objects
#: lib/elements/element.py:203
msgid "Both"
msgstr ""
#: lib/elements/element.py:203
msgid "Before"
msgstr ""
#: lib/elements/element.py:203
msgid "After"
msgstr ""
#: lib/elements/element.py:203
msgid "Neither"
msgstr ""
#: lib/elements/element.py:245
#, python-format
msgid "Object %(id)s has an empty 'd' attribute. Please delete this object from your document."
msgstr ""
#. used when showing an error message to the user such as
#. "Some Path (path1234): error: satin column: One or more of the rungs doesn't
#. intersect both rails."
#: lib/elements/element.py:332
msgid "error:"
msgstr ""
#: lib/elements/empty_d_object.py:13
msgid "Empty D-Attribute"
msgstr ""
#: lib/elements/empty_d_object.py:14
msgid "There is an invalid path object in the document, the d-attribute is missing."
msgstr ""
#: lib/elements/empty_d_object.py:16
msgid "* Run Extensions > Ink/Stitch > Troubleshoot > Cleanup Document..."
msgstr ""
#: lib/elements/fill.py:23
msgid "Unconnected"
msgstr ""
#: lib/elements/fill.py:24
msgid "Fill: This object is made up of unconnected shapes. This is not allowed because Ink/Stitch doesn't know what order to stitch them in. Please break this object up into separate shapes."
msgstr ""
#: lib/elements/fill.py:28 lib/elements/fill.py:36
msgid "* Extensions > Ink/Stitch > Fill Tools > Break Apart Fill Objects"
msgstr ""
#: lib/elements/fill.py:33
msgid "Border crosses itself"
msgstr ""
#: lib/elements/fill.py:34
msgid "Fill: Shape is not valid. This can happen if the border crosses over itself."
msgstr ""
#: lib/elements/fill.py:41
msgid "Fill"
msgstr ""
#: lib/elements/fill.py:48
msgid "Manually routed fill stitching"
msgstr ""
#: lib/elements/fill.py:49
msgid "AutoFill is the default method for generating fill stitching."
msgstr ""
#: lib/elements/fill.py:58
msgid "Angle of lines of stitches"
msgstr ""
#: lib/elements/fill.py:59
msgid "The angle increases in a counter-clockwise direction. 0 is horizontal. Negative angles are allowed."
msgstr ""
#: lib/elements/fill.py:86
msgid "Flip fill (start right-to-left)"
msgstr ""
#: lib/elements/fill.py:87
msgid "The flip option can help you with routing your stitch path. When you enable flip, stitching goes from right-to-left instead of left-to-right."
msgstr ""
#: lib/elements/fill.py:96
msgid "Spacing between rows"
msgstr ""
#: lib/elements/fill.py:97
msgid "Distance between rows of stitches."
msgstr ""
#: lib/elements/fill.py:110
msgid "Maximum fill stitch length"
msgstr ""
#: lib/elements/fill.py:111
msgid "The length of each stitch in a row. Shorter stitch may be used at the start or end of a row."
msgstr ""
#: lib/elements/fill.py:120
msgid "Stagger rows this many times before repeating"
msgstr ""
#: lib/elements/fill.py:121
msgid "Setting this dictates how many rows apart the stitches will be before they fall in the same column position."
msgstr ""
#: lib/elements/image.py:13
msgid "Image"
msgstr ""
#: lib/elements/image.py:14
msgid "Ink/Stitch can't work with objects like images."
msgstr ""
#: lib/elements/image.py:16
msgid "* Convert your image into a path: Path > Trace Bitmap... (Shift+Alt+B) (further steps might be required)"
msgstr ""
#: lib/elements/image.py:18
msgid "* Alternatively redraw the image with the pen (P) or bezier (B) tool"
msgstr ""
#: lib/elements/pattern.py:14
msgid "Pattern Element"
msgstr ""
#: lib/elements/pattern.py:15
msgid "This element will not be embroidered. It will appear as a pattern applied to objects in the same group as it. Objects in sub-groups will be ignored."
msgstr ""
#: lib/elements/pattern.py:19
msgid "To disable pattern mode, remove the pattern marker:"
msgstr ""
#: lib/elements/pattern.py:20
msgid "* Open the Fill and Stroke panel (Objects > Fill and Stroke)"
msgstr ""
#: lib/elements/pattern.py:21
msgid "* Go to the Stroke style tab"
msgstr ""
#: lib/elements/pattern.py:22
msgid "* Under \"Markers\" choose the first (empty) option in the first dropdown list."
msgstr ""
#: lib/elements/polyline.py:18
msgid "Polyline Object"
msgstr ""
#: lib/elements/polyline.py:19
msgid "This object is an SVG PolyLine. Ink/Stitch can work with this shape, but you can't edit it in Inkscape. Convert it to a manual stitch path to allow editing."
msgstr ""
#: lib/elements/polyline.py:23 lib/elements/satin_column.py:26
msgid "* Select this object."
msgstr ""
#: lib/elements/polyline.py:24
msgid "* Do Path > Object to Path."
msgstr ""
#: lib/elements/polyline.py:25
msgid "* Optional: Run the Params extension and check the \"manual stitch\" box."
msgstr ""
#: lib/elements/polyline.py:45
msgid "Manual stitch along path"
msgstr ""
#: lib/elements/satin_column.py:23
msgid "Satin column has fill"
msgstr ""
#: lib/elements/satin_column.py:24
msgid "Satin column: Object has a fill (but should not)"
msgstr ""
#: lib/elements/satin_column.py:27
msgid "* Open the Fill and Stroke panel"
msgstr ""
#: lib/elements/satin_column.py:28
msgid "* Open the Fill tab"
msgstr ""
#: lib/elements/satin_column.py:29
msgid "* Disable the Fill"
msgstr ""
#: lib/elements/satin_column.py:30
msgid "* Alternative: open Params and switch this path to Stroke to disable Satin Column mode"
msgstr ""
#: lib/elements/satin_column.py:35
msgid "Too few subpaths"
msgstr ""
#: lib/elements/satin_column.py:36
msgid "Satin column: Object has too few subpaths. A satin column should have at least two subpaths (the rails)."
msgstr ""
#: lib/elements/satin_column.py:38
msgid "* Add another subpath (select two rails and do Path > Combine)"
msgstr ""
#: lib/elements/satin_column.py:39
msgid "* Convert to running stitch or simple satin (Params extension)"
msgstr ""
#: lib/elements/satin_column.py:44
msgid "Unequal number of points"
msgstr ""
#: lib/elements/satin_column.py:45
msgid "Satin column: There are no rungs and rails have an an unequal number of points."
msgstr ""
#: lib/elements/satin_column.py:47
msgid "The easiest way to solve this issue is to add one or more rungs. "
msgstr ""
#: lib/elements/satin_column.py:48
msgid "Rungs control the stitch direction in satin columns."
msgstr ""
#: lib/elements/satin_column.py:49
msgid "* With the selected object press \"P\" to activate the pencil tool."
msgstr ""
#: lib/elements/satin_column.py:50
msgid "* Hold \"Shift\" while drawing the rung."
msgstr ""
#: lib/elements/satin_column.py:54
msgid "Each rung should intersect both rails once."
msgstr ""
#: lib/elements/satin_column.py:58
msgid "Rung doesn't intersect rails"
msgstr ""
#: lib/elements/satin_column.py:59
msgid "Satin column: A rung doesn't intersect both rails."
msgstr ""
#: lib/elements/satin_column.py:63
msgid "Rungs intersects too many times"
msgstr ""
#: lib/elements/satin_column.py:64
msgid "Satin column: A rung intersects a rail more than once."
msgstr ""
#: lib/elements/satin_column.py:68
msgid "Satin Column"
msgstr ""
#: lib/elements/satin_column.py:74
msgid "Custom satin column"
msgstr ""
#: lib/elements/satin_column.py:80
msgid "\"E\" stitch"
msgstr ""
#: lib/elements/satin_column.py:86
msgid "Maximum stitch length"
msgstr ""
#: lib/elements/satin_column.py:87
msgid "Maximum stitch length for split stitches."
msgstr ""
#: lib/elements/satin_column.py:98 lib/elements/stroke.py:62
msgid "Zig-zag spacing (peak-to-peak)"
msgstr ""
#: lib/elements/satin_column.py:99
msgid "Peak-to-peak distance between zig-zags."
msgstr ""
#: lib/elements/satin_column.py:110
msgid "Pull compensation"
msgstr ""
#: lib/elements/satin_column.py:111
msgid "Satin stitches pull the fabric together, resulting in a column narrower than you draw in Inkscape. This setting expands each pair of needle penetrations outward from the center of the satin column."
msgstr ""
#: lib/elements/satin_column.py:123
msgid "Contour underlay"
msgstr ""
#: lib/elements/satin_column.py:123 lib/elements/satin_column.py:130
#: lib/elements/satin_column.py:139
msgid "Contour Underlay"
msgstr ""
#: lib/elements/satin_column.py:130 lib/elements/satin_column.py:154
msgid "Stitch length"
msgstr ""
#: lib/elements/satin_column.py:136
msgid "Contour underlay inset amount"
msgstr ""
#: lib/elements/satin_column.py:137
msgid "Shrink the outline, to prevent the underlay from showing around the outside of the satin column."
msgstr ""
#: lib/elements/satin_column.py:147
msgid "Center-walk underlay"
msgstr ""
#: lib/elements/satin_column.py:147 lib/elements/satin_column.py:154
msgid "Center-Walk Underlay"
msgstr ""
#: lib/elements/satin_column.py:159
msgid "Zig-zag underlay"
msgstr ""
#: lib/elements/satin_column.py:159 lib/elements/satin_column.py:168
#: lib/elements/satin_column.py:179
msgid "Zig-zag Underlay"
msgstr ""
#: lib/elements/satin_column.py:165
msgid "Zig-Zag spacing (peak-to-peak)"
msgstr ""
#: lib/elements/satin_column.py:166
msgid "Distance between peaks of the zig-zags."
msgstr ""
#: lib/elements/satin_column.py:176
msgid "Inset amount"
msgstr ""
#: lib/elements/satin_column.py:177
msgid "default: half of contour underlay inset"
msgstr ""
#: lib/elements/stroke.py:21
msgid "Stroke"
msgstr ""
#: lib/elements/stroke.py:24
msgid "Running stitch along paths"
msgstr ""
#: lib/elements/stroke.py:38
msgid "Running stitch length"
msgstr ""
#: lib/elements/stroke.py:39
msgid "Length of stitches in running stitch mode."
msgstr ""
#: lib/elements/stroke.py:50
msgid "Bean stitch number of repeats"
msgstr ""
#: lib/elements/stroke.py:51
msgid "Backtrack each stitch this many times. A value of 1 would triple each stitch (forward, back, forward). A value of 2 would quintuple each stitch, etc. Only applies to running stitch."
msgstr ""
#: lib/elements/stroke.py:63
msgid "Length of stitches in zig-zag mode."
msgstr ""
#: lib/elements/stroke.py:74
msgid "Repeats"
msgstr ""
#: lib/elements/stroke.py:75
msgid "Defines how many times to run down and back along the path."
msgstr ""
#: lib/elements/stroke.py:108
msgid "Manual stitch placement"
msgstr ""
#: lib/elements/stroke.py:109
msgid "Stitch every node in the path. Stitch length and zig-zag spacing are ignored."
msgstr ""
#: lib/elements/stroke.py:143
msgid "Legacy running stitch setting detected!\n\n"
"It looks like you're using a stroke smaller than 0.5 units to indicate a running stitch, which is deprecated. Instead, please set your stroke to be dashed to indicate running stitch. Any kind of dash will work."
msgstr ""
#: lib/elements/text.py:13 lib/extensions/lettering.py:77
msgid "Text"
msgstr ""
#: lib/elements/text.py:14
msgid "Ink/Stitch cannot work with objects like text."
msgstr ""
#: lib/elements/text.py:16
msgid "* Text: Create your own letters or try the lettering tool:"
msgstr ""
#: lib/elements/text.py:17
msgid "- Extensions > Ink/Stitch > Lettering"
msgstr ""
#: lib/extensions/auto_satin.py:35
msgid "Please ensure that at most one start and end command is attached to the selected satin columns."
msgstr ""
#. auto-route satin columns extension
#: lib/extensions/auto_satin.py:49
msgid "Please select one or more satin columns."
msgstr ""
#: lib/extensions/auto_satin.py:54
msgid "Please select at least one satin column."
msgstr ""
#. This was previously: "No embroiderable paths selected."
#: lib/extensions/base.py:124
msgid "Ink/Stitch doesn't know how to work with any of the objects you've selected."
msgstr ""
#: lib/extensions/base.py:126
msgid "There are no objects in the entire document that Ink/Stitch knows how to work with."
msgstr ""
#: lib/extensions/base.py:128
msgid "Tip: Run Extensions > Ink/Stitch > Troubleshoot > Troubleshoot Objects"
msgstr ""
#: lib/extensions/break_apart.py:31
msgid "Please select one or more fill areas to break apart."
msgstr ""
#: lib/extensions/cleanup.py:37 lib/extensions/cleanup.py:49
#, python-format
msgid "%s elements removed"
msgstr ""
#: lib/extensions/convert_to_satin.py:35
msgid "Please select at least one line to convert to a satin column."
msgstr ""
#. : Convert To Satin extension, user selected one or more objects that were
#. not lines.
#: lib/extensions/convert_to_satin.py:40
msgid "Only simple lines may be converted to satin columns."
msgstr ""
#: lib/extensions/convert_to_satin.py:134
msgid "Ink/Stitch cannot convert your stroke into a satin column. Please break up your path and try again."
msgstr ""
#. : Convert To Satin extension, user selected one or more objects that were
#. not lines.
#: lib/extensions/convert_to_stroke.py:25
#: lib/extensions/convert_to_stroke.py:30
msgid "Please select at least one satin column to convert to a running stitch."
msgstr ""
#: lib/extensions/cut_satin.py:20
msgid "Please select one or more satin columns to cut."
msgstr ""
#. will have the satin's id prepended, like this:
#. path12345: error: this satin column does not ...
#: lib/extensions/cut_satin.py:30
msgid "this satin column does not have a \"satin column cut point\" command attached to it. Please use the \"Attach commands\" extension and attach the \"Satin Column cut point\" command first."
msgstr ""
#: lib/extensions/duplicate_params.py:19
msgid "This function copies Ink/Stitch parameters from the first selected element to the rest of the selection. Please select at least two elements."
msgstr ""
#: lib/extensions/flip.py:28
msgid "Please select one or more satin columns to flip."
msgstr ""
#: lib/extensions/import_threadlist.py:33
msgid "File not found."
msgstr ""
#: lib/extensions/import_threadlist.py:36
msgid "The filepath specified is not a file but a dictionary.\n"
"Please choose a threadlist file to import."
msgstr ""
#: lib/extensions/import_threadlist.py:46
msgid "Couldn't find any matching colors in the file."
msgstr ""
#: lib/extensions/import_threadlist.py:48
msgid "Please try to import as \"other threadlist\" and specify a color palette below."
msgstr ""
#: lib/extensions/import_threadlist.py:50
msgid "Please chose an other color palette for your design."
msgstr ""
#: lib/extensions/input.py:71
#, python-format
msgid "File does not exist and cannot be opened. Please correct the file path and try again.\\r%s"
msgstr ""
#: lib/extensions/install_custom_palette.py:24
msgid "File does not exist."
msgstr ""
#: lib/extensions/install_custom_palette.py:28
msgid "Wrong file type. Ink/Stitch only accepts gpl color palettes."
msgstr ""
#: lib/extensions/install_custom_palette.py:36
msgid "Ink/Stitch cannot find your palette folder automatically. Please install your palette manually."
msgstr ""
#: lib/extensions/layer_commands.py:20
msgid "Please choose one or more commands to add."
msgstr ""
#: lib/extensions/lettering.py:43 lib/extensions/lettering.py:420
msgid "Ink/Stitch Lettering"
msgstr ""
#: lib/extensions/lettering.py:53
msgid "Font"
msgstr ""
#: lib/extensions/lettering.py:65
msgid "Options"
msgstr ""
#: lib/extensions/lettering.py:70
msgid "Stitch lines of text back and forth"
msgstr ""
#: lib/extensions/lettering.py:73
msgid "Add trims"
msgstr ""
#: lib/extensions/lettering.py:82 lib/extensions/params.py:361
#: print/templates/custom-page.html:23 print/templates/custom-page.html:27
#: print/templates/custom-page.html:33 print/templates/ui.html:92
#: print/templates/ui.html:96 print/templates/ui.html:102
#: electron/src/renderer/components/InstallPalettes.vue:25
#: electron/src/renderer/components/InstallPalettes.vue:63
msgid "Cancel"
msgstr ""
#: lib/extensions/lettering.py:86 lib/extensions/params.py:368
msgid "Apply and Quit"
msgstr ""
#: lib/extensions/lettering.py:153
msgid "Unable to find any fonts! Please try reinstalling Ink/Stitch."
msgstr ""
#: lib/extensions/lettering.py:224
msgid "This font has no available font variant. Please update or remove the font."
msgstr ""
#. The user has chosen to scale the text by some percentage
#. (50%, 200%, etc). If you need to use the percentage symbol,
#. make sure to double it (%%).
#: lib/extensions/lettering.py:266
#, python-format
msgid "Text scale %s%%"
msgstr ""
#: lib/extensions/lettering.py:410
msgid "Please select only one block of text."
msgstr ""
#: lib/extensions/lettering.py:413
msgid "You've selected objects that were not created by the Lettering extension. Please clear your selection or select different objects before running Lettering again."
msgstr ""
#: lib/extensions/lettering_custom_font_dir.py:27
msgid "Please specify the directory of your custom fonts."
msgstr ""
#: lib/extensions/lettering_generate_json.py:41
msgid "Please specify a font file."
msgstr ""
#: lib/extensions/object_commands.py:21
msgid "Please select one or more objects to which to attach commands."
msgstr ""
#: lib/extensions/object_commands.py:29
msgid "Please choose one or more commands to attach."
msgstr ""
#: lib/extensions/params.py:208
msgid "These settings will be applied to 1 object."
msgstr ""
#: lib/extensions/params.py:210
#, python-format
msgid "These settings will be applied to %d objects."
msgstr ""
#: lib/extensions/params.py:213
msgid "Some settings had different values across objects. Select a value from the dropdown or enter a new one."
msgstr ""
#: lib/extensions/params.py:217
#, python-format
msgid "Disabling this tab will disable the following %d tabs."
msgstr ""
#: lib/extensions/params.py:219
msgid "Disabling this tab will disable the following tab."
msgstr ""
#: lib/extensions/params.py:222
#, python-format
msgid "Enabling this tab will disable %s and vice-versa."
msgstr ""
#: lib/extensions/params.py:252
msgid "Inkscape objects"
msgstr ""
#: lib/extensions/params.py:313
msgid "Click to force this parameter to be saved when you click \"Apply and Quit\""
msgstr ""
#: lib/extensions/params.py:321
msgid "This parameter will be saved when you click \"Apply and Quit\""
msgstr ""
#: lib/extensions/params.py:344
msgid "Embroidery Params"
msgstr ""
#: lib/extensions/params.py:365
msgid "Use Last Settings"
msgstr ""
#: lib/extensions/selection_to_pattern.py:21
msgid "Please select at least one object to be marked as a pattern."
msgstr ""
#: lib/extensions/troubleshoot.py:45
msgid "All selected shapes are valid! "
msgstr ""
#: lib/extensions/troubleshoot.py:47
msgid "If you are still having trouble with a shape not being embroidered, check if it is in a layer with an ignore command."
msgstr ""
#: lib/extensions/troubleshoot.py:71
msgid "Invalid Pointer"
msgstr ""
#: lib/extensions/troubleshoot.py:77 templates/lettering_generate_json.xml:26
msgid "Description"
msgstr ""
#: lib/extensions/troubleshoot.py:98 lib/extensions/troubleshoot.py:143
#: templates/cleanup.xml:17 templates/remove_embroidery_settings.xml:16
#: templates/troubleshoot.xml:10
msgid "Troubleshoot"
msgstr ""
#: lib/extensions/troubleshoot.py:110 lib/extensions/troubleshoot.py:150
msgid "Errors"
msgstr ""
#: lib/extensions/troubleshoot.py:116 lib/extensions/troubleshoot.py:154
msgid "Warnings"
msgstr ""
#: lib/extensions/troubleshoot.py:122
msgid "Type Warnings"
msgstr ""
#: lib/extensions/troubleshoot.py:151
msgid "Problems that will prevent the shape from being embroidered."
msgstr ""
#: lib/extensions/troubleshoot.py:155
msgid "These are problems that won't prevent the shape from being embroidered. You should consider to fix the warning, but if you don't, Ink/Stitch will do its best to process the object."
msgstr ""
#: lib/extensions/troubleshoot.py:160
msgid "Object Type Warnings"
msgstr ""
#: lib/extensions/troubleshoot.py:161
msgid "These objects may not work properly with Ink/Stitch. Follow the instructions to correct unwanted behaviour."
msgstr ""
#: lib/extensions/troubleshoot.py:177
msgid "It is possible, that one object contains more than one error, yet there will be only one pointer per object. Run this function again, when further errors occur. Remove pointers by deleting the layer named \"Troubleshoot\" through the objects panel (Object -> Objects...)."
msgstr ""
#: lib/extensions/zip.py:62
msgid "threadlist"
msgstr ""
#: lib/extensions/zip.py:71
msgid "No embroidery file formats selected."
msgstr ""
#: lib/extensions/zip.py:99
msgid "Design Details"
msgstr ""
#: lib/extensions/zip.py:102
msgid "Title"
msgstr ""
#: lib/extensions/zip.py:103
msgid "Size"
msgstr ""
#: lib/extensions/zip.py:104
msgid "Stitches"
msgstr ""
#: lib/extensions/zip.py:105
msgid "Colors"
msgstr ""
#: lib/extensions/zip.py:107
msgid "Thread Order"
msgstr ""
#: lib/extensions/zip.py:120
msgid "Thread Used"
msgstr ""
#: lib/gui/presets.py:52
msgid "Presets"
msgstr ""
#: lib/gui/presets.py:58
msgid "Load"
msgstr ""
#: lib/gui/presets.py:61
msgid "Add"
msgstr ""
#: lib/gui/presets.py:64
msgid "Overwrite"
msgstr ""
#: lib/gui/presets.py:67
msgid "Delete"
msgstr ""
#: lib/gui/presets.py:126
msgid "Please enter or select a preset name first."
msgstr ""
#: lib/gui/presets.py:126 lib/gui/presets.py:132 lib/gui/presets.py:148
msgid "Preset"
msgstr ""
#: lib/gui/presets.py:132
#, python-format
msgid "Preset \"%s\" not found."
msgstr ""
#: lib/gui/presets.py:148
#, python-format
msgid "Preset \"%s\" already exists. Please use another name or press \"Overwrite\""
msgstr ""
#: lib/gui/simulator.py:18 electron/src/renderer/assets/js/simulator.js:140
msgid "JUMP"
msgstr ""
#: lib/gui/simulator.py:18 electron/src/renderer/assets/js/simulator.js:143
msgid "TRIM"
msgstr ""
#. #-#-#-#-# messages-babel.po (PROJECT VERSION) #-#-#-#-#
#. command label at bottom of simulator window
#: lib/gui/simulator.py:18 templates/output_params_txt.xml:14
#: electron/src/renderer/assets/js/simulator.js:137
msgid "STITCH"
msgstr ""
#: lib/gui/simulator.py:18 templates/output_params_txt.xml:16
#: electron/src/renderer/assets/js/simulator.js:149
msgid "COLOR CHANGE"
msgstr ""
#: lib/gui/simulator.py:18 templates/output_params_txt.xml:18
#: electron/src/renderer/assets/js/simulator.js:146
msgid "STOP"
msgstr ""
#: lib/gui/simulator.py:50
msgid "Slow down (arrow down)"
msgstr ""
#: lib/gui/simulator.py:53
msgid "Speed up (arrow up)"
msgstr ""
#: lib/gui/simulator.py:56
msgid "Go on step backward (-)"
msgstr ""
#: lib/gui/simulator.py:59
msgid "Go on step forward (+)"
msgstr ""
#: lib/gui/simulator.py:62
msgid "Switch direction (arrow left | arrow right)"
msgstr ""
#: lib/gui/simulator.py:63 lib/gui/simulator.py:239 lib/gui/simulator.py:246
#: electron/src/renderer/components/Simulator.vue:29
msgid "Pause"
msgstr ""
#: lib/gui/simulator.py:65
msgid "Pause (P)"
msgstr ""
#: lib/gui/simulator.py:66
msgid "Restart"
msgstr ""
#: lib/gui/simulator.py:68
msgid "Restart (R)"
msgstr ""
#: lib/gui/simulator.py:69
msgid "O"
msgstr ""
#: lib/gui/simulator.py:71
msgid "Display needle penetration point (O)"
msgstr ""
#: lib/gui/simulator.py:72
msgid "Quit"
msgstr ""
#: lib/gui/simulator.py:74
msgid "Quit (Q)"
msgstr ""
#: lib/gui/simulator.py:186
#, python-format
msgid "Speed: %d stitches/sec"
msgstr ""
#: lib/gui/simulator.py:242 lib/gui/simulator.py:270
msgid "Start"
msgstr ""
#: lib/gui/simulator.py:816 lib/gui/simulator.py:826
msgid "Preview"
msgstr ""
#: lib/gui/simulator.py:857
msgid "Embroidery Simulation"
msgstr ""
#: lib/gui/warnings.py:21
msgid "Cannot load simulator.\n"
"Close Params to get full error message."
msgstr ""
#. If you translate this string, that will tell Ink/Stitch to
#. generate menu items for this language in Inkscape's "Extensions"
#. menu.
#: lib/inx/utils.py:86
msgid "Generate INX files"
msgstr ""
#: lib/lettering/font.py:158
#, python-format
msgid "The font '%s' has no variants."
msgstr ""
#. low-level file error. %(error)s is (hopefully?) translated by
#. the user's system automatically.
#: lib/output.py:101
#, python-format
msgid "Error writing to %(path)s: %(error)s"
msgstr ""
#: lib/stitches/auto_satin.py:659
msgid "Auto-Satin"
msgstr ""
#. Label for a satin column created by Auto-Route Satin Columns and Lettering
#. extensions
#: lib/stitches/auto_satin.py:706
#, python-format
msgid "AutoSatin %d"
msgstr ""
#. Label for running stitch (underpathing) created by Auto-Route Satin Columns
#. amd Lettering extensions
#: lib/stitches/auto_satin.py:709
#, python-format
msgid "AutoSatin Running Stitch %d"
msgstr ""
#: lib/svg/rendering.py:222
msgid "Stitch Plan"
msgstr ""
#: lib/svg/units.py:18
#, python-format
msgid "parseLengthWithUnits: unknown unit %s"
msgstr ""
#: lib/utils/version.py:19
#, python-format
msgid "Ink/Stitch Version: %s"
msgstr ""
#: lib/utils/version.py:21
msgid "Ink/Stitch Version: unknown"
msgstr ""
#: print/templates/color_swatch.html:8 print/templates/color_swatch.html:40
#: print/templates/operator_detailedview.html:9
msgid "Color"
msgstr ""
#: print/templates/color_swatch.html:11 print/templates/color_swatch.html:41
msgid "rgb"
msgstr ""
#: print/templates/color_swatch.html:15 print/templates/color_swatch.html:42
msgid "thread"
msgstr ""
#: print/templates/color_swatch.html:19 print/templates/color_swatch.html:43
#: print/templates/operator_detailedview.html:63
msgid "# stitches"
msgstr ""
#: print/templates/color_swatch.html:23 print/templates/color_swatch.html:44
msgid "# trims"
msgstr ""
#: print/templates/color_swatch.html:24 print/templates/color_swatch.html:45
#: print/templates/operator_detailedview.html:68
msgid "stop after?"
msgstr ""
#: print/templates/color_swatch.html:24 print/templates/color_swatch.html:45
#: print/templates/operator_detailedview.html:68
msgid "yes"
msgstr ""
#: print/templates/color_swatch.html:24 print/templates/color_swatch.html:45
#: print/templates/operator_detailedview.html:68
msgid "no"
msgstr ""
#: print/templates/color_swatch.html:40
#: print/templates/operator_detailedview.html:57
#: print/templates/print_detail.html:6
msgid "Enter thread name..."
msgstr ""
#: print/templates/custom-page.html:22 print/templates/ui.html:91
msgid "Enter URL"
msgstr ""
#: print/templates/custom-page.html:23 print/templates/custom-page.html:27
#: print/templates/custom-page.html:33 print/templates/ui.html:92
#: print/templates/ui.html:96 print/templates/ui.html:102
msgid "OK"
msgstr ""
#: print/templates/custom-page.html:26 print/templates/ui.html:95
msgid "Enter E-Mail"
msgstr ""
#: print/templates/custom-page.html:29 print/templates/custom-page.html:36
msgid "Custom Information Sheet"
msgstr ""
#: print/templates/custom-page.html:31 print/templates/ui.html:100
msgid "This will reset your custom text to the default."
msgstr ""
#: print/templates/custom-page.html:32 print/templates/ui.html:101
msgid "All changes will be lost."
msgstr ""
#: print/templates/footer.html:2
msgid "Page"
msgstr ""
#: print/templates/footer.html:3 print/templates/ui.html:98
#: print/templates/ui.html:105
msgid "Proudly generated with"
msgstr ""
#: print/templates/headline.html:5
msgid "Click to choose another logo"
msgstr ""
#: print/templates/headline.html:10
msgid "Enter job title..."
msgstr ""
#: print/templates/headline.html:11
msgid "CLIENT"
msgstr ""
#: print/templates/headline.html:11
msgid "Enter client name..."
msgstr ""
#: print/templates/headline.html:12
msgid "PURCHASE ORDER #:"
msgstr ""
#: print/templates/headline.html:12
msgid "Enter purchase order number..."
msgstr ""
#: print/templates/headline.html:15
#, python-format
msgid "%m/%d/%Y"
msgstr ""
#: print/templates/operator_detailedview.html:10
msgid "Thread Consumption"
msgstr ""
#: print/templates/operator_detailedview.html:11
msgid "Stops and Trims"
msgstr ""
#: print/templates/operator_detailedview.html:12
msgid "Notes"
msgstr ""
#: print/templates/operator_detailedview.html:24
#: print/templates/operator_overview.html:6
#: print/templates/print_overview.html:6
msgid "Unique Colors"
msgstr ""
#: print/templates/operator_detailedview.html:25
#: print/templates/operator_overview.html:7
#: print/templates/print_overview.html:7
msgid "Color Blocks"
msgstr ""
#: print/templates/operator_detailedview.html:28
#: print/templates/operator_overview.html:14
#: print/templates/print_overview.html:14
msgid "Design box size"
msgstr ""
#: print/templates/operator_detailedview.html:29
#: print/templates/operator_overview.html:16
#: print/templates/print_overview.html:16
msgid "Total thread used"
msgstr ""
#: print/templates/operator_detailedview.html:30
#: print/templates/operator_overview.html:15
#: print/templates/print_overview.html:15
msgid "Total stitch count"
msgstr ""
#: print/templates/operator_detailedview.html:31
#: print/templates/print_detail.html:11
msgid "Estimated time"
msgstr ""
#: print/templates/operator_detailedview.html:34
#: print/templates/operator_overview.html:8
#: print/templates/print_overview.html:8
msgid "Total stops"
msgstr ""
#: print/templates/operator_detailedview.html:35
#: print/templates/operator_overview.html:9
#: print/templates/print_overview.html:9
msgid "Total trims"
msgstr ""
#: print/templates/operator_detailedview.html:62
msgid "thread used"
msgstr ""
#: print/templates/operator_detailedview.html:64
msgid "estimated time"
msgstr ""
#: print/templates/operator_detailedview.html:67
#: electron/src/renderer/components/Simulator.vue:196
msgid "trims"
msgstr ""
#: print/templates/operator_detailedview.html:72
msgid "Enter operator notes..."
msgstr ""
#: print/templates/operator_overview.html:21
#: print/templates/print_overview.html:21
msgid "Job estimated time"
msgstr ""
#: print/templates/operator_overview.html:28
#: print/templates/print_detail.html:18 print/templates/print_overview.html:28
msgid "Ctrl + Scroll to Zoom"
msgstr ""
#: print/templates/print_detail.html:6
msgid "COLOR"
msgstr ""
#: print/templates/print_overview.html:42
msgid "Client Signature"
msgstr ""
#: print/templates/ui.html:2
msgid "Ink/Stitch Print Preview"
msgstr ""
#: print/templates/ui.html:4
msgid "Print"
msgstr ""
#: print/templates/ui.html:5
msgid "Save PDF"
msgstr ""
#: print/templates/ui.html:6 print/templates/ui.html:16
msgid "Settings"
msgstr ""
#: print/templates/ui.html:7
msgid "Close"
msgstr ""
#: print/templates/ui.html:10
msgid "⚠ lost connection to Ink/Stitch"
msgstr ""
#: print/templates/ui.html:19 print/templates/ui.html:29
msgid "Page Setup"
msgstr ""
#: print/templates/ui.html:20
msgid "Branding"
msgstr ""
#: print/templates/ui.html:21 print/templates/ui.html:112
msgid "Estimated Time"
msgstr ""
#: print/templates/ui.html:22 print/templates/ui.html:146
msgid "Design"
msgstr ""
#: print/templates/ui.html:31
msgid "Printing Size"
msgstr ""
#: print/templates/ui.html:39
msgid "Print Layouts"
msgstr ""
#: print/templates/ui.html:42 print/templates/ui.html:136
msgid "Client Overview"
msgstr ""
#: print/templates/ui.html:46 print/templates/ui.html:137
msgid "Client Detailed View"
msgstr ""
#: print/templates/ui.html:50 print/templates/ui.html:138
msgid "Operator Overview"
msgstr ""
#: print/templates/ui.html:54 print/templates/ui.html:139
msgid "Operator Detailed View"
msgstr ""
#: print/templates/ui.html:56
msgid "Thumbnail size"
msgstr ""
#: print/templates/ui.html:62
msgid "Custom information sheet"
msgstr ""
#: print/templates/ui.html:65 print/templates/ui.html:108
msgid "Includes these Page Setup, estimated time settings and also the icon."
msgstr ""
#: print/templates/ui.html:65 print/templates/ui.html:108
#: print/templates/ui.html:142
msgid "Save as defaults"
msgstr ""
#: print/templates/ui.html:70
msgid "Logo"
msgstr ""
#: print/templates/ui.html:80
msgid "Footer: Operator contact information"
msgstr ""
#: print/templates/ui.html:114
msgid "Machine Settings"
msgstr ""
#: print/templates/ui.html:116
msgid "Average Machine Speed"
msgstr ""
#: print/templates/ui.html:117
msgid "stitches per minute "
msgstr ""
#: print/templates/ui.html:121
msgid "Time Factors"
msgstr ""
#: print/templates/ui.html:124
msgid "Includes average time for preparing the machine, thread breaks and/or bobbin changes, etc."
msgstr ""
#: print/templates/ui.html:124
msgid "seconds to add to total time*"
msgstr ""
#: print/templates/ui.html:128
msgid "This will be added to the total time."
msgstr ""
#: print/templates/ui.html:128
msgid "seconds needed for a color change*"
msgstr ""
#: print/templates/ui.html:131
msgid "seconds needed for trim"
msgstr ""
#: print/templates/ui.html:134
msgid "Display Time On"
msgstr ""
#: print/templates/ui.html:142
msgid "Includes page setup, estimated time and also the branding."
msgstr ""
#: print/templates/ui.html:147
msgid "Thread Palette"
msgstr ""
#: print/templates/ui.html:150
msgid "None"
msgstr ""
#: print/templates/ui.html:166
msgid "Changing the thread palette will cause thread names and catalog numbers to be recalculated based on the new palette. Any changes you have made to color or thread names will be lost. Are you sure?"
msgstr ""
#: print/templates/ui.html:169
msgid "Yes"
msgstr ""
#: print/templates/ui.html:170 templates/lettering_generate_json.xml:37
msgid "No"
msgstr ""
#: print/templates/ui_svg_action_buttons.html:1
msgid "Scale"
msgstr ""
#: print/templates/ui_svg_action_buttons.html:3
msgid "Fit"
msgstr ""
#: print/templates/ui_svg_action_buttons.html:5
msgid "Apply to all"
msgstr ""
#: print/templates/ui_svg_action_buttons.html:9
#: print/templates/ui_svg_action_buttons.html:12
msgid "Realistic"
msgstr ""
#. description for pyembroidery file format: pec
#. description for pyembroidery file format: pes
#. description for pyembroidery file format: phb
#. description for pyembroidery file format: phc
#: pyembroidery-format-descriptions.py:2 pyembroidery-format-descriptions.py:4
#: pyembroidery-format-descriptions.py:56
#: pyembroidery-format-descriptions.py:58
msgid "Brother Embroidery Format"
msgstr ""
#. description for pyembroidery file format: exp
#: pyembroidery-format-descriptions.py:6
msgid "Melco Embroidery Format"
msgstr ""
#. description for pyembroidery file format: dst
#. description for pyembroidery file format: tbf
#: pyembroidery-format-descriptions.py:8 pyembroidery-format-descriptions.py:48
msgid "Tajima Embroidery Format"
msgstr ""
#. description for pyembroidery file format: jef
#. description for pyembroidery file format: sew
#. description for pyembroidery file format: jpx
#: pyembroidery-format-descriptions.py:10
#: pyembroidery-format-descriptions.py:20
#: pyembroidery-format-descriptions.py:74
msgid "Janome Embroidery Format"
msgstr ""
#. description for pyembroidery file format: vp3
#. description for pyembroidery file format: ksm
#. description for pyembroidery file format: max
#. description for pyembroidery file format: pcd
#. description for pyembroidery file format: pcq
#. description for pyembroidery file format: pcm
#. description for pyembroidery file format: pcs
#: pyembroidery-format-descriptions.py:12
#: pyembroidery-format-descriptions.py:50
#: pyembroidery-format-descriptions.py:62
#: pyembroidery-format-descriptions.py:66
#: pyembroidery-format-descriptions.py:68
#: pyembroidery-format-descriptions.py:70
#: pyembroidery-format-descriptions.py:72
msgid "Pfaff Embroidery Format"
msgstr ""
#. description for pyembroidery file format: svg
#: pyembroidery-format-descriptions.py:14
msgid "Scalable Vector Graphics"
msgstr ""
#. description for pyembroidery file format: csv
#: pyembroidery-format-descriptions.py:16
msgid "Comma-separated values"
msgstr ""
#. description for pyembroidery file format: xxx
#: pyembroidery-format-descriptions.py:18
msgid "Singer Embroidery Format"
msgstr ""
#. description for pyembroidery file format: u01
#: pyembroidery-format-descriptions.py:22
msgid "Barudan Embroidery Format"
msgstr ""
#. description for pyembroidery file format: shv
#: pyembroidery-format-descriptions.py:24
msgid "Husqvarna Viking Embroidery Format"
msgstr ""
#. description for pyembroidery file format: 10o
#. description for pyembroidery file format: 100
#: pyembroidery-format-descriptions.py:26
#: pyembroidery-format-descriptions.py:28
msgid "Toyota Embroidery Format"
msgstr ""
#. description for pyembroidery file format: bro
#: pyembroidery-format-descriptions.py:30
msgid "Bits & Volts Embroidery Format"
msgstr ""
#. description for pyembroidery file format: dat
#: pyembroidery-format-descriptions.py:32
msgid "Sunstar or Barudan Embroidery Format"
msgstr ""
#. description for pyembroidery file format: dsb
#: pyembroidery-format-descriptions.py:34
msgid "Tajima(Barudan) Embroidery Format"
msgstr ""
#. description for pyembroidery file format: dsz
#: pyembroidery-format-descriptions.py:36
msgid "ZSK USA Embroidery Format"
msgstr ""
#. description for pyembroidery file format: emd
#: pyembroidery-format-descriptions.py:38
msgid "Elna Embroidery Format"
msgstr ""
#. description for pyembroidery file format: exy
#: pyembroidery-format-descriptions.py:40
msgid "Eltac Embroidery Format"
msgstr ""
#. description for pyembroidery file format: fxy
#: pyembroidery-format-descriptions.py:42
msgid "Fortron Embroidery Format"
msgstr ""
#. description for pyembroidery file format: gt
#: pyembroidery-format-descriptions.py:44
msgid "Gold Thread Embroidery Format"
msgstr ""
#. description for pyembroidery file format: inb
#: pyembroidery-format-descriptions.py:46
msgid "Inbro Embroidery Format"
msgstr ""
#. description for pyembroidery file format: tap
#: pyembroidery-format-descriptions.py:52
msgid "Happy Embroidery Format"
msgstr ""
#. description for pyembroidery file format: stx
#: pyembroidery-format-descriptions.py:54
msgid "Data Stitch Embroidery Format"
msgstr ""
#. description for pyembroidery file format: new
#: pyembroidery-format-descriptions.py:60
msgid "Ameco Embroidery Format"
msgstr ""
#. description for pyembroidery file format: mit
#: pyembroidery-format-descriptions.py:64
msgid "Mitsubishi Embroidery Format"
msgstr ""
#. description for pyembroidery file format: stc
#: pyembroidery-format-descriptions.py:76
msgid "Gunold Embroidery Format"
msgstr ""
#. description for pyembroidery file format: zxy
#: pyembroidery-format-descriptions.py:78
msgid "ZSK TC Embroidery Format"
msgstr ""
#. description for pyembroidery file format: pmv
#: pyembroidery-format-descriptions.py:80
msgid "Brother Stitch Format"
msgstr ""
#. description for pyembroidery file format: txt
#: pyembroidery-format-descriptions.py:82
msgid "G-code Format"
msgstr ""
#: templates/about.xml:3 templates/about.xml:6
msgid "About"
msgstr ""
#: templates/about.xml:10
msgid "An open-source machine embroidery design platform based on Inkscape."
msgstr ""
#: templates/about.xml:15
msgid "License"
msgstr ""
#: templates/auto_satin.xml:3
msgid "Auto-Route Satin Columns"
msgstr ""
#: templates/auto_satin.xml:5
msgid "Trim jump stitches"
msgstr ""
#: templates/auto_satin.xml:6
msgid "Preserve order of satin columns"
msgstr ""
#: templates/auto_satin.xml:12 templates/convert_to_satin.xml:10
#: templates/convert_to_stroke.xml:13 templates/cut_satin.xml:10
#: templates/flip.xml:10
msgid "Satin Tools"
msgstr ""
#: templates/break_apart.xml:3
msgid "Break Apart Fill Objects"
msgstr ""
#: templates/break_apart.xml:10
msgid "Fill Tools"
msgstr ""
#: templates/break_apart.xml:15
msgid "This extension will try to repair fill shapes and break them apart if necessary. Holes will be retained. Use on simple or overlapping shapes."
msgstr ""
#: templates/cleanup.xml:3
msgid "Cleanup Document"
msgstr ""
#: templates/cleanup.xml:5
msgid "Use this extension to remove small objects from the document."
msgstr ""
#: templates/cleanup.xml:6
msgid "Remove Small Fill Areas"
msgstr ""
#: templates/cleanup.xml:7
msgid "Removes areas smaller than dedined by threshold."
msgstr ""
#: templates/cleanup.xml:8
msgid "Fill area threshold (px²)"
msgstr ""
#: templates/cleanup.xml:10
msgid "Removes small strokes shorter than defined by threshold."
msgstr ""
#: templates/cleanup.xml:11
msgid "Stroke threshold (px)"
msgstr ""
#: templates/convert_to_satin.xml:3
msgid "Convert Line to Satin"
msgstr ""
#: templates/convert_to_stroke.xml:3
msgid "Convert Satin to Stroke"
msgstr ""
#: templates/convert_to_stroke.xml:6
msgid "Converts a satin column into a running stitch."
msgstr ""
#: templates/convert_to_stroke.xml:8
msgid "Do not delete original satin column."
msgstr ""
#: templates/cut_satin.xml:3
msgid "Cut Satin Column"
msgstr ""
#: templates/duplicate_params.xml:3
msgid "Duplicate Params"
msgstr ""
#: templates/duplicate_params.xml:10 templates/reorder.xml:10
#: templates/selection_to_pattern.xml:10
msgid "Edit"
msgstr ""
#: templates/embroider.xml:3
msgid "Embroider"
msgstr ""
#: templates/embroider.xml:5
msgid "Create a stitch file"
msgstr ""
#: templates/embroider.xml:6
msgid "Save your embroidery file through | File > Save a Copy ... |"
msgstr ""
#: templates/embroider.xml:7
msgid "Choose from listed embroidery file formats and save."
msgstr ""
#: templates/embroider.xml:9
msgid "Multiple file formats can be saved by choosing the zip file format."
msgstr ""
#: templates/embroider.xml:14 templates/print.xml:10 templates/simulator.xml:10
#: templates/stitch_plan_preview.xml:10
msgid "Visualise and Export"
msgstr ""
#: templates/embroider_settings.xml:3
msgid "Preferences"
msgstr ""
#: templates/embroider_settings.xml:13
msgid "Output Settings"
msgstr ""
#: templates/embroider_settings.xml:16
msgid "Collapse length (mm)"
msgstr ""
#: templates/embroider_settings.xml:17
msgid "Jump stitches smaller than this will be treated as normal stitches."
msgstr ""
#: templates/flip.xml:3
msgid "Flip Satin Column Rails"
msgstr ""
#: templates/global_commands.xml:3
msgid "Add Commands"
msgstr ""
#: templates/global_commands.xml:5
msgid "These commands affect the entire embroidery design."
msgstr ""
#. Inkscape submenu under Extensions -> Ink/Stitch
#: templates/global_commands.xml:15 templates/layer_commands.xml:14
#: templates/object_commands.xml:13
msgid "Commands"
msgstr ""
#: templates/import_threadlist.xml:3
msgid "Import Threadlist"
msgstr ""
#: templates/import_threadlist.xml:6 templates/install_custom_palette.xml:8
msgid "Choose file"
msgstr ""
#: templates/import_threadlist.xml:20 templates/install.xml:10
#: templates/install_custom_palette.xml:13
msgid "Thread Color Management"
msgstr ""
#: templates/input.xml:9
#, python-format
msgid "convert %(file_extension)s file to Ink/Stitch manual-stitch paths"
msgstr ""
#: templates/install.xml:3
msgid "Install thread color palettes for Inkscape"
msgstr ""
#: templates/install_custom_palette.xml:3
msgid "Install custom palette"
msgstr ""
#: templates/install_custom_palette.xml:6
msgid "Choose a .gpl color palette file to install into Inkscape."
msgstr ""
#: templates/install_custom_palette.xml:7
msgid "Restart Inkscape to use."
msgstr ""
#: templates/layer_commands.xml:3
msgid "Add Layer Commands"
msgstr ""
#: templates/layer_commands.xml:5
msgid "Commands will be added to the currently-selected layer."
msgstr ""
#: templates/lettering.xml:3
msgid "Lettering"
msgstr ""
#: templates/lettering_custom_font_dir.xml:3
#: templates/lettering_custom_font_dir.xml:18
msgid "Custom font directory"
msgstr ""
#: templates/lettering_custom_font_dir.xml:10
#: templates/lettering_generate_json.xml:10
#: templates/lettering_remove_kerning.xml:10
msgid "Font Management"
msgstr ""
#: templates/lettering_custom_font_dir.xml:15
msgid "Set a custom directory for additional fonts to be used with the lettering tool."
msgstr ""
#: templates/lettering_custom_font_dir.xml:21
msgid "Usage: The custom font directory must contain a subdirectory for each font."
msgstr ""
#: templates/lettering_generate_json.xml:3
msgid "Generate JSON"
msgstr ""
#: templates/lettering_generate_json.xml:15
msgid "Generates font.json which can be used by the lettering tool."
msgstr ""
#: templates/lettering_generate_json.xml:17
msgid "The generated file can be viewed and updated with a standard text editor tool."
msgstr ""
#: templates/lettering_generate_json.xml:21
msgid "SVG Font File"
msgstr ""
#: templates/lettering_generate_json.xml:25
msgid "Name"
msgstr ""
#: templates/lettering_generate_json.xml:32
msgid "Autoroute Satin"
msgstr ""
#: templates/lettering_generate_json.xml:33
msgid "Disable if you defined manual routing in your font."
msgstr ""
#: templates/lettering_generate_json.xml:34
msgid "Reversible"
msgstr ""
#: templates/lettering_generate_json.xml:35
msgid "If disabled back and forth stitching will not be possile for this font."
msgstr ""
#: templates/lettering_generate_json.xml:36
msgid "Force letter case"
msgstr ""
#: templates/lettering_generate_json.xml:38
msgid "Upper"
msgstr ""
#: templates/lettering_generate_json.xml:39
msgid "Lower"
msgstr ""
#: templates/lettering_generate_json.xml:43
msgid "Min Scale"
msgstr ""
#: templates/lettering_generate_json.xml:44
msgid "Max Scale"
msgstr ""
#: templates/lettering_generate_json.xml:48
msgid "Default Glyph"
msgstr ""
#: templates/lettering_generate_json.xml:52
msgid "Kerning"
msgstr ""
#: templates/lettering_generate_json.xml:54
msgid "If your font file contains kerning information, you can completely ignore the following settings (unless you want to overwrite them).\n"
" If the kerning information cannot be found, these values will apply automatically."
msgstr ""
#: templates/lettering_generate_json.xml:59
#: templates/lettering_generate_json.xml:66
msgid "Force"
msgstr ""
#: templates/lettering_generate_json.xml:60
msgid "Overwrite leading information from font file."
msgstr ""
#: templates/lettering_generate_json.xml:61
msgid "Leading (px)"
msgstr ""
#: templates/lettering_generate_json.xml:62
msgid "Line height (default: 100)"
msgstr ""
#: templates/lettering_generate_json.xml:67
msgid "Overwrite word spacing information from font file."
msgstr ""
#: templates/lettering_generate_json.xml:68
msgid "Word spacing (px)"
msgstr ""
#: templates/lettering_generate_json.xml:69
msgid "Space character width (default: 20)"
msgstr ""
#: templates/lettering_remove_kerning.xml:3
msgid "Remove Kerning"
msgstr ""
#: templates/lettering_remove_kerning.xml:15
msgid "Removes Kerning information from given SVG files"
msgstr ""
#: templates/lettering_remove_kerning.xml:19
msgid "Make sure you keep a copy of the original file. After running this extension kerning information will be lost unrevertably from these files."
msgstr ""
#: templates/lettering_remove_kerning.xml:23
msgid "Select Font Files"
msgstr ""
#: templates/object_commands.xml:3
msgid "Attach Commands to Selected Objects"
msgstr ""
#: templates/output.xml:9
#, python-format
msgid "Save design in %(file_extension)s format using Ink/Stitch"
msgstr ""
#: templates/output_params_txt.xml:4
msgid "negate X coordinate values"
msgstr ""
#: templates/output_params_txt.xml:4
msgid "Negate x coordinates"
msgstr ""
#: templates/output_params_txt.xml:5
msgid "negate Y coordinate values"
msgstr ""
#: templates/output_params_txt.xml:5
msgid "Negate y coordinates"
msgstr ""
#: templates/output_params_txt.xml:6
msgid "Z coordinate value"
msgstr ""
#: templates/output_params_txt.xml:6
msgid "Either alternate Z value between 0 and 1 or travel custom value."
msgstr ""
#: templates/output_params_txt.xml:7
msgid "alternate Z value"
msgstr ""
#: templates/output_params_txt.xml:8 templates/output_params_txt.xml:10
msgid "Z travel per stitch"
msgstr ""
#: templates/output_params_txt.xml:11
msgid "increment z coordinate by this amount per stitch if \"Z travel per stitch\" is enabled"
msgstr ""
#: templates/output_params_txt.xml:15
#, python-format
msgid "Use '%X' for x-coordinate. Use '%Y' for y-coordinate and '%Z' for z-coordinate. Use '\\n' for a new line."
msgstr ""
#: templates/output_params_txt.xml:17 templates/output_params_txt.xml:19
msgid "Use '\\n' for a new line. Leave empty to use default value. Use 'none' to remove."
msgstr ""
#: templates/output_params_txt.xml:20
msgid "START"
msgstr ""
#: templates/output_params_txt.xml:21 templates/output_params_txt.xml:23
msgid "Use '\\n' for a new line."
msgstr ""
#: templates/output_params_txt.xml:22
msgid "END"
msgstr ""
#: templates/output_params_txt.xml:26
msgid "laser mode"
msgstr ""
#: templates/output_params_txt.xml:27
msgid "Laser mode (generate g-code for grbl laser mode)"
msgstr ""
#: templates/output_params_txt.xml:28
msgid "dynamic laser power"
msgstr ""
#: templates/output_params_txt.xml:29
msgid "Use Grbl's M4 dynamic laser power mode. Ensures consistent laser cutting power regardless of motor speed. Only for PWM-capable lasers."
msgstr ""
#: templates/output_params_txt.xml:31
msgid "laser warm-up time"
msgstr ""
#: templates/output_params_txt.xml:32
msgid "When turning on the laser, wait this many seconds for laser to warm up (G4 command)"
msgstr ""
#: templates/output_params_txt.xml:33
msgid "spindle speed"
msgstr ""
#: templates/output_params_txt.xml:34
msgid "spindle speed (laser power for laser mode, set to -1 to omit)"
msgstr ""
#: templates/output_params_txt.xml:35
msgid "min spindle speed"
msgstr ""
#: templates/output_params_txt.xml:36
msgid "minimum spindle speed value (grbl $31 setting)"
msgstr ""
#: templates/output_params_txt.xml:37
msgid "max spindle speed"
msgstr ""
#: templates/output_params_txt.xml:38
msgid "minimum spindle speed value (grbl $30 setting)"
msgstr ""
#: templates/output_params_txt.xml:39
msgid "feed rate (in mm/min, set to -1 to omit)"
msgstr ""
#: templates/params.xml:3
msgid "Params"
msgstr ""
#: templates/print.xml:3
msgid "PDF Export"
msgstr ""
#: templates/remove_embroidery_settings.xml:3
msgid "Remove embroidery settings"
msgstr ""
#: templates/remove_embroidery_settings.xml:5
msgid "Use this extension to remove the information Ink/Stitch has stored in your document. This can be especially useful if you copy and paste objects from an embroidery design into another document."
msgstr ""
#: templates/remove_embroidery_settings.xml:6
msgid "Remove Params"
msgstr ""
#: templates/remove_embroidery_settings.xml:7
msgid "Removes params from selected objects or all objects if nothing is selected."
msgstr ""
#: templates/remove_embroidery_settings.xml:8
msgid "Remove Commands"
msgstr ""
#: templates/remove_embroidery_settings.xml:9
msgid "Removes visual commands from selected objects or all objects if nothing is selected."
msgstr ""
#: templates/remove_embroidery_settings.xml:10
msgid "Remove Print Settings from SVG metadata"
msgstr ""
#: templates/reorder.xml:3
msgid "Re-stack objects in order of selection"
msgstr ""
#: templates/selection_to_pattern.xml:3
msgid "Selection to pattern"
msgstr ""
#: templates/simulator.xml:3
msgid "Simulator / Realistic Preview"
msgstr ""
#: templates/stitch_plan_preview.xml:3
msgid "Stitch Plan Preview"
msgstr ""
#: templates/troubleshoot.xml:3
msgid "Troubleshoot Objects"
msgstr ""
#: templates/zip.xml:8
msgid "Ink/Stitch: ZIP export multiple formats (.zip)"
msgstr ""
#: templates/zip.xml:9
msgid "Create a ZIP with multiple embroidery file formats using Ink/Stitch"
msgstr ""
#: templates/zip.xml:17
msgid "Scalable Vector Graphic"
msgstr ""
#: templates/zip.xml:18
msgid "Threadlist"
msgstr ""
#. name for left arrow keyboard key
#: electron/src/renderer/components/Simulator.vue:52
msgid "← Arrow left"
msgstr ""
#. name for right arrow keyboard key
#: electron/src/renderer/components/Simulator.vue:63
msgid "→ Arrow right"
msgstr ""
#. name for up arrow keyboard key
#: electron/src/renderer/components/Simulator.vue:129
msgid "↑ Arrow up"
msgstr ""
#. name for down arrow keyboard key
#: electron/src/renderer/components/Simulator.vue:118
msgid "↓ Arrow down"
msgstr ""
#. name for this keyboard key: +
#: electron/src/renderer/components/Simulator.vue:89
msgid "+ Plus"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:15
msgid "Button"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:203
msgid "color changes"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:186
msgid "Command"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:145
msgid "Controls"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:223
msgid "cursor"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:18
msgid "Function"
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:16
msgid "If you are not sure which file path to choose, click on install directly. In most cases Ink/Stitch will guess the correct path."
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:9
msgid "Ink/Stitch can install palettes for Inkscape matching the thread colors from popular machine embroidery thread manufacturers."
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:53
msgid "Inkscape add-on installation failed"
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:36
msgid "Inkscape palettes have been installed. Please restart Inkscape to load the new palettes."
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:22
msgid "Install"
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:4
msgid "Install Palettes"
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:31
msgid "Installation Completed"
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:48
msgid "Installation Failed"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:106
msgid "Jump to next command"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:97
msgid "Jump to previous command"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:199
msgid "jumps"
msgstr ""
#. name for this keyboard key: -
#: electron/src/renderer/components/Simulator.vue:76
msgid "Minus"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:215
msgid "needle points"
msgstr ""
#. description of keyboard shortcut that moves one stitch backward in simulator
#: electron/src/renderer/components/Simulator.vue:71
msgid "One step backward"
msgstr ""
#. description of keyboard shortcut that moves one stitch forward in simulator
#: electron/src/renderer/components/Simulator.vue:84
msgid "One step forward"
msgstr ""
#. name for page down keyboard key
#: electron/src/renderer/components/Simulator.vue:99
msgid "Page down (PgDn)"
msgstr ""
#. name for page up keyboard key
#: electron/src/renderer/components/Simulator.vue:108
msgid "Page up (PgUp)"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:40
msgid "Play"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:49
msgid "Play backward"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:60
msgid "Play forward"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:220
msgid "realistic"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:260
msgid "Rendering stitch-plan..."
msgstr ""
#: electron/src/renderer/components/Simulator.vue:21
msgid "Shortcut Key"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:192
msgid "Show"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:10
msgid "Simulator Shortcut Keys"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:115
msgid "Slow down"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:32
msgid "Space"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:126
msgid "Speed up"
msgstr ""
#: electron/src/renderer/components/Simulator.vue:174
msgid "Speed: %{speed} stitch/sec"
msgid_plural "Speed: %{speed} stitches/sec"
msgstr[0] ""
msgstr[1] ""
#: electron/src/renderer/components/Simulator.vue:206
msgid "stops"
msgstr ""
#: electron/src/renderer/components/InstallPalettes.vue:60
msgid "Try again"
msgstr ""
|