File: messages.pot

package info (click to toggle)
solvespace 3.0.rc2%2Brepack1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,136 kB
  • sloc: cpp: 121,426; ansic: 8,912; javascript: 1,919; sh: 113; xml: 44; makefile: 25
file content (1887 lines) | stat: -rw-r--r-- 36,120 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR the PACKAGE authors
# This file is distributed under the same license as the SolveSpace package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: SolveSpace 3.0\n"
"Report-Msgid-Bugs-To: whitequark@whitequark.org\n"
"POT-Creation-Date: 2021-01-17 19:54+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: clipboard.cpp:310
msgid ""
"Cut, paste, and copy work only in a workplane.\n"
"\n"
"Activate one with Sketch -> In Workplane."
msgstr ""

#: clipboard.cpp:327
msgid "Clipboard is empty; nothing to paste."
msgstr ""

#: clipboard.cpp:374
msgid "Number of copies to paste must be at least one."
msgstr ""

#: clipboard.cpp:390 textscreens.cpp:783
msgid "Scale cannot be zero."
msgstr ""

#: clipboard.cpp:432
msgid "Select one point to define origin of rotation."
msgstr ""

#: clipboard.cpp:444
msgid "Select two points to define translation vector."
msgstr ""

#: clipboard.cpp:454
msgid "Transformation is identity. So all copies will be exactly on top of each other."
msgstr ""

#: clipboard.cpp:458
msgid "Too many items to paste; split this into smaller pastes."
msgstr ""

#: clipboard.cpp:463
msgid "No workplane active."
msgstr ""

#: confscreen.cpp:418
msgid "Bad format: specify coordinates as x, y, z"
msgstr ""

#: confscreen.cpp:428 style.cpp:659 textscreens.cpp:805
msgid "Bad format: specify color as r, g, b"
msgstr ""

#: confscreen.cpp:454
msgid ""
"The perspective factor will have no effect until you enable View -> Use Perspective Projection."
msgstr ""

#: confscreen.cpp:467 confscreen.cpp:477
#, c-format
msgid "Specify between 0 and %d digits after the decimal."
msgstr ""

#: confscreen.cpp:489
msgid "Export scale must not be zero!"
msgstr ""

#: confscreen.cpp:501
msgid "Cutter radius offset must not be negative!"
msgstr ""

#: confscreen.cpp:555
msgid "Bad value: autosave interval should be positive"
msgstr ""

#: confscreen.cpp:558
msgid "Bad format: specify interval in integral minutes"
msgstr ""

#: constraint.cpp:12
msgctxt "constr-name"
msgid "pts-coincident"
msgstr ""

#: constraint.cpp:13
msgctxt "constr-name"
msgid "pt-pt-distance"
msgstr ""

#: constraint.cpp:14
msgctxt "constr-name"
msgid "pt-line-distance"
msgstr ""

#: constraint.cpp:15
msgctxt "constr-name"
msgid "pt-plane-distance"
msgstr ""

#: constraint.cpp:16
msgctxt "constr-name"
msgid "pt-face-distance"
msgstr ""

#: constraint.cpp:17
msgctxt "constr-name"
msgid "proj-pt-pt-distance"
msgstr ""

#: constraint.cpp:18
msgctxt "constr-name"
msgid "pt-in-plane"
msgstr ""

#: constraint.cpp:19
msgctxt "constr-name"
msgid "pt-on-line"
msgstr ""

#: constraint.cpp:20
msgctxt "constr-name"
msgid "pt-on-face"
msgstr ""

#: constraint.cpp:21
msgctxt "constr-name"
msgid "eq-length"
msgstr ""

#: constraint.cpp:22
msgctxt "constr-name"
msgid "eq-length-and-pt-ln-dist"
msgstr ""

#: constraint.cpp:23
msgctxt "constr-name"
msgid "eq-pt-line-distances"
msgstr ""

#: constraint.cpp:24
msgctxt "constr-name"
msgid "length-ratio"
msgstr ""

#: constraint.cpp:25
msgctxt "constr-name"
msgid "length-difference"
msgstr ""

#: constraint.cpp:26
msgctxt "constr-name"
msgid "symmetric"
msgstr ""

#: constraint.cpp:27
msgctxt "constr-name"
msgid "symmetric-h"
msgstr ""

#: constraint.cpp:28
msgctxt "constr-name"
msgid "symmetric-v"
msgstr ""

#: constraint.cpp:29
msgctxt "constr-name"
msgid "symmetric-line"
msgstr ""

#: constraint.cpp:30
msgctxt "constr-name"
msgid "at-midpoint"
msgstr ""

#: constraint.cpp:31
msgctxt "constr-name"
msgid "horizontal"
msgstr ""

#: constraint.cpp:32
msgctxt "constr-name"
msgid "vertical"
msgstr ""

#: constraint.cpp:33
msgctxt "constr-name"
msgid "diameter"
msgstr ""

#: constraint.cpp:34
msgctxt "constr-name"
msgid "pt-on-circle"
msgstr ""

#: constraint.cpp:35
msgctxt "constr-name"
msgid "same-orientation"
msgstr ""

#: constraint.cpp:36
msgctxt "constr-name"
msgid "angle"
msgstr ""

#: constraint.cpp:37
msgctxt "constr-name"
msgid "parallel"
msgstr ""

#: constraint.cpp:38
msgctxt "constr-name"
msgid "arc-line-tangent"
msgstr ""

#: constraint.cpp:39
msgctxt "constr-name"
msgid "cubic-line-tangent"
msgstr ""

#: constraint.cpp:40
msgctxt "constr-name"
msgid "curve-curve-tangent"
msgstr ""

#: constraint.cpp:41
msgctxt "constr-name"
msgid "perpendicular"
msgstr ""

#: constraint.cpp:42
msgctxt "constr-name"
msgid "eq-radius"
msgstr ""

#: constraint.cpp:43
msgctxt "constr-name"
msgid "eq-angle"
msgstr ""

#: constraint.cpp:44
msgctxt "constr-name"
msgid "eq-line-len-arc-len"
msgstr ""

#: constraint.cpp:45
msgctxt "constr-name"
msgid "lock-where-dragged"
msgstr ""

#: constraint.cpp:46
msgctxt "constr-name"
msgid "comment"
msgstr ""

#: constraint.cpp:140
msgid ""
"The tangent arc and line segment must share an endpoint. Constrain them with Constrain -> On "
"Point before constraining tangent."
msgstr ""

#: constraint.cpp:158
msgid ""
"The tangent cubic and line segment must share an endpoint. Constrain them with Constrain -> On "
"Point before constraining tangent."
msgstr ""

#: constraint.cpp:183
msgid ""
"The curves must share an endpoint. Constrain them with Constrain -> On Point before constraining "
"tangent."
msgstr ""

#: constraint.cpp:231
msgid ""
"Bad selection for distance / diameter constraint. This constraint can apply to:\n"
"\n"
"    * two points (distance between points)\n"
"    * a line segment (length)\n"
"    * two points and a line segment or normal (projected distance)\n"
"    * a workplane and a point (minimum distance)\n"
"    * a line segment and a point (minimum distance)\n"
"    * a plane face and a point (minimum distance)\n"
"    * a circle or an arc (diameter)\n"
msgstr ""

#: constraint.cpp:284
msgid ""
"Bad selection for on point / curve / plane constraint. This constraint can apply to:\n"
"\n"
"    * two points (points coincident)\n"
"    * a point and a workplane (point in plane)\n"
"    * a point and a line segment (point on line)\n"
"    * a point and a circle or arc (point on curve)\n"
"    * a point and a plane face (point on face)\n"
msgstr ""

#: constraint.cpp:346
msgid ""
"Bad selection for equal length / radius constraint. This constraint can apply to:\n"
"\n"
"    * two line segments (equal length)\n"
"    * two line segments and two points (equal point-line distances)\n"
"    * a line segment and two points (equal point-line distances)\n"
"    * a line segment, and a point and line segment (point-line distance equals length)\n"
"    * four line segments or normals (equal angle between A,B and C,D)\n"
"    * three line segments or normals (equal angle between A,B and B,C)\n"
"    * two circles or arcs (equal radius)\n"
"    * a line segment and an arc (line segment length equals arc length)\n"
msgstr ""

#: constraint.cpp:385
msgid ""
"Bad selection for length ratio constraint. This constraint can apply to:\n"
"\n"
"    * two line segments\n"
msgstr ""

#: constraint.cpp:402
msgid ""
"Bad selection for length difference constraint. This constraint can apply to:\n"
"\n"
"    * two line segments\n"
msgstr ""

#: constraint.cpp:428
msgid ""
"Bad selection for at midpoint constraint. This constraint can apply to:\n"
"\n"
"    * a line segment and a point (point at midpoint)\n"
"    * a line segment and a workplane (line's midpoint on plane)\n"
msgstr ""

#: constraint.cpp:486
msgid ""
"Bad selection for symmetric constraint. This constraint can apply to:\n"
"\n"
"    * two points or a line segment (symmetric about workplane's coordinate axis)\n"
"    * line segment, and two points or a line segment (symmetric about line segment)\n"
"    * workplane, and two points or a line segment (symmetric about workplane)\n"
msgstr ""

#: constraint.cpp:500
msgid "A workplane must be active when constraining symmetric without an explicit symmetry plane."
msgstr ""

#: constraint.cpp:530
msgid ""
"Activate a workplane (with Sketch -> In Workplane) before applying a horizontal or vertical "
"constraint."
msgstr ""

#: constraint.cpp:543
msgid ""
"Bad selection for horizontal / vertical constraint. This constraint can apply to:\n"
"\n"
"    * two points\n"
"    * a line segment\n"
msgstr ""

#: constraint.cpp:564
msgid ""
"Bad selection for same orientation constraint. This constraint can apply to:\n"
"\n"
"    * two normals\n"
msgstr ""

#: constraint.cpp:614
msgid "Must select an angle constraint."
msgstr ""

#: constraint.cpp:627
msgid "Must select a constraint with associated label."
msgstr ""

#: constraint.cpp:638
msgid ""
"Bad selection for angle constraint. This constraint can apply to:\n"
"\n"
"    * two line segments\n"
"    * a line segment and a normal\n"
"    * two normals\n"
msgstr ""

#: constraint.cpp:701
msgid "Curve-curve tangency must apply in workplane."
msgstr ""

#: constraint.cpp:711
msgid ""
"Bad selection for parallel / tangent constraint. This constraint can apply to:\n"
"\n"
"    * two line segments (parallel)\n"
"    * a line segment and a normal (parallel)\n"
"    * two normals (parallel)\n"
"    * two line segments, arcs, or beziers, that share an endpoint (tangent)\n"
msgstr ""

#: constraint.cpp:729
msgid ""
"Bad selection for perpendicular constraint. This constraint can apply to:\n"
"\n"
"    * two line segments\n"
"    * a line segment and a normal\n"
"    * two normals\n"
msgstr ""

#: constraint.cpp:744
msgid ""
"Bad selection for lock point where dragged constraint. This constraint can apply to:\n"
"\n"
"    * a point\n"
msgstr ""

#: constraint.cpp:755
msgid "click center of comment text"
msgstr ""

#: export.cpp:19
msgid ""
"No solid model present; draw one with extrudes and revolves, or use Export 2d View to export bare "
"lines and curves."
msgstr ""

#: export.cpp:61
msgid ""
"Bad selection for export section. Please select:\n"
"\n"
"    * nothing, with an active workplane (workplane is section plane)\n"
"    * a face (section plane through face)\n"
"    * a point and two line segments (plane through point and parallel to lines)\n"
msgstr ""

#: export.cpp:822
msgid "Active group mesh is empty; nothing to export."
msgstr ""

#: exportvector.cpp:337
msgid "freehand lines were replaced with continuous lines"
msgstr ""

#: exportvector.cpp:339
msgid "zigzag lines were replaced with continuous lines"
msgstr ""

#: exportvector.cpp:593
msgid "Some aspects of the drawing have no DXF equivalent and were not exported:\n"
msgstr ""

#: exportvector.cpp:839
msgid "PDF page size exceeds 200 by 200 inches; many viewers may reject this file."
msgstr ""

#: file.cpp:44 group.cpp:91
msgctxt "group-name"
msgid "sketch-in-plane"
msgstr ""

#: file.cpp:62
msgctxt "group-name"
msgid "#references"
msgstr ""

#: file.cpp:549
msgid "Unrecognized data in file. This file may be corrupt, or from a newer version of the program."
msgstr ""

#: file.cpp:859
msgctxt "title"
msgid "Missing File"
msgstr ""

#: file.cpp:860
#, c-format
msgctxt "dialog"
msgid "The linked file “%s” is not present."
msgstr ""

#: file.cpp:862
msgctxt "dialog"
msgid ""
"Do you want to locate it manually?\n"
"\n"
"If you decline, any geometry that depends on the missing file will be permanently removed."
msgstr ""

#: file.cpp:865
msgctxt "button"
msgid "&Yes"
msgstr ""

#: file.cpp:867
msgctxt "button"
msgid "&No"
msgstr ""

#: file.cpp:869 solvespace.cpp:569
msgctxt "button"
msgid "&Cancel"
msgstr ""

#: graphicswin.cpp:41
msgid "&File"
msgstr ""

#: graphicswin.cpp:42
msgid "&New"
msgstr ""

#: graphicswin.cpp:43
msgid "&Open..."
msgstr ""

#: graphicswin.cpp:44
msgid "Open &Recent"
msgstr ""

#: graphicswin.cpp:45
msgid "&Save"
msgstr ""

#: graphicswin.cpp:46
msgid "Save &As..."
msgstr ""

#: graphicswin.cpp:48
msgid "Export &Image..."
msgstr ""

#: graphicswin.cpp:49
msgid "Export 2d &View..."
msgstr ""

#: graphicswin.cpp:50
msgid "Export 2d &Section..."
msgstr ""

#: graphicswin.cpp:51
msgid "Export 3d &Wireframe..."
msgstr ""

#: graphicswin.cpp:52
msgid "Export Triangle &Mesh..."
msgstr ""

#: graphicswin.cpp:53
msgid "Export &Surfaces..."
msgstr ""

#: graphicswin.cpp:54
msgid "Im&port..."
msgstr ""

#: graphicswin.cpp:57
msgid "E&xit"
msgstr ""

#: graphicswin.cpp:60
msgid "&Edit"
msgstr ""

#: graphicswin.cpp:61
msgid "&Undo"
msgstr ""

#: graphicswin.cpp:62
msgid "&Redo"
msgstr ""

#: graphicswin.cpp:63
msgid "Re&generate All"
msgstr ""

#: graphicswin.cpp:65
msgid "Snap Selection to &Grid"
msgstr ""

#: graphicswin.cpp:66
msgid "Rotate Imported &90°"
msgstr ""

#: graphicswin.cpp:68
msgid "Cu&t"
msgstr ""

#: graphicswin.cpp:69
msgid "&Copy"
msgstr ""

#: graphicswin.cpp:70
msgid "&Paste"
msgstr ""

#: graphicswin.cpp:71
msgid "Paste &Transformed..."
msgstr ""

#: graphicswin.cpp:72
msgid "&Delete"
msgstr ""

#: graphicswin.cpp:74
msgid "Select &Edge Chain"
msgstr ""

#: graphicswin.cpp:75
msgid "Select &All"
msgstr ""

#: graphicswin.cpp:76
msgid "&Unselect All"
msgstr ""

#: graphicswin.cpp:78
msgid "&Line Styles..."
msgstr ""

#: graphicswin.cpp:79
msgid "&View Projection..."
msgstr ""

#: graphicswin.cpp:81
msgid "Con&figuration..."
msgstr ""

#: graphicswin.cpp:84
msgid "&View"
msgstr ""

#: graphicswin.cpp:85
msgid "Zoom &In"
msgstr ""

#: graphicswin.cpp:86
msgid "Zoom &Out"
msgstr ""

#: graphicswin.cpp:87
msgid "Zoom To &Fit"
msgstr ""

#: graphicswin.cpp:89
msgid "Align View to &Workplane"
msgstr ""

#: graphicswin.cpp:90
msgid "Nearest &Ortho View"
msgstr ""

#: graphicswin.cpp:91
msgid "Nearest &Isometric View"
msgstr ""

#: graphicswin.cpp:92
msgid "&Center View At Point"
msgstr ""

#: graphicswin.cpp:94
msgid "Show Snap &Grid"
msgstr ""

#: graphicswin.cpp:95
msgid "Darken Inactive Solids"
msgstr ""

#: graphicswin.cpp:96
msgid "Use &Perspective Projection"
msgstr ""

#: graphicswin.cpp:97
msgid "Dimension &Units"
msgstr ""

#: graphicswin.cpp:98
msgid "Dimensions in &Millimeters"
msgstr ""

#: graphicswin.cpp:99
msgid "Dimensions in M&eters"
msgstr ""

#: graphicswin.cpp:100
msgid "Dimensions in &Inches"
msgstr ""

#: graphicswin.cpp:102
msgid "Show &Toolbar"
msgstr ""

#: graphicswin.cpp:103
msgid "Show Property Bro&wser"
msgstr ""

#: graphicswin.cpp:105
msgid "&Full Screen"
msgstr ""

#: graphicswin.cpp:107
msgid "&New Group"
msgstr ""

#: graphicswin.cpp:108
msgid "Sketch In &3d"
msgstr ""

#: graphicswin.cpp:109
msgid "Sketch In New &Workplane"
msgstr ""

#: graphicswin.cpp:111
msgid "Step &Translating"
msgstr ""

#: graphicswin.cpp:112
msgid "Step &Rotating"
msgstr ""

#: graphicswin.cpp:114
msgid "E&xtrude"
msgstr ""

#: graphicswin.cpp:115
msgid "&Helix"
msgstr ""

#: graphicswin.cpp:116
msgid "&Lathe"
msgstr ""

#: graphicswin.cpp:117
msgid "Re&volve"
msgstr ""

#: graphicswin.cpp:119
msgid "Link / Assemble..."
msgstr ""

#: graphicswin.cpp:120
msgid "Link Recent"
msgstr ""

#: graphicswin.cpp:122
msgid "&Sketch"
msgstr ""

#: graphicswin.cpp:123
msgid "In &Workplane"
msgstr ""

#: graphicswin.cpp:124
msgid "Anywhere In &3d"
msgstr ""

#: graphicswin.cpp:126
msgid "Datum &Point"
msgstr ""

#: graphicswin.cpp:127
msgid "&Workplane"
msgstr ""

#: graphicswin.cpp:129
msgid "Line &Segment"
msgstr ""

#: graphicswin.cpp:130
msgid "C&onstruction Line Segment"
msgstr ""

#: graphicswin.cpp:131
msgid "&Rectangle"
msgstr ""

#: graphicswin.cpp:132
msgid "&Circle"
msgstr ""

#: graphicswin.cpp:133
msgid "&Arc of a Circle"
msgstr ""

#: graphicswin.cpp:134
msgid "&Bezier Cubic Spline"
msgstr ""

#: graphicswin.cpp:136
msgid "&Text in TrueType Font"
msgstr ""

#: graphicswin.cpp:137
msgid "&Image"
msgstr ""

#: graphicswin.cpp:139
msgid "To&ggle Construction"
msgstr ""

#: graphicswin.cpp:140
msgid "Tangent &Arc at Point"
msgstr ""

#: graphicswin.cpp:141
msgid "Split Curves at &Intersection"
msgstr ""

#: graphicswin.cpp:143
msgid "&Constrain"
msgstr ""

#: graphicswin.cpp:144
msgid "&Distance / Diameter"
msgstr ""

#: graphicswin.cpp:145
msgid "Re&ference Dimension"
msgstr ""

#: graphicswin.cpp:146
msgid "A&ngle"
msgstr ""

#: graphicswin.cpp:147
msgid "Reference An&gle"
msgstr ""

#: graphicswin.cpp:148
msgid "Other S&upplementary Angle"
msgstr ""

#: graphicswin.cpp:149
msgid "Toggle R&eference Dim"
msgstr ""

#: graphicswin.cpp:151
msgid "&Horizontal"
msgstr ""

#: graphicswin.cpp:152
msgid "&Vertical"
msgstr ""

#: graphicswin.cpp:154
msgid "&On Point / Curve / Plane"
msgstr ""

#: graphicswin.cpp:155
msgid "E&qual Length / Radius / Angle"
msgstr ""

#: graphicswin.cpp:156
msgid "Length Ra&tio"
msgstr ""

#: graphicswin.cpp:157
msgid "Length Diff&erence"
msgstr ""

#: graphicswin.cpp:158
msgid "At &Midpoint"
msgstr ""

#: graphicswin.cpp:159
msgid "S&ymmetric"
msgstr ""

#: graphicswin.cpp:160
msgid "Para&llel / Tangent"
msgstr ""

#: graphicswin.cpp:161
msgid "&Perpendicular"
msgstr ""

#: graphicswin.cpp:162
msgid "Same Orient&ation"
msgstr ""

#: graphicswin.cpp:163
msgid "Lock Point Where &Dragged"
msgstr ""

#: graphicswin.cpp:165
msgid "Comment"
msgstr ""

#: graphicswin.cpp:167
msgid "&Analyze"
msgstr ""

#: graphicswin.cpp:168
msgid "Measure &Volume"
msgstr ""

#: graphicswin.cpp:169
msgid "Measure A&rea"
msgstr ""

#: graphicswin.cpp:170
msgid "Measure &Perimeter"
msgstr ""

#: graphicswin.cpp:171
msgid "Show &Interfering Parts"
msgstr ""

#: graphicswin.cpp:172
msgid "Show &Naked Edges"
msgstr ""

#: graphicswin.cpp:173
msgid "Show &Center of Mass"
msgstr ""

#: graphicswin.cpp:175
msgid "Show &Underconstrained Points"
msgstr ""

#: graphicswin.cpp:177
msgid "&Trace Point"
msgstr ""

#: graphicswin.cpp:178
msgid "&Stop Tracing..."
msgstr ""

#: graphicswin.cpp:179
msgid "Step &Dimension..."
msgstr ""

#: graphicswin.cpp:181
msgid "&Help"
msgstr ""

#: graphicswin.cpp:182
msgid "&Language"
msgstr ""

#: graphicswin.cpp:183
msgid "&Website / Manual"
msgstr ""

#: graphicswin.cpp:185
msgid "&About"
msgstr ""

#: graphicswin.cpp:355
msgid "(no recent files)"
msgstr ""

#: graphicswin.cpp:363
#, c-format
msgid "File '%s' does not exist."
msgstr ""

#: graphicswin.cpp:725
msgid "No workplane is active, so the grid will not appear."
msgstr ""

#: graphicswin.cpp:740
msgid ""
"The perspective factor is set to zero, so the view will always be a parallel projection.\n"
"\n"
"For a perspective projection, modify the perspective factor in the configuration screen. A value "
"around 0.3 is typical."
msgstr ""

#: graphicswin.cpp:819
msgid "Select a point; this point will become the center of the view on screen."
msgstr ""

#: graphicswin.cpp:1114
msgid "No additional entities share endpoints with the selected entities."
msgstr ""

#: graphicswin.cpp:1132
msgid ""
"To use this command, select a point or other entity from an linked part, or make a link group the "
"active group."
msgstr ""

#: graphicswin.cpp:1155
msgid ""
"No workplane is active. Activate a workplane (with Sketch -> In Workplane) to define the plane "
"for the snap grid."
msgstr ""

#: graphicswin.cpp:1162
msgid ""
"Can't snap these items to grid; select points, text comments, or constraints with a label. To "
"snap a line, select its endpoints."
msgstr ""

#: graphicswin.cpp:1247
msgid "No workplane selected. Activating default workplane for this group."
msgstr ""

#: graphicswin.cpp:1250
msgid ""
"No workplane is selected, and the active group does not have a default workplane. Try selecting a "
"workplane, or activating a sketch-in-new-workplane group."
msgstr ""

#: graphicswin.cpp:1271
msgid ""
"Bad selection for tangent arc at point. Select a single point, or select nothing to set up arc "
"parameters."
msgstr ""

#: graphicswin.cpp:1282
msgid "click point on arc (draws anti-clockwise)"
msgstr ""

#: graphicswin.cpp:1283
msgid "click to place datum point"
msgstr ""

#: graphicswin.cpp:1284
msgid "click first point of line segment"
msgstr ""

#: graphicswin.cpp:1286
msgid "click first point of construction line segment"
msgstr ""

#: graphicswin.cpp:1287
msgid "click first point of cubic segment"
msgstr ""

#: graphicswin.cpp:1288
msgid "click center of circle"
msgstr ""

#: graphicswin.cpp:1289
msgid "click origin of workplane"
msgstr ""

#: graphicswin.cpp:1290
msgid "click one corner of rectangle"
msgstr ""

#: graphicswin.cpp:1291
msgid "click top left of text"
msgstr ""

#: graphicswin.cpp:1297
msgid "click top left of image"
msgstr ""

#: graphicswin.cpp:1309
msgid "No entities are selected. Select entities before trying to toggle their construction state."
msgstr ""

#: group.cpp:86
msgctxt "group-name"
msgid "sketch-in-3d"
msgstr ""

#: group.cpp:142
msgid ""
"Bad selection for new sketch in workplane. This group can be created with:\n"
"\n"
"    * a point (through the point, orthogonal to coordinate axes)\n"
"    * a point and two line segments (through the point, parallel to the lines)\n"
"    * a workplane (copy of the workplane)\n"
msgstr ""

#: group.cpp:154
msgid ""
"Activate a workplane (Sketch -> In Workplane) before extruding. The sketch will be extruded "
"normal to the workplane."
msgstr ""

#: group.cpp:163
msgctxt "group-name"
msgid "extrude"
msgstr ""

#: group.cpp:168
msgid "Lathe operation can only be applied to planar sketches."
msgstr ""

#: group.cpp:179
msgid ""
"Bad selection for new lathe group. This group can be created with:\n"
"\n"
"    * a point and a line segment or normal (revolved about an axis parallel to line / normal, "
"through point)\n"
"    * a line segment (revolved about line segment)\n"
msgstr ""

#: group.cpp:189
msgctxt "group-name"
msgid "lathe"
msgstr ""

#: group.cpp:194
msgid "Revolve operation can only be applied to planar sketches."
msgstr ""

#: group.cpp:205
msgid ""
"Bad selection for new revolve group. This group can be created with:\n"
"\n"
"    * a point and a line segment or normal (revolved about an axis parallel to line / normal, "
"through point)\n"
"    * a line segment (revolved about line segment)\n"
msgstr ""

#: group.cpp:217
msgctxt "group-name"
msgid "revolve"
msgstr ""

#: group.cpp:222
msgid "Helix operation can only be applied to planar sketches."
msgstr ""

#: group.cpp:233
msgid ""
"Bad selection for new helix group. This group can be created with:\n"
"\n"
"    * a point and a line segment or normal (revolved about an axis parallel to line / normal, "
"through point)\n"
"    * a line segment (revolved about line segment)\n"
msgstr ""

#: group.cpp:245
msgctxt "group-name"
msgid "helix"
msgstr ""

#: group.cpp:258
msgid ""
"Bad selection for new rotation. This group can be created with:\n"
"\n"
"    * a point, while locked in workplane (rotate in plane, about that point)\n"
"    * a point and a line or a normal (rotate about an axis through the point, and parallel to "
"line / normal)\n"
msgstr ""

#: group.cpp:271
msgctxt "group-name"
msgid "rotate"
msgstr ""

#: group.cpp:282
msgctxt "group-name"
msgid "translate"
msgstr ""

#: group.cpp:400
msgid "(unnamed)"
msgstr ""

#: groupmesh.cpp:709
msgid "not closed contour, or not all same style!"
msgstr ""

#: groupmesh.cpp:722
msgid "points not all coplanar!"
msgstr ""

#: groupmesh.cpp:724
msgid "contour is self-intersecting!"
msgstr ""

#: groupmesh.cpp:726
msgid "zero-length edge!"
msgstr ""

#: modify.cpp:254
msgid "Must be sketching in workplane to create tangent arc."
msgstr ""

#: modify.cpp:301
msgid ""
"To create a tangent arc, select a point where two non-construction lines or circles in this group "
"and workplane join."
msgstr ""

#: modify.cpp:388
msgid ""
"Couldn't round this corner. Try a smaller radius, or try creating the desired geometry by hand "
"with tangency constraints."
msgstr ""

#: modify.cpp:597
msgid "Couldn't split this entity; lines, circles, or cubics only."
msgstr ""

#: modify.cpp:624
msgid "Must be sketching in workplane to split."
msgstr ""

#: modify.cpp:631
msgid ""
"Select two entities that intersect each other (e.g. two lines/circles/arcs or a line/circle/arc "
"and a point)."
msgstr ""

#: modify.cpp:736
msgid "Can't split; no intersection found."
msgstr ""

#: mouse.cpp:560
msgid "Assign to Style"
msgstr ""

#: mouse.cpp:576
msgid "No Style"
msgstr ""

#: mouse.cpp:579
msgid "Newly Created Custom Style..."
msgstr ""

#: mouse.cpp:586
msgid "Group Info"
msgstr ""

#: mouse.cpp:606
msgid "Style Info"
msgstr ""

#: mouse.cpp:626
msgid "Select Edge Chain"
msgstr ""

#: mouse.cpp:632
msgid "Toggle Reference Dimension"
msgstr ""

#: mouse.cpp:638
msgid "Other Supplementary Angle"
msgstr ""

#: mouse.cpp:643
msgid "Snap to Grid"
msgstr ""

#: mouse.cpp:652
msgid "Remove Spline Point"
msgstr ""

#: mouse.cpp:687
msgid "Add Spline Point"
msgstr ""

#: mouse.cpp:691
msgid "Cannot add spline point: maximum number of points reached."
msgstr ""

#: mouse.cpp:716
msgid "Toggle Construction"
msgstr ""

#: mouse.cpp:731
msgid "Delete Point-Coincident Constraint"
msgstr ""

#: mouse.cpp:750
msgid "Cut"
msgstr ""

#: mouse.cpp:752
msgid "Copy"
msgstr ""

#: mouse.cpp:756
msgid "Select All"
msgstr ""

#: mouse.cpp:761
msgid "Paste"
msgstr ""

#: mouse.cpp:763
msgid "Paste Transformed..."
msgstr ""

#: mouse.cpp:768
msgid "Delete"
msgstr ""

#: mouse.cpp:771
msgid "Unselect All"
msgstr ""

#: mouse.cpp:778
msgid "Unselect Hovered"
msgstr ""

#: mouse.cpp:787
msgid "Zoom to Fit"
msgstr ""

#: mouse.cpp:989 mouse.cpp:1276
msgid "click next point of line, or press Esc"
msgstr ""

#: mouse.cpp:995
msgid "Can't draw rectangle in 3d; first, activate a workplane with Sketch -> In Workplane."
msgstr ""

#: mouse.cpp:1029
msgid "click to place other corner of rectangle"
msgstr ""

#: mouse.cpp:1049
msgid "click to set radius"
msgstr ""

#: mouse.cpp:1054
msgid "Can't draw arc in 3d; first, activate a workplane with Sketch -> In Workplane."
msgstr ""

#: mouse.cpp:1073
msgid "click to place point"
msgstr ""

#: mouse.cpp:1089
msgid "click next point of cubic, or press Esc"
msgstr ""

#: mouse.cpp:1094
msgid "Sketching in a workplane already; sketch in 3d before creating new workplane."
msgstr ""

#: mouse.cpp:1110
msgid "Can't draw text in 3d; first, activate a workplane with Sketch -> In Workplane."
msgstr ""

#: mouse.cpp:1127
msgid "click to place bottom right of text"
msgstr ""

#: mouse.cpp:1133
msgid "Can't draw image in 3d; first, activate a workplane with Sketch -> In Workplane."
msgstr ""

#: mouse.cpp:1160
msgid "NEW COMMENT -- DOUBLE-CLICK TO EDIT"
msgstr ""

#: platform/gui.cpp:85 platform/gui.cpp:89 solvespace.cpp:511
msgctxt "file-type"
msgid "SolveSpace models"
msgstr ""

#: platform/gui.cpp:90
msgctxt "file-type"
msgid "IDF circuit board"
msgstr ""

#: platform/gui.cpp:94
msgctxt "file-type"
msgid "PNG image"
msgstr ""

#: platform/gui.cpp:98
msgctxt "file-type"
msgid "STL mesh"
msgstr ""

#: platform/gui.cpp:99
msgctxt "file-type"
msgid "Wavefront OBJ mesh"
msgstr ""

#: platform/gui.cpp:100
msgctxt "file-type"
msgid "Three.js-compatible mesh, with viewer"
msgstr ""

#: platform/gui.cpp:101
msgctxt "file-type"
msgid "Three.js-compatible mesh, mesh only"
msgstr ""

#: platform/gui.cpp:102
msgctxt "file-type"
msgid "VRML text file"
msgstr ""

#: platform/gui.cpp:106 platform/gui.cpp:113 platform/gui.cpp:120
msgctxt "file-type"
msgid "STEP file"
msgstr ""

#: platform/gui.cpp:110
msgctxt "file-type"
msgid "PDF file"
msgstr ""

#: platform/gui.cpp:111
msgctxt "file-type"
msgid "Encapsulated PostScript"
msgstr ""

#: platform/gui.cpp:112
msgctxt "file-type"
msgid "Scalable Vector Graphics"
msgstr ""

#: platform/gui.cpp:114 platform/gui.cpp:121
msgctxt "file-type"
msgid "DXF file (AutoCAD 2007)"
msgstr ""

#: platform/gui.cpp:115
msgctxt "file-type"
msgid "HPGL file"
msgstr ""

#: platform/gui.cpp:116
msgctxt "file-type"
msgid "G Code"
msgstr ""

#: platform/gui.cpp:125
msgctxt "file-type"
msgid "AutoCAD DXF and DWG files"
msgstr ""

#: platform/gui.cpp:129
msgctxt "file-type"
msgid "Comma-separated values"
msgstr ""

#: platform/guigtk.cpp:1321 platform/guimac.mm:1363 platform/guiwin.cpp:1630
msgid "untitled"
msgstr ""

#: platform/guigtk.cpp:1332 platform/guigtk.cpp:1365 platform/guimac.mm:1321
#: platform/guiwin.cpp:1573
msgctxt "title"
msgid "Save File"
msgstr ""

#: platform/guigtk.cpp:1333 platform/guigtk.cpp:1366 platform/guimac.mm:1304
#: platform/guiwin.cpp:1575
msgctxt "title"
msgid "Open File"
msgstr ""

#: platform/guigtk.cpp:1336 platform/guigtk.cpp:1372
msgctxt "button"
msgid "_Cancel"
msgstr ""

#: platform/guigtk.cpp:1337 platform/guigtk.cpp:1370
msgctxt "button"
msgid "_Save"
msgstr ""

#: platform/guigtk.cpp:1338 platform/guigtk.cpp:1371
msgctxt "button"
msgid "_Open"
msgstr ""

#: solvespace.cpp:169
msgctxt "title"
msgid "Autosave Available"
msgstr ""

#: solvespace.cpp:170
msgctxt "dialog"
msgid "An autosave file is available for this sketch."
msgstr ""

#: solvespace.cpp:171
msgctxt "dialog"
msgid "Do you want to load the autosave file instead?"
msgstr ""

#: solvespace.cpp:172
msgctxt "button"
msgid "&Load autosave"
msgstr ""

#: solvespace.cpp:174
msgctxt "button"
msgid "Do&n't Load"
msgstr ""

#: solvespace.cpp:557
msgctxt "title"
msgid "Modified File"
msgstr ""

#: solvespace.cpp:559
#, c-format
msgctxt "dialog"
msgid "Do you want to save the changes you made to the sketch “%s”?"
msgstr ""

#: solvespace.cpp:562
msgctxt "dialog"
msgid "Do you want to save the changes you made to the new sketch?"
msgstr ""

#: solvespace.cpp:565
msgctxt "dialog"
msgid "Your changes will be lost if you don't save them."
msgstr ""

#: solvespace.cpp:566
msgctxt "button"
msgid "&Save"
msgstr ""

#: solvespace.cpp:568
msgctxt "button"
msgid "Do&n't Save"
msgstr ""

#: solvespace.cpp:589
msgctxt "title"
msgid "(new sketch)"
msgstr ""

#: solvespace.cpp:596
msgctxt "title"
msgid "Property Browser"
msgstr ""

#: solvespace.cpp:658
msgid ""
"Constraints are currently shown, and will be exported in the toolpath. This is probably not what "
"you want; hide them by clicking the link at the top of the text window."
msgstr ""

#: solvespace.cpp:730
#, c-format
msgid "Can't identify file type from file extension of filename '%s'; try .dxf or .dwg."
msgstr ""

#: solvespace.cpp:778
msgid "Constraint must have a label, and must not be a reference dimension."
msgstr ""

#: solvespace.cpp:782
msgid "Bad selection for step dimension; select a constraint."
msgstr ""

#: solvespace.cpp:806
msgid "The assembly does not interfere, good."
msgstr ""

#: solvespace.cpp:822
#, c-format
msgid ""
"The volume of the solid model is:\n"
"\n"
"    %s"
msgstr ""

#: solvespace.cpp:831
#, c-format
msgid ""
"\n"
"The volume of current group mesh is:\n"
"\n"
"    %s"
msgstr ""

#: solvespace.cpp:836
msgid ""
"\n"
"\n"
"Curved surfaces have been approximated as triangles.\n"
"This introduces error, typically of around 1%."
msgstr ""

#: solvespace.cpp:851
#, c-format
msgid ""
"The surface area of the selected faces is:\n"
"\n"
"    %s\n"
"\n"
"Curves have been approximated as piecewise linear.\n"
"This introduces error, typically of around 1%%."
msgstr ""

#: solvespace.cpp:860
msgid ""
"This group does not contain a correctly-formed 2d closed area. It is open, not coplanar, or self-"
"intersecting."
msgstr ""

#: solvespace.cpp:872
#, c-format
msgid ""
"The area of the region sketched in this group is:\n"
"\n"
"    %s\n"
"\n"
"Curves have been approximated as piecewise linear.\n"
"This introduces error, typically of around 1%%."
msgstr ""

#: solvespace.cpp:892
#, c-format
msgid ""
"The total length of the selected entities is:\n"
"\n"
"    %s\n"
"\n"
"Curves have been approximated as piecewise linear.\n"
"This introduces error, typically of around 1%%."
msgstr ""

#: solvespace.cpp:898
msgid "Bad selection for perimeter; select line segments, arcs, and curves."
msgstr ""

#: solvespace.cpp:914
msgid "Bad selection for trace; select a single point."
msgstr ""

#: solvespace.cpp:941
#, c-format
msgid "Couldn't write to '%s'"
msgstr ""

#: solvespace.cpp:971
msgid "The mesh is self-intersecting (NOT okay, invalid)."
msgstr ""

#: solvespace.cpp:972
msgid "The mesh is not self-intersecting (okay, valid)."
msgstr ""

#: solvespace.cpp:974
msgid "The mesh has naked edges (NOT okay, invalid)."
msgstr ""

#: solvespace.cpp:975
msgid "The mesh is watertight (okay, valid)."
msgstr ""

#: solvespace.cpp:978
#, c-format
msgid ""
"\n"
"\n"
"The model contains %d triangles, from %d surfaces."
msgstr ""

#: solvespace.cpp:982
#, c-format
msgid ""
"%s\n"
"\n"
"%s\n"
"\n"
"Zero problematic edges, good.%s"
msgstr ""

#: solvespace.cpp:985
#, c-format
msgid ""
"%s\n"
"\n"
"%s\n"
"\n"
"%d problematic edges, bad.%s"
msgstr ""

#: solvespace.cpp:998
#, c-format
msgid ""
"This is SolveSpace version %s.\n"
"\n"
"For more information, see http://solvespace.com/\n"
"\n"
"SolveSpace is free software: you are free to modify\n"
"and/or redistribute it under the terms of the GNU\n"
"General Public License (GPL) version 3 or later.\n"
"\n"
"There is NO WARRANTY, to the extent permitted by\n"
"law. For details, visit http://gnu.org/licenses/\n"
"\n"
"© 2008-%d Jonathan Westhues and other authors.\n"
msgstr ""

#: style.cpp:166
msgid ""
"Can't assign style to an entity that's derived from another entity; try assigning a style to this "
"entity's parent."
msgstr ""

#: style.cpp:665
msgid "Style name cannot be empty"
msgstr ""

#: textscreens.cpp:741
msgid "Can't repeat fewer than 1 time."
msgstr ""

#: textscreens.cpp:745
msgid "Can't repeat more than 999 times."
msgstr ""

#: textscreens.cpp:770
msgid "Group name cannot be empty"
msgstr ""

#: textscreens.cpp:813
msgid "Opacity must be between zero and one."
msgstr ""

#: textscreens.cpp:848
msgid "Radius cannot be zero or negative."
msgstr ""

#: toolbar.cpp:18
msgid "Sketch line segment"
msgstr ""

#: toolbar.cpp:20
msgid "Sketch rectangle"
msgstr ""

#: toolbar.cpp:22
msgid "Sketch circle"
msgstr ""

#: toolbar.cpp:24
msgid "Sketch arc of a circle"
msgstr ""

#: toolbar.cpp:26
msgid "Sketch curves from text in a TrueType font"
msgstr ""

#: toolbar.cpp:28
msgid "Sketch image from a file"
msgstr ""

#: toolbar.cpp:30
msgid "Create tangent arc at selected point"
msgstr ""

#: toolbar.cpp:32
msgid "Sketch cubic Bezier spline"
msgstr ""

#: toolbar.cpp:34
msgid "Sketch datum point"
msgstr ""

#: toolbar.cpp:36
msgid "Toggle construction"
msgstr ""

#: toolbar.cpp:38
msgid "Split lines / curves where they intersect"
msgstr ""

#: toolbar.cpp:42
msgid "Constrain distance / diameter / length"
msgstr ""

#: toolbar.cpp:44
msgid "Constrain angle"
msgstr ""

#: toolbar.cpp:46
msgid "Constrain to be horizontal"
msgstr ""

#: toolbar.cpp:48
msgid "Constrain to be vertical"
msgstr ""

#: toolbar.cpp:50
msgid "Constrain to be parallel or tangent"
msgstr ""

#: toolbar.cpp:52
msgid "Constrain to be perpendicular"
msgstr ""

#: toolbar.cpp:54
msgid "Constrain point on line / curve / plane / point"
msgstr ""

#: toolbar.cpp:56
msgid "Constrain symmetric"
msgstr ""

#: toolbar.cpp:58
msgid "Constrain equal length / radius / angle"
msgstr ""

#: toolbar.cpp:60
msgid "Constrain normals in same orientation"
msgstr ""

#: toolbar.cpp:62
msgid "Other supplementary angle"
msgstr ""

#: toolbar.cpp:64
msgid "Toggle reference dimension"
msgstr ""

#: toolbar.cpp:68
msgid "New group extruding active sketch"
msgstr ""

#: toolbar.cpp:70
msgid "New group rotating active sketch"
msgstr ""

#: toolbar.cpp:72
msgid "New group helix from active sketch"
msgstr ""

#: toolbar.cpp:74
msgid "New group revolve active sketch"
msgstr ""

#: toolbar.cpp:76
msgid "New group step and repeat rotating"
msgstr ""

#: toolbar.cpp:78
msgid "New group step and repeat translating"
msgstr ""

#: toolbar.cpp:80
msgid "New group in new workplane (thru given entities)"
msgstr ""

#: toolbar.cpp:82
msgid "New group in 3d"
msgstr ""

#: toolbar.cpp:84
msgid "New group linking / assembling file"
msgstr ""

#: toolbar.cpp:88
msgid "Nearest isometric view"
msgstr ""

#: toolbar.cpp:90
msgid "Align view to active workplane"
msgstr ""

#: util.cpp:165
msgctxt "title"
msgid "Error"
msgstr ""

#: util.cpp:165
msgctxt "title"
msgid "Message"
msgstr ""

#: util.cpp:170
msgctxt "button"
msgid "&OK"
msgstr ""

#: view.cpp:78
msgid "Scale cannot be zero or negative."
msgstr ""

#: view.cpp:90 view.cpp:99
msgid "Bad format: specify x, y, z"
msgstr ""