File: com.github.phase1geo.minder.pot

package info (click to toggle)
minder 2.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,736 kB
  • sloc: xml: 799; sh: 112; python: 87; ansic: 78; makefile: 5; tcl: 4
file content (4455 lines) | stat: -rw-r--r-- 79,264 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the com.github.phase1geo.minder package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: com.github.phase1geo.minder\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-01-31 21:15-0600\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"

#: src/About.vala:38
msgid "Mind-mapping application"
msgstr ""

#: src/About.vala:39 src/StickerSet.vala:210
msgid "Copyright"
msgstr ""

#: src/About.vala:43
msgid "Minder in AppCenter"
msgstr ""

#: src/About.vala:60
#, c-format
msgid "Flatpak Runtime: %s"
msgstr ""

#: src/Application.vala:133
#, c-format
msgid "Import file from format (%s)"
msgstr ""

#: src/Application.vala:134
#, c-format
msgid "Export mindmap as format (%s)"
msgstr ""

#: src/Application.vala:139
msgid "Display version number"
msgstr ""

#: src/Application.vala:140
msgid "Display help"
msgstr ""

#: src/Application.vala:141
msgid "Starts Minder with a new file"
msgstr ""

#: src/Application.vala:144
msgid ""
"Enables a transparent background for PNG images.  Default is no transparency."
msgstr ""

#: src/Application.vala:145
msgid "PNG compression value (0-9). Default is 0."
msgstr ""

#: src/Application.vala:146
msgid "JPEG quality (0-100). Default is 90."
msgstr ""

#: src/Application.vala:147
msgid "Enables image links in exported Markdown"
msgstr ""

#: src/Application.vala:152
msgid "Import Example:\n"
msgstr ""

#: src/Application.vala:153
#, c-format
msgid "  %scom.github.phase1geo.minder --import=markdown file.markdown\n"
msgstr ""

#: src/Application.vala:155
msgid "Export Example:\n"
msgstr ""

#: src/Application.vala:156
#, c-format
msgid ""
"  %scom.github.phase1geo.minder --export=png --png-transparent file.minder "
"file.png\n"
msgstr ""

#: src/Application.vala:165
#, c-format
msgid "ERROR: %s\n"
msgstr ""

#: src/Application.vala:166
#, c-format
msgid "Run '%s --help' to see valid options\n"
msgstr ""

#: src/Application.vala:189
msgid "ERROR: Unable to import file"
msgstr ""

#: src/Application.vala:193
msgid "ERROR: Import is missing filename to import"
msgstr ""

#: src/Application.vala:216
msgid "ERROR: Export is missing input file and/or export output file"
msgstr ""

#: src/Application.vala:226
#, c-format
msgid "ERROR:  Unable to open file '%s'\n"
msgstr ""

#: src/Application.vala:262
#, c-format
msgid "ERROR:  Unable to load Minder input file %s"
msgstr ""

#: src/Braindump.vala:57
msgid "Enter Idea"
msgstr ""

#: src/Braindump.vala:103
msgid "Clear Idea List"
msgstr ""

#: src/CalloutMenu.vala:33 src/ConnectionMenu.vala:34
#: src/ConnectionsMenu.vala:33 src/GroupsMenu.vala:33 src/NodeMenu.vala:40
#: src/NodesMenu.vala:35 src/TemplateEditor.vala:110 src/ThemeEditor.vala:141
msgid "Delete"
msgstr ""

#: src/CalloutMenu.vala:36
msgid "Select Node"
msgstr ""

#: src/Callout.vala:131 src/KeyCommands.vala:677 src/NodeMenu.vala:97
msgid "Callout"
msgstr ""

#: src/CanvasText.vala:291 src/FormattedText.vala:1179
msgid "No text found"
msgstr ""

#: src/ConnectionInspector.vala:77 src/KeyCommands.vala:680
#: src/NodeMenu.vala:96
msgid "Connection"
msgstr ""

#: src/ConnectionInspector.vala:90 src/NodeInspector.vala:199
msgid "Color"
msgstr ""

#: src/ConnectionInspector.vala:104
msgid "Use Theme Default Color"
msgstr ""

#: src/ConnectionInspector.vala:130 src/GroupInspector.vala:86
#: src/NodeInspector.vala:284
msgid "Note"
msgstr ""

#: src/ConnectionInspector.vala:186
msgid "Delete Connection"
msgstr ""

#: src/ConnectionMenu.vala:37
msgid "Edit Title…"
msgstr ""

#: src/ConnectionMenu.vala:38 src/GroupsMenu.vala:36 src/NodeMenu.vala:54
msgid "Edit Note"
msgstr ""

#: src/ConnectionMenu.vala:39 src/NodeMenu.vala:58
msgid "Remove Sticker"
msgstr ""

#: src/ConnectionMenu.vala:42
msgid "Start Node"
msgstr ""

#: src/ConnectionMenu.vala:43
msgid "End Node"
msgstr ""

#: src/ConnectionMenu.vala:46
msgid "Next Connection"
msgstr ""

#: src/ConnectionMenu.vala:47
msgid "Previous Connection"
msgstr ""

#: src/ConnectionMenu.vala:54 src/GroupsMenu.vala:45 src/ImageManager.vala:336
#: src/NodeMenu.vala:104 src/NodesMenu.vala:59
msgid "Select"
msgstr ""

#: src/Connection.vala:810
msgid "Connection Title"
msgstr ""

#: src/Connection.vala:818
msgid "Connection Note"
msgstr ""

#: src/Document.vala:36
msgid "Upgrade Minder file to new version"
msgstr ""

#: src/Document.vala:37
msgid "Upgrade Minder file to new version and keep a copy of the original"
msgstr ""

#: src/Document.vala:38
msgid "Do not upgrade Minder file but view it as read-only"
msgstr ""

#: src/Document.vala:47
msgid "Upgrade Minder files to new version"
msgstr ""

#: src/Document.vala:48
msgid ""
"Upgrade Minder files to new version but keep a copy of the original if "
"previously saved"
msgstr ""

#: src/Document.vala:49
msgid "Do not upgrade Minder files but view them as read-only"
msgstr ""

#: src/Document.vala:160
msgid "unnamed"
msgstr ""

#: src/Document.vala:691
msgid "Upgrade?"
msgstr ""

#: src/Document.vala:692
msgid ""
"This file is from an older version Minder and needs to be upgraded to edit.\n"
"\n"
"Note: Upgraded files cannot be viewed/edited with older versions of Minder."
msgstr ""

#: src/Document.vala:697 src/ImageEditor.vala:430 src/MainWindow.vala:1330
#: src/QuickEntry.vala:167 src/StickerSet.vala:75 src/TemplateEditor.vala:100
#: src/ThemeEditor.vala:153 src/UrlEditor.vala:62
msgid "Cancel"
msgstr ""

#: src/Document.vala:700 src/ImageEditor.vala:433 src/MainWindow.vala:2180
#: src/UrlEditor.vala:52
msgid "Apply"
msgstr ""

#: src/Document.vala:711
msgid "Don't show this dialog again"
msgstr ""

#: src/Document.vala:714 src/MainWindow.vala:2217
msgid "<small>This can be changed in preferences</small>"
msgstr ""

#: src/Document.vala:735
msgid "Upgrade Needed"
msgstr ""

#: src/DrawArea.vala:1533
#, c-format
msgid "%0.3g%% complete"
msgstr ""

#: src/DrawArea.vala:1551
msgid "Drag to resize node"
msgstr ""

#: src/DrawArea.vala:1553
msgid ""
"Drag to resize node and image.\n"
"Control-drag to resize only node."
msgstr ""

#: src/DrawArea.vala:1695
#, c-format
msgid "Children: %u\n"
msgstr ""

#: src/DrawArea.vala:1696
#, c-format
msgid "Total: %d"
msgstr ""

#: src/DrawArea.vala:1750
msgid "connection endpoint change"
msgstr ""

#: src/DrawArea.vala:1757
msgid "connection drag"
msgstr ""

#: src/DrawArea.vala:2282 src/MapModel.vala:1840 src/MapModel.vala:1855
msgid "Another Idea"
msgstr ""

#: src/EmptyInspector.vala:30
msgid ""
"Select a node, connection or group\n"
"to view/edit information"
msgstr ""

#: src/EmptyMenu.vala:32 src/NodeMenu.vala:38 src/NodeMenu.vala:253
#: src/TextMenu.vala:38
msgid "Paste"
msgstr ""

#: src/EmptyMenu.vala:35 src/NodeMenu.vala:71
msgid "Add Root Node"
msgstr ""

#: src/EmptyMenu.vala:36
msgid "Add Nodes With Quick Entry"
msgstr ""

#: src/EmptyMenu.vala:39
msgid "Select First Root Node"
msgstr ""

#: src/Exporter.vala:60
msgid "Export…"
msgstr ""

#: src/Exporter.vala:62
msgid "Export With Current Settings"
msgstr ""

#: src/Exporter.vala:110
msgid "Export Options"
msgstr ""

#: src/Exporter.vala:131
#, c-format
msgid "Export As %s"
msgstr ""

#: src/Exporter.vala:131 src/MainWindow.vala:1069 src/StickerSet.vala:352
msgid "Export"
msgstr ""

#: src/Exporter.vala:154 src/Exporter.vala:166
msgid "Minder Export Completed"
msgstr ""

#: src/Exporter.vala:166
msgid "Copied to clipboard"
msgstr ""

#: src/exports/ExportCSV.vala:27
msgid "CSV"
msgstr ""

#: src/exports/ExportFileSystem.vala:30
msgid "File System"
msgstr ""

#: src/exports/ExportFreemind.vala:31
msgid "Freemind"
msgstr ""

#: src/exports/ExportFreemind.vala:49 src/exports/ExportFreeplane.vala:50
#: src/exports/ExportOPML.vala:38 src/exports/ExportYed.vala:43
msgid "Generated by Minder"
msgstr ""

#: src/exports/ExportFreeplane.vala:32
msgid "Freeplane"
msgstr ""

#: src/exports/ExportImage.vala:90 src/exports/ExportPNG.vala:95
msgid "Zoom %"
msgstr ""

#: src/exports/ExportImage.vala:99
msgid "Quality"
msgstr ""

#: src/exports/ExportMarkdown.vala:34
msgid "Markdown"
msgstr ""

#: src/exports/ExportMarkdown.vala:382
msgid "Include image links"
msgstr ""

#: src/exports/ExportMarkdown.vala:383
msgid "Creates a directory containing the Markdown and embedded images"
msgstr ""

#: src/exports/ExportMermaid.vala:38
msgid "Mermaid"
msgstr ""

#: src/exports/ExportMermaid.vala:75 src/layouts/LayoutVertical.vala:26
msgid "Vertical"
msgstr ""

#: src/exports/ExportMermaid.vala:75 src/layouts/LayoutDown.vala:26
msgid "Downwards"
msgstr ""

#: src/exports/ExportMermaid.vala:77 src/layouts/LayoutLeft.vala:26
msgid "To left"
msgstr ""

#: src/exports/ExportMermaid.vala:79 src/layouts/LayoutUp.vala:26
msgid "Upwards"
msgstr ""

#: src/exports/ExportMermaid.vala:481
msgid "Use Mermaid Mindmap Format"
msgstr ""

#: src/exports/ExportOPML.vala:27
msgid "OPML"
msgstr ""

#: src/exports/ExportOrgMode.vala:29
msgid "Org-Mode"
msgstr ""

#: src/exports/ExportOrgMode.vala:35
msgid "Indent Mode"
msgstr ""

#: src/exports/ExportOrgMode.vala:35
msgid "Export using indentation spaces"
msgstr ""

#: src/exports/ExportOutliner.vala:29
msgid "Outliner"
msgstr ""

#: src/exports/ExportPDF.vala:29
msgid "PDF"
msgstr ""

#: src/exports/ExportPlantUML.vala:30
msgid "PlantUML"
msgstr ""

#: src/exports/ExportPNG.vala:31
msgid "PNG"
msgstr ""

#: src/exports/ExportPNG.vala:96
msgid "Enable Transparent Background"
msgstr ""

#: src/exports/ExportPNG.vala:97
msgid "Compression"
msgstr ""

#: src/exports/ExportPortableMinder.vala:29
msgid "Portable Minder"
msgstr ""

#: src/exports/ExportSVG.vala:29
msgid "SVG"
msgstr ""

#: src/exports/ExportText.vala:45
msgid "PlainText"
msgstr ""

#: src/exports/ExportWebP.vala:29
msgid "WebP"
msgstr ""

#: src/exports/ExportXMind2021.vala:80
msgid "XMind 2021"
msgstr ""

#: src/exports/ExportXMind2021.vala:682 src/exports/ExportXMind8.vala:695
#: src/layouts/LayoutHorizontal.vala:26
msgid "Horizontal"
msgstr ""

#: src/exports/ExportXMind2021.vala:684 src/exports/ExportXMind8.vala:697
#: src/layouts/LayoutRight.vala:26
msgid "To right"
msgstr ""

#: src/exports/ExportXMind8.vala:81
msgid "XMind 8"
msgstr ""

#: src/exports/ExportYed.vala:27
msgid "Yed"
msgstr ""

#: src/Exports.vala:36
msgid "JPEG"
msgstr ""

#: src/Export.vala:80
msgid "Export to clipboard"
msgstr ""

#: src/GroupInspector.vala:73 src/KeyCommands.vala:686
msgid "Group"
msgstr ""

#: src/GroupsMenu.vala:37
msgid "Change color…"
msgstr ""

#: src/GroupsMenu.vala:38
msgid "Merge"
msgstr ""

#: src/GroupsMenu.vala:41
msgid "Top Nodes"
msgstr ""

#: src/GroupsMenu.vala:42
msgid "All Grouped Nodes"
msgstr ""

#: src/ImageEditor.vala:197
#, c-format
msgid "Crop Area: %d,%d %3dx%3d"
msgstr ""

#: src/ImageEditor.vala:401
#, c-format
msgid "Cursor: %3d,%3d"
msgstr ""

#: src/ImageEditor.vala:410
msgid "Change Image"
msgstr ""

#: src/ImageEditor.vala:414
msgid "Paste Image from Clipboard"
msgstr ""

#: src/ImageEditor.vala:418 src/NodeInspector.vala:386 src/NodeMenu.vala:234
msgid "Remove Image"
msgstr ""

#: src/ImageEditor.vala:422
msgid "Copy Image to Clipboard"
msgstr ""

#: src/ImageEditor.vala:427
msgid "Cut Image to Clipboard"
msgstr ""

#: src/ImageManager.vala:336
msgid "Select Image"
msgstr ""

#: src/ImageManager.vala:341
msgid "Images"
msgstr ""

#: src/KeyCommands.vala:571 src/Shortcuts.vala:796
msgid "General"
msgstr ""

#: src/KeyCommands.vala:572
msgid "File Commands"
msgstr ""

#: src/KeyCommands.vala:573
msgid "Create new mindmap"
msgstr ""

#: src/KeyCommands.vala:574
msgid "Open saved mindmap"
msgstr ""

#: src/KeyCommands.vala:575
msgid "Create mindmap from directory structure"
msgstr ""

#: src/KeyCommands.vala:576
msgid "Save mindmap to current file"
msgstr ""

#: src/KeyCommands.vala:577
msgid "Save mindmap to new file"
msgstr ""

#: src/KeyCommands.vala:578
msgid "Show print dialog for current mindmap"
msgstr ""

#: src/KeyCommands.vala:579
msgid "Tab Commands"
msgstr ""

#: src/KeyCommands.vala:580
msgid "Select next tab"
msgstr ""

#: src/KeyCommands.vala:581
msgid "Select previous tab"
msgstr ""

#: src/KeyCommands.vala:582
msgid "Close the current mindmap"
msgstr ""

#: src/KeyCommands.vala:583
msgid "Undo/Redo Commands"
msgstr ""

#: src/KeyCommands.vala:584
msgid "Undo last action"
msgstr ""

#: src/KeyCommands.vala:585
msgid "Redo last undone action"
msgstr ""

#: src/KeyCommands.vala:586
msgid "Zoom Commands"
msgstr ""

#: src/KeyCommands.vala:587
msgid "Zoom in"
msgstr ""

#: src/KeyCommands.vala:588
msgid "Zoom out"
msgstr ""

#: src/KeyCommands.vala:589
msgid "Zoom to fit entire mindmap in viewer"
msgstr ""

#: src/KeyCommands.vala:590
msgid "Zoom selected node subtree in viewer"
msgstr ""

#: src/KeyCommands.vala:591
msgid "Zoom to 100%"
msgstr ""

#: src/KeyCommands.vala:592
msgid "Sidebar Commands"
msgstr ""

#: src/KeyCommands.vala:593
msgid "Show current tab in sidebar"
msgstr ""

#: src/KeyCommands.vala:594
msgid "Show style tab in sidebar"
msgstr ""

#: src/KeyCommands.vala:595
msgid "Show tag tab in sidebar"
msgstr ""

#: src/KeyCommands.vala:596
msgid "Show sticker tab in sidebar"
msgstr ""

#: src/KeyCommands.vala:597
msgid "Show map tab in sidebar"
msgstr ""

#: src/KeyCommands.vala:598
msgid "Show currently select node/connection/group information in sidebar"
msgstr ""

#: src/KeyCommands.vala:599
msgid "Map Commands"
msgstr ""

#: src/KeyCommands.vala:600
msgid "Show/Hide Connections"
msgstr ""

#: src/KeyCommands.vala:601
msgid "Show/Hide Callouts"
msgstr ""

#: src/KeyCommands.vala:602
msgid "Balance nodes in vertical/horizontal layouts"
msgstr ""

#: src/KeyCommands.vala:603
msgid "Fold all completed tasks"
msgstr ""

#: src/KeyCommands.vala:604
msgid "Unfold all folded nodes"
msgstr ""

#: src/KeyCommands.vala:605
msgid "Miscellaneous Commands"
msgstr ""

#: src/KeyCommands.vala:606
msgid "Show preferences window"
msgstr ""

#: src/KeyCommands.vala:607
msgid "Show shortcuts cheatsheet"
msgstr ""

#: src/KeyCommands.vala:608
msgid "Show contextual menu"
msgstr ""

#: src/KeyCommands.vala:609
msgid "Show find popup"
msgstr ""

#: src/KeyCommands.vala:610
msgid "Show About window"
msgstr ""

#: src/KeyCommands.vala:611
msgid "Toggle braindump input mode"
msgstr ""

#: src/KeyCommands.vala:612
msgid "Toggle focus mode"
msgstr ""

#: src/KeyCommands.vala:613
msgid "Edit note of current item"
msgstr ""

#: src/KeyCommands.vala:614
msgid "Edit currently selected item"
msgstr ""

#: src/KeyCommands.vala:615
msgid "Show currently selected item"
msgstr ""

#: src/KeyCommands.vala:616
msgid "Remove sticker from current node or connection"
msgstr ""

#: src/KeyCommands.vala:617
msgid "Quit the application"
msgstr ""

#: src/KeyCommands.vala:618 src/NodeInspector.vala:100
msgid "Node"
msgstr ""

#: src/KeyCommands.vala:619
msgid "Creation/Deletion Commands"
msgstr ""

#: src/KeyCommands.vala:620
msgid "Add root node"
msgstr ""

#: src/KeyCommands.vala:621
msgid "Add sibling node after current node"
msgstr ""

#: src/KeyCommands.vala:622
msgid "Add sibling node before current node"
msgstr ""

#: src/KeyCommands.vala:623
msgid "Add child node to current node"
msgstr ""

#: src/KeyCommands.vala:624
msgid "Add parent node to current node"
msgstr ""

#: src/KeyCommands.vala:625
msgid "Use quick entry to insert nodes"
msgstr ""

#: src/KeyCommands.vala:626
msgid "Use quick entry to replace current node"
msgstr ""

#: src/KeyCommands.vala:627
msgid "Remove selected node only (leave subtree)"
msgstr ""

#: src/KeyCommands.vala:628 src/KeyCommands.vala:700
msgid "Clipboard Commands"
msgstr ""

#: src/KeyCommands.vala:629
msgid "Paste node link from clipboard into current node"
msgstr ""

#: src/KeyCommands.vala:630
msgid "Replace current node with clipboard content"
msgstr ""

#: src/KeyCommands.vala:631
msgid "View Commands"
msgstr ""

#: src/KeyCommands.vala:632
msgid "Center current node in map canvas"
msgstr ""

#: src/KeyCommands.vala:633 src/KeyCommands.vala:687
msgid "Change Commands"
msgstr ""

#: src/KeyCommands.vala:634
msgid "Change task status of current node"
msgstr ""

#: src/KeyCommands.vala:635
msgid "Add/Edit image of current node"
msgstr ""

#: src/KeyCommands.vala:636
msgid "Remove image from current node"
msgstr ""

#: src/KeyCommands.vala:637
msgid "Change link color of current node"
msgstr ""

#: src/KeyCommands.vala:638
msgid "Randomize the current node link color"
msgstr ""

#: src/KeyCommands.vala:639
msgid "Set current node link color to match parent node"
msgstr ""

#: src/KeyCommands.vala:640
msgid "Toggle folding of current node"
msgstr ""

#: src/KeyCommands.vala:641
msgid "Toggle folding of current node subtree"
msgstr ""

#: src/KeyCommands.vala:642
msgid "Toggle the node link state"
msgstr ""

#: src/KeyCommands.vala:643
msgid "Add group for current node and its subtree"
msgstr ""

#: src/KeyCommands.vala:644
msgid "Start creation of connection from current node"
msgstr ""

#: src/KeyCommands.vala:645
msgid "Add/Remove callout for current node"
msgstr ""

#: src/KeyCommands.vala:646
msgid "Toggle sequence state of children of current node"
msgstr ""

#: src/KeyCommands.vala:647 src/KeyCommands.vala:678 src/KeyCommands.vala:681
#: src/KeyCommands.vala:690 src/KeyCommands.vala:720
msgid "Selection Commands"
msgstr ""

#: src/KeyCommands.vala:648
msgid "Select root node of current node"
msgstr ""

#: src/KeyCommands.vala:649
msgid "Select parent node of current node"
msgstr ""

#: src/KeyCommands.vala:650
msgid "Select all child nodes of current node"
msgstr ""

#: src/KeyCommands.vala:651
msgid "Select single child node of current node"
msgstr ""

#: src/KeyCommands.vala:652
msgid "Select all nodes in subtree of current node"
msgstr ""

#: src/KeyCommands.vala:653
msgid "Select next sibling node of current node"
msgstr ""

#: src/KeyCommands.vala:654
msgid "Select previous sibling node of current node"
msgstr ""

#: src/KeyCommands.vala:655
msgid "Select node to the left of current node"
msgstr ""

#: src/KeyCommands.vala:656
msgid "Select node to the right of current node"
msgstr ""

#: src/KeyCommands.vala:657
msgid "Select node above current node"
msgstr ""

#: src/KeyCommands.vala:658
msgid "Select node below current node"
msgstr ""

#: src/KeyCommands.vala:659
msgid "Select linked node of current node"
msgstr ""

#: src/KeyCommands.vala:660
msgid "Select connection of current node"
msgstr ""

#: src/KeyCommands.vala:661
msgid "Select callout of current node"
msgstr ""

#: src/KeyCommands.vala:662
msgid "Move Commands"
msgstr ""

#: src/KeyCommands.vala:663
msgid "Swap current node with right node"
msgstr ""

#: src/KeyCommands.vala:664
msgid "Swap current node with left node"
msgstr ""

#: src/KeyCommands.vala:665
msgid "Swap current node with above node"
msgstr ""

#: src/KeyCommands.vala:666
msgid "Swap current node with below node"
msgstr ""

#: src/KeyCommands.vala:667
msgid "Sort child nodes of current node alphabetically"
msgstr ""

#: src/KeyCommands.vala:668
msgid "Sort child nodes of current node randomly"
msgstr ""

#: src/KeyCommands.vala:669
msgid "Detaches current node and its subtree"
msgstr ""

#: src/KeyCommands.vala:670
msgid "Alignment Commands"
msgstr ""

#: src/KeyCommands.vala:671
msgid "Align selected node top edges"
msgstr ""

#: src/KeyCommands.vala:672
msgid "Align selected node vertical centers"
msgstr ""

#: src/KeyCommands.vala:673
msgid "Align selected node bottom edges"
msgstr ""

#: src/KeyCommands.vala:674
msgid "Align selected node left edges"
msgstr ""

#: src/KeyCommands.vala:675
msgid "Align selected node horizontal centers"
msgstr ""

#: src/KeyCommands.vala:676
msgid "Align selected node right edges"
msgstr ""

#: src/KeyCommands.vala:679
msgid "Select callout node"
msgstr ""

#: src/KeyCommands.vala:682
msgid "Select connection source node"
msgstr ""

#: src/KeyCommands.vala:683
msgid "Select connection target node"
msgstr ""

#: src/KeyCommands.vala:684
msgid "Select next connection in map"
msgstr ""

#: src/KeyCommands.vala:685
msgid "Select previous connection in map"
msgstr ""

#: src/KeyCommands.vala:688
msgid "Change the color of the current group"
msgstr ""

#: src/KeyCommands.vala:689
msgid "Merge current groups into single group"
msgstr ""

#: src/KeyCommands.vala:691
msgid "Select main node(s) of current group(s)"
msgstr ""

#: src/KeyCommands.vala:692
msgid "Selects all nodes within current group(s)"
msgstr ""

#: src/KeyCommands.vala:693
msgid "Text Editing"
msgstr ""

#: src/KeyCommands.vala:694
msgid "Insertion/Deletion Commands"
msgstr ""

#: src/KeyCommands.vala:695
msgid "Insert newline character"
msgstr ""

#: src/KeyCommands.vala:696
msgid "Insert TAB character"
msgstr ""

#: src/KeyCommands.vala:697
msgid "Insert emoji"
msgstr ""

#: src/KeyCommands.vala:698
msgid "Remove next word"
msgstr ""

#: src/KeyCommands.vala:699
msgid "Remove previous word"
msgstr ""

#: src/KeyCommands.vala:701
msgid "Copy selected nodes or text"
msgstr ""

#: src/KeyCommands.vala:702
msgid "Cut selected nodes or text"
msgstr ""

#: src/KeyCommands.vala:703
msgid "Paste nodes or text from clipboard"
msgstr ""

#: src/KeyCommands.vala:704
msgid "URL Commands"
msgstr ""

#: src/KeyCommands.vala:705
msgid "Open URL link at current cursor position"
msgstr ""

#: src/KeyCommands.vala:706
msgid "Add URL link at current cursor position"
msgstr ""

#: src/KeyCommands.vala:707
msgid "Change URL link at current cursor position"
msgstr ""

#: src/KeyCommands.vala:708
msgid "Remove URL link at current cursor position"
msgstr ""

#: src/KeyCommands.vala:709
msgid "Cursor Commands"
msgstr ""

#: src/KeyCommands.vala:710
msgid "Move cursor to next character"
msgstr ""

#: src/KeyCommands.vala:711
msgid "Move cursor to previous character"
msgstr ""

#: src/KeyCommands.vala:712
msgid "Move cursor up one line"
msgstr ""

#: src/KeyCommands.vala:713
msgid "Move cursor down one line"
msgstr ""

#: src/KeyCommands.vala:714
msgid "Move cursor to beginning of next word"
msgstr ""

#: src/KeyCommands.vala:715
msgid "Move cursor to beginning of previous word"
msgstr ""

#: src/KeyCommands.vala:716
msgid "Move cursor to start of text"
msgstr ""

#: src/KeyCommands.vala:717
msgid "Move cursor to end of text"
msgstr ""

#: src/KeyCommands.vala:718
msgid "Move cursor to start of current line"
msgstr ""

#: src/KeyCommands.vala:719
msgid "Move cursor to end of current line"
msgstr ""

#: src/KeyCommands.vala:721
msgid "Add next character to current selection"
msgstr ""

#: src/KeyCommands.vala:722
msgid "Add previous character to current selection"
msgstr ""

#: src/KeyCommands.vala:723
msgid "Add line up to current selection"
msgstr ""

#: src/KeyCommands.vala:724
msgid "Add line down to current selection"
msgstr ""

#: src/KeyCommands.vala:725
msgid "Add next word to current selection"
msgstr ""

#: src/KeyCommands.vala:726
msgid "Add previous word to current selection"
msgstr ""

#: src/KeyCommands.vala:727
msgid "Add start of text to current selection (Control-Up)"
msgstr ""

#: src/KeyCommands.vala:728
msgid "Add start of text to current selection (Control-Home)"
msgstr ""

#: src/KeyCommands.vala:729
msgid "Add end of text to current selection (Control-Down)"
msgstr ""

#: src/KeyCommands.vala:730
msgid "Add end of text to current selection (Control-End)"
msgstr ""

#: src/KeyCommands.vala:731
msgid "Add start of current line to current selection"
msgstr ""

#: src/KeyCommands.vala:732
msgid "Add end of current line to current selection"
msgstr ""

#: src/KeyCommands.vala:733 src/Shortcuts.vala:821
msgid "Select all text"
msgstr ""

#: src/KeyCommands.vala:734
msgid "Deselect all text"
msgstr ""

#: src/KeyCommands.vala:1881
msgid "Select a group color"
msgstr ""

#: src/layouts/LayoutManual.vala:26 src/MapInspector.vala:271
#: src/MapInspector.vala:524 src/MapModel.vala:2328
msgid "Manual"
msgstr ""

#: src/MainWindow.vala:183 src/MainWindow.vala:1623
msgid "Minder"
msgstr ""

#: src/MainWindow.vala:242
msgid "New File"
msgstr ""

#: src/MainWindow.vala:247 src/MainWindow.vala:1420
msgid "Open File"
msgstr ""

#: src/MainWindow.vala:252
msgid "Save File As"
msgstr ""

#: src/MainWindow.vala:259 src/StickerSet.vala:307 src/UndoBuffer.vala:84
msgid "Undo"
msgstr ""

#: src/MainWindow.vala:266 src/StickerSet.vala:308 src/UndoBuffer.vala:90
msgid "Redo"
msgstr ""

#: src/MainWindow.vala:725
msgid "Tag Highlight Mode"
msgstr ""

#: src/MainWindow.vala:727 src/MainWindow.vala:1139
msgid "Focus Mode"
msgstr ""

#: src/MainWindow.vala:730
msgid "Unnamed Document"
msgstr ""

#: src/MainWindow.vala:733
msgid "Read-Only"
msgstr ""

#: src/MainWindow.vala:752
msgid "Zoom to Fit"
msgstr ""

#: src/MainWindow.vala:753
msgid "Zoom to Fit Selected Node Tree"
msgstr ""

#: src/MainWindow.vala:754
msgid "Zoom to Actual Size"
msgstr ""

#: src/MainWindow.vala:762
msgid "Zoom to Percent"
msgstr ""

#: src/MainWindow.vala:777 src/ZoomWidget.vala:104
msgid "Zoom In"
msgstr ""

#: src/MainWindow.vala:784 src/ZoomWidget.vala:92
msgid "Zoom Out"
msgstr ""

#: src/MainWindow.vala:802 src/MainWindow.vala:1689
#, c-format
msgid "Zoom (%d%%)"
msgstr ""

#: src/MainWindow.vala:815
msgid "Search Nodes, Callouts and Connections"
msgstr ""

#: src/MainWindow.vala:860
msgid "Search Criteria"
msgstr ""

#: src/MainWindow.vala:864
msgid "Search all tabs"
msgstr ""

#: src/MainWindow.vala:905 src/StickerSet.vala:114
msgid "Search"
msgstr ""

#: src/MainWindow.vala:913
msgid "Nodes"
msgstr ""

#: src/MainWindow.vala:914
msgid "Connections"
msgstr ""

#: src/MainWindow.vala:915
msgid "Callouts"
msgstr ""

#: src/MainWindow.vala:916
msgid "Groups"
msgstr ""

#: src/MainWindow.vala:917
msgid "Titles"
msgstr ""

#: src/MainWindow.vala:918
msgid "Notes"
msgstr ""

#: src/MainWindow.vala:919
msgid "Folded"
msgstr ""

#: src/MainWindow.vala:920
msgid "Unfolded"
msgstr ""

#: src/MainWindow.vala:921
msgid "Tasks"
msgstr ""

#: src/MainWindow.vala:922
msgid "Non-tasks"
msgstr ""

#: src/MainWindow.vala:1044
msgid "Print…"
msgstr ""

#: src/MainWindow.vala:1083
msgid "Brain Dump"
msgstr ""

#: src/MainWindow.vala:1159 src/Preferences.vala:50
msgid "Preferences"
msgstr ""

#: src/MainWindow.vala:1160
msgid "Shortcuts Cheatsheet"
msgstr ""

#: src/MainWindow.vala:1163
msgid "About Minder"
msgstr ""

#: src/MainWindow.vala:1190 src/MainWindow.vala:1773
msgid "Show Property Sidebar"
msgstr ""

#: src/MainWindow.vala:1201 src/MainWindow.vala:1244
msgid "Current"
msgstr ""

#: src/MainWindow.vala:1202 src/MainWindow.vala:1245
#: src/StyleInspector.vala:362
msgid "Style"
msgstr ""

#: src/MainWindow.vala:1203 src/MainWindow.vala:1246 src/Preferences.vala:68
msgid "Tags"
msgstr ""

#: src/MainWindow.vala:1204 src/MainWindow.vala:1247
msgid "Stickers"
msgstr ""

#: src/MainWindow.vala:1205 src/MainWindow.vala:1248
msgid "Map"
msgstr ""

#: src/MainWindow.vala:1321
msgid "Save current unnamed document?"
msgstr ""

#: src/MainWindow.vala:1322
msgid "Changes will be permanently lost if not saved."
msgstr ""

#: src/MainWindow.vala:1327
msgid "Discard Changes"
msgstr ""

#: src/MainWindow.vala:1333 src/MainWindow.vala:1619 src/ThemeEditor.vala:158
msgid "Save"
msgstr ""

#: src/MainWindow.vala:1365
#, c-format
msgid "The file %s was modified outside of the application."
msgstr ""

#: src/MainWindow.vala:1366
msgid "What do you want to do?"
msgstr ""

#: src/MainWindow.vala:1371
msgid "Discard Changes and reload"
msgstr ""

#: src/MainWindow.vala:1374
msgid "Save local version and overwrite"
msgstr ""

#: src/MainWindow.vala:1420
msgid "Open Directory"
msgstr ""

#: src/MainWindow.vala:1420
msgid "Open"
msgstr ""

#: src/MainWindow.vala:1619
msgid "Save File"
msgstr ""

#: src/MainWindow.vala:1719
msgid "Hide Property Sidebar"
msgstr ""

#: src/MainWindow.vala:2171
msgid "File upgrades needed"
msgstr ""

#: src/MainWindow.vala:2172
msgid ""
"All previously opened tabs contain Minder files that need to be upgraded to "
"be edited by this version of Minder.\n"
"\n"
"Select an upgrade option below."
msgstr ""

#: src/MainWindow.vala:2177
msgid "Quit Minder"
msgstr ""

#: src/MainWindow.vala:2197
msgid "Detail"
msgstr ""

#: src/MainWindow.vala:2205
msgid ""
"<small>Upgrades each Minder file which had a tab opened for it in the last "
"Minder session.  This action is irreversible as older versions of Minder "
"cannot read the upgraded format.</small>"
msgstr ""

#: src/MainWindow.vala:2206
msgid ""
"<small>Upgrades each Minder file which had a tab opened for it in the last "
"Minder session, but saves a copy of the older, original file in its original "
"directory.</small>"
msgstr ""

#: src/MainWindow.vala:2207
msgid ""
"<small>Leaves each Minder file in the original format, but opens each tab as "
"read-only.  Read-only mindmaps can be viewed but cannot be changed.  To "
"change a read-only mindmap, you can use the 'Save As' button in the header "
"bar to write it to the newer format.</small>"
msgstr ""

#: src/MainWindow.vala:2214
msgid "Use the selected option when future older Minder files are opened"
msgstr ""

#: src/MainWindow.vala:2239
msgid "Upgrades Needed"
msgstr ""

#: src/MapInspector.vala:113
msgid "Read-only"
msgstr ""

#: src/MapInspector.vala:148
msgid "Hide connections"
msgstr ""

#: src/MapInspector.vala:184
msgid "Hide callouts"
msgstr ""

#: src/MapInspector.vala:228
msgid "Node Layouts"
msgstr ""

#: src/MapInspector.vala:282
msgid "Node Alignment"
msgstr ""

#: src/MapInspector.vala:289
msgid "Align left edges"
msgstr ""

#: src/MapInspector.vala:293
msgid "Align horizontal centers"
msgstr ""

#: src/MapInspector.vala:297
msgid "Align right edges"
msgstr ""

#: src/MapInspector.vala:301
msgid "Align top edges"
msgstr ""

#: src/MapInspector.vala:305
msgid "Align vertical centers"
msgstr ""

#: src/MapInspector.vala:309
msgid "Align bottom edges"
msgstr ""

#: src/MapInspector.vala:351
msgid "Themes"
msgstr ""

#: src/MapInspector.vala:378
msgid "Add Custom Theme"
msgstr ""

#: src/MapInspector.vala:396
msgid "Copy location of temporary directory"
msgstr ""

#: src/MapInspector.vala:421
msgid "Balance nodes"
msgstr ""

#: src/MapInspector.vala:423
msgid "Balance Nodes"
msgstr ""

#: src/MapInspector.vala:427
msgid "Fold nodes with completed tasks"
msgstr ""

#: src/MapInspector.vala:429
msgid "Fold Completed Tasks"
msgstr ""

#: src/MapInspector.vala:433
msgid "Unfold all nodes"
msgstr ""

#: src/MapInspector.vala:435
msgid "Unfold All Nodes"
msgstr ""

#: src/MapInspector.vala:533
msgid "Unsaved"
msgstr ""

#: src/MindMap.vala:431
msgid "Main Idea"
msgstr ""

#: src/MindMap.vala:1055
msgid "Select a link color"
msgstr ""

#: src/NodeGroup.vala:159
msgid "Group Note"
msgstr ""

#: src/NodeInspector.vala:114
msgid "Task"
msgstr ""

#: src/NodeInspector.vala:140
msgid "Fold"
msgstr ""

#: src/NodeInspector.vala:166
msgid "Sequence"
msgstr ""

#: src/NodeInspector.vala:175
msgid ""
"When set, automatically numbers child nodes and displays them as a sequence."
msgstr ""

#: src/NodeInspector.vala:230
msgid "Override Color"
msgstr ""

#: src/NodeInspector.vala:345 src/NodeInspector.vala:369
msgid "Image"
msgstr ""

#: src/NodeInspector.vala:351
msgid "Add Image…"
msgstr ""

#: src/NodeInspector.vala:378 src/Shortcuts.vala:798
msgid "Edit Image"
msgstr ""

#: src/NodeInspector.vala:395
msgid "Resizable"
msgstr ""

#: src/NodeInspector.vala:482
msgid "Copy Node To Clipboard"
msgstr ""

#: src/NodeInspector.vala:487
msgid "Cut Node To Clipboard"
msgstr ""

#: src/NodeInspector.vala:493
msgid "Detach Node"
msgstr ""

#: src/NodeInspector.vala:503
msgid "Delete Node"
msgstr ""

#: src/NodeLink.vala:116 src/NodeLink.vala:119
msgid "No node found"
msgstr ""

#: src/NodeMenu.vala:36 src/NodesMenu.vala:33 src/TextMenu.vala:36
msgid "Copy"
msgstr ""

#: src/NodeMenu.vala:37 src/NodesMenu.vala:34 src/TextMenu.vala:37
msgid "Cut"
msgstr ""

#: src/NodeMenu.vala:39 src/NodeMenu.vala:245 src/NodeMenu.vala:254
msgid "Paste and Replace Node"
msgstr ""

#: src/NodeMenu.vala:41
msgid "Delete Single Node"
msgstr ""

#: src/NodeMenu.vala:44
msgid "Set to color…"
msgstr ""

#: src/NodeMenu.vala:45
msgid "Randomize color"
msgstr ""

#: src/NodeMenu.vala:46
msgid "Use parent color"
msgstr ""

#: src/NodeMenu.vala:49
msgid "One Level"
msgstr ""

#: src/NodeMenu.vala:50
msgid "All Levels"
msgstr ""

#: src/NodeMenu.vala:53
msgid "Edit Text…"
msgstr ""

#: src/NodeMenu.vala:55 src/NodesMenu.vala:43
msgid "Edit Tags"
msgstr ""

#: src/NodeMenu.vala:56 src/NodeMenu.vala:230
msgid "Add Task"
msgstr ""

#: src/NodeMenu.vala:57 src/NodeMenu.vala:234
msgid "Add Image"
msgstr ""

#: src/NodeMenu.vala:59 src/NodeMenu.vala:231
msgid "Add Node Link"
msgstr ""

#: src/NodeMenu.vala:60
msgid "Add Connection"
msgstr ""

#: src/NodeMenu.vala:61
msgid "Add Group"
msgstr ""

#: src/NodeMenu.vala:62 src/NodeMenu.vala:233
msgid "Add Callout"
msgstr ""

#: src/NodeMenu.vala:63 src/ThemeEditor.vala:137
msgid "Link Color"
msgstr ""

#: src/NodeMenu.vala:64
msgid "Toggle Folding"
msgstr ""

#: src/NodeMenu.vala:65
msgid "Toggle Sequence"
msgstr ""

#: src/NodeMenu.vala:68
msgid "Change Node"
msgstr ""

#: src/NodeMenu.vala:72
msgid "Add Parent Node"
msgstr ""

#: src/NodeMenu.vala:73
msgid "Add Child Node"
msgstr ""

#: src/NodeMenu.vala:74
msgid "Add Sibling Node"
msgstr ""

#: src/NodeMenu.vala:77
msgid "Insert Nodes"
msgstr ""

#: src/NodeMenu.vala:78
msgid "Replace Nodes"
msgstr ""

#: src/NodeMenu.vala:81
msgid "Add Node"
msgstr ""

#: src/NodeMenu.vala:83 src/QuickEntry.vala:40
msgid "Quick Entry"
msgstr ""

#: src/NodeMenu.vala:86
msgid "Root Node"
msgstr ""

#: src/NodeMenu.vala:87
msgid "Next Sibling Node"
msgstr ""

#: src/NodeMenu.vala:88
msgid "Previous Sibling Node"
msgstr ""

#: src/NodeMenu.vala:89
msgid "Child Node"
msgstr ""

#: src/NodeMenu.vala:90 src/NodesMenu.vala:56
msgid "Child Nodes"
msgstr ""

#: src/NodeMenu.vala:91
msgid "Subtree"
msgstr ""

#: src/NodeMenu.vala:92
msgid "Parent Node"
msgstr ""

#: src/NodeMenu.vala:93
msgid "Linked Node"
msgstr ""

#: src/NodeMenu.vala:105
msgid "Center Current Node"
msgstr ""

#: src/NodeMenu.vala:108
msgid "Alphabetically"
msgstr ""

#: src/NodeMenu.vala:109
msgid "Randomly"
msgstr ""

#: src/NodeMenu.vala:112
msgid "Sort Children"
msgstr ""

#: src/NodeMenu.vala:115
msgid "Detach"
msgstr ""

#: src/NodeMenu.vala:228
msgid "Remove Task"
msgstr ""

#: src/NodeMenu.vala:229
msgid "Mark Task As Done"
msgstr ""

#: src/NodeMenu.vala:231
msgid "Remove Node Link"
msgstr ""

#: src/NodeMenu.vala:232
msgid "Unfold Children"
msgstr ""

#: src/NodeMenu.vala:232
msgid "Fold Children"
msgstr ""

#: src/NodeMenu.vala:233
msgid "Remove Callout"
msgstr ""

#: src/NodeMenu.vala:244
msgid "Paste Node As Child"
msgstr ""

#: src/NodeMenu.vala:247
msgid "Paste Image As Child Node"
msgstr ""

#: src/NodeMenu.vala:248
msgid "Paste and Replace Node Image"
msgstr ""

#: src/NodeMenu.vala:250
msgid "Paste Text As Child Node"
msgstr ""

#: src/NodeMenu.vala:251
msgid "Paste and Replace Node Text"
msgstr ""

#: src/NodesMenu.vala:38
msgid "Set To Color…"
msgstr ""

#: src/NodesMenu.vala:39
msgid "Randomize Colors"
msgstr ""

#: src/NodesMenu.vala:40
msgid "Use Parent Color"
msgstr ""

#: src/NodesMenu.vala:44 src/ThemeEditor.vala:128
msgid "Link Colors"
msgstr ""

#: src/NodesMenu.vala:45
msgid "Toggle Tasks"
msgstr ""

#: src/NodesMenu.vala:46
msgid "Toggle Folds"
msgstr ""

#: src/NodesMenu.vala:47
msgid "Toggle Sequences"
msgstr ""

#: src/NodesMenu.vala:50
msgid "Connect"
msgstr ""

#: src/NodesMenu.vala:51
msgid "Link Nodes"
msgstr ""

#: src/NodesMenu.vala:55
msgid "Parent Nodes"
msgstr ""

#: src/NodesMenu.vala:62
msgid "Align Top"
msgstr ""

#: src/NodesMenu.vala:63
msgid "Align Center Horizontally"
msgstr ""

#: src/NodesMenu.vala:64
msgid "Align Bottom"
msgstr ""

#: src/NodesMenu.vala:67
msgid "Align Left"
msgstr ""

#: src/NodesMenu.vala:68
msgid "Align Center Vertically"
msgstr ""

#: src/NodesMenu.vala:69
msgid "Align Right"
msgstr ""

#: src/NodesMenu.vala:76
msgid "Align"
msgstr ""

#: src/Node.vala:2687
msgid "Node Title"
msgstr ""

#: src/Node.vala:2695
msgid "Node Note"
msgstr ""

#: src/Node.vala:2705
msgid "Callout Text"
msgstr ""

#: src/Preferences.vala:66
msgid "Behavior"
msgstr ""

#: src/Preferences.vala:67
msgid "Appearance"
msgstr ""

#: src/Preferences.vala:69
msgid "Shortcuts"
msgstr ""

#: src/Preferences.vala:70
msgid "Advanced"
msgstr ""

#: src/Preferences.vala:93 src/StyleInspector.vala:254
msgid "Close"
msgstr ""

#: src/Preferences.vala:120
msgid "Create new node from edit mode"
msgstr ""

#: src/Preferences.vala:122
msgid ""
"Specifies if we should create a new node directly from edit mode if Return "
"or Tab is pressed."
msgstr ""

#: src/Preferences.vala:125
msgid "Newly attached nodes get style from parent"
msgstr ""

#: src/Preferences.vala:127
msgid ""
"Specifies if a node is attached to a new parent, whether its style should "
"come from the new parent or its new siblings"
msgstr ""

#: src/Preferences.vala:130
msgid "Automatically make embedded URLs into links"
msgstr ""

#: src/Preferences.vala:132
msgid ""
"Specifies if embedded URLs found in node titles should be automatically "
"highlighted."
msgstr ""

#: src/Preferences.vala:135
msgid "Enable Markdown"
msgstr ""

#: src/Preferences.vala:139
msgid "Enable Unicode input"
msgstr ""

#: src/Preferences.vala:141
msgid ""
"Specifies if Unicode characters can be input using backslash prefixed "
"descriptors (ex. \\pi)"
msgstr ""

#: src/Preferences.vala:144
msgid "Create connection title on creation"
msgstr ""

#: src/Preferences.vala:146
msgid ""
"Specifies if the connection title will be added and put into edit mode "
"immediately after the connection is made."
msgstr ""

#: src/Preferences.vala:149
msgid "Select items on mouse hover"
msgstr ""

#: src/Preferences.vala:151
msgid "If enabled, selects items when mouse cursor hovers over the item."
msgstr ""

#: src/Preferences.vala:154
msgid "Rotate main branch link colors"
msgstr ""

#: src/Preferences.vala:156
msgid ""
"If enabled, causes a new color to be used whenever a main branch is created"
msgstr ""

#: src/Preferences.vala:159
msgid "Keep backup files after saving"
msgstr ""

#: src/Preferences.vala:161
msgid ""
"Backup files are created prior to saving.  If enabled, the backup file is "
"retained but is not used when re-opening the file.  If disabled, the backup "
"file is removed after save and used on re-opening file if it exists.  Backup "
"files are hidden in the same directory as the original with a .bak extension."
msgstr ""

#: src/Preferences.vala:187
msgid "Default theme"
msgstr ""

#: src/Preferences.vala:189
msgid ""
"Sets the default theme to use for newly created mindmaps (use Map sidebar "
"panel to make immediate changes)."
msgstr ""

#: src/Preferences.vala:192
msgid "Enable mindmap animations"
msgstr ""

#: src/Preferences.vala:196
msgid "Enable window animations"
msgstr ""

#: src/Preferences.vala:200
msgid "Text field font size"
msgstr ""

#: src/Preferences.vala:203
msgid ""
"Specifies the custom font size to use in text editing fields (i.e, quick "
"entry or notes field)."
msgstr ""

#: src/Preferences.vala:206
msgid "Colorize note fields"
msgstr ""

#: src/Preferences.vala:210
msgid "Default global style"
msgstr ""

#: src/Preferences.vala:212
msgid "Specifies the global style to use for newly created mindmaps."
msgstr ""

#: src/Preferences.vala:235
msgid "Tags in this list will be the starting list of tags for new mindmaps."
msgstr ""

#: src/Preferences.vala:335
msgid "Double-click to edit shortcut.  Select + Delete to remove shortcut."
msgstr ""

#: src/Preferences.vala:336
msgid "Escape to cancel.  Press key combination to set."
msgstr ""

#: src/Preferences.vala:344
msgid "Set Minder Defaults"
msgstr ""

#: src/Preferences.vala:347
msgid "Clear All Shortcuts"
msgstr ""

#: src/Preferences.vala:356
msgid "Search commands"
msgstr ""

#: src/Preferences.vala:358
msgid "Search shortcuts"
msgstr ""

#: src/Preferences.vala:466
msgid "Show upgrade dialog when file upgrade is needed"
msgstr ""

#: src/Preferences.vala:470
msgid "Show temporary directory containing current mindmap in map sidebar"
msgstr ""

#: src/Preferences.vala:480
msgid "Default file upgrade action"
msgstr ""

#: src/Preferences.vala:554 src/styles/NodeBorderNone.vala:34 src/Tags.vala:47
msgid "None"
msgstr ""

#: src/Preferences.vala:555
msgid "Enter shortcut"
msgstr ""

#: src/Preferences.vala:723
msgid "Unable to set new shortcut due to conflicts"
msgstr ""

#: src/Preferences.vala:724
#, c-format
msgid "%s conflicts with '%s'"
msgstr ""

#: src/Preferences.vala:789
msgid "Clear all shortcuts?"
msgstr ""

#: src/Preferences.vala:789 src/Preferences.vala:800
msgid "Current shortcut settings will be lost"
msgstr ""

#: src/Preferences.vala:800
msgid "Use Minder Default Shortcuts?"
msgstr ""

#: src/Preferences.vala:832 src/Preferences.vala:850
msgid "Minder Default"
msgstr ""

#: src/Preferences.vala:835 src/Preferences.vala:851
msgid "Last Used"
msgstr ""

#: src/Preferences.vala:837 src/Preferences.vala:855
#, c-format
msgid "Named Style: %s"
msgstr ""

#: src/QuickEntry.vala:87
msgid "Help for inputting node information:"
msgstr ""

#: src/QuickEntry.vala:88
msgid ""
"Each line of text describes either the title of a node or note information "
"for a node."
msgstr ""

#: src/QuickEntry.vala:89
msgid "Tab"
msgstr ""

#: src/QuickEntry.vala:90
msgid "Creates a child node of the previous node."
msgstr ""

#: src/QuickEntry.vala:92
msgid ""
"If this character is the first non-whitespace character, makes a new root "
"node from the title that follows."
msgstr ""

#: src/QuickEntry.vala:94
msgid ""
"If this character is the first non-whitespace character, make a new node "
"from the title that follows."
msgstr ""

#: src/QuickEntry.vala:96
msgid ""
"If this character is the first non-whitespace character, the following line "
"is appended to the previous node's note."
msgstr ""

#: src/QuickEntry.vala:97
msgid "URI"
msgstr ""

#: src/QuickEntry.vala:98
msgid ""
"If this character is the first non-whitespace character, adds an image from "
"the URI to the previous node"
msgstr ""

#: src/QuickEntry.vala:100
msgid "If this follows *, + or -, the node is made an uncompleted task."
msgstr ""

#: src/QuickEntry.vala:102
msgid "If this follows *, + or -, the node is made a completed task."
msgstr ""

#: src/QuickEntry.vala:137
msgid "Replace"
msgstr ""

#: src/QuickEntry.vala:152
msgid "Insert"
msgstr ""

#: src/Shortcuts.vala:773 src/Shortcuts.vala:779
msgid "No Shortcuts Set"
msgstr ""

#: src/Shortcuts.vala:794
msgid "Mouse Events"
msgstr ""

#: src/Shortcuts.vala:797
msgid "Show Contextual Menu"
msgstr ""

#: src/Shortcuts.vala:797
msgid "[Right-click when item is selected]"
msgstr ""

#: src/Shortcuts.vala:798
msgid "[Double left-click image]"
msgstr ""

#: src/Shortcuts.vala:800
msgid "Canvas Movement"
msgstr ""

#: src/Shortcuts.vala:801
msgid "Pan Canvas"
msgstr ""

#: src/Shortcuts.vala:801
msgid "[Middle-click + Drag / Alt + Motion]"
msgstr ""

#: src/Shortcuts.vala:802
msgid "Scroll Vertically"
msgstr ""

#: src/Shortcuts.vala:802
msgid "[Scrollwheel up/down]"
msgstr ""

#: src/Shortcuts.vala:803
msgid "Scroll Horizontally"
msgstr ""

#: src/Shortcuts.vala:803
msgid "[Scrollwhile left/right]"
msgstr ""

#: src/Shortcuts.vala:805
msgid "Item Selection"
msgstr ""

#: src/Shortcuts.vala:806
msgid "Select Single Item"
msgstr ""

#: src/Shortcuts.vala:806
msgid "[Left-click on item]"
msgstr ""

#: src/Shortcuts.vala:807
msgid "Select Child Nodes"
msgstr ""

#: src/Shortcuts.vala:807
msgid "[Control + Left-click on parent node]"
msgstr ""

#: src/Shortcuts.vala:808
msgid "Select Node Tree/Subtree"
msgstr ""

#: src/Shortcuts.vala:808
msgid "[Control + Double left-click on parent node"
msgstr ""

#: src/Shortcuts.vala:809
msgid "Select All Nodes at Same Depth Level"
msgstr ""

#: src/Shortcuts.vala:809
msgid "[Control + Triple left-click on node]"
msgstr ""

#: src/Shortcuts.vala:810
msgid "Block Selection"
msgstr ""

#: src/Shortcuts.vala:810
msgid "[Left-click + Drag]"
msgstr ""

#: src/Shortcuts.vala:812
msgid "Item Selection Toggle"
msgstr ""

#: src/Shortcuts.vala:813
msgid "Toggle Selection of Item"
msgstr ""

#: src/Shortcuts.vala:813
msgid "[Shift + Left-click on item]"
msgstr ""

#: src/Shortcuts.vala:814
msgid "Toggle Selection of Child Nodes"
msgstr ""

#: src/Shortcuts.vala:814
msgid "[Shift + Control + Left-click on item]"
msgstr ""

#: src/Shortcuts.vala:815
msgid "Toggle Selection of Node Tree/Subtree"
msgstr ""

#: src/Shortcuts.vala:815
msgid "[Shift + Control + Double left-click on parent node]"
msgstr ""

#: src/Shortcuts.vala:816
msgid "Toggle Selection of All Nodes at Same Depth Level"
msgstr ""

#: src/Shortcuts.vala:816
msgid "Shift + Control + Triple-click on node]"
msgstr ""

#: src/Shortcuts.vala:818
msgid "Text Selection"
msgstr ""

#: src/Shortcuts.vala:819
msgid "Set Cursor Insert Point"
msgstr ""

#: src/Shortcuts.vala:819
msgid "[Left-click in text]"
msgstr ""

#: src/Shortcuts.vala:820
msgid "Select Current Word"
msgstr ""

#: src/Shortcuts.vala:820
msgid "[Double left-click on word]"
msgstr ""

#: src/Shortcuts.vala:821
msgid "[Triple left-click text]"
msgstr ""

#: src/StickerInspector.vala:60
msgid "Remove From Favorites"
msgstr ""

#: src/StickerInspector.vala:63 src/StickerInspector.vala:66
msgid "Add To Favorites"
msgstr ""

#: src/StickerInspector.vala:69
msgid "Remove Custom Sticker"
msgstr ""

#: src/StickerInspector.vala:77
msgid ""
"Drag and drop sticker onto a node or anywhere else in the map to add a "
"sticker."
msgstr ""

#: src/StickerInspector.vala:84
msgid "Search Stickers"
msgstr ""

#: src/StickerInspector.vala:133
msgid "Favorites"
msgstr ""

#: src/StickerInspector.vala:139
msgid "Show Custom Sticker Directory"
msgstr ""

#: src/StickerInspector.vala:219
msgid "Add custom stickers"
msgstr ""

#: src/StickerInspector.vala:473
msgid "Import Sticker(s)"
msgstr ""

#: src/StickerInspector.vala:473 src/StickerSet.vala:353
msgid "Import"
msgstr ""

#: src/StickerSet.vala:25 src/StickerSet.vala:68
msgid "Photo and Video"
msgstr ""

#: src/StickerSet.vala:26 src/StickerSet.vala:126
msgid "Very Basic"
msgstr ""

#: src/StickerSet.vala:27 src/StickerSet.vala:130 src/StickerSet.vala:221
msgid "Business"
msgstr ""

#: src/StickerSet.vala:28 src/StickerSet.vala:248
msgid "Industry"
msgstr ""

#: src/StickerSet.vala:29 src/StickerSet.vala:285
msgid "Mobile"
msgstr ""

#: src/StickerSet.vala:30 src/StickerSet.vala:309 src/StyleInspector.vala:1240
msgid "Arrows"
msgstr ""

#: src/StickerSet.vala:31 src/StickerSet.vala:357
msgid "Data"
msgstr ""

#: src/StickerSet.vala:33
msgid "Flash on"
msgstr ""

#: src/StickerSet.vala:34
msgid "Flash off"
msgstr ""

#: src/StickerSet.vala:35
msgid "Flash auto"
msgstr ""

#: src/StickerSet.vala:36
msgid "Panorama"
msgstr ""

#: src/StickerSet.vala:37
msgid "Landscape"
msgstr ""

#: src/StickerSet.vala:38
msgid "Night landscape"
msgstr ""

#: src/StickerSet.vala:39
msgid "Sports mode"
msgstr ""

#: src/StickerSet.vala:40
msgid "Portrait mode"
msgstr ""

#: src/StickerSet.vala:41
msgid "Night portrait"
msgstr ""

#: src/StickerSet.vala:42
msgid "Close up mode"
msgstr ""

#: src/StickerSet.vala:43
msgid "Selfie"
msgstr ""

#: src/StickerSet.vala:44
msgid "Gallery"
msgstr ""

#: src/StickerSet.vala:45
msgid "Stack of photos"
msgstr ""

#: src/StickerSet.vala:46
msgid "Add image"
msgstr ""

#: src/StickerSet.vala:47
msgid "Edit image"
msgstr ""

#: src/StickerSet.vala:48
msgid "Remove image"
msgstr ""

#: src/StickerSet.vala:49
msgid "Compact camera"
msgstr ""

#: src/StickerSet.vala:50
msgid "Multiple cameras"
msgstr ""

#: src/StickerSet.vala:51
msgid "Camera"
msgstr ""

#: src/StickerSet.vala:52
msgid "SLR back side"
msgstr ""

#: src/StickerSet.vala:53
msgid "Old time camera"
msgstr ""

#: src/StickerSet.vala:54
msgid "Camera addon"
msgstr ""

#: src/StickerSet.vala:55
msgid "Camera identification"
msgstr ""

#: src/StickerSet.vala:56
msgid "Start"
msgstr ""

#: src/StickerSet.vala:57
msgid "Clapperboard"
msgstr ""

#: src/StickerSet.vala:58
msgid "Film"
msgstr ""

#: src/StickerSet.vala:59
msgid "Camcorder"
msgstr ""

#: src/StickerSet.vala:60
msgid "Camcorder pro"
msgstr ""

#: src/StickerSet.vala:61
msgid "Webcam"
msgstr ""

#: src/StickerSet.vala:62
msgid "Integrated webcam"
msgstr ""

#: src/StickerSet.vala:63
msgid "Rotate camera"
msgstr ""

#: src/StickerSet.vala:64
msgid "Switch camera"
msgstr ""

#: src/StickerSet.vala:65
msgid "Photo reel"
msgstr ""

#: src/StickerSet.vala:66
msgid "Film reel"
msgstr ""

#: src/StickerSet.vala:67
msgid "Cable release"
msgstr ""

#: src/StickerSet.vala:70
msgid "Home"
msgstr ""

#: src/StickerSet.vala:71
msgid "Icons8 cup"
msgstr ""

#: src/StickerSet.vala:72
msgid "Globe"
msgstr ""

#: src/StickerSet.vala:73
msgid "OK"
msgstr ""

#: src/StickerSet.vala:74
msgid "Checkmark"
msgstr ""

#: src/StickerSet.vala:76
msgid "Synchronize"
msgstr ""

#: src/StickerSet.vala:77
msgid "Refresh"
msgstr ""

#: src/StickerSet.vala:78
msgid "Download"
msgstr ""

#: src/StickerSet.vala:79
msgid "Upload"
msgstr ""

#: src/StickerSet.vala:80
msgid "Empty trash"
msgstr ""

#: src/StickerSet.vala:81
msgid "Full trash"
msgstr ""

#: src/StickerSet.vala:82
msgid "Folder"
msgstr ""

#: src/StickerSet.vala:83
msgid "Opened folder"
msgstr ""

#: src/StickerSet.vala:84
msgid "File"
msgstr ""

#: src/StickerSet.vala:85
msgid "Document"
msgstr ""

#: src/StickerSet.vala:86
msgid "Audio file"
msgstr ""

#: src/StickerSet.vala:87
msgid "Image file"
msgstr ""

#: src/StickerSet.vala:88
msgid "Video file"
msgstr ""

#: src/StickerSet.vala:89
msgid "Print"
msgstr ""

#: src/StickerSet.vala:90
msgid "Music"
msgstr ""

#: src/StickerSet.vala:91
msgid "Share"
msgstr ""

#: src/StickerSet.vala:92
msgid "Cursor"
msgstr ""

#: src/StickerSet.vala:93
msgid "Puzzle"
msgstr ""

#: src/StickerSet.vala:94
msgid "Unlock"
msgstr ""

#: src/StickerSet.vala:95
msgid "Lock"
msgstr ""

#: src/StickerSet.vala:96
msgid "Idea"
msgstr ""

#: src/StickerSet.vala:97
msgid "No idea"
msgstr ""

#: src/StickerSet.vala:98
msgid "Link"
msgstr ""

#: src/StickerSet.vala:99
msgid "Broken link"
msgstr ""

#: src/StickerSet.vala:100
msgid "Rating"
msgstr ""

#: src/StickerSet.vala:101
msgid "Like placeholder"
msgstr ""

#: src/StickerSet.vala:102
msgid "Like"
msgstr ""

#: src/StickerSet.vala:103
msgid "Dislike"
msgstr ""

#: src/StickerSet.vala:104
msgid "Info"
msgstr ""

#: src/StickerSet.vala:105
msgid "About"
msgstr ""

#: src/StickerSet.vala:106
msgid "Picture"
msgstr ""

#: src/StickerSet.vala:107
msgid "Clock"
msgstr ""

#: src/StickerSet.vala:108
msgid "Alarm clock"
msgstr ""

#: src/StickerSet.vala:109
msgid "Address book"
msgstr ""

#: src/StickerSet.vala:110
msgid "Contacts"
msgstr ""

#: src/StickerSet.vala:111
msgid "News"
msgstr ""

#: src/StickerSet.vala:112
msgid "Bookmark"
msgstr ""

#: src/StickerSet.vala:113
msgid "Binoculars"
msgstr ""

#: src/StickerSet.vala:115
msgid "Ruler"
msgstr ""

#: src/StickerSet.vala:116
msgid "Services"
msgstr ""

#: src/StickerSet.vala:117
msgid "Settings"
msgstr ""

#: src/StickerSet.vala:118
msgid "Support"
msgstr ""

#: src/StickerSet.vala:119
msgid "Frame"
msgstr ""

#: src/StickerSet.vala:120
msgid "Menu"
msgstr ""

#: src/StickerSet.vala:121
msgid "Key"
msgstr ""

#: src/StickerSet.vala:122
msgid "Calendar"
msgstr ""

#: src/StickerSet.vala:123
msgid "Calculator"
msgstr ""

#: src/StickerSet.vala:124
msgid "Minus"
msgstr ""

#: src/StickerSet.vala:125
msgid "Plus"
msgstr ""

#: src/StickerSet.vala:128
msgid "Graduation cap"
msgstr ""

#: src/StickerSet.vala:129
msgid "Briefcase"
msgstr ""

#: src/StickerSet.vala:131
msgid "Signature"
msgstr ""

#: src/StickerSet.vala:132
msgid "Safe"
msgstr ""

#: src/StickerSet.vala:133
msgid "Advertising"
msgstr ""

#: src/StickerSet.vala:134
msgid "Businessman"
msgstr ""

#: src/StickerSet.vala:135
msgid "Businesswoman"
msgstr ""

#: src/StickerSet.vala:136
msgid "Manager"
msgstr ""

#: src/StickerSet.vala:137
msgid "Online support"
msgstr ""

#: src/StickerSet.vala:138
msgid "Assistant"
msgstr ""

#: src/StickerSet.vala:139
msgid "Customer support"
msgstr ""

#: src/StickerSet.vala:140
msgid "Reading ebook"
msgstr ""

#: src/StickerSet.vala:141
msgid "Reading"
msgstr ""

#: src/StickerSet.vala:142
msgid "Neutral trading"
msgstr ""

#: src/StickerSet.vala:143
msgid "Bullish"
msgstr ""

#: src/StickerSet.vala:144
msgid "Bearish"
msgstr ""

#: src/StickerSet.vala:145
msgid "High priority"
msgstr ""

#: src/StickerSet.vala:146
msgid "Medium priority"
msgstr ""

#: src/StickerSet.vala:147
msgid "Low priority"
msgstr ""

#: src/StickerSet.vala:148
msgid "Make decision"
msgstr ""

#: src/StickerSet.vala:149
msgid "Decision"
msgstr ""

#: src/StickerSet.vala:150
msgid "Good decision"
msgstr ""

#: src/StickerSet.vala:151
msgid "Neutral decision"
msgstr ""

#: src/StickerSet.vala:152
msgid "Bad decision"
msgstr ""

#: src/StickerSet.vala:153
msgid "Approve"
msgstr ""

#: src/StickerSet.vala:154
msgid "Disapprove"
msgstr ""

#: src/StickerSet.vala:155
msgid "Podium without speaker"
msgstr ""

#: src/StickerSet.vala:156
msgid "Podium with speaker"
msgstr ""

#: src/StickerSet.vala:157
msgid "Podium with audience"
msgstr ""

#: src/StickerSet.vala:158
msgid "Video projector"
msgstr ""

#: src/StickerSet.vala:159
msgid "Statistics"
msgstr ""

#: src/StickerSet.vala:160
msgid "Collaboration"
msgstr ""

#: src/StickerSet.vala:161
msgid "Voice presentation"
msgstr ""

#: src/StickerSet.vala:162
msgid "Conference call"
msgstr ""

#: src/StickerSet.vala:163
msgid "Comments"
msgstr ""

#: src/StickerSet.vala:164
msgid "FAQ"
msgstr ""

#: src/StickerSet.vala:165
msgid "Reuse"
msgstr ""

#: src/StickerSet.vala:166
msgid "Organization"
msgstr ""

#: src/StickerSet.vala:167
msgid "Department"
msgstr ""

#: src/StickerSet.vala:168
msgid "Library"
msgstr ""

#: src/StickerSet.vala:169
msgid "Shop"
msgstr ""

#: src/StickerSet.vala:170
msgid "Self service kiosk"
msgstr ""

#: src/StickerSet.vala:171
msgid "Donate"
msgstr ""

#: src/StickerSet.vala:172
msgid "Currency exchange"
msgstr ""

#: src/StickerSet.vala:173
msgid "Debt"
msgstr ""

#: src/StickerSet.vala:174
msgid "Sales performance"
msgstr ""

#: src/StickerSet.vala:175
msgid "Invite"
msgstr ""

#: src/StickerSet.vala:176
msgid "Money transfer"
msgstr ""

#: src/StickerSet.vala:177
msgid "Feedback"
msgstr ""

#: src/StickerSet.vala:178
msgid "Approval"
msgstr ""

#: src/StickerSet.vala:179
msgid "Paid"
msgstr ""

#: src/StickerSet.vala:180
msgid "In transit"
msgstr ""

#: src/StickerSet.vala:181
msgid "Shipped"
msgstr ""

#: src/StickerSet.vala:182
msgid "Package"
msgstr ""

#: src/StickerSet.vala:183
msgid "Planner"
msgstr ""

#: src/StickerSet.vala:184
msgid "Overtime"
msgstr ""

#: src/StickerSet.vala:185
msgid "Leave"
msgstr ""

#: src/StickerSet.vala:186
msgid "Expired"
msgstr ""

#: src/StickerSet.vala:187
msgid "Process"
msgstr ""

#: src/StickerSet.vala:188
msgid "Diploma 1"
msgstr ""

#: src/StickerSet.vala:189
msgid "Diploma 2"
msgstr ""

#: src/StickerSet.vala:190
msgid "Business contact"
msgstr ""

#: src/StickerSet.vala:191
msgid "Survey"
msgstr ""

#: src/StickerSet.vala:192
msgid "Inspection"
msgstr ""

#: src/StickerSet.vala:193
msgid "Rules"
msgstr ""

#: src/StickerSet.vala:194
msgid "Todo list"
msgstr ""

#: src/StickerSet.vala:195
msgid "Ratings"
msgstr ""

#: src/StickerSet.vala:196
msgid "Questions"
msgstr ""

#: src/StickerSet.vala:197
msgid "Answers"
msgstr ""

#: src/StickerSet.vala:198
msgid "Fine print"
msgstr ""

#: src/StickerSet.vala:199
msgid "Candle sticks"
msgstr ""

#: src/StickerSet.vala:200
msgid "Serial tasks"
msgstr ""

#: src/StickerSet.vala:201
msgid "Parallel tasks"
msgstr ""

#: src/StickerSet.vala:202
msgid "Tree structure"
msgstr ""

#: src/StickerSet.vala:203
msgid "Org unit"
msgstr ""

#: src/StickerSet.vala:204
msgid "Privacy"
msgstr ""

#: src/StickerSet.vala:205
msgid "Disclaimer"
msgstr ""

#: src/StickerSet.vala:206
msgid "Callback"
msgstr ""

#: src/StickerSet.vala:207
msgid "Service mark"
msgstr ""

#: src/StickerSet.vala:208
msgid "Registered trademark"
msgstr ""

#: src/StickerSet.vala:209
msgid "Trademark"
msgstr ""

#: src/StickerSet.vala:211
msgid "Copyleft"
msgstr ""

#: src/StickerSet.vala:212
msgid "Sound recording copyright"
msgstr ""

#: src/StickerSet.vala:213
msgid "Butting in"
msgstr ""

#: src/StickerSet.vala:214
msgid "Multiple inputs"
msgstr ""

#: src/StickerSet.vala:215
msgid "Collect"
msgstr ""

#: src/StickerSet.vala:216
msgid "Internal"
msgstr ""

#: src/StickerSet.vala:217
msgid "External"
msgstr ""

#: src/StickerSet.vala:218
msgid "VIP"
msgstr ""

#: src/StickerSet.vala:219
msgid "Light at the end of tunnel"
msgstr ""

#: src/StickerSet.vala:220
msgid "Entering heaven alive"
msgstr ""

#: src/StickerSet.vala:223
msgid "Biomass"
msgstr ""

#: src/StickerSet.vala:224
msgid "Display"
msgstr ""

#: src/StickerSet.vala:225
msgid "Do not inhale"
msgstr ""

#: src/StickerSet.vala:226
msgid "Factory"
msgstr ""

#: src/StickerSet.vala:227
msgid "Factory breakdown"
msgstr ""

#: src/StickerSet.vala:228
msgid "Crystal oscillator"
msgstr ""

#: src/StickerSet.vala:229
msgid "Capacitor"
msgstr ""

#: src/StickerSet.vala:230
msgid "Electricity"
msgstr ""

#: src/StickerSet.vala:231
msgid "Electro devices"
msgstr ""

#: src/StickerSet.vala:232
msgid "Electrical sensor"
msgstr ""

#: src/StickerSet.vala:233
msgid "Electrical threshold"
msgstr ""

#: src/StickerSet.vala:234
msgid "Automotive"
msgstr ""

#: src/StickerSet.vala:235
msgid "Feed in"
msgstr ""

#: src/StickerSet.vala:236
msgid "Dam"
msgstr ""

#: src/StickerSet.vala:237
msgid "Biotech"
msgstr ""

#: src/StickerSet.vala:238
msgid "Advance"
msgstr ""

#: src/StickerSet.vala:239
msgid "Cloth"
msgstr ""

#: src/StickerSet.vala:240
msgid "Electronics"
msgstr ""

#: src/StickerSet.vala:241
msgid "Deployment"
msgstr ""

#: src/StickerSet.vala:242
msgid "Automatic"
msgstr ""

#: src/StickerSet.vala:243
msgid "Do not insert"
msgstr ""

#: src/StickerSet.vala:244
msgid "Do not mix"
msgstr ""

#: src/StickerSet.vala:245
msgid "Biohazard"
msgstr ""

#: src/StickerSet.vala:246
msgid "Circuit"
msgstr ""

#: src/StickerSet.vala:247
msgid "Engineering"
msgstr ""

#: src/StickerSet.vala:250
msgid "Cell phone"
msgstr ""

#: src/StickerSet.vala:251
msgid "iPhone"
msgstr ""

#: src/StickerSet.vala:252
msgid "iPad"
msgstr ""

#: src/StickerSet.vala:253
msgid "Phone android"
msgstr ""

#: src/StickerSet.vala:254
msgid "Tablet android"
msgstr ""

#: src/StickerSet.vala:255
msgid "Nook"
msgstr ""

#: src/StickerSet.vala:256
msgid "Kindle"
msgstr ""

#: src/StickerSet.vala:257
msgid "Two smartphones"
msgstr ""

#: src/StickerSet.vala:258
msgid "Multiple devices"
msgstr ""

#: src/StickerSet.vala:259
msgid "Multiple smartphones"
msgstr ""

#: src/StickerSet.vala:260
msgid "Smartphone tablet"
msgstr ""

#: src/StickerSet.vala:261
msgid "Touchscreen smartphone"
msgstr ""

#: src/StickerSet.vala:262
msgid "Sim card"
msgstr ""

#: src/StickerSet.vala:263
msgid "Sim card chip"
msgstr ""

#: src/StickerSet.vala:264
msgid "SMS"
msgstr ""

#: src/StickerSet.vala:265
msgid "MMS"
msgstr ""

#: src/StickerSet.vala:266
msgid "Charge battery"
msgstr ""

#: src/StickerSet.vala:267
msgid "Full battery"
msgstr ""

#: src/StickerSet.vala:268
msgid "High battery"
msgstr ""

#: src/StickerSet.vala:269
msgid "Middle battery"
msgstr ""

#: src/StickerSet.vala:270
msgid "Low battery"
msgstr ""

#: src/StickerSet.vala:271
msgid "Empty battery"
msgstr ""

#: src/StickerSet.vala:272
msgid "Phone"
msgstr ""

#: src/StickerSet.vala:273
msgid "Missed call"
msgstr ""

#: src/StickerSet.vala:274
msgid "End call"
msgstr ""

#: src/StickerSet.vala:275
msgid "Call transfer"
msgstr ""

#: src/StickerSet.vala:276
msgid "Video call"
msgstr ""

#: src/StickerSet.vala:277
msgid "No video"
msgstr ""

#: src/StickerSet.vala:278
msgid "Rotate to portrait"
msgstr ""

#: src/StickerSet.vala:279
msgid "Lock portrait"
msgstr ""

#: src/StickerSet.vala:280
msgid "Rotate to landscape"
msgstr ""

#: src/StickerSet.vala:281
msgid "Lock landscape"
msgstr ""

#: src/StickerSet.vala:282
msgid "Voicemail"
msgstr ""

#: src/StickerSet.vala:283
msgid "Speaker"
msgstr ""

#: src/StickerSet.vala:284
msgid "Headset"
msgstr ""

#: src/StickerSet.vala:287
msgid "Left up"
msgstr ""

#: src/StickerSet.vala:288
msgid "Up"
msgstr ""

#: src/StickerSet.vala:289
msgid "Right up"
msgstr ""

#: src/StickerSet.vala:290 src/StyleInspector.vala:1051
#: src/StyleInspector.vala:1483 src/StyleInspector.vala:1648
msgid "Left"
msgstr ""

#: src/StickerSet.vala:291 src/StyleInspector.vala:1053
#: src/StyleInspector.vala:1485 src/StyleInspector.vala:1650
msgid "Right"
msgstr ""

#: src/StickerSet.vala:292
msgid "Left down"
msgstr ""

#: src/StickerSet.vala:293
msgid "Down"
msgstr ""

#: src/StickerSet.vala:294
msgid "Right down"
msgstr ""

#: src/StickerSet.vala:295
msgid "Collapse"
msgstr ""

#: src/StickerSet.vala:296
msgid "Previous"
msgstr ""

#: src/StickerSet.vala:297
msgid "Next"
msgstr ""

#: src/StickerSet.vala:298
msgid "Expand"
msgstr ""

#: src/StickerSet.vala:299
msgid "Left down2"
msgstr ""

#: src/StickerSet.vala:300
msgid "Up left"
msgstr ""

#: src/StickerSet.vala:301
msgid "Down right"
msgstr ""

#: src/StickerSet.vala:302
msgid "Right up2"
msgstr ""

#: src/StickerSet.vala:303
msgid "Up right"
msgstr ""

#: src/StickerSet.vala:304
msgid "Right down2"
msgstr ""

#: src/StickerSet.vala:305
msgid "Left up2"
msgstr ""

#: src/StickerSet.vala:306
msgid "Down left"
msgstr ""

#: src/StickerSet.vala:311
msgid "Filing cabinet"
msgstr ""

#: src/StickerSet.vala:312
msgid "Database"
msgstr ""

#: src/StickerSet.vala:313
msgid "Accept database"
msgstr ""

#: src/StickerSet.vala:314
msgid "Add database"
msgstr ""

#: src/StickerSet.vala:315
msgid "Delete database"
msgstr ""

#: src/StickerSet.vala:316
msgid "Data backup"
msgstr ""

#: src/StickerSet.vala:317
msgid "Data recovery"
msgstr ""

#: src/StickerSet.vala:318
msgid "Data configuration"
msgstr ""

#: src/StickerSet.vala:319
msgid "Data encryption"
msgstr ""

#: src/StickerSet.vala:320
msgid "Data protection"
msgstr ""

#: src/StickerSet.vala:321
msgid "Grid"
msgstr ""

#: src/StickerSet.vala:322
msgid "Data sheet"
msgstr ""

#: src/StickerSet.vala:323
msgid "Add column"
msgstr ""

#: src/StickerSet.vala:324
msgid "Delete column"
msgstr ""

#: src/StickerSet.vala:325
msgid "Add row"
msgstr ""

#: src/StickerSet.vala:326
msgid "Delete row"
msgstr ""

#: src/StickerSet.vala:327
msgid "Generic sorting ascending"
msgstr ""

#: src/StickerSet.vala:328
msgid "Generic sorting descending"
msgstr ""

#: src/StickerSet.vala:329
msgid "Alphabetical sorting (A->Z)"
msgstr ""

#: src/StickerSet.vala:330
msgid "Alphabetical sorting (Z->A)"
msgstr ""

#: src/StickerSet.vala:331
msgid "Numerical sorting (2->1)"
msgstr ""

#: src/StickerSet.vala:332
msgid "Numerical sorting (1->2)"
msgstr ""

#: src/StickerSet.vala:333
msgid "Empty filter"
msgstr ""

#: src/StickerSet.vala:334
msgid "Filled filter"
msgstr ""

#: src/StickerSet.vala:335
msgid "Clear filters"
msgstr ""

#: src/StickerSet.vala:336
msgid "Pie chart"
msgstr ""

#: src/StickerSet.vala:337
msgid "Radar plot"
msgstr ""

#: src/StickerSet.vala:338
msgid "Heat map"
msgstr ""

#: src/StickerSet.vala:339
msgid "Timeline"
msgstr ""

#: src/StickerSet.vala:340
msgid "Bar chart"
msgstr ""

#: src/StickerSet.vala:341
msgid "Area chart"
msgstr ""

#: src/StickerSet.vala:342
msgid "Scatter plot"
msgstr ""

#: src/StickerSet.vala:343
msgid "Doughnut chart"
msgstr ""

#: src/StickerSet.vala:344
msgid "Combo chart"
msgstr ""

#: src/StickerSet.vala:345
msgid "Flow chart"
msgstr ""

#: src/StickerSet.vala:346
msgid "Line chart"
msgstr ""

#: src/StickerSet.vala:347
msgid "Genealogy"
msgstr ""

#: src/StickerSet.vala:348
msgid "Mind map"
msgstr ""

#: src/StickerSet.vala:349
msgid "Workflow"
msgstr ""

#: src/StickerSet.vala:350
msgid "Positive dynamic"
msgstr ""

#: src/StickerSet.vala:351
msgid "Negative dynamic"
msgstr ""

#: src/StickerSet.vala:354
msgid "List"
msgstr ""

#: src/StickerSet.vala:355
msgid "Template"
msgstr ""

#: src/StickerSet.vala:356
msgid "View details"
msgstr ""

#: src/StyleInspector.vala:36 src/Tags.vala:45
msgid "All"
msgstr ""

#: src/StyleInspector.vala:37
msgid "Selected Nodes"
msgstr ""

#: src/StyleInspector.vala:38
msgid "Selected Connections"
msgstr ""

#: src/StyleInspector.vala:39
msgid "Selected Callouts"
msgstr ""

#: src/StyleInspector.vala:41
msgid "Unknown"
msgstr ""

#: src/StyleInspector.vala:243
msgid "Deleted preferences default global style"
msgstr ""

#: src/StyleInspector.vala:244
#, c-format
msgid ""
"The default global style '%s' was deleted.  Setting default global style in "
"preferences to use the default Minder global style."
msgstr ""

#: src/StyleInspector.vala:270
msgid "Changes affect:"
msgstr ""

#: src/StyleInspector.vala:282
msgid "Copy current style"
msgstr ""

#: src/StyleInspector.vala:294
msgid "Paste copied style"
msgstr ""

#: src/StyleInspector.vala:305
msgid "Style Templates"
msgstr ""

#: src/StyleInspector.vala:339
msgid "Branch Options"
msgstr ""

#: src/StyleInspector.vala:419
msgid "Corner Radius"
msgstr ""

#: src/StyleInspector.vala:464 src/StyleInspector.vala:904
msgid "Margin"
msgstr ""

#: src/StyleInspector.vala:527
msgid "Link Options"
msgstr ""

#: src/StyleInspector.vala:550 src/StyleInspector.vala:1199
msgid "Line Dash"
msgstr ""

#: src/StyleInspector.vala:591 src/StyleInspector.vala:1327
msgid "Line Width"
msgstr ""

#: src/StyleInspector.vala:643
msgid "Link Arrow"
msgstr ""

#: src/StyleInspector.vala:677
msgid "Link Arrow Size"
msgstr ""

#: src/StyleInspector.vala:752 src/Templates.vala:59 src/Templates.vala:64
msgid "Node Options"
msgstr ""

#: src/StyleInspector.vala:775
msgid "Border Style"
msgstr ""

#: src/StyleInspector.vala:818
msgid "Border Width"
msgstr ""

#: src/StyleInspector.vala:869
msgid "Color Fill"
msgstr ""

#: src/StyleInspector.vala:878
msgid ""
"Fills the node with color when the node\n"
"border is square, rounded or pill-shaped"
msgstr ""

#: src/StyleInspector.vala:949 src/StyleInspector.vala:1380
#: src/StyleInspector.vala:1679
msgid "Padding"
msgstr ""

#: src/StyleInspector.vala:994
msgid "Font"
msgstr ""

#: src/StyleInspector.vala:1040 src/StyleInspector.vala:1472
#: src/StyleInspector.vala:1637
msgid "Text Alignment"
msgstr ""

#: src/StyleInspector.vala:1052 src/StyleInspector.vala:1484
#: src/StyleInspector.vala:1649
msgid "Center"
msgstr ""

#: src/StyleInspector.vala:1082
msgid "Width"
msgstr ""

#: src/StyleInspector.vala:1115
msgid "Enable Markup"
msgstr ""

#: src/StyleInspector.vala:1176 src/Templates.vala:60 src/Templates.vala:65
msgid "Connection Options"
msgstr ""

#: src/StyleInspector.vala:1280
msgid "Arrow Size"
msgstr ""

#: src/StyleInspector.vala:1426
msgid "Title Font"
msgstr ""

#: src/StyleInspector.vala:1514
msgid "Title Width"
msgstr ""

#: src/StyleInspector.vala:1567 src/Templates.vala:61 src/Templates.vala:66
msgid "Callout Options"
msgstr ""

#: src/StyleInspector.vala:1591
msgid "Text Font"
msgstr ""

#: src/StyleInspector.vala:1725
msgid "Pointer Width"
msgstr ""

#: src/StyleInspector.vala:1771
msgid "Pointer Length"
msgstr ""

#: src/styles/LinkTypeCurved.vala:34
msgid "Curved"
msgstr ""

#: src/styles/LinkTypeRounded.vala:34
msgid "Rounded"
msgstr ""

#: src/styles/LinkTypeSquared.vala:34
msgid "Squared"
msgstr ""

#: src/styles/LinkTypeStraight.vala:34
msgid "Straight"
msgstr ""

#: src/styles/NodeBorderBracket.vala:34
msgid "Square Bracket"
msgstr ""

#: src/styles/NodeBorderPill.vala:34
msgid "Pill-shaped"
msgstr ""

#: src/styles/NodeBorderRounded.vala:34
msgid "Rounded Rectangle"
msgstr ""

#: src/styles/NodeBorderSquared.vala:34
msgid "Squared Off"
msgstr ""

#: src/styles/NodeBorderUnderlined.vala:34
msgid "Underlined"
msgstr ""

#: src/Styles.vala:58
msgid "Solid"
msgstr ""

#: src/Styles.vala:59
msgid "Dotted"
msgstr ""

#: src/Styles.vala:60
msgid "Short Dash"
msgstr ""

#: src/Styles.vala:61
msgid "Long Dash"
msgstr ""

#: src/TagEditor.vala:60
msgid "Click to change tag color"
msgstr ""

#: src/TagEditor.vala:76
msgid ""
"Click to add/remove tag to selected node(s).  Click + Delete to remove node "
"from tag list.  Double-click to rename tag."
msgstr ""

#: src/TagEditor.vala:77
msgid ""
"Click + Delete to remove node from tag list.  Double-click to rename tag."
msgstr ""

#: src/TagEditor.vala:85
msgid "Enter tag name"
msgstr ""

#: src/TagEditor.vala:157 src/TagEditor.vala:252
msgid "Click to add tag to highlight list"
msgstr ""

#: src/TagEditor.vala:251
msgid "Click to remove tag from highlight"
msgstr ""

#: src/TagEditor.vala:312
msgid "Enter name of tag to find or create"
msgstr ""

#: src/TagEditor.vala:429
#, c-format
msgid "Create '%s' tag"
msgstr ""

#: src/Tagger.vala:125
msgid "Add Tag"
msgstr ""

#: src/TagInspector.vala:41
msgid ""
"Create, delete, edit mindmap tags.  Add or remove tags in selected node(s).  "
"Highlight tagged nodes in map."
msgstr ""

#: src/TagInspector.vala:70
msgid "Highlight Mode"
msgstr ""

#: src/TagInspector.vala:80
msgid "End Tag Highlighting"
msgstr ""

#: src/Tags.vala:46
msgid "Any"
msgstr ""

#: src/Tags.vala:82 src/ThemeEditor.vala:119
msgid "Tag"
msgstr ""

#: src/TemplateEditor.vala:51
msgid "Create or search templates"
msgstr ""

#: src/TemplateEditor.vala:64
#, c-format
msgid "Create '%s' template"
msgstr ""

#: src/TemplateEditor.vala:129
msgid "Edit"
msgstr ""

#: src/TemplateEditor.vala:140
msgid "Search Templates"
msgstr ""

#: src/TemplateEditor.vala:140
msgid "Create or Search Templates"
msgstr ""

#: src/TemplateGroup.vala:111
msgid "Save Style As Template"
msgstr ""

#: src/TemplateGroup.vala:115
msgid "Load Saved Style"
msgstr ""

#: src/Templates.vala:58
msgid "All Options"
msgstr ""

#: src/Templates.vala:62
msgid "Node Branch Options"
msgstr ""

#: src/Templates.vala:63
msgid "Node Link Options"
msgstr ""

#: src/TextMenu.vala:41
msgid "Insert Emoji"
msgstr ""

#: src/TextMenu.vala:44
msgid "Open Link"
msgstr ""

#: src/TextMenu.vala:47
msgid "Add Link"
msgstr ""

#: src/TextMenu.vala:48
msgid "Edit Link"
msgstr ""

#: src/TextMenu.vala:49
msgid "Remove Link"
msgstr ""

#: src/TextParser.vala:68
#, c-format
msgid "Parser regex error (re: %s, error: %s)\n"
msgstr ""

#: src/ThemeEditor.vala:52
msgid "Customize Theme"
msgstr ""

#: src/ThemeEditor.vala:57
msgid "Name"
msgstr ""

#: src/ThemeEditor.vala:97
msgid "Base Colors"
msgstr ""

#: src/ThemeEditor.vala:104
msgid "Background"
msgstr ""

#: src/ThemeEditor.vala:105
msgid "Foreground"
msgstr ""

#: src/ThemeEditor.vala:106
msgid "Root Node Background"
msgstr ""

#: src/ThemeEditor.vala:107
msgid "Root Node Foreground"
msgstr ""

#: src/ThemeEditor.vala:108
msgid "Node Select Background"
msgstr ""

#: src/ThemeEditor.vala:109
msgid "Node Select Foreground"
msgstr ""

#: src/ThemeEditor.vala:110
msgid "Text Select Background"
msgstr ""

#: src/ThemeEditor.vala:111
msgid "Text Select Foreground"
msgstr ""

#: src/ThemeEditor.vala:112
msgid "Text Cursor"
msgstr ""

#: src/ThemeEditor.vala:113
msgid "Attachable Highlight"
msgstr ""

#: src/ThemeEditor.vala:114
msgid "Connection Color"
msgstr ""

#: src/ThemeEditor.vala:115
msgid "Connection Title Color"
msgstr ""

#: src/ThemeEditor.vala:116
msgid "Callout Background"
msgstr ""

#: src/ThemeEditor.vala:117
msgid "URL Link Background"
msgstr ""

#: src/ThemeEditor.vala:118
msgid "URL Link Foreground"
msgstr ""

#: src/ThemeEditor.vala:120
msgid "Markdown Syntax Chars"
msgstr ""

#: src/ThemeEditor.vala:121
msgid "Match Background"
msgstr ""

#: src/ThemeEditor.vala:122
msgid "Match Foreground"
msgstr ""

#: src/ThemeEditor.vala:123
msgid "Markdown List Item"
msgstr ""

#: src/ThemeEditor.vala:209
msgid "Custom"
msgstr ""

#: src/ThemeEditor.vala:230
msgid "Delete theme?"
msgstr ""

#: src/ThemeEditor.vala:231
msgid "This operation cannot be undone."
msgstr ""

#: src/ThemeEditor.vala:236 src/Utils.vala:473
msgid "No"
msgstr ""

#: src/ThemeEditor.vala:239 src/Utils.vala:476
msgid "Yes"
msgstr ""

#: src/ThemeEditor.vala:260
msgid "Default"
msgstr ""

#: src/themes/ThemeDark.vala:28
msgid "Dark"
msgstr ""

#: src/themes/ThemeDefault.vala:28
msgid "Light"
msgstr ""

#: src/themes/ThemeSolarizedDark.vala:31
msgid "Solarized Dark"
msgstr ""

#: src/themes/ThemeSolarizedLight.vala:31
msgid "Solarized Light"
msgstr ""

#: src/Themes.vala:196
msgid "Error parsing regular expression"
msgstr ""

#: src/Theme.vala:208
#, c-format
msgid "Unable to load background color: %s"
msgstr ""

#: src/Theme.vala:307
msgid "Root"
msgstr ""

#: src/undo_actions/UndoCalloutResize.vala:33
msgid "callout resize"
msgstr ""

#: src/undo_actions/UndoCalloutText.vala:32
msgid "callout text change"
msgstr ""

#: src/undo_actions/UndoConnectedNode.vala:31
msgid "connected node"
msgstr ""

#: src/undo_actions/UndoConnectionAdd.vala:31
msgid "add connection"
msgstr ""

#: src/undo_actions/UndoConnectionColor.vala:33
msgid "connection color change"
msgstr ""

#: src/undo_actions/UndoConnectionDelete.vala:30
msgid "delete connection"
msgstr ""

#: src/undo_actions/UndoConnectionNote.vala:32
msgid "connection note change"
msgstr ""

#: src/undo_actions/UndoConnectionsDelete.vala:31
msgid "delete connections"
msgstr ""

#: src/undo_actions/UndoConnectionStickerAdd.vala:31
msgid "add connection sticker"
msgstr ""

#: src/undo_actions/UndoConnectionStickerChange.vala:31
msgid "change connection sticker"
msgstr ""

#: src/undo_actions/UndoConnectionStickerRemove.vala:31
msgid "remove connection sticker"
msgstr ""

#: src/undo_actions/UndoConnectionTitle.vala:32
msgid "connection title change"
msgstr ""

#: src/undo_actions/UndoGroupAdd.vala:31
msgid "add group"
msgstr ""

#: src/undo_actions/UndoGroupNote.vala:32
msgid "node group note change"
msgstr ""

#: src/undo_actions/UndoGroupRemove.vala:30
msgid "remove group"
msgstr ""

#: src/undo_actions/UndoGroupsColor.vala:33
msgid "group color change"
msgstr ""

#: src/undo_actions/UndoGroupsMerge.vala:31
msgid "group merge"
msgstr ""

#: src/undo_actions/UndoGroupsRemove.vala:30
msgid "remove groups"
msgstr ""

#: src/undo_actions/UndoNodeAddParent.vala:32
msgid "add parent node"
msgstr ""

#: src/undo_actions/UndoNodeAttach.vala:43
#: src/undo_actions/UndoNodeAttach.vala:62
msgid "attach node"
msgstr ""

#: src/undo_actions/UndoNodeBalance.vala:64
msgid "balance nodes"
msgstr ""

#: src/undo_actions/UndoNodeCallout.vala:31
msgid "node callout changed"
msgstr ""

#: src/undo_actions/UndoNodeCut.vala:34
msgid "cut node"
msgstr ""

#: src/undo_actions/UndoNodeDelete.vala:35
msgid "delete node"
msgstr ""

#: src/undo_actions/UndoNodeDetach.vala:35
msgid "detach node"
msgstr ""

#: src/undo_actions/UndoNodeFolds.vala:30
#: src/undo_actions/UndoNodeFolds.vala:35
msgid "node fold changes"
msgstr ""

#: src/undo_actions/UndoNodeGroup.vala:30
msgid "node group change"
msgstr ""

#: src/undo_actions/UndoNodeImage.vala:32
msgid "node image change"
msgstr ""

#: src/undo_actions/UndoNodeInsert.vala:33
msgid "insert node"
msgstr ""

#: src/undo_actions/UndoNodeLayout.vala:30
msgid "change layout"
msgstr ""

#: src/undo_actions/UndoNodeLinkColor.vala:33
msgid "link color change"
msgstr ""

#: src/undo_actions/UndoNodeLink.vala:32
msgid "node link change"
msgstr ""

#: src/undo_actions/UndoNodeMove.vala:39
msgid "move node"
msgstr ""

#: src/undo_actions/UndoNodeName.vala:33
msgid "node name change"
msgstr ""

#: src/undo_actions/UndoNodeNote.vala:32
msgid "node note change"
msgstr ""

#: src/undo_actions/UndoNodePaste.vala:36
msgid "paste node"
msgstr ""

#: src/undo_actions/UndoNodeReparentLinkColor.vala:32
#: src/undo_actions/UndoNodesReparentLinkColor.vala:33
msgid "node link color reparent"
msgstr ""

#: src/undo_actions/UndoNodeReparent.vala:33
msgid "reparent children"
msgstr ""

#: src/undo_actions/UndoNodeReplace.vala:31
msgid "replace node"
msgstr ""

#: src/undo_actions/UndoNodeResize.vala:34
msgid "node resize"
msgstr ""

#: src/undo_actions/UndoNodesAlign.vala:57
msgid "node alignment"
msgstr ""

#: src/undo_actions/UndoNodesAttach.vala:33
msgid "nodes attach"
msgstr ""

#: src/undo_actions/UndoNodesCut.vala:29
msgid "cut nodes"
msgstr ""

#: src/undo_actions/UndoNodesDelete.vala:43
msgid "delete nodes"
msgstr ""

#: src/undo_actions/UndoNodeSequences.vala:30
msgid "node sequence changes"
msgstr ""

#: src/undo_actions/UndoNodesGroup.vala:30
msgid "change node groups"
msgstr ""

#: src/undo_actions/UndoNodesInsert.vala:37
msgid "insert nodes"
msgstr ""

#: src/undo_actions/UndoNodesLinkColor.vala:33
msgid "node link color changes"
msgstr ""

#: src/undo_actions/UndoNodesLink.vala:31
msgid "node link changes"
msgstr ""

#: src/undo_actions/UndoNodeSort.vala:57
msgid "sort nodes"
msgstr ""

#: src/undo_actions/UndoNodesRandLinkColor.vala:33
msgid "random node link color changes"
msgstr ""

#: src/undo_actions/UndoNodesReplace.vala:31
msgid "replace nodes"
msgstr ""

#: src/undo_actions/UndoNodesTagAdd.vala:32
msgid "tag add"
msgstr ""

#: src/undo_actions/UndoNodesTagRemove.vala:32
msgid "tag remove"
msgstr ""

#: src/undo_actions/UndoNodeStickerAdd.vala:31
msgid "add node sticker"
msgstr ""

#: src/undo_actions/UndoNodeStickerChange.vala:31
msgid "change node sticker"
msgstr ""

#: src/undo_actions/UndoNodeStickerRemove.vala:31
msgid "remove node sticker"
msgstr ""

#: src/undo_actions/UndoNodeSummaryDelete.vala:32
msgid "delete summary node"
msgstr ""

#: src/undo_actions/UndoNodeSummaryFromNode.vala:31
msgid "convert to summary node"
msgstr ""

#: src/undo_actions/UndoNodeSummary.vala:32
msgid "insert summary node"
msgstr ""

#: src/undo_actions/UndoNodeTasks.vala:30
msgid "node task changes"
msgstr ""

#: src/undo_actions/UndoNodeUnclify.vala:33
msgid "reparent node"
msgstr ""

#: src/undo_actions/UndoStickerAdd.vala:30
#: src/undo_actions/UndoStickerMove.vala:33
msgid "add sticker"
msgstr ""

#: src/undo_actions/UndoStickerChange.vala:31
msgid "change sticker"
msgstr ""

#: src/undo_actions/UndoStickerRemove.vala:31
msgid "remove sticker"
msgstr ""

#: src/undo_actions/UndoStickerResize.vala:32
msgid "resize sticker"
msgstr ""

#: src/undo_actions/UndoStyleChange.vala:39
msgid "style change"
msgstr ""

#: src/undo_actions/UndoTagChange.vala:32
msgid "tag change"
msgstr ""

#: src/undo_actions/UndoTagsAdd.vala:33
msgid "mindmap tag add"
msgstr ""

#: src/undo_actions/UndoTagsRemove.vala:33
msgid "mindmap tag remove"
msgstr ""

#: src/undo_actions/UndoTextClearTags.vala:31
msgid "clear formatting"
msgstr ""

#: src/undo_actions/UndoTextDelete.vala:30
msgid "text deletion"
msgstr ""

#: src/undo_actions/UndoTextInsert.vala:29
#: src/undo_actions/UndoTextMultiInsert.vala:33
msgid "text insertion"
msgstr ""

#: src/undo_actions/UndoTextReplace.vala:31
msgid "text replacement"
msgstr ""

#: src/undo_actions/UndoTextTagAdd.vala:32
msgid "format tag add"
msgstr ""

#: src/undo_actions/UndoTextTagRemove.vala:32
msgid "format tag remove"
msgstr ""

#: src/UndoBuffer.vala:85
msgid "Undo "
msgstr ""

#: src/UndoBuffer.vala:91
msgid "Redo "
msgstr ""

#: src/UrlEditor.vala:38
msgid "URL"
msgstr ""

#: src/Utils.vala:183
#, c-format
msgid "error: %s\n"
msgstr ""

#: src/ZoomWidget.vala:98
msgid "Zoom Actual"
msgstr ""