Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Language.Designer.cs « Language « mRemoteNG - github.com/mRemoteNG/mRemoteNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b753d3cf17e2c4ec7a5bbea4c40b87ffd49d4d0 (plain)
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
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:4.0.30319.42000
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace mRemoteNG.Resources.Language {
    using System;


    /// <summary>
    ///   A strongly-typed resource class, for looking up localized strings, etc.
    /// </summary>
    // This class was auto-generated by the StronglyTypedResourceBuilder
    // class via a tool like ResGen or Visual Studio.
    // To add or remove a member, edit your .ResX file then rerun ResGen
    // with the /str option, or rebuild your VS project.
    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
    internal class Language {

        private static global::System.Resources.ResourceManager resourceMan;

        private static global::System.Globalization.CultureInfo resourceCulture;

        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        internal Language() {
        }

        /// <summary>
        ///   Returns the cached ResourceManager instance used by this class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Resources.ResourceManager ResourceManager {
            get {
                if (object.ReferenceEquals(resourceMan, null)) {
                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("mRemoteNG.Language.Language", typeof(Language).Assembly);
                    resourceMan = temp;
                }
                return resourceMan;
            }
        }

        /// <summary>
        ///   Overrides the current thread's CurrentUICulture property for all
        ///   resource lookups using this strongly typed resource class.
        /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        internal static global::System.Globalization.CultureInfo Culture {
            get {
                return resourceCulture;
            }
            set {
                resourceCulture = value;
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Browse....
        /// </summary>
        internal static string _Browse {
            get {
                return ResourceManager.GetString("_Browse", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Cancel.
        /// </summary>
        internal static string _Cancel {
            get {
                return ResourceManager.GetString("_Cancel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Close.
        /// </summary>
        internal static string _Close {
            get {
                return ResourceManager.GetString("_Close", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warn me when closing connections.
        /// </summary>
        internal static string _CloseWarnAll {
            get {
                return ResourceManager.GetString("_CloseWarnAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Delete.
        /// </summary>
        internal static string _Delete {
            get {
                return ResourceManager.GetString("_Delete", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Export to File....
        /// </summary>
        internal static string _ExportToFile {
            get {
                return ResourceManager.GetString("_ExportToFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;File.
        /// </summary>
        internal static string _File {
            get {
                return ResourceManager.GetString("_File", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Help.
        /// </summary>
        internal static string _Help {
            get {
                return ResourceManager.GetString("_Help", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Import.
        /// </summary>
        internal static string _Import {
            get {
                return ResourceManager.GetString("_Import", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Launch.
        /// </summary>
        internal static string _Launch {
            get {
                return ResourceManager.GetString("_Launch", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;New.
        /// </summary>
        internal static string _New {
            get {
                return ResourceManager.GetString("_New", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;OK.
        /// </summary>
        internal static string _Ok {
            get {
                return ResourceManager.GetString("_Ok", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Scan.
        /// </summary>
        internal static string _Scan {
            get {
                return ResourceManager.GetString("_Scan", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Stop.
        /// </summary>
        internal static string _Stop {
            get {
                return ResourceManager.GetString("_Stop", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Tools.
        /// </summary>
        internal static string _Tools {
            get {
                return ResourceManager.GetString("_Tools", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Try again.
        /// </summary>
        internal static string _TryAgain {
            get {
                return ResourceManager.GetString("_TryAgain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;View.
        /// </summary>
        internal static string _View {
            get {
                return ResourceManager.GetString("_View", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to About.
        /// </summary>
        internal static string About {
            get {
                return ResourceManager.GetString("About", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Active Directory.
        /// </summary>
        internal static string ActiveDirectory {
            get {
                return ResourceManager.GetString("ActiveDirectory", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Add.
        /// </summary>
        internal static string Add {
            get {
                return ResourceManager.GetString("Add", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Add Connection Panel.
        /// </summary>
        internal static string AddConnectionPanel {
            get {
                return ResourceManager.GetString("AddConnectionPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to AddNodeFromXML failed!.
        /// </summary>
        internal static string AddNodeFromXmlFailed {
            get {
                return ResourceManager.GetString("AddNodeFromXmlFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Address:.
        /// </summary>
        internal static string Address {
            get {
                return ResourceManager.GetString("Address", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Advanced.
        /// </summary>
        internal static string Advanced {
            get {
                return ResourceManager.GetString("Advanced", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Advanced security options.
        /// </summary>
        internal static string AdvancedSecurityOptions {
            get {
                return ResourceManager.GetString("AdvancedSecurityOptions", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to All.
        /// </summary>
        internal static string All {
            get {
                return ResourceManager.GetString("All", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Allow only a single instance of the application (mRemoteNG restart required).
        /// </summary>
        internal static string AllowOnlySingleInstance {
            get {
                return ResourceManager.GetString("AllowOnlySingleInstance", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Always.
        /// </summary>
        internal static string Always {
            get {
                return ResourceManager.GetString("Always", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Always connect, even if authentication fails.
        /// </summary>
        internal static string AlwaysConnectEvenIfAuthFails {
            get {
                return ResourceManager.GetString("AlwaysConnectEvenIfAuthFails", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Always show connection tabs.
        /// </summary>
        internal static string AlwaysShowConnectionTabs {
            get {
                return ResourceManager.GetString("AlwaysShowConnectionTabs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Always show panel selection dialog when opening connections.
        /// </summary>
        internal static string AlwaysShowPanelSelection {
            get {
                return ResourceManager.GetString("AlwaysShowPanelSelection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Always show panel tabs.
        /// </summary>
        internal static string AlwaysShowPanelTabs {
            get {
                return ResourceManager.GetString("AlwaysShowPanelTabs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Always show notification area icon.
        /// </summary>
        internal static string AlwaysShowSysTrayIcon {
            get {
                return ResourceManager.GetString("AlwaysShowSysTrayIcon", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Appearance.
        /// </summary>
        internal static string Appearance {
            get {
                return ResourceManager.GetString("Appearance", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Apply.
        /// </summary>
        internal static string Apply {
            get {
                return ResourceManager.GetString("Apply", resourceCulture);
            }
        }

        /// <summary>
        ///   Sucht eine lokalisierte Zeichenfolge, die Apply default inheritance ähnelt.
        /// </summary>
        internal static string ApplyDefaultInheritance {
            get {
                return ResourceManager.GetString("ApplyDefaultInheritance", resourceCulture);
            }
        }

        /// <summary>
        ///   Sucht eine lokalisierte Zeichenfolge, die Apply inheritance to children ähnelt.
        /// </summary>
        internal static string ApplyInheritanceToChildren {
            get {
                return ResourceManager.GetString("ApplyInheritanceToChildren", resourceCulture);
            }
        }

        /// <summary>
        ///   Sucht eine lokalisierte Zeichenfolge, die Arguments ähnelt.
        /// </summary>
        internal static string Arguments {
            get {
                return ResourceManager.GetString("Arguments", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Ask me again later.
        /// </summary>
        internal static string AskUpdatesCommandAskLater {
            get {
                return ResourceManager.GetString("AskUpdatesCommandAskLater", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Customize the settings now.
        /// </summary>
        internal static string AskUpdatesCommandCustom {
            get {
                return ResourceManager.GetString("AskUpdatesCommandCustom", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use the recommended settings.
        /// </summary>
        internal static string AskUpdatesCommandRecommended {
            get {
                return ResourceManager.GetString("AskUpdatesCommandRecommended", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to {0} can automatically check for updates that may provide new features and bug fixes. It is recommended that you allow {0} to check for updates weekly..
        /// </summary>
        internal static string AskUpdatesContent {
            get {
                return ResourceManager.GetString("AskUpdatesContent", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Automatic update settings.
        /// </summary>
        internal static string AskUpdatesMainInstruction {
            get {
                return ResourceManager.GetString("AskUpdatesMainInstruction", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Aspect.
        /// </summary>
        internal static string Aspect {
            get {
                return ResourceManager.GetString("Aspect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Assigned Credential.
        /// </summary>
        internal static string AssignedCredential {
            get {
                return ResourceManager.GetString("AssignedCredential", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Audio Capture.
        /// </summary>
        internal static string AudioCapture {
            get {
                return ResourceManager.GetString("AudioCapture", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Server Authentication.
        /// </summary>
        internal static string AuthenticationLevel {
            get {
                return ResourceManager.GetString("AuthenticationLevel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Authentication mode.
        /// </summary>
        internal static string AuthenticationMode {
            get {
                return ResourceManager.GetString("AuthenticationMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An error occurred while trying to reconnect to RDP host &apos;{0}&apos;.
        /// </summary>
        internal static string AutomaticReconnectError {
            get {
                return ResourceManager.GetString("AutomaticReconnectError", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Automatic resize.
        /// </summary>
        internal static string AutomaticResize {
            get {
                return ResourceManager.GetString("AutomaticResize", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Auto save time in minutes (0 means disabled):.
        /// </summary>
        internal static string AutoSaveEvery {
            get {
                return ResourceManager.GetString("AutoSaveEvery", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Latest version.
        /// </summary>
        internal static string AvailableVersion {
            get {
                return ResourceManager.GetString("AvailableVersion", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Default Inheritance.
        /// </summary>
        internal static string ButtonDefaultInheritance {
            get {
                return ResourceManager.GetString("ButtonDefaultInheritance", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Default Properties.
        /// </summary>
        internal static string ButtonDefaultProperties {
            get {
                return ResourceManager.GetString("ButtonDefaultProperties", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Launch PuTTY.
        /// </summary>
        internal static string ButtonLaunchPutty {
            get {
                return ResourceManager.GetString("ButtonLaunchPutty", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Cache Bitmaps.
        /// </summary>
        internal static string CacheBitmaps {
            get {
                return ResourceManager.GetString("CacheBitmaps", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Cannot start Port Scan, incorrect IP format!.
        /// </summary>
        internal static string CannotStartPortScan {
            get {
                return ResourceManager.GetString("CannotStartPortScan", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Change.
        /// </summary>
        internal static string Change {
            get {
                return ResourceManager.GetString("Change", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An error occurred while trying to change the connection resolution to host &apos;{0}&apos;.
        /// </summary>
        internal static string ChangeConnectionResolutionError {
            get {
                return ResourceManager.GetString("ChangeConnectionResolutionError", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Changelog.
        /// </summary>
        internal static string Changelog {
            get {
                return ResourceManager.GetString("Changelog", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Check Again.
        /// </summary>
        internal static string CheckAgain {
            get {
                return ResourceManager.GetString("CheckAgain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Automatically try to reconnect when disconnected from server (RDP &amp;&amp; ICA only).
        /// </summary>
        internal static string CheckboxAutomaticReconnect {
            get {
                return ResourceManager.GetString("CheckboxAutomaticReconnect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do not show this message again..
        /// </summary>
        internal static string CheckboxDoNotShowThisMessageAgain {
            get {
                return ResourceManager.GetString("CheckboxDoNotShowThisMessageAgain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to This proxy server requires authentication.
        /// </summary>
        internal static string CheckboxProxyAuthentication {
            get {
                return ResourceManager.GetString("CheckboxProxyAuthentication", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use custom PuTTY path:.
        /// </summary>
        internal static string CheckboxPuttyPath {
            get {
                return ResourceManager.GetString("CheckboxPuttyPath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Reconnect when ready.
        /// </summary>
        internal static string CheckboxReconnectWhenReady {
            get {
                return ResourceManager.GetString("CheckboxReconnectWhenReady", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use a proxy server to connect.
        /// </summary>
        internal static string CheckboxUpdateUseProxy {
            get {
                return ResourceManager.GetString("CheckboxUpdateUseProxy", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Check failed!.
        /// </summary>
        internal static string CheckFailed {
            get {
                return ResourceManager.GetString("CheckFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Check for Updates.
        /// </summary>
        internal static string CheckForUpdates {
            get {
                return ResourceManager.GetString("CheckForUpdates", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Check for updates at startup.
        /// </summary>
        internal static string CheckForUpdatesOnStartup {
            get {
                return ResourceManager.GetString("CheckForUpdatesOnStartup", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Check now.
        /// </summary>
        internal static string CheckNow {
            get {
                return ResourceManager.GetString("CheckNow", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Check proper installation of components at startup.
        /// </summary>
        internal static string CheckProperInstallationOfComponentsAtStartup {
            get {
                return ResourceManager.GetString("CheckProperInstallationOfComponentsAtStartup", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose a path for the mRemoteNG log file.
        /// </summary>
        internal static string ChooseLogPath {
            get {
                return ResourceManager.GetString("ChooseLogPath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose panel before connecting.
        /// </summary>
        internal static string ChoosePanelBeforeConnecting {
            get {
                return ResourceManager.GetString("ChoosePanelBeforeConnecting", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose path.
        /// </summary>
        internal static string ChoosePath {
            get {
                return ResourceManager.GetString("ChoosePath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Clear search string.
        /// </summary>
        internal static string ClearSearchString {
            get {
                return ResourceManager.GetString("ClearSearchString", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Clipboard.
        /// </summary>
        internal static string Clipboard {
            get {
                return ResourceManager.GetString("Clipboard", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Closed Ports.
        /// </summary>
        internal static string ClosedPorts {
            get {
                return ResourceManager.GetString("ClosedPorts", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Close to notification area.
        /// </summary>
        internal static string CloseToSysTray {
            get {
                return ResourceManager.GetString("CloseToSysTray", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to When closing connections:.
        /// </summary>
        internal static string ClosingConnections {
            get {
                return ResourceManager.GetString("ClosingConnections", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Collapse all folders.
        /// </summary>
        internal static string CollapseAllFolders {
            get {
                return ResourceManager.GetString("CollapseAllFolders", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Colours.
        /// </summary>
        internal static string Colors {
            get {
                return ResourceManager.GetString("Colors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to E&amp;xit {0}.
        /// </summary>
        internal static string CommandExitProgram {
            get {
                return ResourceManager.GetString("CommandExitProgram", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t parse command line args!.
        /// </summary>
        internal static string CommandLineArgsCouldNotBeParsed {
            get {
                return ResourceManager.GetString("CommandLineArgsCouldNotBeParsed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Open a connection file.
        /// </summary>
        internal static string CommandOpenConnectionFile {
            get {
                return ResourceManager.GetString("CommandOpenConnectionFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to {0} has detected the Lenovo Auto Scroll Utility running on this system. This utility is known to cause problems with {0}. It is recommended that you disable or uninstall it..
        /// </summary>
        internal static string CompatibilityLenovoAutoScrollUtilityDetected {
            get {
                return ResourceManager.GetString("CompatibilityLenovoAutoScrollUtilityDetected", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Compatibility problem detected.
        /// </summary>
        internal static string CompatibilityProblemDetected {
            get {
                return ResourceManager.GetString("CompatibilityProblemDetected", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Compression.
        /// </summary>
        internal static string Compression {
            get {
                return ResourceManager.GetString("Compression", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Config.
        /// </summary>
        internal static string Config {
            get {
                return ResourceManager.GetString("Config", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to btnIcon_Click failed!.
        /// </summary>
        internal static string ConfigPropertyGridButtonIconClickFailed {
            get {
                return ResourceManager.GetString("ConfigPropertyGridButtonIconClickFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to ShowHideGridItems failed!.
        /// </summary>
        internal static string ConfigPropertyGridHideItemsFailed {
            get {
                return ResourceManager.GetString("ConfigPropertyGridHideItemsFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to IconMenu_Click failed!.
        /// </summary>
        internal static string ConfigPropertyGridMenuClickFailed {
            get {
                return ResourceManager.GetString("ConfigPropertyGridMenuClickFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Property Grid object failed!.
        /// </summary>
        internal static string ConfigPropertyGridObjectFailed {
            get {
                return ResourceManager.GetString("ConfigPropertyGridObjectFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SetHostStatus failed!.
        /// </summary>
        internal static string ConfigPropertyGridSetHostStatusFailed {
            get {
                return ResourceManager.GetString("ConfigPropertyGridSetHostStatusFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to pGrid_PopertyValueChanged failed!.
        /// </summary>
        internal static string ConfigPropertyGridValueFailed {
            get {
                return ResourceManager.GetString("ConfigPropertyGridValueFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Config UI load failed!.
        /// </summary>
        internal static string ConfigUiLoadFailed {
            get {
                return ResourceManager.GetString("ConfigUiLoadFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Create a New Connection File.
        /// </summary>
        internal static string ConfigurationCreateNew {
            get {
                return ResourceManager.GetString("ConfigurationCreateNew", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use a Custom File Path.
        /// </summary>
        internal static string ConfigurationCustomPath {
            get {
                return ResourceManager.GetString("ConfigurationCustomPath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Import an Existing File.
        /// </summary>
        internal static string ConfigurationImportFile {
            get {
                return ResourceManager.GetString("ConfigurationImportFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to close all connections except for &quot;{0}&quot;?.
        /// </summary>
        internal static string ConfirmCloseConnectionOthersInstruction {
            get {
                return ResourceManager.GetString("ConfirmCloseConnectionOthersInstruction", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to close the panel, &quot;{0}&quot;? Any connections that it contains will also be closed..
        /// </summary>
        internal static string ConfirmCloseConnectionPanelMainInstruction {
            get {
                return ResourceManager.GetString("ConfirmCloseConnectionPanelMainInstruction", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to delete the credential record, {0}?.
        /// </summary>
        internal static string ConfirmDeleteCredentialRecord {
            get {
                return ResourceManager.GetString("ConfirmDeleteCredentialRecord", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to delete the external tool, &quot;{0}&quot;?.
        /// </summary>
        internal static string ConfirmDeleteExternalTool {
            get {
                return ResourceManager.GetString("ConfirmDeleteExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to delete the {0} selected external tools?.
        /// </summary>
        internal static string ConfirmDeleteExternalToolMultiple {
            get {
                return ResourceManager.GetString("ConfirmDeleteExternalToolMultiple", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to delete the connection, &quot;{0}&quot;?.
        /// </summary>
        internal static string ConfirmDeleteNodeConnection {
            get {
                return ResourceManager.GetString("ConfirmDeleteNodeConnection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to delete the empty folder, &quot;{0}&quot;?.
        /// </summary>
        internal static string ConfirmDeleteNodeFolder {
            get {
                return ResourceManager.GetString("ConfirmDeleteNodeFolder", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to delete the folder, &quot;{0}&quot;? Any folders or connections that it contains will also be deleted..
        /// </summary>
        internal static string ConfirmDeleteNodeFolderNotEmpty {
            get {
                return ResourceManager.GetString("ConfirmDeleteNodeFolderNotEmpty", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do you want to close all open connections?.
        /// </summary>
        internal static string ConfirmExitMainInstruction {
            get {
                return ResourceManager.GetString("ConfirmExitMainInstruction", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Are you sure you want to reset the panels to their default layout?.
        /// </summary>
        internal static string ConfirmResetLayout {
            get {
                return ResourceManager.GetString("ConfirmResetLayout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect.
        /// </summary>
        internal static string Connect {
            get {
                return ResourceManager.GetString("Connect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect in fullscreen mode.
        /// </summary>
        internal static string ConnectInFullscreen {
            get {
                return ResourceManager.GetString("ConnectInFullscreen", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connecting....
        /// </summary>
        internal static string Connecting {
            get {
                return ResourceManager.GetString("Connecting", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect in View Only mode.
        /// </summary>
        internal static string ConnectInViewOnlyMode {
            get {
                return ResourceManager.GetString("ConnectInViewOnlyMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection.
        /// </summary>
        internal static string Connection {
            get {
                return ResourceManager.GetString("Connection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Protocol Event Connected.
        /// </summary>
        internal static string ConnectionEventConnected {
            get {
                return ResourceManager.GetString("ConnectionEventConnected", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection to &quot;{0}&quot; via &quot;{1}&quot; established by user &quot;{2}&quot; (Description: &quot;{3}&quot;; User Field: &quot;{4}&quot;).
        /// </summary>
        internal static string ConnectionEventConnectedDetail {
            get {
                return ResourceManager.GetString("ConnectionEventConnectedDetail", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to A connection protocol error occurred. Host: &quot;{1}&quot;; Error code: &quot;{2}&quot;; Error Description: &quot;{0}&quot;.
        /// </summary>
        internal static string ConnectionEventErrorOccured {
            get {
                return ResourceManager.GetString("ConnectionEventErrorOccured", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection failed!.
        /// </summary>
        internal static string ConnectionFailed {
            get {
                return ResourceManager.GetString("ConnectionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The connection file could not be found..
        /// </summary>
        internal static string ConnectionFileNotFound {
            get {
                return ResourceManager.GetString("ConnectionFileNotFound", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Opening connection failed!.
        /// </summary>
        internal static string ConnectionOpenFailed {
            get {
                return ResourceManager.GetString("ConnectionOpenFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Cannot open connection: No hostname specified!.
        /// </summary>
        internal static string ConnectionOpenFailedNoHostname {
            get {
                return ResourceManager.GetString("ConnectionOpenFailedNoHostname", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection Panels.
        /// </summary>
        internal static string ConnectionPanels {
            get {
                return ResourceManager.GetString("ConnectionPanels", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connections.
        /// </summary>
        internal static string Connections {
            get {
                return ResourceManager.GetString("Connections", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Daily.
        /// </summary>
        internal static string ConnectionsBackupFrequencyDaily {
            get {
                return ResourceManager.GetString("ConnectionsBackupFrequencyDaily", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Never backup connections.
        /// </summary>
        internal static string ConnectionsBackupFrequencyNever {
            get {
                return ResourceManager.GetString("ConnectionsBackupFrequencyNever", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to On Edit.
        /// </summary>
        internal static string ConnectionsBackupFrequencyOnEdit {
            get {
                return ResourceManager.GetString("ConnectionsBackupFrequencyOnEdit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to On Exit.
        /// </summary>
        internal static string ConnectionsBackupFrequencyOnExit {
            get {
                return ResourceManager.GetString("ConnectionsBackupFrequencyOnExit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Weekly.
        /// </summary>
        internal static string ConnectionsBackupFrequencyWeekly {
            get {
                return ResourceManager.GetString("ConnectionsBackupFrequencyWeekly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t set default port!.
        /// </summary>
        internal static string ConnectionSetDefaultPortFailed {
            get {
                return ResourceManager.GetString("ConnectionSetDefaultPortFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t create backup of connections file!.
        /// </summary>
        internal static string ConnectionsFileBackupFailed {
            get {
                return ResourceManager.GetString("ConnectionsFileBackupFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connections file &quot;{0}&quot; could not be loaded!.
        /// </summary>
        internal static string ConnectionsFileCouldNotBeLoaded {
            get {
                return ResourceManager.GetString("ConnectionsFileCouldNotBeLoaded", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connections file &quot;{0}&quot; could not be loaded!
        ///Starting with new connections file..
        /// </summary>
        internal static string ConnectionsFileCouldNotBeLoadedNew {
            get {
                return ResourceManager.GetString("ConnectionsFileCouldNotBeLoadedNew", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t save connections file as &quot;{0}&quot;!.
        /// </summary>
        internal static string ConnectionsFileCouldNotSaveAs {
            get {
                return ResourceManager.GetString("ConnectionsFileCouldNotSaveAs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection successful.
        /// </summary>
        internal static string ConnectionSuccessful {
            get {
                return ResourceManager.GetString("ConnectionSuccessful", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect without credentials.
        /// </summary>
        internal static string ConnectNoCredentials {
            get {
                return ResourceManager.GetString("ConnectNoCredentials", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect to console session.
        /// </summary>
        internal static string ConnectToConsoleSession {
            get {
                return ResourceManager.GetString("ConnectToConsoleSession", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect (with options).
        /// </summary>
        internal static string ConnectWithOptions {
            get {
                return ResourceManager.GetString("ConnectWithOptions", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection to {0} via {1} closed by user {2}..
        /// </summary>
        internal static string ConnenctionClosedByUser {
            get {
                return ResourceManager.GetString("ConnenctionClosedByUser", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection Event Closed.
        /// </summary>
        internal static string ConnenctionCloseEvent {
            get {
                return ResourceManager.GetString("ConnenctionCloseEvent", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection Event Closed failed!.
        /// </summary>
        internal static string ConnenctionCloseEventFailed {
            get {
                return ResourceManager.GetString("ConnenctionCloseEventFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Copy.
        /// </summary>
        internal static string Copy {
            get {
                return ResourceManager.GetString("Copy", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Copy All.
        /// </summary>
        internal static string CopyAll {
            get {
                return ResourceManager.GetString("CopyAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Copy Hostname.
        /// </summary>
        internal static string CopyHostname {
            get {
                return ResourceManager.GetString("CopyHostname", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t create new connections file!.
        /// </summary>
        internal static string CouldNotCreateNewConnectionsFile {
            get {
                return ResourceManager.GetString("CouldNotCreateNewConnectionsFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Could not find external tool with name &quot;{0}&quot;.
        /// </summary>
        internal static string CouldNotFindExternalTool {
            get {
                return ResourceManager.GetString("CouldNotFindExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Could not find ToolStrip control in FilteredPropertyGrid..
        /// </summary>
        internal static string CouldNotFindToolStripInFilteredPropertyGrid {
            get {
                return ResourceManager.GetString("CouldNotFindToolStripInFilteredPropertyGrid", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Create an empty panel when mRemoteNG starts.
        /// </summary>
        internal static string CreateEmptyPanelOnStartUp {
            get {
                return ResourceManager.GetString("CreateEmptyPanelOnStartUp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Credentials.
        /// </summary>
        internal static string Credentials {
            get {
                return ResourceManager.GetString("Credentials", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Credential not available.
        /// </summary>
        internal static string CredentialUnavailable {
            get {
                return ResourceManager.GetString("CredentialUnavailable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Credits.
        /// </summary>
        internal static string Credits {
            get {
                return ResourceManager.GetString("Credits", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Ctrl-Alt-Del.
        /// </summary>
        internal static string CtrlAltDel {
            get {
                return ResourceManager.GetString("CtrlAltDel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Ctrl-Esc.
        /// </summary>
        internal static string CtrlEsc {
            get {
                return ResourceManager.GetString("CtrlEsc", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Daily.
        /// </summary>
        internal static string Daily {
            get {
                return ResourceManager.GetString("Daily", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Database:.
        /// </summary>
        internal static string Database {
            get {
                return ResourceManager.GetString("Database", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Database &apos;{0}&apos; not available..
        /// </summary>
        internal static string DatabaseNotAvailable {
            get {
                return ResourceManager.GetString("DatabaseNotAvailable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Debug.
        /// </summary>
        internal static string Debug {
            get {
                return ResourceManager.GetString("Debug", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Delete.
        /// </summary>
        internal static string Delete {
            get {
                return ResourceManager.GetString("Delete", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Delete All.
        /// </summary>
        internal static string DeleteAll {
            get {
                return ResourceManager.GetString("DeleteAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Delete External Tool....
        /// </summary>
        internal static string DeleteExternalTool {
            get {
                return ResourceManager.GetString("DeleteExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Description.
        /// </summary>
        internal static string Description {
            get {
                return ResourceManager.GetString("Description", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Detect.
        /// </summary>
        internal static string Detect {
            get {
                return ResourceManager.GetString("Detect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disable Cursor blinking.
        /// </summary>
        internal static string DisableCursorBlinking {
            get {
                return ResourceManager.GetString("DisableCursorBlinking", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disable Cursor Shadow.
        /// </summary>
        internal static string DisableCursorShadow {
            get {
                return ResourceManager.GetString("DisableCursorShadow", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disable Full Window drag.
        /// </summary>
        internal static string DisableFullWindowDrag {
            get {
                return ResourceManager.GetString("DisableFullWindowDrag", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disable Menu Animations.
        /// </summary>
        internal static string DisableMenuAnimations {
            get {
                return ResourceManager.GetString("DisableMenuAnimations", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disconnect.
        /// </summary>
        internal static string Disconnect {
            get {
                return ResourceManager.GetString("Disconnect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disconnect All But This.
        /// </summary>
        internal static string DisconnectOthers {
            get {
                return ResourceManager.GetString("DisconnectOthers", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disconnect Tabs To The Right.
        /// </summary>
        internal static string DisconnectOthersRight {
            get {
                return ResourceManager.GetString("DisconnectOthersRight", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disk Drives.
        /// </summary>
        internal static string DiskDrives {
            get {
                return ResourceManager.GetString("DiskDrives", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Display.
        /// </summary>
        internal static string Display {
            get {
                return ResourceManager.GetString("Display", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Display Name.
        /// </summary>
        internal static string DisplayName {
            get {
                return ResourceManager.GetString("DisplayName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Display Themes.
        /// </summary>
        internal static string DisplayThemes {
            get {
                return ResourceManager.GetString("DisplayThemes", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Display Wallpaper.
        /// </summary>
        internal static string DisplayWallpaper {
            get {
                return ResourceManager.GetString("DisplayWallpaper", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Domain.
        /// </summary>
        internal static string Domain {
            get {
                return ResourceManager.GetString("Domain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to EC2InstanceId.
        /// </summary>
        internal static string EC2InstanceId
        {
            get
            {
                return ResourceManager.GetString("EC2InstanceId", resourceCulture);
            }
        }
        /// <summary>
        ///   Looks up a localized string similar to PropertyDescriptionEC2InstanceId.
        /// </summary>
        internal static string PropertyDescriptionEC2InstanceId
        {
            get
            {
                return ResourceManager.GetString("PropertyDescriptionEC2InstanceId", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to EC2InstanceId.
        /// </summary>
        internal static string EC2Region
        {
            get
            {
                return ResourceManager.GetString("EC2Region", resourceCulture);
            }
        }
        /// <summary>
        ///   Looks up a localized string similar to PropertyDescriptionEC2InstanceId.
        /// </summary>
        internal static string PropertyDescriptionEC2Region
        {
            get
            {
                return ResourceManager.GetString("PropertyDescriptionEC2Region", resourceCulture);
            }
        }


        /// <summary>
        ///   Looks up a localized string similar to Donate.
        /// </summary>
        internal static string Donate {
            get {
                return ResourceManager.GetString("Donate", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do not play.
        /// </summary>
        internal static string DoNotPlay {
            get {
                return ResourceManager.GetString("DoNotPlay", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do not trim spaces from usernames.
        /// </summary>
        internal static string DoNotTrimUsername {
            get {
                return ResourceManager.GetString("DoNotTrimUsername", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Don&apos;t connect to console session.
        /// </summary>
        internal static string DontConnectToConsoleSession {
            get {
                return ResourceManager.GetString("DontConnectToConsoleSession", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Don&apos;t connect if authentication fails.
        /// </summary>
        internal static string DontConnectWhenAuthFails {
            get {
                return ResourceManager.GetString("DontConnectWhenAuthFails", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Double click on tab closes it.
        /// </summary>
        internal static string DoubleClickTabClosesIt {
            get {
                return ResourceManager.GetString("DoubleClickTabClosesIt", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Download.
        /// </summary>
        internal static string Download {
            get {
                return ResourceManager.GetString("Download", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Download and Install.
        /// </summary>
        internal static string DownloadAndInstall {
            get {
                return ResourceManager.GetString("DownloadAndInstall", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Duplicate.
        /// </summary>
        internal static string Duplicate {
            get {
                return ResourceManager.GetString("Duplicate", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Duplicate Tab.
        /// </summary>
        internal static string DuplicateTab {
            get {
                return ResourceManager.GetString("DuplicateTab", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Dynamic.
        /// </summary>
        internal static string Dynamic {
            get {
                return ResourceManager.GetString("Dynamic", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do you want to continue with no password?.
        /// </summary>
        internal static string EmptyPasswordContinue {
            get {
                return ResourceManager.GetString("EmptyPasswordContinue", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to For empty Username, Password or Domain fields use:.
        /// </summary>
        internal static string EmptyUsernamePasswordDomainFields {
            get {
                return ResourceManager.GetString("EmptyUsernamePasswordDomainFields", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Desktop Composition.
        /// </summary>
        internal static string EnableDesktopComposition {
            get {
                return ResourceManager.GetString("EnableDesktopComposition", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Encoding.
        /// </summary>
        internal static string Encoding {
            get {
                return ResourceManager.GetString("Encoding", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Completely encrypt connection file.
        /// </summary>
        internal static string EncryptCompleteConnectionFile {
            get {
                return ResourceManager.GetString("EncryptCompleteConnectionFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Block Cipher Mode.
        /// </summary>
        internal static string EncryptionBlockCipherMode {
            get {
                return ResourceManager.GetString("EncryptionBlockCipherMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Encryption Engine.
        /// </summary>
        internal static string EncryptionEngine {
            get {
                return ResourceManager.GetString("EncryptionEngine", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Key Derivation Function Iterations.
        /// </summary>
        internal static string EncryptionKeyDerivationIterations {
            get {
                return ResourceManager.GetString("EncryptionKeyDerivationIterations", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Encryption Test.
        /// </summary>
        internal static string EncryptionTest {
            get {
                return ResourceManager.GetString("EncryptionTest", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Encrypting {0} entries using {1}/{2} and {3} iterations took {4} seconds..
        /// </summary>
        internal static string EncryptionTestResultMessage {
            get {
                return ResourceManager.GetString("EncryptionTestResultMessage", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Environment.
        /// </summary>
        internal static string Environment {
            get {
                return ResourceManager.GetString("Environment", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to AddExternalToolsToToolBar (frmMain) failed. {0}.
        /// </summary>
        internal static string ErrorAddExternalToolsToToolBarFailed {
            get {
                return ResourceManager.GetString("ErrorAddExternalToolsToToolBarFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to AddFolder (UI.Window.ConnectionTreeWindow) failed. {0}.
        /// </summary>
        internal static string ErrorAddFolderFailed {
            get {
                return ResourceManager.GetString("ErrorAddFolderFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The database version {0} is not compatible with this version of {1}..
        /// </summary>
        internal static string ErrorBadDatabaseVersion {
            get {
                return ResourceManager.GetString("ErrorBadDatabaseVersion", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The connection list could not be saved..
        /// </summary>
        internal static string ErrorConnectionListSaveFailed {
            get {
                return ResourceManager.GetString("ErrorConnectionListSaveFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PuTTY could not be launched..
        /// </summary>
        internal static string ErrorCouldNotLaunchPutty {
            get {
                return ResourceManager.GetString("ErrorCouldNotLaunchPutty", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Decryption failed. {0}.
        /// </summary>
        internal static string ErrorDecryptionFailed {
            get {
                return ResourceManager.GetString("ErrorDecryptionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Encryption failed. {0}.
        /// </summary>
        internal static string ErrorEncryptionFailed {
            get {
                return ResourceManager.GetString("ErrorEncryptionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The Windows security setting, &quot;System cryptography: Use FIPS compliant algorithms for encryption, hashing, and signing&quot;, is enabled.
        ///
        ///See the Microsoft Support article at http://support.microsoft.com/kb/811833 for more information.
        ///
        ///{0} is not fully FIPS compliant. Click OK to proceed at your own discretion, or Cancel to Exit..
        /// </summary>
        internal static string ErrorFipsPolicyIncompatible {
            get {
                return ResourceManager.GetString("ErrorFipsPolicyIncompatible", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Errors.
        /// </summary>
        internal static string Errors {
            get {
                return ResourceManager.GetString("Errors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The startup connection file could not be loaded.{0}{0}{2}{0}{3}{0}{0}In order to prevent data loss, {1} will now exit..
        /// </summary>
        internal static string ErrorStartupConnectionFileLoad {
            get {
                return ResourceManager.GetString("ErrorStartupConnectionFileLoad", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VerifyDatabaseVersion (Config.Connections.Save) failed. {0}.
        /// </summary>
        internal static string ErrorVerifyDatabaseVersionFailed {
            get {
                return ResourceManager.GetString("ErrorVerifyDatabaseVersionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to This exception will force mRemoteNG to close.
        /// </summary>
        internal static string ExceptionForcesmRemoteNGToClose {
            get {
                return ResourceManager.GetString("ExceptionForcesmRemoteNGToClose", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Exception Message.
        /// </summary>
        internal static string ExceptionMessage {
            get {
                return ResourceManager.GetString("ExceptionMessage", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Exit.
        /// </summary>
        internal static string Exit {
            get {
                return ResourceManager.GetString("Exit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Expand all folders.
        /// </summary>
        internal static string ExpandAllFolders {
            get {
                return ResourceManager.GetString("ExpandAllFolders", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Experimental.
        /// </summary>
        internal static string Experimental {
            get {
                return ResourceManager.GetString("Experimental", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export.
        /// </summary>
        internal static string Export {
            get {
                return ResourceManager.GetString("Export", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export everything.
        /// </summary>
        internal static string ExportEverything {
            get {
                return ResourceManager.GetString("ExportEverything", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export File.
        /// </summary>
        internal static string ExportFile {
            get {
                return ResourceManager.GetString("ExportFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export Items.
        /// </summary>
        internal static string ExportItems {
            get {
                return ResourceManager.GetString("ExportItems", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export Properties.
        /// </summary>
        internal static string ExportProperties {
            get {
                return ResourceManager.GetString("ExportProperties", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export the currently selected connection.
        /// </summary>
        internal static string ExportSelectedConnection {
            get {
                return ResourceManager.GetString("ExportSelectedConnection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Export the currently selected folder.
        /// </summary>
        internal static string ExportSelectedFolder {
            get {
                return ResourceManager.GetString("ExportSelectedFolder", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to External Tool.
        /// </summary>
        internal static string ExternalTool {
            get {
                return ResourceManager.GetString("ExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to External Tool After.
        /// </summary>
        internal static string ExternalToolAfter {
            get {
                return ResourceManager.GetString("ExternalToolAfter", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to External Tool Before.
        /// </summary>
        internal static string ExternalToolBefore {
            get {
                return ResourceManager.GetString("ExternalToolBefore", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New External Tool.
        /// </summary>
        internal static string ExternalToolDefaultName {
            get {
                return ResourceManager.GetString("ExternalToolDefaultName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to External Tool Properties.
        /// </summary>
        internal static string ExternalToolProperties {
            get {
                return ResourceManager.GetString("ExternalToolProperties", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to External Tools Toolbar.
        /// </summary>
        internal static string ExternalToolsToolbar {
            get {
                return ResourceManager.GetString("ExternalToolsToolbar", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Favorite.
        /// </summary>
        internal static string Favorite {
            get {
                return ResourceManager.GetString("Favorite", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Favorites.
        /// </summary>
        internal static string Favorites {
            get {
                return ResourceManager.GetString("Favorites", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to File &amp;Format:.
        /// </summary>
        internal static string FileFormat {
            get {
                return ResourceManager.GetString("FileFormat", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Filename.
        /// </summary>
        internal static string Filename {
            get {
                return ResourceManager.GetString("Filename", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Files.
        /// </summary>
        internal static string Files {
            get {
                return ResourceManager.GetString("Files", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to All Files (*.*).
        /// </summary>
        internal static string FilterAll {
            get {
                return ResourceManager.GetString("FilterAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to All importable files.
        /// </summary>
        internal static string FilterAllImportable {
            get {
                return ResourceManager.GetString("FilterAllImportable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Application Files (*.exe).
        /// </summary>
        internal static string FilterApplication {
            get {
                return ResourceManager.GetString("FilterApplication", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemote CSV Files (*.csv).
        /// </summary>
        internal static string FiltermRemoteCSV {
            get {
                return ResourceManager.GetString("FiltermRemoteCSV", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Remote Desktop Manager CSV Files (*.csv).
        /// </summary>
        internal static string FiltermRemoteRemoteDesktopManagerCSV {
            get {
                return ResourceManager.GetString("FiltermRemoteRemoteDesktopManagerCSV", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemote XML Files (*.xml).
        /// </summary>
        internal static string FiltermRemoteXML {
            get {
                return ResourceManager.GetString("FiltermRemoteXML", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PuTTY Connection Manager files.
        /// </summary>
        internal static string FilterPuttyConnectionManager {
            get {
                return ResourceManager.GetString("FilterPuttyConnectionManager", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Remote Desktop Connection Manager files (*.rdg).
        /// </summary>
        internal static string FilterRdgFiles {
            get {
                return ResourceManager.GetString("FilterRdgFiles", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Files (*.rdp).
        /// </summary>
        internal static string FilterRDP {
            get {
                return ResourceManager.GetString("FilterRDP", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Filter search matches in connection tree.
        /// </summary>
        internal static string FilterSearchMatchesInConnectionTree {
            get {
                return ResourceManager.GetString("FilterSearchMatchesInConnectionTree", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to First IP.
        /// </summary>
        internal static string FirstIp {
            get {
                return ResourceManager.GetString("FirstIp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to First Port.
        /// </summary>
        internal static string FirstPort {
            get {
                return ResourceManager.GetString("FirstPort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Fit To Panel.
        /// </summary>
        internal static string FitToPanel {
            get {
                return ResourceManager.GetString("FitToPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Font Smoothing.
        /// </summary>
        internal static string FontSmoothing {
            get {
                return ResourceManager.GetString("FontSmoothing", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Inherit {0}.
        /// </summary>
        internal static string FormatInherit {
            get {
                return ResourceManager.GetString("FormatInherit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Description of inherited property: {0}.
        /// </summary>
        internal static string FormatInheritDescription {
            get {
                return ResourceManager.GetString("FormatInheritDescription", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Free.
        /// </summary>
        internal static string Free {
            get {
                return ResourceManager.GetString("Free", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Fullscreen.
        /// </summary>
        internal static string Fullscreen {
            get {
                return ResourceManager.GetString("Fullscreen", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Gateway.
        /// </summary>
        internal static string Gateway {
            get {
                return ResourceManager.GetString("Gateway", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to General.
        /// </summary>
        internal static string General {
            get {
                return ResourceManager.GetString("General", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An error occured while loading the connection entry for &quot;{0}&quot; from &quot;{1}&quot;. {2}.
        /// </summary>
        internal static string GetConnectionInfoFromXmlFailed {
            get {
                return ResourceManager.GetString("GetConnectionInfoFromXmlFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Automatic Reconnect.
        /// </summary>
        internal static string GroupboxAutomaticReconnect {
            get {
                return ResourceManager.GetString("GroupboxAutomaticReconnect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG Help.
        /// </summary>
        internal static string HelpContents {
            get {
                return ResourceManager.GetString("HelpContents", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to High.
        /// </summary>
        internal static string High {
            get {
                return ResourceManager.GetString("High", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Host.
        /// </summary>
        internal static string Host {
            get {
                return ResourceManager.GetString("Host", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Hostname:.
        /// </summary>
        internal static string Hostname {
            get {
                return ResourceManager.GetString("Hostname", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Hostname/IP.
        /// </summary>
        internal static string HostnameIp {
            get {
                return ResourceManager.GetString("HostnameIp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to HTTP.
        /// </summary>
        internal static string Http {
            get {
                return ResourceManager.GetString("Http", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Edge Chromium.
        /// </summary>
        internal static string HttpCEF {
            get {
                return ResourceManager.GetString("HttpCEF", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to HTTP Connect Failed!.
        /// </summary>
        internal static string HttpConnectFailed {
            get {
                return ResourceManager.GetString("HttpConnectFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t create new HTTP Connection!.
        /// </summary>
        internal static string HttpConnectionFailed {
            get {
                return ResourceManager.GetString("HttpConnectionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Changing HTTP Document Tile Failed!.
        /// </summary>
        internal static string HttpDocumentTileChangeFailed {
            get {
                return ResourceManager.GetString("HttpDocumentTileChangeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Failed to contruct the URL to load.
        /// </summary>
        internal static string HttpFailedUrlBuild {
            get {
                return ResourceManager.GetString("HttpFailedUrlBuild", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Internet Explorer.
        /// </summary>
        internal static string HttpInternetExplorer {
            get {
                return ResourceManager.GetString("HttpInternetExplorer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to HTTPS.
        /// </summary>
        internal static string Https {
            get {
                return ResourceManager.GetString("Https", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Set HTTP Props failed!.
        /// </summary>
        internal static string HttpSetPropsFailed {
            get {
                return ResourceManager.GetString("HttpSetPropsFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Icon.
        /// </summary>
        internal static string Icon {
            get {
                return ResourceManager.GetString("Icon", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Identify quick connect tabs by adding the prefix &quot;Quick:&quot;.
        /// </summary>
        internal static string IdentifyQuickConnectTabs {
            get {
                return ResourceManager.GetString("IdentifyQuickConnectTabs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Import from Active Directory.
        /// </summary>
        internal static string ImportAD {
            get {
                return ResourceManager.GetString("ImportAD", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An error occurred while importing the file &quot;{0}&quot;..
        /// </summary>
        internal static string ImportFileFailedContent {
            get {
                return ResourceManager.GetString("ImportFileFailedContent", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Import from &amp;File....
        /// </summary>
        internal static string ImportFromFile {
            get {
                return ResourceManager.GetString("ImportFromFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Import from Port Scan.
        /// </summary>
        internal static string ImportPortScan {
            get {
                return ResourceManager.GetString("ImportPortScan", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Import sub OUs.
        /// </summary>
        internal static string ImportSubOUs {
            get {
                return ResourceManager.GetString("ImportSubOUs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Informations.
        /// </summary>
        internal static string Informations {
            get {
                return ResourceManager.GetString("Informations", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Inheritance.
        /// </summary>
        internal static string Inheritance {
            get {
                return ResourceManager.GetString("Inheritance", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Dispose of Int App process failed!.
        /// </summary>
        internal static string IntAppDisposeFailed {
            get {
                return ResourceManager.GetString("IntAppDisposeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Int App Focus Failed!.
        /// </summary>
        internal static string IntAppFocusFailed {
            get {
                return ResourceManager.GetString("IntAppFocusFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Int App Handle: {0}.
        /// </summary>
        internal static string IntAppHandle {
            get {
                return ResourceManager.GetString("IntAppHandle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Killing Int App Process failed!.
        /// </summary>
        internal static string IntAppKillFailed {
            get {
                return ResourceManager.GetString("IntAppKillFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Int App Resize failed!.
        /// </summary>
        internal static string IntAppResizeFailed {
            get {
                return ResourceManager.GetString("IntAppResizeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to --- IntApp Stuff ---.
        /// </summary>
        internal static string IntAppStuff {
            get {
                return ResourceManager.GetString("IntAppStuff", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Int App Title: {0}.
        /// </summary>
        internal static string IntAppTitle {
            get {
                return ResourceManager.GetString("IntAppTitle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to (Automatically Detect).
        /// </summary>
        internal static string LanguageDefault {
            get {
                return ResourceManager.GetString("LanguageDefault", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to {0} must be restarted before changes to the language will take effect..
        /// </summary>
        internal static string LanguageRestartRequired {
            get {
                return ResourceManager.GetString("LanguageRestartRequired", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Language.
        /// </summary>
        internal static string LanguageString {
            get {
                return ResourceManager.GetString("LanguageString", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Last IP.
        /// </summary>
        internal static string LastIp {
            get {
                return ResourceManager.GetString("LastIp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Last Port.
        /// </summary>
        internal static string LastPort {
            get {
                return ResourceManager.GetString("LastPort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Launch External Tool.
        /// </summary>
        internal static string LaunchExternalTool {
            get {
                return ResourceManager.GetString("LaunchExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to License.
        /// </summary>
        internal static string License {
            get {
                return ResourceManager.GetString("License", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Load Balance Info.
        /// </summary>
        internal static string LoadBalanceInfo {
            get {
                return ResourceManager.GetString("LoadBalanceInfo", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use UTF8 encoding for RDP &quot;Load Balance Info&quot; property.
        /// </summary>
        internal static string LoadBalanceInfoUseUtf8 {
            get {
                return ResourceManager.GetString("LoadBalanceInfoUseUtf8", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Load from SQL failed.
        /// </summary>
        internal static string LoadFromSqlFailed {
            get {
                return ResourceManager.GetString("LoadFromSqlFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The connection information could not be loaded from the SQL server..
        /// </summary>
        internal static string LoadFromSqlFailedContent {
            get {
                return ResourceManager.GetString("LoadFromSqlFailedContent", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Load From XML failed!.
        /// </summary>
        internal static string LoadFromXmlFailed {
            get {
                return ResourceManager.GetString("LoadFromXmlFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Local file.
        /// </summary>
        internal static string LocalFile {
            get {
                return ResourceManager.GetString("LocalFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Local file does not exist!.
        /// </summary>
        internal static string LocalFileDoesNotExist {
            get {
                return ResourceManager.GetString("LocalFileDoesNotExist", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Lock toolbar positions.
        /// </summary>
        internal static string LockToolbars {
            get {
                return ResourceManager.GetString("LockToolbars", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Log file path.
        /// </summary>
        internal static string LogFilePath {
            get {
                return ResourceManager.GetString("LogFilePath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Logging.
        /// </summary>
        internal static string Logging {
            get {
                return ResourceManager.GetString("Logging", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Login failed for user &apos;{0}&apos;..
        /// </summary>
        internal static string LoginFailedForUser {
            get {
                return ResourceManager.GetString("LoginFailedForUser", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Log these message types.
        /// </summary>
        internal static string LogTheseMessageTypes {
            get {
                return ResourceManager.GetString("LogTheseMessageTypes", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Log to application directory.
        /// </summary>
        internal static string LogToAppDir {
            get {
                return ResourceManager.GetString("LogToAppDir", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to MAC Address.
        /// </summary>
        internal static string MacAddress {
            get {
                return ResourceManager.GetString("MacAddress", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Medium.
        /// </summary>
        internal static string Medium {
            get {
                return ResourceManager.GetString("Medium", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Message.
        /// </summary>
        internal static string Message {
            get {
                return ResourceManager.GetString("Message", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Minimize to notification area.
        /// </summary>
        internal static string MinimizeToSysTray {
            get {
                return ResourceManager.GetString("MinimizeToSysTray", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Minutes to Idle.
        /// </summary>
        internal static string MinutesToIdleTimeout {
            get {
                return ResourceManager.GetString("MinutesToIdleTimeout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Miscellaneous.
        /// </summary>
        internal static string Miscellaneous {
            get {
                return ResourceManager.GetString("Miscellaneous", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Monthly.
        /// </summary>
        internal static string Monthly {
            get {
                return ResourceManager.GetString("Monthly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Move down.
        /// </summary>
        internal static string MoveDown {
            get {
                return ResourceManager.GetString("MoveDown", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Move up.
        /// </summary>
        internal static string MoveUp {
            get {
                return ResourceManager.GetString("MoveUp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG CSV.
        /// </summary>
        internal static string MremoteNgCsv {
            get {
                return ResourceManager.GetString("MremoteNgCsv", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG Unhandled Exception.
        /// </summary>
        internal static string mRemoteNGUnhandledException {
            get {
                return ResourceManager.GetString("mRemoteNGUnhandledException", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG XML.
        /// </summary>
        internal static string MremoteNgXml {
            get {
                return ResourceManager.GetString("MremoteNgXml", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Multi SSH:.
        /// </summary>
        internal static string MultiSsh {
            get {
                return ResourceManager.GetString("MultiSsh", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Multi SSH toolbar.
        /// </summary>
        internal static string MultiSshToolbar {
            get {
                return ResourceManager.GetString("MultiSshToolbar", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Press ENTER to send. Ctrl+C is sent immediately..
        /// </summary>
        internal static string MultiSshToolTip {
            get {
                return ResourceManager.GetString("MultiSshToolTip", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Must Be Between 0 and 255.
        /// </summary>
        internal static string MustBeBetween0And255 {
            get {
                return ResourceManager.GetString("MustBeBetween0And255", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to My current credentials (Windows logon information).
        /// </summary>
        internal static string MyCurrentWindowsCreds {
            get {
                return ResourceManager.GetString("MyCurrentWindowsCreds", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Name.
        /// </summary>
        internal static string Name {
            get {
                return ResourceManager.GetString("Name", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Never.
        /// </summary>
        internal static string Never {
            get {
                return ResourceManager.GetString("Never", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New Connection.
        /// </summary>
        internal static string NewConnection {
            get {
                return ResourceManager.GetString("NewConnection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New Connection File.
        /// </summary>
        internal static string NewConnectionFile {
            get {
                return ResourceManager.GetString("NewConnectionFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New External Tool.
        /// </summary>
        internal static string NewExternalTool {
            get {
                return ResourceManager.GetString("NewExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New Folder.
        /// </summary>
        internal static string NewFolder {
            get {
                return ResourceManager.GetString("NewFolder", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New Panel.
        /// </summary>
        internal static string NewPanel {
            get {
                return ResourceManager.GetString("NewPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New Title.
        /// </summary>
        internal static string NewTitle {
            get {
                return ResourceManager.GetString("NewTitle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to No.
        /// </summary>
        internal static string No {
            get {
                return ResourceManager.GetString("No", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to No сompression.
        /// </summary>
        internal static string NoCompression {
            get {
                return ResourceManager.GetString("NoCompression", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to This node is already in this folder..
        /// </summary>
        internal static string NodeAlreadyInFolder {
            get {
                return ResourceManager.GetString("NodeAlreadyInFolder", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Cannot drag node onto itself..
        /// </summary>
        internal static string NodeCannotDragOnSelf {
            get {
                return ResourceManager.GetString("NodeCannotDragOnSelf", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Cannot drag parent node onto child..
        /// </summary>
        internal static string NodeCannotDragParentOnChild {
            get {
                return ResourceManager.GetString("NodeCannotDragParentOnChild", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to This node is not draggable..
        /// </summary>
        internal static string NodeNotDraggable {
            get {
                return ResourceManager.GetString("NodeNotDraggable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to No ext. app specified..
        /// </summary>
        internal static string NoExtAppDefined {
            get {
                return ResourceManager.GetString("NoExtAppDefined", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to None.
        /// </summary>
        internal static string None {
            get {
                return ResourceManager.GetString("None", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Normal.
        /// </summary>
        internal static string Normal {
            get {
                return ResourceManager.GetString("Normal", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to No SmartSize.
        /// </summary>
        internal static string NoSmartSize {
            get {
                return ResourceManager.GetString("NoSmartSize", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Notifications.
        /// </summary>
        internal static string Notifications {
            get {
                return ResourceManager.GetString("Notifications", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to No update available.
        /// </summary>
        internal static string NoUpdateAvailable {
            get {
                return ResourceManager.GetString("NoUpdateAvailable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to You are trying to load a connection file that was created using an very early version of mRemote, this could result in an runtime error.
        ///If you run into such an error, please create a new connection file!.
        /// </summary>
        internal static string OldConffile {
            get {
                return ResourceManager.GetString("OldConffile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Open a different file.
        /// </summary>
        internal static string OpenADifferentFile {
            get {
                return ResourceManager.GetString("OpenADifferentFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Open Connection File....
        /// </summary>
        internal static string OpenConnectionFile {
            get {
                return ResourceManager.GetString("OpenConnectionFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Open file.
        /// </summary>
        internal static string OpenFile {
            get {
                return ResourceManager.GetString("OpenFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Opening Command.
        /// </summary>
        internal static string OpeningCommand {
            get {
                return ResourceManager.GetString("OpeningCommand", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Open new tab to the right of the currently selected tab.
        /// </summary>
        internal static string OpenNewTabRight {
            get {
                return ResourceManager.GetString("OpenNewTabRight", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Open Ports.
        /// </summary>
        internal static string OpenPorts {
            get {
                return ResourceManager.GetString("OpenPorts", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Options.
        /// </summary>
        internal static string Options {
            get {
                return ResourceManager.GetString("Options", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG Options.
        /// </summary>
        internal static string OptionsPageTitle {
            get {
                return ResourceManager.GetString("OptionsPageTitle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Testing....
        /// </summary>
        internal static string OptionsProxyTesting {
            get {
                return ResourceManager.GetString("OptionsProxyTesting", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warning: Restart is required to commit any theme configuration change..
        /// </summary>
        internal static string OptionsThemeChangeWarning {
            get {
                return ResourceManager.GetString("OptionsThemeChangeWarning", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do you really want to delete the theme?.
        /// </summary>
        internal static string OptionsThemeDeleteConfirmation {
            get {
                return ResourceManager.GetString("OptionsThemeDeleteConfirmation", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to New theme name.
        /// </summary>
        internal static string OptionsThemeNewThemeCaption {
            get {
                return ResourceManager.GetString("OptionsThemeNewThemeCaption", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Cannot create theme, name already present or special characters in the name.
        /// </summary>
        internal static string OptionsThemeNewThemeError {
            get {
                return ResourceManager.GetString("OptionsThemeNewThemeError", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Type the new theme name.
        /// </summary>
        internal static string OptionsThemeNewThemeText {
            get {
                return ResourceManager.GetString("OptionsThemeNewThemeText", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Out Of Range.
        /// </summary>
        internal static string OutOfRange {
            get {
                return ResourceManager.GetString("OutOfRange", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Panel.
        /// </summary>
        internal static string Panel {
            get {
                return ResourceManager.GetString("Panel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Panel Handle: {0}.
        /// </summary>
        internal static string PanelHandle {
            get {
                return ResourceManager.GetString("PanelHandle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Panel Name.
        /// </summary>
        internal static string PanelName {
            get {
                return ResourceManager.GetString("PanelName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password.
        /// </summary>
        internal static string Password {
            get {
                return ResourceManager.GetString("Password", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password must contain at least {0} of the following characters: {1}.
        /// </summary>
        internal static string PasswordConstainsSpecialCharactersConstraintHint {
            get {
                return ResourceManager.GetString("PasswordConstainsSpecialCharactersConstraintHint", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password must contain at least {0} lower case character(s).
        /// </summary>
        internal static string PasswordContainsLowerCaseConstraintHint {
            get {
                return ResourceManager.GetString("PasswordContainsLowerCaseConstraintHint", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password must contain at least {0} number(s).
        /// </summary>
        internal static string PasswordContainsNumbersConstraint {
            get {
                return ResourceManager.GetString("PasswordContainsNumbersConstraint", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password must contain at least {0} upper case character(s).
        /// </summary>
        internal static string PasswordContainsUpperCaseConstraintHint {
            get {
                return ResourceManager.GetString("PasswordContainsUpperCaseConstraintHint", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password length must be between {0} and {1}.
        /// </summary>
        internal static string PasswordLengthConstraintHint {
            get {
                return ResourceManager.GetString("PasswordLengthConstraintHint", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Password protect.
        /// </summary>
        internal static string PasswordProtect {
            get {
                return ResourceManager.GetString("PasswordProtect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Both passwords must match..
        /// </summary>
        internal static string PasswordStatusMustMatch {
            get {
                return ResourceManager.GetString("PasswordStatusMustMatch", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The password must be at least 3 characters long..
        /// </summary>
        internal static string PasswordStatusTooShort {
            get {
                return ResourceManager.GetString("PasswordStatusTooShort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Place search bar above connection tree.
        /// </summary>
        internal static string PlaceSearchBarAboveConnectionTree {
            get {
                return ResourceManager.GetString("PlaceSearchBarAboveConnectionTree", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Please fill all fields.
        /// </summary>
        internal static string PleaseFillAllFields {
            get {
                return ResourceManager.GetString("PleaseFillAllFields", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Popups.
        /// </summary>
        internal static string Popups {
            get {
                return ResourceManager.GetString("Popups", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Port.
        /// </summary>
        internal static string Port {
            get {
                return ResourceManager.GetString("Port", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Portable Edition.
        /// </summary>
        internal static string PortableEdition {
            get {
                return ResourceManager.GetString("PortableEdition", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Ports.
        /// </summary>
        internal static string Ports {
            get {
                return ResourceManager.GetString("Ports", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Port Scan.
        /// </summary>
        internal static string PortScan {
            get {
                return ResourceManager.GetString("PortScan", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Port scan complete..
        /// </summary>
        internal static string PortScanComplete {
            get {
                return ResourceManager.GetString("PortScanComplete", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t load PortScan panel!.
        /// </summary>
        internal static string PortScanCouldNotLoadPanel {
            get {
                return ResourceManager.GetString("PortScanCouldNotLoadPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PowerShell.
        /// </summary>
        internal static string PowerShell {
            get {
                return ResourceManager.GetString("PowerShell", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Printers.
        /// </summary>
        internal static string Printers {
            get {
                return ResourceManager.GetString("Printers", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Properties.
        /// </summary>
        internal static string Properties {
            get {
                return ResourceManager.GetString("Properties", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Toggle all inheritance options..
        /// </summary>
        internal static string PropertyDescriptionAll {
            get {
                return ResourceManager.GetString("PropertyDescriptionAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select which authentication level this connection should use..
        /// </summary>
        internal static string PropertyDescriptionAuthenticationLevel {
            get {
                return ResourceManager.GetString("PropertyDescriptionAuthenticationLevel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select how you want to authenticate against the VNC server..
        /// </summary>
        internal static string PropertyDescriptionAuthenticationMode {
            get {
                return ResourceManager.GetString("PropertyDescriptionAuthenticationMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether to automatically resize the connection when the window is resized or when fullscreen mode is toggled. Requires RDC 8.0 or higher..
        /// </summary>
        internal static string PropertyDescriptionAutomaticResize {
            get {
                return ResourceManager.GetString("PropertyDescriptionAutomaticResize", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether to use bitmap caching or not..
        /// </summary>
        internal static string PropertyDescriptionCacheBitmaps {
            get {
                return ResourceManager.GetString("PropertyDescriptionCacheBitmaps", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select the colour quality to be used..
        /// </summary>
        internal static string PropertyDescriptionColors {
            get {
                return ResourceManager.GetString("PropertyDescriptionColors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select the compression value to be used..
        /// </summary>
        internal static string PropertyDescriptionCompression {
            get {
                return ResourceManager.GetString("PropertyDescriptionCompression", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Put your notes or a description for the host here..
        /// </summary>
        internal static string PropertyDescriptionDescription {
            get {
                return ResourceManager.GetString("PropertyDescriptionDescription", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Determines whether cursor flashes should be disabled..
        /// </summary>
        internal static string PropertyDescriptionDisableCursorBlinking {
            get {
                return ResourceManager.GetString("PropertyDescriptionDisableCursorBlinking", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Determines whether a mouse shadow should be visible..
        /// </summary>
        internal static string PropertyDescriptionDisableCursorShadow {
            get {
                return ResourceManager.GetString("PropertyDescriptionDisableCursorShadow", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Determines whether window content is displayed when you drag the window to a new location..
        /// </summary>
        internal static string PropertyDescriptionDisableFullWindowDrag {
            get {
                return ResourceManager.GetString("PropertyDescriptionDisableFullWindowDrag", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Determines whether menus and windows can be displayed with animation effects in the remote session..
        /// </summary>
        internal static string PropertyDescriptionDisableMenuAnimations {
            get {
                return ResourceManager.GetString("PropertyDescriptionDisableMenuAnimations", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select yes if the theme of the remote host should be displayed..
        /// </summary>
        internal static string PropertyDescriptionDisplayThemes {
            get {
                return ResourceManager.GetString("PropertyDescriptionDisplayThemes", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select yes if the wallpaper of the remote host should be displayed..
        /// </summary>
        internal static string PropertyDescriptionDisplayWallpaper {
            get {
                return ResourceManager.GetString("PropertyDescriptionDisplayWallpaper", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter your domain..
        /// </summary>
        internal static string PropertyDescriptionDomain {
            get {
                return ResourceManager.GetString("PropertyDescriptionDomain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether to use desktop composition or not..
        /// </summary>
        internal static string PropertyDescriptionEnableDesktopComposition {
            get {
                return ResourceManager.GetString("PropertyDescriptionEnableDesktopComposition", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether to use font smoothing or not..
        /// </summary>
        internal static string PropertyDescriptionEnableFontSmoothing {
            get {
                return ResourceManager.GetString("PropertyDescriptionEnableFontSmoothing", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select the encoding mode to be used..
        /// </summary>
        internal static string PropertyDescriptionEncoding {
            get {
                return ResourceManager.GetString("PropertyDescriptionEncoding", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select the external tool to be started..
        /// </summary>
        internal static string PropertyDescriptionExternalTool {
            get {
                return ResourceManager.GetString("PropertyDescriptionExternalTool", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select a external tool to be started after the disconnection to the remote host..
        /// </summary>
        internal static string PropertyDescriptionExternalToolAfter {
            get {
                return ResourceManager.GetString("PropertyDescriptionExternalToolAfter", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select a external tool to be started before the connection to the remote host is established..
        /// </summary>
        internal static string PropertyDescriptionExternalToolBefore {
            get {
                return ResourceManager.GetString("PropertyDescriptionExternalToolBefore", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show this connection in the favorites menu..
        /// </summary>
        internal static string PropertyDescriptionFavorite {
            get {
                return ResourceManager.GetString("PropertyDescriptionFavorite", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter the hostname or ip you want to connect to..
        /// </summary>
        internal static string PropertyDescriptionHostnameIp {
            get {
                return ResourceManager.GetString("PropertyDescriptionHostnameIp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose a icon that will be displayed when connected to the host..
        /// </summary>
        internal static string PropertyDescriptionIcon {
            get {
                return ResourceManager.GetString("PropertyDescriptionIcon", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies the load balancing information for use by load balancing routers to choose the best server..
        /// </summary>
        internal static string PropertyDescriptionLoadBalanceInfo {
            get {
                return ResourceManager.GetString("PropertyDescriptionLoadBalanceInfo", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter the MAC address of the remote host if you wish to use it in an external tool..
        /// </summary>
        internal static string PropertyDescriptionMACAddress {
            get {
                return ResourceManager.GetString("PropertyDescriptionMACAddress", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to This is the name that will be displayed in the connections tree..
        /// </summary>
        internal static string PropertyDescriptionName {
            get {
                return ResourceManager.GetString("PropertyDescriptionName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to A command to run on the remote server after successfully connecting..
        /// </summary>
        internal static string PropertyDescriptionOpeningCommand {
            get {
                return ResourceManager.GetString("PropertyDescriptionOpeningCommand", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Sets the panel in which the connection will open..
        /// </summary>
        internal static string PropertyDescriptionPanel {
            get {
                return ResourceManager.GetString("PropertyDescriptionPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter your password..
        /// </summary>
        internal static string PropertyDescriptionPassword {
            get {
                return ResourceManager.GetString("PropertyDescriptionPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Set a password needed to encrypt the connection file with. You will be prompted to enter your passcode before starting mRemoteNG..
        /// </summary>
        internal static string PropertyDescriptionPasswordProtect {
            get {
                return ResourceManager.GetString("PropertyDescriptionPasswordProtect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter the port the selected protocol is listening on..
        /// </summary>
        internal static string PropertyDescriptionPort {
            get {
                return ResourceManager.GetString("PropertyDescriptionPort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose the protocol mRemoteNG should use to connect to the host..
        /// </summary>
        internal static string PropertyDescriptionProtocol {
            get {
                return ResourceManager.GetString("PropertyDescriptionProtocol", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select a PuTTY session to be used when connecting..
        /// </summary>
        internal static string PropertyDescriptionPuttySession {
            get {
                return ResourceManager.GetString("PropertyDescriptionPuttySession", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies the domain name that a user provides to connect to the RD Gateway server..
        /// </summary>
        internal static string PropertyDescriptionRDGatewayDomain {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDGatewayDomain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies the host name of the Remote Desktop Gateway server..
        /// </summary>
        internal static string PropertyDescriptionRDGatewayHostname {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDGatewayHostname", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies whether or not to log on to the gateway using the same username and password as the connection..
        /// </summary>
        internal static string PropertyDescriptionRDGatewayUseConnectionCredentials {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDGatewayUseConnectionCredentials", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies the user name that a user provides to connect to the RD Gateway server..
        /// </summary>
        internal static string PropertyDescriptionRDGatewayUsername {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDGatewayUsername", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether to receive an alert after the RDP session disconnects due to inactivity.
        /// </summary>
        internal static string PropertyDescriptionRDPAlertIdleTimeout {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDPAlertIdleTimeout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies the password of the Remote Desktop Gateway server..
        /// </summary>
        internal static string PropertyDescriptionRdpGatewayPassword {
            get {
                return ResourceManager.GetString("PropertyDescriptionRdpGatewayPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies when to use a Remote Desktop Gateway (RD Gateway) server..
        /// </summary>
        internal static string PropertyDescriptionRdpGatewayUsageMethod {
            get {
                return ResourceManager.GetString("PropertyDescriptionRdpGatewayUsageMethod", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The number of minutes for the RDP session to sit idle before automatically disconnecting (for no limit use 0).
        /// </summary>
        internal static string PropertyDescriptionRDPMinutesToIdleTimeout {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDPMinutesToIdleTimeout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The program to be started on the remote server upon connection..
        /// </summary>
        internal static string PropertyDescriptionRDPStartProgram {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDPStartProgram", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specifies the working directory of the alternate shell..
        /// </summary>
        internal static string PropertyDescriptionRDPStartProgramWorkDir {
            get {
                return ResourceManager.GetString("PropertyDescriptionRDPStartProgramWorkDir", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Sets the version of RDP to use when opening connections..
        /// </summary>
        internal static string PropertyDescriptionRdpVersion {
            get {
                return ResourceManager.GetString("PropertyDescriptionRdpVersion", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether the default audio input device on the remote machine should be redirected to this computer..
        /// </summary>
        internal static string PropertyDescriptionRedirectAudioCapture {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectAudioCapture", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether the clipboard should be shared..
        /// </summary>
        internal static string PropertyDescriptionRedirectClipboard {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectClipboard", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether local disk drives should be shown on the remote host..
        /// </summary>
        internal static string PropertyDescriptionRedirectDrives {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectDrives", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether key combinations (e.g. Alt-Tab) should be redirected to the remote host..
        /// </summary>
        internal static string PropertyDescriptionRedirectKeys {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectKeys", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether local ports (ie. com, parallel) should be shown on the remote host..
        /// </summary>
        internal static string PropertyDescriptionRedirectPorts {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectPorts", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether local printers should be shown on the remote host..
        /// </summary>
        internal static string PropertyDescriptionRedirectPrinters {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectPrinters", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select whether local smart cards should be available on the remote host..
        /// </summary>
        internal static string PropertyDescriptionRedirectSmartCards {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectSmartCards", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select how remote sound should be redirected..
        /// </summary>
        internal static string PropertyDescriptionRedirectSounds {
            get {
                return ResourceManager.GetString("PropertyDescriptionRedirectSounds", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select one of the available rendering engines that will be used to display HTML..
        /// </summary>
        internal static string PropertyDescriptionRenderingEngine {
            get {
                return ResourceManager.GetString("PropertyDescriptionRenderingEngine", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose the resolution or mode this connection will open in..
        /// </summary>
        internal static string PropertyDescriptionResolution {
            get {
                return ResourceManager.GetString("PropertyDescriptionResolution", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select the SmartSize mode to be used..
        /// </summary>
        internal static string PropertyDescriptionSmartSizeMode {
            get {
                return ResourceManager.GetString("PropertyDescriptionSmartSizeMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Choose the Sound Quality provided by the protocol: Dynamic, Medium, High.
        /// </summary>
        internal static string PropertyDescriptionSoundQuality {
            get {
                return ResourceManager.GetString("PropertyDescriptionSoundQuality", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Specify here additional options to be used for SSH connection. See putty documentation for further details..
        /// </summary>
        internal static string PropertyDescriptionSshOptions {
            get {
                return ResourceManager.GetString("PropertyDescriptionSshOptions", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to For connection through a SSH tunnel (jump host) specify SSH connection to be used to establish SSH tunnel..
        /// </summary>
        internal static string PropertyDescriptionSshTunnel {
            get {
                return ResourceManager.GetString("PropertyDescriptionSshTunnel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect to the console session of the remote host..
        /// </summary>
        internal static string PropertyDescriptionUseConsoleSession {
            get {
                return ResourceManager.GetString("PropertyDescriptionUseConsoleSession", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use the Credential Security Support Provider (CredSSP) for authentication if it is available..
        /// </summary>
        internal static string PropertyDescriptionUseCredSsp {
            get {
                return ResourceManager.GetString("PropertyDescriptionUseCredSsp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string for UseRestrictedAdmin Description
        /// </summary>
        internal static string PropertyDescriptionUseRestrictedAdmin
        {
            get
            {
                return ResourceManager.GetString("PropertyDescriptionUseRestrictedAdmin", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string for UseRCG Description
        /// </summary>
        internal static string PropertyDescriptionUseRCG
        {
            get
            {
                return ResourceManager.GetString("PropertyDescriptionUseRCG", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connect to a Hyper-V host with enhanced mode enabled..
        /// </summary>
        internal static string PropertyDescriptionUseEnhancedMode {
            get {
                return ResourceManager.GetString("PropertyDescriptionUseEnhancedMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Feel free to enter any information you need here..
        /// </summary>
        internal static string PropertyDescriptionUser1 {
            get {
                return ResourceManager.GetString("PropertyDescriptionUser1", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter your username..
        /// </summary>
        internal static string PropertyDescriptionUserViaAPI
        {
            get
            {
                return ResourceManager.GetString("PropertyDescriptionUserViaAPI", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter your username..
        /// </summary>
        internal static string PropertyDescriptionUsername {
            get {
                return ResourceManager.GetString("PropertyDescriptionUsername", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use VM ID to connect to VM running on Hyper-V..
        /// </summary>
        internal static string PropertyDescriptionUseVmId {
            get {
                return ResourceManager.GetString("PropertyDescriptionUseVmId", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to If you want to establish a view only connection to the host select yes..
        /// </summary>
        internal static string PropertyDescriptionViewOnly {
            get {
                return ResourceManager.GetString("PropertyDescriptionViewOnly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The ID of the Hyper-V virtual machine to connect to..
        /// </summary>
        internal static string PropertyDescriptionVmId {
            get {
                return ResourceManager.GetString("PropertyDescriptionVmId", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter the proxy address to be used..
        /// </summary>
        internal static string PropertyDescriptionVNCProxyAddress {
            get {
                return ResourceManager.GetString("PropertyDescriptionVNCProxyAddress", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter your password for authenticating against the proxy..
        /// </summary>
        internal static string PropertyDescriptionVNCProxyPassword {
            get {
                return ResourceManager.GetString("PropertyDescriptionVNCProxyPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter the port the proxy server listens on..
        /// </summary>
        internal static string PropertyDescriptionVNCProxyPort {
            get {
                return ResourceManager.GetString("PropertyDescriptionVNCProxyPort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to If you use a proxy to tunnel VNC connections, select which type it is..
        /// </summary>
        internal static string PropertyDescriptionVNCProxyType {
            get {
                return ResourceManager.GetString("PropertyDescriptionVNCProxyType", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Enter your username for authenticating against the proxy..
        /// </summary>
        internal static string PropertyDescriptionVNCProxyUsername {
            get {
                return ResourceManager.GetString("PropertyDescriptionVNCProxyUsername", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Protocol.
        /// </summary>
        internal static string Protocol {
            get {
                return ResourceManager.GetString("Protocol", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Protocol Event Disconnected. Host: &quot;{1}&quot;; Protocol: &quot;{2}&quot; Message: &quot;{0}&quot;.
        /// </summary>
        internal static string ProtocolEventDisconnected {
            get {
                return ResourceManager.GetString("ProtocolEventDisconnected", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Protocol Event Disconnected failed.
        ///{0}.
        /// </summary>
        internal static string ProtocolEventDisconnectFailed {
            get {
                return ResourceManager.GetString("ProtocolEventDisconnectFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Protocol to import.
        /// </summary>
        internal static string ProtocolToImport {
            get {
                return ResourceManager.GetString("ProtocolToImport", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy.
        /// </summary>
        internal static string Proxy {
            get {
                return ResourceManager.GetString("Proxy", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy Address.
        /// </summary>
        internal static string ProxyAddress {
            get {
                return ResourceManager.GetString("ProxyAddress", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy Password.
        /// </summary>
        internal static string ProxyPassword {
            get {
                return ResourceManager.GetString("ProxyPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy Port.
        /// </summary>
        internal static string ProxyPort {
            get {
                return ResourceManager.GetString("ProxyPort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy test failed!.
        /// </summary>
        internal static string ProxyTestFailed {
            get {
                return ResourceManager.GetString("ProxyTestFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy test succeeded!.
        /// </summary>
        internal static string ProxyTestSucceeded {
            get {
                return ResourceManager.GetString("ProxyTestSucceeded", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy Type.
        /// </summary>
        internal static string ProxyType {
            get {
                return ResourceManager.GetString("ProxyType", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Proxy Username.
        /// </summary>
        internal static string ProxyUsername {
            get {
                return ResourceManager.GetString("ProxyUsername", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Dispose of Putty process failed!.
        /// </summary>
        internal static string PuttyDisposeFailed {
            get {
                return ResourceManager.GetString("PuttyDisposeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t set focus!.
        /// </summary>
        internal static string PuttyFocusFailed {
            get {
                return ResourceManager.GetString("PuttyFocusFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Putty Handle: {0}.
        /// </summary>
        internal static string PuttyHandle {
            get {
                return ResourceManager.GetString("PuttyHandle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Killing Putty Process failed!.
        /// </summary>
        internal static string PuttyKillFailed {
            get {
                return ResourceManager.GetString("PuttyKillFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Putty Resize Failed!.
        /// </summary>
        internal static string PuttyResizeFailed {
            get {
                return ResourceManager.GetString("PuttyResizeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PuTTY Saved Sessions.
        /// </summary>
        internal static string PuttySavedSessionsRootName {
            get {
                return ResourceManager.GetString("PuttySavedSessionsRootName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PuTTY Session.
        /// </summary>
        internal static string PuttySession {
            get {
                return ResourceManager.GetString("PuttySession", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to To configure PuTTY sessions click this button:.
        /// </summary>
        internal static string PuttySessionsConfig {
            get {
                return ResourceManager.GetString("PuttySessionsConfig", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PuTTY Settings.
        /// </summary>
        internal static string PuttySettings {
            get {
                return ResourceManager.GetString("PuttySettings", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show PuTTY Settings Dialog failed!.
        /// </summary>
        internal static string PuttyShowSettingsDialogFailed {
            get {
                return ResourceManager.GetString("PuttyShowSettingsDialogFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to --- PuTTY Stuff ---.
        /// </summary>
        internal static string PuttyStuff {
            get {
                return ResourceManager.GetString("PuttyStuff", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Maximum PuTTY and integrated external tools wait time:.
        /// </summary>
        internal static string PuttyTimeout {
            get {
                return ResourceManager.GetString("PuttyTimeout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PuTTY Title: {0}.
        /// </summary>
        internal static string PuttyTitle {
            get {
                return ResourceManager.GetString("PuttyTitle", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Quick: {0}.
        /// </summary>
        internal static string Quick {
            get {
                return ResourceManager.GetString("Quick", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Quick Connect.
        /// </summary>
        internal static string QuickConnect {
            get {
                return ResourceManager.GetString("QuickConnect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Quick Connect Add Failed!.
        /// </summary>
        internal static string QuickConnectAddFailed {
            get {
                return ResourceManager.GetString("QuickConnectAddFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Creating quick connect failed.
        /// </summary>
        internal static string QuickConnectFailed {
            get {
                return ResourceManager.GetString("QuickConnectFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Quick Connect Toolbar.
        /// </summary>
        internal static string QuickConnectToolbar {
            get {
                return ResourceManager.GetString("QuickConnectToolbar", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warn me only when e&amp;xiting mRemoteNG.
        /// </summary>
        internal static string RadioCloseWarnExit {
            get {
                return ResourceManager.GetString("RadioCloseWarnExit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warn me only when closing &amp;multiple connections.
        /// </summary>
        internal static string RadioCloseWarnMultiple {
            get {
                return ResourceManager.GetString("RadioCloseWarnMultiple", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do &amp;not warn me when closing connections.
        /// </summary>
        internal static string RadioCloseWarnNever {
            get {
                return ResourceManager.GetString("RadioCloseWarnNever", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RAW.
        /// </summary>
        internal static string Raw {
            get {
                return ResourceManager.GetString("Raw", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP.
        /// </summary>
        internal static string Rdp {
            get {
                return ResourceManager.GetString("Rdp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to 16777216 Colours (24-bit).
        /// </summary>
        internal static string Rdp16777216Colors {
            get {
                return ResourceManager.GetString("Rdp16777216Colors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to 256 Colours (8-bit).
        /// </summary>
        internal static string Rdp256Colors {
            get {
                return ResourceManager.GetString("Rdp256Colors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to 32768 Colours (15-bit).
        /// </summary>
        internal static string Rdp32768Colors {
            get {
                return ResourceManager.GetString("Rdp32768Colors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to 16777216 Colours (32-bit).
        /// </summary>
        internal static string Rdp4294967296Colors {
            get {
                return ResourceManager.GetString("Rdp4294967296Colors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to 65536 Colours (16-bit).
        /// </summary>
        internal static string Rdp65536Colors {
            get {
                return ResourceManager.GetString("Rdp65536Colors", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t create RDP control, please check mRemoteNG requirements..
        /// </summary>
        internal static string RdpControlCreationFailed {
            get {
                return ResourceManager.GetString("RdpControlCreationFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Disconnect failed, trying to close!.
        /// </summary>
        internal static string RdpDisconnectFailed {
            get {
                return ResourceManager.GetString("RdpDisconnectFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Internal error code 1..
        /// </summary>
        internal static string RdpErrorCode1 {
            get {
                return ResourceManager.GetString("RdpErrorCode1", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Internal error code 2..
        /// </summary>
        internal static string RdpErrorCode2 {
            get {
                return ResourceManager.GetString("RdpErrorCode2", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Internal error code 3. This is not a valid state..
        /// </summary>
        internal static string RdpErrorCode3 {
            get {
                return ResourceManager.GetString("RdpErrorCode3", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Internal error code 4..
        /// </summary>
        internal static string RdpErrorCode4 {
            get {
                return ResourceManager.GetString("RdpErrorCode4", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An unrecoverable error has occurred during client connection..
        /// </summary>
        internal static string RdpErrorConnection {
            get {
                return ResourceManager.GetString("RdpErrorConnection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to GetError failed (FatalErrors).
        /// </summary>
        internal static string RdpErrorGetFailure {
            get {
                return ResourceManager.GetString("RdpErrorGetFailure", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An out-of-memory error has occurred..
        /// </summary>
        internal static string RdpErrorOutOfMemory {
            get {
                return ResourceManager.GetString("RdpErrorOutOfMemory", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An unknown error has occurred..
        /// </summary>
        internal static string RdpErrorUnknown {
            get {
                return ResourceManager.GetString("RdpErrorUnknown", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to A window-creation error has occurred..
        /// </summary>
        internal static string RdpErrorWindowCreation {
            get {
                return ResourceManager.GetString("RdpErrorWindowCreation", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Winsock initialization error..
        /// </summary>
        internal static string RdpErrorWinsock {
            get {
                return ResourceManager.GetString("RdpErrorWinsock", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Focus failed!.
        /// </summary>
        internal static string RdpFocusFailed {
            get {
                return ResourceManager.GetString("RdpFocusFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Gateway Domain.
        /// </summary>
        internal static string RdpGatewayDomain {
            get {
                return ResourceManager.GetString("RdpGatewayDomain", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Gateway Hostname.
        /// </summary>
        internal static string RdpGatewayHostname {
            get {
                return ResourceManager.GetString("RdpGatewayHostname", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Gateway is supported..
        /// </summary>
        internal static string RdpGatewayIsSupported {
            get {
                return ResourceManager.GetString("RdpGatewayIsSupported", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Gateway is not supported!.
        /// </summary>
        internal static string RdpGatewayNotSupported {
            get {
                return ResourceManager.GetString("RdpGatewayNotSupported", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Remote Desktop Gateway Password.
        /// </summary>
        internal static string RdpGatewayPassword {
            get {
                return ResourceManager.GetString("RdpGatewayPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use Gateway.
        /// </summary>
        internal static string RdpGatewayUsageMethod {
            get {
                return ResourceManager.GetString("RdpGatewayUsageMethod", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Gateway Credentials.
        /// </summary>
        internal static string RdpGatewayUseConnectionCredentials {
            get {
                return ResourceManager.GetString("RdpGatewayUseConnectionCredentials", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Gateway Username.
        /// </summary>
        internal static string RdpGatewayUsername {
            get {
                return ResourceManager.GetString("RdpGatewayUsername", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Connection Timeout.
        /// </summary>
        internal static string RdpOverallConnectionTimeout {
            get {
                return ResourceManager.GetString("RdpOverallConnectionTimeout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Could not create RDP client. RDP protocol version {0} is not supported on this machine. Please choose an older protocol version..
        /// </summary>
        internal static string RdpProtocolVersionNotSupported {
            get {
                return ResourceManager.GetString("RdpProtocolVersionNotSupported", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP reconnection count:.
        /// </summary>
        internal static string RdpReconnectCount {
            get {
                return ResourceManager.GetString("RdpReconnectCount", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetAuthenticationLevel failed!.
        /// </summary>
        internal static string RdpSetAuthenticationLevelFailed {
            get {
                return ResourceManager.GetString("RdpSetAuthenticationLevelFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetUseConsoleSession failed!.
        /// </summary>
        internal static string RdpSetConsoleSessionFailed {
            get {
                return ResourceManager.GetString("RdpSetConsoleSessionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Setting Console switch for RDC {0}..
        /// </summary>
        internal static string RdpSetConsoleSwitch {
            get {
                return ResourceManager.GetString("RdpSetConsoleSwitch", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetCredentials failed!.
        /// </summary>
        internal static string RdpSetCredentialsFailed {
            get {
                return ResourceManager.GetString("RdpSetCredentialsFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetEventHandlers failed!.
        /// </summary>
        internal static string RdpSetEventHandlersFailed {
            get {
                return ResourceManager.GetString("RdpSetEventHandlersFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetRDGateway failed!.
        /// </summary>
        internal static string RdpSetGatewayFailed {
            get {
                return ResourceManager.GetString("RdpSetGatewayFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetPerformanceFlags failed!.
        /// </summary>
        internal static string RdpSetPerformanceFlagsFailed {
            get {
                return ResourceManager.GetString("RdpSetPerformanceFlagsFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetPort failed!.
        /// </summary>
        internal static string RdpSetPortFailed {
            get {
                return ResourceManager.GetString("RdpSetPortFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetProps failed!.
        /// </summary>
        internal static string RdpSetPropsFailed {
            get {
                return ResourceManager.GetString("RdpSetPropsFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Set Redirection Failed!.
        /// </summary>
        internal static string RdpSetRedirectionFailed {
            get {
                return ResourceManager.GetString("RdpSetRedirectionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Set Redirect Keys Failed!.
        /// </summary>
        internal static string RdpSetRedirectKeysFailed {
            get {
                return ResourceManager.GetString("RdpSetRedirectKeysFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP SetResolution failed!.
        /// </summary>
        internal static string RdpSetResolutionFailed {
            get {
                return ResourceManager.GetString("RdpSetResolutionFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Bring to this computer.
        /// </summary>
        internal static string RdpSoundBringToThisComputer {
            get {
                return ResourceManager.GetString("RdpSoundBringToThisComputer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Leave at remote computer.
        /// </summary>
        internal static string RdpSoundLeaveAtRemoteComputer {
            get {
                return ResourceManager.GetString("RdpSoundLeaveAtRemoteComputer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Alternate Shell.
        /// </summary>
        internal static string RDPStartProgram {
            get {
                return ResourceManager.GetString("RDPStartProgram", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Alternate shell working directory.
        /// </summary>
        internal static string RDPStartProgramWorkDir {
            get {
                return ResourceManager.GetString("RDPStartProgramWorkDir", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP ToggleFullscreen failed!.
        /// </summary>
        internal static string RdpToggleFullscreenFailed {
            get {
                return ResourceManager.GetString("RdpToggleFullscreenFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP ToggleSmartSize failed!.
        /// </summary>
        internal static string RdpToggleSmartSizeFailed {
            get {
                return ResourceManager.GetString("RdpToggleSmartSizeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to RDP Version.
        /// </summary>
        internal static string RdpVersion {
            get {
                return ResourceManager.GetString("RdpVersion", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Read only:.
        /// </summary>
        internal static string ReadOnly {
            get {
                return ResourceManager.GetString("ReadOnly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Reconnect.
        /// </summary>
        internal static string Reconnect {
            get {
                return ResourceManager.GetString("Reconnect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Reconnect All Connections.
        /// </summary>
        internal static string ReconnectAllConnections {
            get {
                return ResourceManager.GetString("ReconnectAllConnections", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Reconnect to previously opened sessions on startup.
        /// </summary>
        internal static string ReconnectAtStartup {
            get {
                return ResourceManager.GetString("ReconnectAtStartup", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Redirect.
        /// </summary>
        internal static string Redirect {
            get {
                return ResourceManager.GetString("Redirect", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Disk Drives.
        /// </summary>
        internal static string RedirectDrives {
            get {
                return ResourceManager.GetString("RedirectDrives", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Key Combinations.
        /// </summary>
        internal static string RedirectKeys {
            get {
                return ResourceManager.GetString("RedirectKeys", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Smart Cards.
        /// </summary>
        internal static string RedirectSmartCards {
            get {
                return ResourceManager.GetString("RedirectSmartCards", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Refresh.
        /// </summary>
        internal static string Refresh {
            get {
                return ResourceManager.GetString("Refresh", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Refresh Screen (VNC).
        /// </summary>
        internal static string RefreshScreen {
            get {
                return ResourceManager.GetString("RefreshScreen", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Release Channel.
        /// </summary>
        internal static string ReleaseChannel {
            get {
                return ResourceManager.GetString("ReleaseChannel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Stable channel includes final releases only.
        ///Preview channel includes Betas &amp; Release Candidates.
        ///Nightly Channel includes Alphas, Betas &amp; Release Candidates..
        /// </summary>
        internal static string ReleaseChannelExplanation {
            get {
                return ResourceManager.GetString("ReleaseChannelExplanation", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Released under the GNU General Public License (GPL).
        /// </summary>
        internal static string ReleasedUnderGPL {
            get {
                return ResourceManager.GetString("ReleasedUnderGPL", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Remote Desktop Services.
        /// </summary>
        internal static string RemoteDesktopServices {
            get {
                return ResourceManager.GetString("RemoteDesktopServices", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Remote file.
        /// </summary>
        internal static string RemoteFile {
            get {
                return ResourceManager.GetString("RemoteFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Remove All.
        /// </summary>
        internal static string RemoveAll {
            get {
                return ResourceManager.GetString("RemoveAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Rename.
        /// </summary>
        internal static string Rename {
            get {
                return ResourceManager.GetString("Rename", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Rename Tab.
        /// </summary>
        internal static string RenameTab {
            get {
                return ResourceManager.GetString("RenameTab", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Rendering Engine.
        /// </summary>
        internal static string RenderingEngine {
            get {
                return ResourceManager.GetString("RenderingEngine", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Report a Bug.
        /// </summary>
        internal static string ReportBug {
            get {
                return ResourceManager.GetString("ReportBug", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Reset layout.
        /// </summary>
        internal static string ResetLayout {
            get {
                return ResourceManager.GetString("ResetLayout", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Resolution.
        /// </summary>
        internal static string Resolution {
            get {
                return ResourceManager.GetString("Resolution", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Rlogin.
        /// </summary>
        internal static string Rlogin {
            get {
                return ResourceManager.GetString("Rlogin", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Run elevated.
        /// </summary>
        internal static string RunElevated {
            get {
                return ResourceManager.GetString("RunElevated", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Save.
        /// </summary>
        internal static string Save {
            get {
                return ResourceManager.GetString("Save", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Save All.
        /// </summary>
        internal static string SaveAll {
            get {
                return ResourceManager.GetString("SaveAll", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Save Connection File.
        /// </summary>
        internal static string SaveConnectionFile {
            get {
                return ResourceManager.GetString("SaveConnectionFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Save Connection File As....
        /// </summary>
        internal static string SaveConnectionFileAs {
            get {
                return ResourceManager.GetString("SaveConnectionFileAs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Save connections after every edit.
        /// </summary>
        internal static string SaveConnectionsAfterEveryEdit {
            get {
                return ResourceManager.GetString("SaveConnectionsAfterEveryEdit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Do you want to save the current connections file before loading another?.
        /// </summary>
        internal static string SaveConnectionsFileBeforeOpeningAnother {
            get {
                return ResourceManager.GetString("SaveConnectionsFileBeforeOpeningAnother", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Graphics Interchange Format File (.gif)|*.gif|Joint Photographic Experts Group File (.jpeg)|*.jpeg|Joint Photographic Experts Group File (.jpg)|*.jpg|Portable Network Graphics File (.png)|*.png.
        /// </summary>
        internal static string SaveImageFilter {
            get {
                return ResourceManager.GetString("SaveImageFilter", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Screen.
        /// </summary>
        internal static string Screen {
            get {
                return ResourceManager.GetString("Screen", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Screenshot.
        /// </summary>
        internal static string Screenshot {
            get {
                return ResourceManager.GetString("Screenshot", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Screenshots.
        /// </summary>
        internal static string Screenshots {
            get {
                return ResourceManager.GetString("Screenshots", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Search.
        /// </summary>
        internal static string SearchPrompt {
            get {
                return ResourceManager.GetString("SearchPrompt", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Seconds.
        /// </summary>
        internal static string Seconds {
            get {
                return ResourceManager.GetString("Seconds", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select a panel from the list below or click New to add a new one. Click OK to continue..
        /// </summary>
        internal static string SelectPanel {
            get {
                return ResourceManager.GetString("SelectPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Send Special Keys (VNC).
        /// </summary>
        internal static string SendSpecialKeys {
            get {
                return ResourceManager.GetString("SendSpecialKeys", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Send To....
        /// </summary>
        internal static string SendTo {
            get {
                return ResourceManager.GetString("SendTo", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Server &apos;{0}&apos; was not accessible..
        /// </summary>
        internal static string ServerNotAccessible {
            get {
                return ResourceManager.GetString("ServerNotAccessible", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Server status:.
        /// </summary>
        internal static string ServerStatus {
            get {
                return ResourceManager.GetString("ServerStatus", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Set hostname like display name when creating or renaming connections.
        /// </summary>
        internal static string SetHostnameLikeDisplayName {
            get {
                return ResourceManager.GetString("SetHostnameLikeDisplayName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Couldn&apos;t save settings or dispose SysTray Icon!.
        /// </summary>
        internal static string SettingsCouldNotBeSavedOrTrayDispose {
            get {
                return ResourceManager.GetString("SettingsCouldNotBeSavedOrTrayDispose", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show description tooltips in connection tree.
        /// </summary>
        internal static string ShowDescriptionTooltips {
            get {
                return ResourceManager.GetString("ShowDescriptionTooltips", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show full connections file path in window title.
        /// </summary>
        internal static string ShowFullConsFilePath {
            get {
                return ResourceManager.GetString("ShowFullConsFilePath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to &amp;Show Help Text.
        /// </summary>
        internal static string ShowHelpText {
            get {
                return ResourceManager.GetString("ShowHelpText", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show/Hide Menu Strip.
        /// </summary>
        internal static string ShowHideMenu {
            get {
                return ResourceManager.GetString("ShowHideMenu", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show logon information on tab names.
        /// </summary>
        internal static string ShowLogonInfoOnTabs {
            get {
                return ResourceManager.GetString("ShowLogonInfoOnTabs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show On Toolbar.
        /// </summary>
        internal static string ShowOnToolbar {
            get {
                return ResourceManager.GetString("ShowOnToolbar", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show on toolbar column.
        /// </summary>
        internal static string ShowOnToolbarColumnHeader {
            get {
                return ResourceManager.GetString("ShowOnToolbarColumnHeader", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show protocols on tab names.
        /// </summary>
        internal static string ShowProtocolOnTabs {
            get {
                return ResourceManager.GetString("ShowProtocolOnTabs", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show Text.
        /// </summary>
        internal static string ShowText {
            get {
                return ResourceManager.GetString("ShowText", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Show these message types.
        /// </summary>
        internal static string ShowTheseMessageTypes {
            get {
                return ResourceManager.GetString("ShowTheseMessageTypes", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Single click on connection opens it.
        /// </summary>
        internal static string SingleClickOnConnectionOpensIt {
            get {
                return ResourceManager.GetString("SingleClickOnConnectionOpensIt", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Single click on opened connection in Connection Tree switches to opened Connection Tab.
        /// </summary>
        internal static string SingleClickOnOpenConnectionSwitchesToIt {
            get {
                return ResourceManager.GetString("SingleClickOnOpenConnectionSwitchesToIt", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SmartCard.
        /// </summary>
        internal static string SmartCard {
            get {
                return ResourceManager.GetString("SmartCard", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SmartSize (RDP/VNC).
        /// </summary>
        internal static string SmartSize {
            get {
                return ResourceManager.GetString("SmartSize", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SmartSize Mode.
        /// </summary>
        internal static string SmartSizeMode {
            get {
                return ResourceManager.GetString("SmartSizeMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Socks 5.
        /// </summary>
        internal static string Socks5 {
            get {
                return ResourceManager.GetString("Socks5", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Sort.
        /// </summary>
        internal static string Sort {
            get {
                return ResourceManager.GetString("Sort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Ascending (A-Z).
        /// </summary>
        internal static string SortAsc {
            get {
                return ResourceManager.GetString("SortAsc", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Descending (Z-A).
        /// </summary>
        internal static string SortDesc {
            get {
                return ResourceManager.GetString("SortDesc", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Sound quality.
        /// </summary>
        internal static string SoundQuality {
            get {
                return ResourceManager.GetString("SoundQuality", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Sounds.
        /// </summary>
        internal static string Sounds {
            get {
                return ResourceManager.GetString("Sounds", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Please see Help - Getting started - SQL Configuration for more Info!.
        /// </summary>
        internal static string SQLInfo {
            get {
                return ResourceManager.GetString("SQLInfo", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SQL Server.
        /// </summary>
        internal static string SQLServer {
            get {
                return ResourceManager.GetString("SQLServer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH background transfer failed!.
        /// </summary>
        internal static string SshBackgroundTransferFailed {
            get {
                return ResourceManager.GetString("SshBackgroundTransferFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH File Transfer.
        /// </summary>
        internal static string SshFileTransfer {
            get {
                return ResourceManager.GetString("SshFileTransfer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH Options.
        /// </summary>
        internal static string SshOptions {
            get {
                return ResourceManager.GetString("SshOptions", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH transfer failed..
        /// </summary>
        internal static string SshTransferFailed {
            get {
                return ResourceManager.GetString("SshTransferFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH Tunnel.
        /// </summary>
        internal static string SshTunnel {
            get {
                return ResourceManager.GetString("SshTunnel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH Tunnel connection configuration problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. A connection with the name configured as SSH Tunnel and protocol SSH version 1 or SSH2 version 2 cannot be found in the connection tree. Clear SSH Tunnel configuration or specify existing SSH connection..
        /// </summary>
        internal static string SshTunnelConfigProblem {
            get {
                return ResourceManager.GetString("SshTunnelConfigProblem", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH tunnel connection failed. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. Putty process terminated. Check for any problems with the connection configured as SSH Tunnel..
        /// </summary>
        internal static string SshTunnelFailed {
            get {
                return ResourceManager.GetString("SshTunnelFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH tunnel configuration problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. Connection configured as SSH Tunnel found in tree, but protocol is not derived from putty. Make sure connection configured as SSH Tunnel is using SSH protocol..
        /// </summary>
        internal static string SshTunnelIsNotPutty {
            get {
                return ResourceManager.GetString("SshTunnelIsNotPutty", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH tunnel connection problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. SSH connection failed. Check for any problems with the connection configured as SSH Tunnel..
        /// </summary>
        internal static string SshTunnelNotConnected {
            get {
                return ResourceManager.GetString("SshTunnelNotConnected", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH tunnel initialization problem. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. SSH connection could not be initialized. Check for any problems with the connection configured as SSH Tunnel..
        /// </summary>
        internal static string SshTunnelNotInitialized {
            get {
                return ResourceManager.GetString("SshTunnelNotInitialized", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH tunnel connection timed out. Connection to: &quot;{0}&quot; via SSH Tunnel: &quot;{1}&quot; not possible. Local tunnel port did not become available in time. Check for any problems with the connection configured as SSH Tunnel..
        /// </summary>
        internal static string SshTunnelPortNotReadyInTime {
            get {
                return ResourceManager.GetString("SshTunnelPortNotReadyInTime", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH version 1.
        /// </summary>
        internal static string SshV1 {
            get {
                return ResourceManager.GetString("SshV1", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to SSH version 2.
        /// </summary>
        internal static string SshV2 {
            get {
                return ResourceManager.GetString("SshV2", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Stack trace.
        /// </summary>
        internal static string StackTrace {
            get {
                return ResourceManager.GetString("StackTrace", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Start Chat (VNC).
        /// </summary>
        internal static string StartChat {
            get {
                return ResourceManager.GetString("StartChat", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Start minimized.
        /// </summary>
        internal static string StartMinimized {
            get {
                return ResourceManager.GetString("StartMinimized", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Startup/Exit.
        /// </summary>
        internal static string StartupExit {
            get {
                return ResourceManager.GetString("StartupExit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Status.
        /// </summary>
        internal static string Status {
            get {
                return ResourceManager.GetString("Status", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Backup.
        /// </summary>
        internal static string strBackup {
            get {
                return ResourceManager.GetString("strBackup", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Browse....
        /// </summary>
        internal static string strBrowse {
            get {
                return ResourceManager.GetString("strBrowse", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Connection Backup Frequency.
        /// </summary>
        internal static string strConnectionBackupFrequency {
            get {
                return ResourceManager.GetString("strConnectionBackupFrequency", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Maximum number of backups.
        /// </summary>
        internal static string strConnectionsBackupMaxCount {
            get {
                return ResourceManager.GetString("strConnectionsBackupMaxCount", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Location of connection file backup.
        /// </summary>
        internal static string strConnectionsBackupPath {
            get {
                return ResourceManager.GetString("strConnectionsBackupPath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Support Forum.
        /// </summary>
        internal static string SupportForum {
            get {
                return ResourceManager.GetString("SupportForum", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Switch to Notifications panel on:.
        /// </summary>
        internal static string SwitchToErrorsAndInfos {
            get {
                return ResourceManager.GetString("SwitchToErrorsAndInfos", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Tabs &amp;&amp; Panels.
        /// </summary>
        internal static string TabsAndPanels {
            get {
                return ResourceManager.GetString("TabsAndPanels", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Security.
        /// </summary>
        internal static string TabSecurity {
            get {
                return ResourceManager.GetString("TabSecurity", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Telnet.
        /// </summary>
        internal static string Telnet {
            get {
                return ResourceManager.GetString("Telnet", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Test connection.
        /// </summary>
        internal static string TestConnection {
            get {
                return ResourceManager.GetString("TestConnection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Testing connection.
        /// </summary>
        internal static string TestingConnection {
            get {
                return ResourceManager.GetString("TestingConnection", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Test Proxy.
        /// </summary>
        internal static string TestProxy {
            get {
                return ResourceManager.GetString("TestProxy", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Test Settings.
        /// </summary>
        internal static string TestSettings {
            get {
                return ResourceManager.GetString("TestSettings", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The following:.
        /// </summary>
        internal static string TheFollowing {
            get {
                return ResourceManager.GetString("TheFollowing", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Theme.
        /// </summary>
        internal static string Theme {
            get {
                return ResourceManager.GetString("Theme", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Timeout [seconds].
        /// </summary>
        internal static string TimeoutInSeconds {
            get {
                return ResourceManager.GetString("TimeoutInSeconds", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Title.
        /// </summary>
        internal static string Title {
            get {
                return ResourceManager.GetString("Title", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Error ({0}).
        /// </summary>
        internal static string TitleError {
            get {
                return ResourceManager.GetString("TitleError", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Information ({0}).
        /// </summary>
        internal static string TitleInformation {
            get {
                return ResourceManager.GetString("TitleInformation", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG password.
        /// </summary>
        internal static string TitlePassword {
            get {
                return ResourceManager.GetString("TitlePassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG password for {0}.
        /// </summary>
        internal static string TitlePasswordWithName {
            get {
                return ResourceManager.GetString("TitlePasswordWithName", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Select Panel.
        /// </summary>
        internal static string TitleSelectPanel {
            get {
                return ResourceManager.GetString("TitleSelectPanel", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warning ({0}).
        /// </summary>
        internal static string TitleWarning {
            get {
                return ResourceManager.GetString("TitleWarning", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Track active connection in the connection tree.
        /// </summary>
        internal static string TrackActiveConnectionInConnectionTree {
            get {
                return ResourceManager.GetString("TrackActiveConnectionInConnectionTree", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Transfer.
        /// </summary>
        internal static string Transfer {
            get {
                return ResourceManager.GetString("Transfer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Transfer File (SSH).
        /// </summary>
        internal static string TransferFile {
            get {
                return ResourceManager.GetString("TransferFile", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Try to integrate.
        /// </summary>
        internal static string TryToIntegrate {
            get {
                return ResourceManager.GetString("TryToIntegrate", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Ultra VNC Repeater.
        /// </summary>
        internal static string UltraVncRepeater {
            get {
                return ResourceManager.GetString("UltraVncRepeater", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to UltraVNC SingleClick port:.
        /// </summary>
        internal static string UltraVNCSCListeningPort {
            get {
                return ResourceManager.GetString("UltraVNCSCListeningPort", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to UltraVNC SingleClick.
        /// </summary>
        internal static string UltraVNCSingleClick {
            get {
                return ResourceManager.GetString("UltraVNCSingleClick", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Uncheck the properties you want not to be saved!.
        /// </summary>
        internal static string UncheckProperties {
            get {
                return ResourceManager.GetString("UncheckProperties", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to An unhandled exception has occurred.
        /// </summary>
        internal static string UnhandledExceptionOccured {
            get {
                return ResourceManager.GetString("UnhandledExceptionOccured", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG requires an update.
        /// </summary>
        internal static string UpdateAvailable {
            get {
                return ResourceManager.GetString("UpdateAvailable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to mRemoteNG can periodically connect to the mRemoteNG website to check for updates..
        /// </summary>
        internal static string UpdateCheck {
            get {
                return ResourceManager.GetString("UpdateCheck", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The update information could not be downloaded..
        /// </summary>
        internal static string UpdateCheckCompleteFailed {
            get {
                return ResourceManager.GetString("UpdateCheckCompleteFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Download complete!
        ///mRemoteNG will now quit and begin with the installation..
        /// </summary>
        internal static string UpdateDownloadComplete {
            get {
                return ResourceManager.GetString("UpdateDownloadComplete", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The update could not be downloaded..
        /// </summary>
        internal static string UpdateDownloadCompleteFailed {
            get {
                return ResourceManager.GetString("UpdateDownloadCompleteFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The update download could not be initiated..
        /// </summary>
        internal static string UpdateDownloadFailed {
            get {
                return ResourceManager.GetString("UpdateDownloadFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Every {0} days.
        /// </summary>
        internal static string UpdateFrequencyCustom {
            get {
                return ResourceManager.GetString("UpdateFrequencyCustom", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to The change log could not be downloaded..
        /// </summary>
        internal static string UpdateGetChangeLogFailed {
            get {
                return ResourceManager.GetString("UpdateGetChangeLogFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Download Completed!.
        /// </summary>
        internal static string UpdatePortableDownloadComplete {
            get {
                return ResourceManager.GetString("UpdatePortableDownloadComplete", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Updates.
        /// </summary>
        internal static string Updates {
            get {
                return ResourceManager.GetString("Updates", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use Console Session.
        /// </summary>
        internal static string UseConsoleSession {
            get {
                return ResourceManager.GetString("UseConsoleSession", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use CredSSP.
        /// </summary>
        internal static string UseCredSsp {
            get {
                return ResourceManager.GetString("UseCredSsp", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to UseRestrictedAdmin.
        /// </summary>
        internal static string UseRestrictedAdmin
        {
            get
            {
                return ResourceManager.GetString("UseRestrictedAdmin", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to UseRestrictedAdmin.
        /// </summary>
        internal static string UseRCG
        {
            get
            {
                return ResourceManager.GetString("UseRCG", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use default.
        /// </summary>
        internal static string UseDefault {
            get {
                return ResourceManager.GetString("UseDefault", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use a different username and password.
        /// </summary>
        internal static string UseDifferentUsernameAndPassword {
            get {
                return ResourceManager.GetString("UseDifferentUsernameAndPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use enhanced mode.
        /// </summary>
        internal static string UseEnhancedMode {
            get {
                return ResourceManager.GetString("UseEnhancedMode", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to User.
        /// </summary>
        internal static string User {
            get {
                return ResourceManager.GetString("User", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to User Field.
        /// </summary>
        internal static string UserField {
            get {
                return ResourceManager.GetString("UserField", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Username.
        /// </summary>
        internal static string UserViaAPI
        {
            get
            {
                return ResourceManager.GetString("UserViaAPI", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Username.
        /// </summary>
        internal static string Username {
            get {
                return ResourceManager.GetString("Username", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use the same username and password.
        /// </summary>
        internal static string UseSameUsernameAndPassword {
            get {
                return ResourceManager.GetString("UseSameUsernameAndPassword", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use a smart card.
        /// </summary>
        internal static string UseSmartCard {
            get {
                return ResourceManager.GetString("UseSmartCard", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use SQL Server to load &amp;&amp; save connections.
        /// </summary>
        internal static string UseSQLServer {
            get {
                return ResourceManager.GetString("UseSQLServer", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Use VM ID.
        /// </summary>
        internal static string UseVmId {
            get {
                return ResourceManager.GetString("UseVmId", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Verify:.
        /// </summary>
        internal static string Verify {
            get {
                return ResourceManager.GetString("Verify", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Version.
        /// </summary>
        internal static string Version {
            get {
                return ResourceManager.GetString("Version", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to View Only.
        /// </summary>
        internal static string ViewOnly {
            get {
                return ResourceManager.GetString("ViewOnly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VM ID.
        /// </summary>
        internal static string VmId {
            get {
                return ResourceManager.GetString("VmId", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC.
        /// </summary>
        internal static string Vnc {
            get {
                return ResourceManager.GetString("Vnc", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC disconnect failed!.
        /// </summary>
        internal static string VncConnectionDisconnectFailed {
            get {
                return ResourceManager.GetString("VncConnectionDisconnectFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC Refresh Screen Failed!.
        /// </summary>
        internal static string VncRefreshFailed {
            get {
                return ResourceManager.GetString("VncRefreshFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC SendSpecialKeys failed!.
        /// </summary>
        internal static string VncSendSpecialKeysFailed {
            get {
                return ResourceManager.GetString("VncSendSpecialKeysFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC Set Event Handlers failed!.
        /// </summary>
        internal static string VncSetEventHandlersFailed {
            get {
                return ResourceManager.GetString("VncSetEventHandlersFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC Set Props Failed!.
        /// </summary>
        internal static string VncSetPropsFailed {
            get {
                return ResourceManager.GetString("VncSetPropsFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC Toggle SmartSize Failed!.
        /// </summary>
        internal static string VncToggleSmartSizeFailed {
            get {
                return ResourceManager.GetString("VncToggleSmartSizeFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to VNC Toggle ViewOnly Failed!.
        /// </summary>
        internal static string VncToggleViewOnlyFailed {
            get {
                return ResourceManager.GetString("VncToggleViewOnlyFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Wait for exit.
        /// </summary>
        internal static string WaitForExit {
            get {
                return ResourceManager.GetString("WaitForExit", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warn me if authentication fails.
        /// </summary>
        internal static string WarnIfAuthFails {
            get {
                return ResourceManager.GetString("WarnIfAuthFails", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Warnings.
        /// </summary>
        internal static string Warnings {
            get {
                return ResourceManager.GetString("Warnings", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Website.
        /// </summary>
        internal static string Website {
            get {
                return ResourceManager.GetString("Website", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to WebView2 creation failed with exception.
        /// </summary>
        internal static string WebView2InitializationFailed {
            get {
                return ResourceManager.GetString("WebView2InitializationFailed", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Weekly.
        /// </summary>
        internal static string Weekly {
            get {
                return ResourceManager.GetString("Weekly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Windows.
        /// </summary>
        internal static string Windows {
            get {
                return ResourceManager.GetString("Windows", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Working directory.
        /// </summary>
        internal static string WorkingDirColumnHeader {
            get {
                return ResourceManager.GetString("WorkingDirColumnHeader", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Working directory:.
        /// </summary>
        internal static string WorkingDirectory {
            get {
                return ResourceManager.GetString("WorkingDirectory", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Yes.
        /// </summary>
        internal static string Yes {
            get {
                return ResourceManager.GetString("Yes", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Yes.
        /// </summary>
        internal static string ACLPermissionsHidden
        {
            get
            {
                return ResourceManager.GetString("ACLPermissionsHidden", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Yes.
        /// </summary>
        internal static string ACLPermissionsReadOnly
        {
            get
            {
                return ResourceManager.GetString("ACLPermissionsReadOnly", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to Yes.
        /// </summary>
        internal static string ACLPermissionsWriteAllow
        {
            get
            {
                return ResourceManager.GetString("ACLPermissionsWriteAllow", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to lblACL.
        /// </summary>
        internal static string lblACL
        {
            get
            {
                return ResourceManager.GetString("lblACL", resourceCulture);
            }
        }
        /// <summary>
        ///   Looks up a localized string similar to lblBackupEnable.
        /// </summary>
        internal static string lblBackupEnable
        {
            get
            {
                return ResourceManager.GetString("lblBackupEnable", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to lblBackupType.
        /// </summary>
        internal static string lblBackupType
        {
            get
            {
                return ResourceManager.GetString("lblBackupType", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to lblConnectionsBackupPath.
        /// </summary>
        internal static string lblConnectionsBackupFrequency
        {
            get
            {
                return ResourceManager.GetString("lblConnectionsBackupFrequency", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to lblConnectionsBackupMaxCount.
        /// </summary>
        internal static string lblConnectionsBackupMaxCount
        {
            get
            {
                return ResourceManager.GetString("lblConnectionsBackupMaxCount", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to lblBackupNameFormat.
        /// </summary>
        internal static string lblBackupNameFormat
        {
            get
            {
                return ResourceManager.GetString("lblBackupNameFormat", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to lblConnectionsBackupPath.
        /// </summary>
        internal static string lblConnectionsBackupPath
        {
            get
            {
                return ResourceManager.GetString("lblConnectionsBackupPath", resourceCulture);
            }
        }

        /// <summary>
        ///   Looks up a localized string similar to PageСontrolInOptionsMenu.
        /// </summary>
        internal static string PageСontrolInOptionsMenu
        {
            get
            {
                return ResourceManager.GetString("PageСontrolInOptionsMenu", resourceCulture);
            }
        }
        /// <summary>
        ///   Looks up a localized string similar to ShowForUser.
        /// </summary>
        internal static string ShowForUser
        {
            get
            {
                return ResourceManager.GetString("ShowForUser", resourceCulture);
            }
        }
    }
}