en.json
293 KB
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
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Desktop.hintBtnHome": "Show main window",
"Common.Controllers.Desktop.itemCreateFromTemplate": "Create from template",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning",
"Common.Controllers.ExternalLinks.textAddExternalData": "The link to an external source has been added. You can update such links in the Data tab.",
"Common.Controllers.ExternalLinks.textDontUpdate": "Don't Update",
"Common.Controllers.ExternalLinks.textUpdate": "Update",
"Common.Controllers.ExternalLinks.txtErrorExternalLink": "Error: updating is failed",
"Common.Controllers.ExternalLinks.warnUpdateExternalData": "This workbook contains links to one or more external sources that could be unsafe.<br>If you trust the links, update them to get the latest data.",
"Common.Controllers.ExternalLinks.warnUpdateExternalDataDE": "This document contains links to one or more external sources that could be unsafe.<br>If you trust the links, update them to get the latest data.",
"Common.Controllers.ExternalLinks.warnUpdateExternalDataPE": "This presentation contains links to one or more external sources that could be unsafe.<br>If you trust the links, update them to get the latest data.",
"Common.Controllers.ExternalMergeEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalMergeEditor.textClose": "Close",
"Common.Controllers.ExternalMergeEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalMergeEditor.warningTitle": "Warning",
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalOleEditor.textClose": "Close",
"Common.Controllers.ExternalOleEditor.warningText": "The object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalOleEditor.warningTitle": "Warning",
"Common.Controllers.History.notcriticalErrorTitle": "Warning",
"Common.Controllers.History.txtErrorLoadHistory": "History loading failed",
"Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
"Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros",
"Common.Controllers.Plugins.textPluginsSuccessfullyInstalled": "Plugins are successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "<b>{0}</b> is successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins",
"Common.Controllers.Plugins.textRunPlugin": "Run plugin",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "In order to compare documents all the tracked changes in them will be considered to have been accepted. Do you want to continue?",
"Common.Controllers.ReviewChanges.textAtLeast": "at least",
"Common.Controllers.ReviewChanges.textAuto": "auto",
"Common.Controllers.ReviewChanges.textBaseline": "Baseline",
"Common.Controllers.ReviewChanges.textBold": "Bold",
"Common.Controllers.ReviewChanges.textBreakBefore": "Page break before",
"Common.Controllers.ReviewChanges.textCaps": "All caps",
"Common.Controllers.ReviewChanges.textCenter": "Align center",
"Common.Controllers.ReviewChanges.textChar": "Character level",
"Common.Controllers.ReviewChanges.textChart": "Chart",
"Common.Controllers.ReviewChanges.textColor": "Font color",
"Common.Controllers.ReviewChanges.textContextual": "Don't add interval between paragraphs of the same style",
"Common.Controllers.ReviewChanges.textDeleted": "<b>Deleted:</b>",
"Common.Controllers.ReviewChanges.textDStrikeout": "Double strikethrough",
"Common.Controllers.ReviewChanges.textEquation": "Equation",
"Common.Controllers.ReviewChanges.textExact": "exactly",
"Common.Controllers.ReviewChanges.textFirstLine": "First line",
"Common.Controllers.ReviewChanges.textFontSize": "Font size",
"Common.Controllers.ReviewChanges.textFormatted": "Formatted",
"Common.Controllers.ReviewChanges.textHighlight": "Highlight color",
"Common.Controllers.ReviewChanges.textImage": "Image",
"Common.Controllers.ReviewChanges.textIndentLeft": "Indent left",
"Common.Controllers.ReviewChanges.textIndentRight": "Indent right",
"Common.Controllers.ReviewChanges.textInserted": "<b>Inserted:</b>",
"Common.Controllers.ReviewChanges.textItalic": "Italic",
"Common.Controllers.ReviewChanges.textJustify": "Align justified",
"Common.Controllers.ReviewChanges.textKeepLines": "Keep lines together",
"Common.Controllers.ReviewChanges.textKeepNext": "Keep with next",
"Common.Controllers.ReviewChanges.textLeft": "Align left",
"Common.Controllers.ReviewChanges.textLineSpacing": "Line spacing: ",
"Common.Controllers.ReviewChanges.textMultiple": "multiple",
"Common.Controllers.ReviewChanges.textNoBreakBefore": "No page break before",
"Common.Controllers.ReviewChanges.textNoContextual": "Add interval between paragraphs of the same style",
"Common.Controllers.ReviewChanges.textNoKeepLines": "Don't keep lines together",
"Common.Controllers.ReviewChanges.textNoKeepNext": "Don't keep with next",
"Common.Controllers.ReviewChanges.textNot": "Not ",
"Common.Controllers.ReviewChanges.textNoWidow": "No widow control",
"Common.Controllers.ReviewChanges.textNum": "Change numbering",
"Common.Controllers.ReviewChanges.textOff": "{0} is no longer using Track Changes.",
"Common.Controllers.ReviewChanges.textOffGlobal": "{0} disabled Track Changes for everyone.",
"Common.Controllers.ReviewChanges.textOn": "{0} is now using Track Changes.",
"Common.Controllers.ReviewChanges.textOnGlobal": "{0} enabled Track Changes for everyone.",
"Common.Controllers.ReviewChanges.textParaDeleted": "<b>Paragraph deleted</b>",
"Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph formatted",
"Common.Controllers.ReviewChanges.textParaInserted": "<b>Paragraph inserted</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromDown": "<b>Moved down:</b>",
"Common.Controllers.ReviewChanges.textParaMoveFromUp": "<b>Moved up:</b>",
"Common.Controllers.ReviewChanges.textParaMoveTo": "<b>Moved:</b>",
"Common.Controllers.ReviewChanges.textPosition": "Position",
"Common.Controllers.ReviewChanges.textRight": "Align right",
"Common.Controllers.ReviewChanges.textShape": "Shape",
"Common.Controllers.ReviewChanges.textShd": "Background color",
"Common.Controllers.ReviewChanges.textShow": "Show changes at",
"Common.Controllers.ReviewChanges.textSmallCaps": "Small caps",
"Common.Controllers.ReviewChanges.textSpacing": "Spacing",
"Common.Controllers.ReviewChanges.textSpacingAfter": "Spacing after",
"Common.Controllers.ReviewChanges.textSpacingBefore": "Spacing before",
"Common.Controllers.ReviewChanges.textStrikeout": "Strikethrough",
"Common.Controllers.ReviewChanges.textSubScript": "Subscript",
"Common.Controllers.ReviewChanges.textSuperScript": "Superscript",
"Common.Controllers.ReviewChanges.textTableChanged": "<b>Table settings changed</b>",
"Common.Controllers.ReviewChanges.textTableRowsAdd": "<b>Table rows added</b>",
"Common.Controllers.ReviewChanges.textTableRowsDel": "<b>Table rows deleted</b>",
"Common.Controllers.ReviewChanges.textTabs": "Change tabs",
"Common.Controllers.ReviewChanges.textTitleComparison": "Comparison settings",
"Common.Controllers.ReviewChanges.textUnderline": "Underline",
"Common.Controllers.ReviewChanges.textUrl": "Paste a document URL",
"Common.Controllers.ReviewChanges.textWidow": "Widow control",
"Common.Controllers.ReviewChanges.textWord": "Word level",
"Common.Controllers.Shortcuts.txtDescriptionAddNewRow": "Add a new row at the bottom of the table.",
"Common.Controllers.Shortcuts.txtDescriptionApplyHeading1": "Apply the style of the heading 1 to the selected text fragment.",
"Common.Controllers.Shortcuts.txtDescriptionApplyHeading2": "Apply the style of the heading 2 to the selected text fragment.",
"Common.Controllers.Shortcuts.txtDescriptionApplyHeading3": "Apply the style of the heading 3 to the selected text fragment.",
"Common.Controllers.Shortcuts.txtDescriptionApplyListBullet": "Create an unordered bulleted list from the selected text fragment, or start a new one.",
"Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown": "Use the keyboard arrow to move the selected object by a big step down.",
"Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft": "Use the keyboard arrow to move the selected object by a big step to the left.",
"Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight": "Use the keyboard arrow to move the selected object by a big step to the right.",
"Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp": "Use the keyboard arrow to move the selected object by a big step up.",
"Common.Controllers.Shortcuts.txtDescriptionBold": "Make the font of the selected text fragment darker and heavier than normal.",
"Common.Controllers.Shortcuts.txtDescriptionCenterPara": "Switch a paragraph between centered and left-aligned.",
"Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption": "Choose the next combo box option in the form.",
"Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption": "Choose the previous combo box option in the form.",
"Common.Controllers.Shortcuts.txtDescriptionCloseFile": "Close the current document window.",
"Common.Controllers.Shortcuts.txtDescriptionCloseMenu": "Close a menu or modal window. Reset pop-ups and balloons with comments and review changes. Reset drawing and erasing table mode. Reset text drag-n-drop. Reset marker selection mode. Reset format painter mode. Deselect shapes. Reset adding shapes mode. Exit from the header/footer. Exit from filling in forms.",
"Common.Controllers.Shortcuts.txtDescriptionCopy": "Send the selected text fragment to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program.",
"Common.Controllers.Shortcuts.txtDescriptionCopyFormat": "Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same document.",
"Common.Controllers.Shortcuts.txtDescriptionCopyrightSign": "Insert a copyright symbol within the current document and to the right of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionCut": "Delete the selected text fragment and send it to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program.",
"Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize": "Decrease the size of the font for the selected text fragment 1 point.",
"Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar": "Delete one character to the left of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord": "Delete one word/selection/graphical object to the left of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar": "Delete one character to the right of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord": "Delete one word/selection/graphical object to the right of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionEditChart": "When the chart title is selected, if the title is empty, move the cursor to the beginning of the line, otherwise select the text.",
"Common.Controllers.Shortcuts.txtDescriptionEditRedo": "Repeat the latest undone action.",
"Common.Controllers.Shortcuts.txtDescriptionEditSelectAll": "Select all the document text with tables and images.",
"Common.Controllers.Shortcuts.txtDescriptionEditShape": "When the shape is selected, if it does not contain content, create content and move the cursor to the beginning of the line. If the content is empty, move the cursor to it, otherwise select the entire content.",
"Common.Controllers.Shortcuts.txtDescriptionEditUndo": "Reverse the latest performed action.",
"Common.Controllers.Shortcuts.txtDescriptionEmDash": "Insert an em dash within the current document and to the right of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionEnDash": "Insert an en dash within the current document and to the right of the cursor.",
"Common.Controllers.Shortcuts.txtDescriptionEndParagraph": "End the current paragraph and start a new one.",
"Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell": "Start a new paragraph within a cell.",
"Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder": "Add a new placeholder to the equation argument.",
"Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft": "Change the alignment level of the operator to the left (for the second line of the equation with a forced break).",
"Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight": "Change the alignment level of the operator to the right (for the second line of the equation with a forced break).",
"Common.Controllers.Shortcuts.txtDescriptionEuroSign": "Insert the Euro sign at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis": "Insert the ellipsis sign at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize": "Increase the size of the font for the selected text fragment 1 point.",
"Common.Controllers.Shortcuts.txtDescriptionIndent": "Indent a paragraph from the left incrementally.",
"Common.Controllers.Shortcuts.txtDescriptionInsertColumnBreak": "Add a column break.",
"Common.Controllers.Shortcuts.txtDescriptionInsertEndnoteNow": "Insert an endnote.",
"Common.Controllers.Shortcuts.txtDescriptionInsertEquation": "Insert an equation at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionInsertFootnoteNow": "Insert a footnote.",
"Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink": "Insert a hyperlink which can be used to go to a web address.",
"Common.Controllers.Shortcuts.txtDescriptionInsertLineBreak": "Add a line break without starting a new paragraph.",
"Common.Controllers.Shortcuts.txtDescriptionInsertLineBreakMultilineForm": "Add a line break in the multiline form.",
"Common.Controllers.Shortcuts.txtDescriptionInsertPageBreak": "Insert a page break at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionInsertPageNumber": "Add the current page number at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionInsertTab": "Add the tab character to a paragraph (if the cursor is not at the beginning of a paragraph).",
"Common.Controllers.Shortcuts.txtDescriptionInsertTableBreak": "Insert a table break within the table.",
"Common.Controllers.Shortcuts.txtDescriptionItalic": "Make the font of the selected text fragment italicized and slightly slanted.",
"Common.Controllers.Shortcuts.txtDescriptionJustifyPara": "Switch a paragraph between justified and left-aligned.",
"Common.Controllers.Shortcuts.txtDescriptionLeftPara": "Align a paragraph left.",
"Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectDown": "Hold down the specified key and use the keyboard arrow to move the selected object down by one pixel at a time.",
"Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectLeft": "Hold down the specified key and use the keyboard arrow to move the selected object to the left by one pixel at a time.",
"Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight": "Hold down the specified key and use the keyboard arrow to move the selected object to the right by one pixel at a time.",
"Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp": "Hold down the specified key and use the keyboard arrow to move the selected object up by one pixel at a time.",
"Common.Controllers.Shortcuts.txtDescriptionMixedIndent": "Increase the indent for the selected paragraphs.",
"Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent": "Decrease the indent for the selected paragraphs.",
"Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject": "Move focus to the next object after the currently selected one.",
"Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject": "Move focus to the previous object before the currently selected one.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine": "Move the cursor one line down.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToEndDocument": "Put the cursor to the very end of the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToEndLine": "Put the cursor to the end of the currently edited line.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToEndWord": "Move the cursor one word to the right.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToLeftChar": "Move the cursor one character to the left.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeader": "Move to the lower header (if the cursor is in the header/footer).",
"Common.Controllers.Shortcuts.txtDescriptionMoveToLowerHeaderFooter": "Move to the lower header/footer (if the cursor is in the header/footer).",
"Common.Controllers.Shortcuts.txtDescriptionMoveToNextCell": "Go to the next cell in a table row.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToNextForm": "Move to the next form.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToNextPage": "Go to the next page in the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToNextRow": "Go to the next row in a table.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousCell": "Go to the previous cell in a table row.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousForm": "Move to the previous form.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousPage": "Go to the previous page in the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToPreviousRow": "Go to the previous row in a table.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToRightChar": "Move the cursor one character to the right.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToStartDocument": "Put the cursor to the very beginning of the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToStartLine": "Put the cursor to the beginning of the currently edited line.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToStartNextPage": "Put the cursor to the very beginning of the page which follows the currently edited one.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToStartPreviousPage": "Put the cursor to the very beginning of the page which precedes the currently edited one.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToStartWord": "Move the cursor to the beginning of a word or one word to the left.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToUpLine": "Move the cursor one line up.",
"Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeader": "Move to the upper header (if the cursor is in the header/footer).",
"Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter": "Move to the upper header/footer (if the cursor is in the header/footer).",
"Common.Controllers.Shortcuts.txtDescriptionNextFileTab": "Switch to the next file tab in Desktop Editors or browser tab in Online Editors.",
"Common.Controllers.Shortcuts.txtDescriptionNextModalControl": "Navigate between controls to give focus to the next control in modal dialogues.",
"Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen": "Create a hyphen between characters, which cannot be used to start a new line.",
"Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace": "Create a space between characters which cannot be used to start a new line.",
"Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel": "Open the Chat panel in the Online Editors and send a message.",
"Common.Controllers.Shortcuts.txtDescriptionOpenCommentField": "Open a data entry field where you can add the text of your comment.",
"Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel": "Open the Comments panel to add your own comment or reply to other users' comments.",
"Common.Controllers.Shortcuts.txtDescriptionOpenContextMenu": "Open the selected element contextual menu.",
"Common.Controllers.Shortcuts.txtDescriptionOpenExistingFile": "Open the standard dialog box that allows selecting an existing file. If you select the file in this dialog box and click Open, the file will be opened in a new tab or window of Desktop Editors.",
"Common.Controllers.Shortcuts.txtDescriptionOpenFilePanel": "Open the File panel to save, download, print the current document, view its info, create a new document or open an existing one, access the Document Editor Help Center or advanced settings.",
"Common.Controllers.Shortcuts.txtDescriptionOpenFindAndReplaceMenu": "Open the Find and Replace menu (panel) with the replacement field to replace one or more occurrences of the found characters.",
"Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog": "Open the Find dialog window to start searching for a character/word/phrase in the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu": "Open the Document Editor Help menu.",
"Common.Controllers.Shortcuts.txtDescriptionPaste": "Insert the previously copied text fragment from the computer clipboard memory to the current cursor position. The text can be previously copied from the same document, from another document, or from some other program.",
"Common.Controllers.Shortcuts.txtDescriptionPasteFormat": "Apply the previously copied formatting to the text in the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat": "Insert the previously copied text fragment from the computer clipboard memory to the current cursor position without preserving its original formatting. The text can be previously copied from the same document, from another document, or from some other program.",
"Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab": "Switch to the previous file tab in Desktop Editors or browser tab in Online Editors.",
"Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl": "Navigate between controls to give focus to the previous control in modal dialogues.",
"Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint": "Print the document with one of the available printers or save it as a file.",
"Common.Controllers.Shortcuts.txtDescriptionRegisteredSign": "Insert the registered trademark sign at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol": "Replace the selected Unicode code with a symbol.",
"Common.Controllers.Shortcuts.txtDescriptionResetChar": "Clear formatting of the selected text fragment.",
"Common.Controllers.Shortcuts.txtDescriptionRightPara": "Switch a paragraph between right-aligned and left-aligned.",
"Common.Controllers.Shortcuts.txtDescriptionSave": "Save all the changes to the document currently edited with the Document Editor. The active file will be saved with its current file name, location, and file format.",
"Common.Controllers.Shortcuts.txtDescriptionSaveAs": "Open the Download as... panel to save the currently edited document to the hard disk drive of your computer in one of the supported formats.",
"Common.Controllers.Shortcuts.txtDescriptionScrollDown": "Scroll the document approximately one visible page down.",
"Common.Controllers.Shortcuts.txtDescriptionScrollUp": "Scroll the document approximately one visible page up.",
"Common.Controllers.Shortcuts.txtDescriptionSelectLeftChar": "Select one character to the left of the cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionSelectLeftWord": "Select a text fragment from the cursor to the beginning of a word.",
"Common.Controllers.Shortcuts.txtDescriptionSelectLineDown": "Move the cursor one line down, selecting all symbols between the previous and current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionSelectLineUp": "Move the cursor one line up, selecting all symbols between the previous and current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionSelectPageDown": "Select the page part from the cursor position to the lower part of the screen.",
"Common.Controllers.Shortcuts.txtDescriptionSelectPageUp": "Select the page part from the cursor position to the upper part of the screen.",
"Common.Controllers.Shortcuts.txtDescriptionSelectRightChar": "Select one character to the right of the cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionSelectRightWord": "Select a text fragment from the cursor to the end of a word.",
"Common.Controllers.Shortcuts.txtDescriptionSelectToBeginNextPage": "Select a text fragment from the cursor to the beginning of the next page.",
"Common.Controllers.Shortcuts.txtDescriptionSelectToBeginPreviousPage": "Select a text fragment from the cursor to the beginning of the previous page.",
"Common.Controllers.Shortcuts.txtDescriptionSelectToEndDocument": "Select a text fragment from the cursor to the end of the document.",
"Common.Controllers.Shortcuts.txtDescriptionSelectToEndLine": "Select a text fragment from the cursor to the end of the current line.",
"Common.Controllers.Shortcuts.txtDescriptionSelectToStartDocument": "Select a text fragment from the cursor to the beginning of the document.",
"Common.Controllers.Shortcuts.txtDescriptionSelectToStartLine": "Select a text fragment from the cursor to the beginning of the current line.",
"Common.Controllers.Shortcuts.txtDescriptionShowAll": "Show or hide the display of nonprinting characters.",
"Common.Controllers.Shortcuts.txtDescriptionSoftHyphen": "Insert the soft hyphen sign at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepSourceFormat": "Keep the source formatting of the copied text.",
"Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly": "Paste the text without its original formatting.",
"Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable": "Paste the copied table as a nested table into the selected cell of the existing table.",
"Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells": "Replace the contents of the existing table with the copied data.",
"Common.Controllers.Shortcuts.txtDescriptionSpeechWorker": "Enables/disables the transmission of actions performed in the application for screen readers.",
"Common.Controllers.Shortcuts.txtDescriptionStartIndent": "Increase the list/indent level (with the cursor at the beginning of a paragraph).",
"Common.Controllers.Shortcuts.txtDescriptionStartUnIndent": "Decrease the list/indent level (with the cursor at the beginning of a paragraph).",
"Common.Controllers.Shortcuts.txtDescriptionStrikeout": "Make the selected text fragment struck out with a line going through the letters.",
"Common.Controllers.Shortcuts.txtDescriptionSubscript": "Make the selected text fragment smaller and place it to the lower part of the text line, e.g. as in chemical formulas.",
"Common.Controllers.Shortcuts.txtDescriptionSuperscript": "Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions.",
"Common.Controllers.Shortcuts.txtDescriptionTrademarkSign": "Insert the trademark sign at the current cursor position.",
"Common.Controllers.Shortcuts.txtDescriptionUnderline": "Make the selected text fragment underlined with a line going below the letters.",
"Common.Controllers.Shortcuts.txtDescriptionUnIndent": "Remove a paragraph indent from the left incrementally.",
"Common.Controllers.Shortcuts.txtDescriptionUpdateFields": "Update fields (e.g., Table of Contents).",
"Common.Controllers.Shortcuts.txtDescriptionVisitHyperlink": "Visit a hyperlink (with the cursor in the hyperlink).",
"Common.Controllers.Shortcuts.txtDescriptionZoom100": "Reset the 'Zoom' parameter of the current document to a default 100%.",
"Common.Controllers.Shortcuts.txtDescriptionZoomIn": "Zoom in the currently edited document.",
"Common.Controllers.Shortcuts.txtDescriptionZoomOut": "Zoom out the currently edited document.",
"Common.Controllers.Shortcuts.txtLabelAddNewRow": "AddNewRow",
"Common.Controllers.Shortcuts.txtLabelApplyHeading1": "ApplyHeading1",
"Common.Controllers.Shortcuts.txtLabelApplyHeading2": "ApplyHeading2",
"Common.Controllers.Shortcuts.txtLabelApplyHeading3": "ApplyHeading3",
"Common.Controllers.Shortcuts.txtLabelApplyListBullet": "ApplyListBullet",
"Common.Controllers.Shortcuts.txtLabelBigMoveObjectDown": "BigMoveObjectDown",
"Common.Controllers.Shortcuts.txtLabelBigMoveObjectLeft": "BigMoveObjectLeft",
"Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight": "BigMoveObjectRight",
"Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp": "BigMoveObjectUp",
"Common.Controllers.Shortcuts.txtLabelBold": "Bold",
"Common.Controllers.Shortcuts.txtLabelCenterPara": "CenterPara",
"Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption": "ChooseNextComboBoxOption",
"Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption": "ChoosePreviousComboBoxOption",
"Common.Controllers.Shortcuts.txtLabelCloseFile": "CloseFile",
"Common.Controllers.Shortcuts.txtLabelCloseMenu": "CloseMenu",
"Common.Controllers.Shortcuts.txtLabelCopy": "Copy",
"Common.Controllers.Shortcuts.txtLabelCopyFormat": "CopyFormat",
"Common.Controllers.Shortcuts.txtLabelCopyrightSign": "CopyrightSign",
"Common.Controllers.Shortcuts.txtLabelCut": "Cut",
"Common.Controllers.Shortcuts.txtLabelDecreaseFontSize": "DecreaseFontSize",
"Common.Controllers.Shortcuts.txtLabelDeleteLeftChar": "DeleteLeftChar",
"Common.Controllers.Shortcuts.txtLabelDeleteLeftWord": "DeleteLeftWord",
"Common.Controllers.Shortcuts.txtLabelDeleteRightChar": "DeleteRightChar",
"Common.Controllers.Shortcuts.txtLabelDeleteRightWord": "DeleteRightWord",
"Common.Controllers.Shortcuts.txtLabelEditChart": "EditChart",
"Common.Controllers.Shortcuts.txtLabelEditRedo": "EditRedo",
"Common.Controllers.Shortcuts.txtLabelEditSelectAll": "EditSelectAll",
"Common.Controllers.Shortcuts.txtLabelEditShape": "EditShape",
"Common.Controllers.Shortcuts.txtLabelEditUndo": "EditUndo",
"Common.Controllers.Shortcuts.txtLabelEmDash": "EmDash",
"Common.Controllers.Shortcuts.txtLabelEnDash": "EnDash",
"Common.Controllers.Shortcuts.txtLabelEndParagraph": "EndParagraph",
"Common.Controllers.Shortcuts.txtLabelEndParagraphCell": "EndParagraphCell",
"Common.Controllers.Shortcuts.txtLabelEquationAddPlaceholder": "EquationAddPlaceholder",
"Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentLeft": "EquationChangeAlignmentLeft",
"Common.Controllers.Shortcuts.txtLabelEquationChangeAlignmentRight": "EquationChangeAlignmentRight",
"Common.Controllers.Shortcuts.txtLabelEuroSign": "EuroSign",
"Common.Controllers.Shortcuts.txtLabelHorizontalEllipsis": "HorizontalEllipsis",
"Common.Controllers.Shortcuts.txtLabelIncreaseFontSize": "IncreaseFontSize",
"Common.Controllers.Shortcuts.txtLabelIndent": "Indent",
"Common.Controllers.Shortcuts.txtLabelInsertColumnBreak": "InsertColumnBreak",
"Common.Controllers.Shortcuts.txtLabelInsertEndnoteNow": "InsertEndnoteNow",
"Common.Controllers.Shortcuts.txtLabelInsertEquation": "InsertEquation",
"Common.Controllers.Shortcuts.txtLabelInsertFootnoteNow": "InsertFootnoteNow",
"Common.Controllers.Shortcuts.txtLabelInsertHyperlink": "InsertHyperlink",
"Common.Controllers.Shortcuts.txtLabelInsertLineBreak": "InsertLineBreak",
"Common.Controllers.Shortcuts.txtLabelInsertLineBreakMultilineForm": "InsertLineBreakMultilineForm",
"Common.Controllers.Shortcuts.txtLabelInsertPageBreak": "InsertPageBreak",
"Common.Controllers.Shortcuts.txtLabelInsertPageNumber": "InsertPageNumber",
"Common.Controllers.Shortcuts.txtLabelInsertTab": "InsertTab",
"Common.Controllers.Shortcuts.txtLabelInsertTableBreak": "InsertTableBreak",
"Common.Controllers.Shortcuts.txtLabelItalic": "Italic",
"Common.Controllers.Shortcuts.txtLabelJustifyPara": "JustifyPara",
"Common.Controllers.Shortcuts.txtLabelLeftPara": "LeftPara",
"Common.Controllers.Shortcuts.txtLabelLittleMoveObjectDown": "LittleMoveObjectDown",
"Common.Controllers.Shortcuts.txtLabelLittleMoveObjectLeft": "LittleMoveObjectLeft",
"Common.Controllers.Shortcuts.txtLabelLittleMoveObjectRight": "LittleMoveObjectRight",
"Common.Controllers.Shortcuts.txtLabelLittleMoveObjectUp": "LittleMoveObjectUp",
"Common.Controllers.Shortcuts.txtLabelMixedIndent": "MixedIndent",
"Common.Controllers.Shortcuts.txtLabelMixedUnIndent": "MixedUnIndent",
"Common.Controllers.Shortcuts.txtLabelMoveFocusToNextObject": "MoveFocusToNextObject",
"Common.Controllers.Shortcuts.txtLabelMoveFocusToPreviousObject": "MoveFocusToPreviousObject",
"Common.Controllers.Shortcuts.txtLabelMoveToDownLine": "MoveToDownLine",
"Common.Controllers.Shortcuts.txtLabelMoveToEndDocument": "MoveToEndDocument",
"Common.Controllers.Shortcuts.txtLabelMoveToEndLine": "MoveToEndLine",
"Common.Controllers.Shortcuts.txtLabelMoveToEndWord": "MoveToEndWord",
"Common.Controllers.Shortcuts.txtLabelMoveToLeftChar": "MoveToLeftChar",
"Common.Controllers.Shortcuts.txtLabelMoveToLowerHeader": "MoveToLowerHeader",
"Common.Controllers.Shortcuts.txtLabelMoveToLowerHeaderFooter": "MoveToLowerHeaderFooter",
"Common.Controllers.Shortcuts.txtLabelMoveToNextCell": "MoveToNextCell",
"Common.Controllers.Shortcuts.txtLabelMoveToNextForm": "MoveToNextForm",
"Common.Controllers.Shortcuts.txtLabelMoveToNextPage": "MoveToNextPage",
"Common.Controllers.Shortcuts.txtLabelMoveToNextRow": "MoveToNextRow",
"Common.Controllers.Shortcuts.txtLabelMoveToPreviousCell": "MoveToPreviousCell",
"Common.Controllers.Shortcuts.txtLabelMoveToPreviousForm": "MoveToPreviousForm",
"Common.Controllers.Shortcuts.txtLabelMoveToPreviousPage": "MoveToPreviousPage",
"Common.Controllers.Shortcuts.txtLabelMoveToPreviousRow": "MoveToPreviousRow",
"Common.Controllers.Shortcuts.txtLabelMoveToRightChar": "MoveToRightChar",
"Common.Controllers.Shortcuts.txtLabelMoveToStartDocument": "MoveToStartDocument",
"Common.Controllers.Shortcuts.txtLabelMoveToStartLine": "MoveToStartLine",
"Common.Controllers.Shortcuts.txtLabelMoveToStartNextPage": "MoveToStartNextPage",
"Common.Controllers.Shortcuts.txtLabelMoveToStartPreviousPage": "MoveToStartPreviousPage",
"Common.Controllers.Shortcuts.txtLabelMoveToStartWord": "MoveToStartWord",
"Common.Controllers.Shortcuts.txtLabelMoveToUpLine": "MoveToUpLine",
"Common.Controllers.Shortcuts.txtLabelMoveToUpperHeader": "MoveToUpperHeader",
"Common.Controllers.Shortcuts.txtLabelMoveToUpperHeaderFooter": "MoveToUpperHeaderFooter",
"Common.Controllers.Shortcuts.txtLabelNextFileTab": "NextFileTab",
"Common.Controllers.Shortcuts.txtLabelNextModalControl": "NextModalControl",
"Common.Controllers.Shortcuts.txtLabelNonBreakingHyphen": "NonBreakingHyphen",
"Common.Controllers.Shortcuts.txtLabelNonBreakingSpace": "NonBreakingSpace",
"Common.Controllers.Shortcuts.txtLabelOpenChatPanel": "OpenChatPanel",
"Common.Controllers.Shortcuts.txtLabelOpenCommentField": "OpenCommentField",
"Common.Controllers.Shortcuts.txtLabelOpenCommentsPanel": "OpenCommentsPanel",
"Common.Controllers.Shortcuts.txtLabelOpenContextMenu": "OpenContextMenu",
"Common.Controllers.Shortcuts.txtLabelOpenExistingFile": "OpenExistingFile",
"Common.Controllers.Shortcuts.txtLabelOpenFilePanel": "OpenFilePanel",
"Common.Controllers.Shortcuts.txtLabelOpenFindAndReplaceMenu": "OpenFindAndReplaceMenu",
"Common.Controllers.Shortcuts.txtLabelOpenFindDialog": "OpenFindDialog",
"Common.Controllers.Shortcuts.txtLabelOpenHelpMenu": "OpenHelpMenu",
"Common.Controllers.Shortcuts.txtLabelPaste": "Paste",
"Common.Controllers.Shortcuts.txtLabelPasteFormat": "PasteFormat",
"Common.Controllers.Shortcuts.txtLabelPasteTextWithoutFormat": "PasteTextWithoutFormat",
"Common.Controllers.Shortcuts.txtLabelPreviousFileTab": "PreviousFileTab",
"Common.Controllers.Shortcuts.txtLabelPreviousModalControl": "PreviousModalControl",
"Common.Controllers.Shortcuts.txtLabelPrintPreviewAndPrint": "PrintPreviewAndPrint",
"Common.Controllers.Shortcuts.txtLabelRegisteredSign": "RegisteredSign",
"Common.Controllers.Shortcuts.txtLabelReplaceUnicodeToSymbol": "ReplaceUnicodeToSymbol",
"Common.Controllers.Shortcuts.txtLabelResetChar": "ResetChar",
"Common.Controllers.Shortcuts.txtLabelRightPara": "RightPara",
"Common.Controllers.Shortcuts.txtLabelSave": "Save",
"Common.Controllers.Shortcuts.txtLabelSaveAs": "SaveAs",
"Common.Controllers.Shortcuts.txtLabelScrollDown": "ScrollDown",
"Common.Controllers.Shortcuts.txtLabelScrollUp": "ScrollUp",
"Common.Controllers.Shortcuts.txtLabelSelectLeftChar": "SelectLeftChar",
"Common.Controllers.Shortcuts.txtLabelSelectLeftWord": "SelectLeftWord",
"Common.Controllers.Shortcuts.txtLabelSelectLineDown": "SelectLineDown",
"Common.Controllers.Shortcuts.txtLabelSelectLineUp": "SelectLineUp",
"Common.Controllers.Shortcuts.txtLabelSelectPageDown": "SelectPageDown",
"Common.Controllers.Shortcuts.txtLabelSelectPageUp": "SelectPageUp",
"Common.Controllers.Shortcuts.txtLabelSelectRightChar": "SelectRightChar",
"Common.Controllers.Shortcuts.txtLabelSelectRightWord": "SelectRightWord",
"Common.Controllers.Shortcuts.txtLabelSelectToBeginNextPage": "SelectToBeginNextPage",
"Common.Controllers.Shortcuts.txtLabelSelectToBeginPreviousPage": "SelectToBeginPreviousPage",
"Common.Controllers.Shortcuts.txtLabelSelectToEndDocument": "SelectToEndDocument",
"Common.Controllers.Shortcuts.txtLabelSelectToEndLine": "SelectToEndLine",
"Common.Controllers.Shortcuts.txtLabelSelectToStartDocument": "SelectToStartDocument",
"Common.Controllers.Shortcuts.txtLabelSelectToStartLine": "SelectToStartLine",
"Common.Controllers.Shortcuts.txtLabelShowAll": "ShowAll",
"Common.Controllers.Shortcuts.txtLabelSoftHyphen": "SoftHyphen",
"Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepSourceFormat": "SpecialOptionsKeepSourceFormat",
"Common.Controllers.Shortcuts.txtLabelSpecialOptionsKeepTextOnly": "SpecialOptionsKeepTextOnly",
"Common.Controllers.Shortcuts.txtLabelSpecialOptionsNestTable": "SpecialOptionsNestTable",
"Common.Controllers.Shortcuts.txtLabelSpecialOptionsOverwriteCells": "SpecialOptionsOverwriteCells",
"Common.Controllers.Shortcuts.txtLabelSpeechWorker": "SpeechWorker",
"Common.Controllers.Shortcuts.txtLabelStartIndent": "StartIndent",
"Common.Controllers.Shortcuts.txtLabelStartUnIndent": "StartUnIndent",
"Common.Controllers.Shortcuts.txtLabelStrikeout": "Strikeout",
"Common.Controllers.Shortcuts.txtLabelSubscript": "Subscript",
"Common.Controllers.Shortcuts.txtLabelSuperscript": "Superscript",
"Common.Controllers.Shortcuts.txtLabelTrademarkSign": "TrademarkSign",
"Common.Controllers.Shortcuts.txtLabelUnderline": "Underline",
"Common.Controllers.Shortcuts.txtLabelUnIndent": "UnIndent",
"Common.Controllers.Shortcuts.txtLabelUpdateFields": "UpdateFields",
"Common.Controllers.Shortcuts.txtLabelVisitHyperlink": "VisitHyperlink",
"Common.Controllers.Shortcuts.txtLabelZoom100": "Zoom100",
"Common.Controllers.Shortcuts.txtLabelZoomIn": "ZoomIn",
"Common.Controllers.Shortcuts.txtLabelZoomOut": "ZoomOut",
"Common.define.chartData.textArea": "Area",
"Common.define.chartData.textAreaStacked": "Stacked area",
"Common.define.chartData.textAreaStackedPer": "100% Stacked area",
"Common.define.chartData.textBar": "Bar",
"Common.define.chartData.textBarNormal": "Clustered column",
"Common.define.chartData.textBarNormal3d": "3-D Clustered column",
"Common.define.chartData.textBarNormal3dPerspective": "3-D column",
"Common.define.chartData.textBarStacked": "Stacked column",
"Common.define.chartData.textBarStacked3d": "3-D Stacked column",
"Common.define.chartData.textBarStackedPer": "100% Stacked column",
"Common.define.chartData.textBarStackedPer3d": "3-D 100% Stacked column",
"Common.define.chartData.textCharts": "Charts",
"Common.define.chartData.textColumn": "Column",
"Common.define.chartData.textCombo": "Combo",
"Common.define.chartData.textComboAreaBar": "Stacked area - clustered column",
"Common.define.chartData.textComboBarLine": "Clustered column - line",
"Common.define.chartData.textComboBarLineSecondary": "Clustered column - line on secondary axis",
"Common.define.chartData.textComboCustom": "Custom combination",
"Common.define.chartData.textDoughnut": "Doughnut",
"Common.define.chartData.textHBarNormal": "Clustered bar",
"Common.define.chartData.textHBarNormal3d": "3-D Clustered bar",
"Common.define.chartData.textHBarStacked": "Stacked bar",
"Common.define.chartData.textHBarStacked3d": "3-D Stacked bar",
"Common.define.chartData.textHBarStackedPer": "100% Stacked bar",
"Common.define.chartData.textHBarStackedPer3d": "3-D 100% Stacked bar",
"Common.define.chartData.textLine": "Line",
"Common.define.chartData.textLine3d": "3-D line",
"Common.define.chartData.textLineMarker": "Line with markers",
"Common.define.chartData.textLineStacked": "Stacked line",
"Common.define.chartData.textLineStackedMarker": "Stacked line with markers",
"Common.define.chartData.textLineStackedPer": "100% Stacked line",
"Common.define.chartData.textLineStackedPerMarker": "100% Stacked line with markers",
"Common.define.chartData.textPie": "Pie",
"Common.define.chartData.textPie3d": "3-D pie",
"Common.define.chartData.textPoint": "XY (Scatter)",
"Common.define.chartData.textRadar": "Radar",
"Common.define.chartData.textRadarFilled": "Filled radar",
"Common.define.chartData.textRadarMarker": "Radar with markers",
"Common.define.chartData.textScatter": "Scatter",
"Common.define.chartData.textScatterLine": "Scatter with straight lines",
"Common.define.chartData.textScatterLineMarker": "Scatter with straight lines and markers",
"Common.define.chartData.textScatterSmooth": "Scatter with smooth lines",
"Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers",
"Common.define.chartData.textStock": "Stock",
"Common.define.chartData.textSurface": "Surface",
"Common.define.smartArt.textAccentedPicture": "Accented picture",
"Common.define.smartArt.textAccentProcess": "Accent process",
"Common.define.smartArt.textAlternatingFlow": "Alternating flow",
"Common.define.smartArt.textAlternatingHexagons": "Alternating Hexagons",
"Common.define.smartArt.textAlternatingPictureBlocks": "Alternating picture blocks",
"Common.define.smartArt.textAlternatingPictureCircles": "Alternating picture circles",
"Common.define.smartArt.textArchitectureLayout": "Architecture layout",
"Common.define.smartArt.textArrowRibbon": "Arrow ribbon",
"Common.define.smartArt.textAscendingPictureAccentProcess": "Ascending picture accent process",
"Common.define.smartArt.textBalance": "Balance",
"Common.define.smartArt.textBasicBendingProcess": "Basic bending process",
"Common.define.smartArt.textBasicBlockList": "Basic block list",
"Common.define.smartArt.textBasicChevronProcess": "Basic chevron process",
"Common.define.smartArt.textBasicCycle": "Basic cycle",
"Common.define.smartArt.textBasicMatrix": "Basic matrix",
"Common.define.smartArt.textBasicPie": "Basic pie",
"Common.define.smartArt.textBasicProcess": "Basic process",
"Common.define.smartArt.textBasicPyramid": "Basic pyramid",
"Common.define.smartArt.textBasicRadial": "Basic radial",
"Common.define.smartArt.textBasicTarget": "Basic target",
"Common.define.smartArt.textBasicTimeline": "Basic timeline",
"Common.define.smartArt.textBasicVenn": "Basic Venn",
"Common.define.smartArt.textBendingPictureAccentList": "Bending picture accent list",
"Common.define.smartArt.textBendingPictureBlocks": "Bending picture blocks",
"Common.define.smartArt.textBendingPictureCaption": "Bending picture caption",
"Common.define.smartArt.textBendingPictureCaptionList": "Bending picture caption list",
"Common.define.smartArt.textBendingPictureSemiTranparentText": "Bending picture semi-transparent text",
"Common.define.smartArt.textBlockCycle": "Block cycle",
"Common.define.smartArt.textBubblePictureList": "Bubble picture list",
"Common.define.smartArt.textCaptionedPictures": "Captioned pictures",
"Common.define.smartArt.textChevronAccentProcess": "Chevron accent process",
"Common.define.smartArt.textChevronList": "Chevron list",
"Common.define.smartArt.textCircleAccentTimeline": "Circle accent timeline",
"Common.define.smartArt.textCircleArrowProcess": "Circle arrow process",
"Common.define.smartArt.textCirclePictureHierarchy": "Circle picture hierarchy",
"Common.define.smartArt.textCircleProcess": "Circle process",
"Common.define.smartArt.textCircleRelationship": "Circle relationship",
"Common.define.smartArt.textCircularBendingProcess": "Circular bending process",
"Common.define.smartArt.textCircularPictureCallout": "Circular picture callout",
"Common.define.smartArt.textClosedChevronProcess": "Closed chevron process",
"Common.define.smartArt.textContinuousArrowProcess": "Continuous arrow process",
"Common.define.smartArt.textContinuousBlockProcess": "Continuous block process",
"Common.define.smartArt.textContinuousCycle": "Continuous cycle",
"Common.define.smartArt.textContinuousPictureList": "Continuous picture list",
"Common.define.smartArt.textConvergingArrows": "Converging arrows",
"Common.define.smartArt.textConvergingRadial": "Converging radial",
"Common.define.smartArt.textConvergingText": "Converging text",
"Common.define.smartArt.textCounterbalanceArrows": "Counterbalance arrows",
"Common.define.smartArt.textCycle": "Cycle",
"Common.define.smartArt.textCycleMatrix": "Cycle matrix",
"Common.define.smartArt.textDescendingBlockList": "Descending block list",
"Common.define.smartArt.textDescendingProcess": "Descending process",
"Common.define.smartArt.textDetailedProcess": "Detailed process",
"Common.define.smartArt.textDivergingArrows": "Diverging arrows",
"Common.define.smartArt.textDivergingRadial": "Diverging radial",
"Common.define.smartArt.textEquation": "Equation",
"Common.define.smartArt.textFramedTextPicture": "Framed text picture",
"Common.define.smartArt.textFunnel": "Funnel",
"Common.define.smartArt.textGear": "Gear",
"Common.define.smartArt.textGridMatrix": "Grid matrix",
"Common.define.smartArt.textGroupedList": "Grouped list",
"Common.define.smartArt.textHalfCircleOrganizationChart": "Half circle organization chart",
"Common.define.smartArt.textHexagonCluster": "Hexagon cluster",
"Common.define.smartArt.textHexagonRadial": "Hexagon Radial",
"Common.define.smartArt.textHierarchy": "Hierarchy",
"Common.define.smartArt.textHierarchyList": "Hierarchy list",
"Common.define.smartArt.textHorizontalBulletList": "Horizontal bullet list",
"Common.define.smartArt.textHorizontalHierarchy": "Horizontal hierarchy",
"Common.define.smartArt.textHorizontalLabeledHierarchy": "Horizontal labeled hierarchy",
"Common.define.smartArt.textHorizontalMultiLevelHierarchy": "Horizontal multi-level hierarchy",
"Common.define.smartArt.textHorizontalOrganizationChart": "Horizontal organization chart",
"Common.define.smartArt.textHorizontalPictureList": "Horizontal picture list",
"Common.define.smartArt.textIncreasingArrowProcess": "Increasing arrow process",
"Common.define.smartArt.textIncreasingCircleProcess": "Increasing circle process",
"Common.define.smartArt.textInterconnectedBlockProcess": "Interconnected block process",
"Common.define.smartArt.textInterconnectedRings": "Interconnected rings",
"Common.define.smartArt.textInvertedPyramid": "Inverted pyramid",
"Common.define.smartArt.textLabeledHierarchy": "Labeled hierarchy",
"Common.define.smartArt.textLinearVenn": "Linear Venn",
"Common.define.smartArt.textLinedList": "Lined List",
"Common.define.smartArt.textList": "List",
"Common.define.smartArt.textMatrix": "Matrix",
"Common.define.smartArt.textMultidirectionalCycle": "Multidirectional cycle",
"Common.define.smartArt.textNameAndTitleOrganizationChart": "Name and title organization chart",
"Common.define.smartArt.textNestedTarget": "Nested target",
"Common.define.smartArt.textNondirectionalCycle": "Nondirectional cycle",
"Common.define.smartArt.textOpposingArrows": "Opposing arrows",
"Common.define.smartArt.textOpposingIdeas": "Opposing ideas",
"Common.define.smartArt.textOrganizationChart": "Organization сhart",
"Common.define.smartArt.textOther": "Other",
"Common.define.smartArt.textPhasedProcess": "Phased process",
"Common.define.smartArt.textPicture": "Picture",
"Common.define.smartArt.textPictureAccentBlocks": "Picture accent blocks",
"Common.define.smartArt.textPictureAccentList": "Picture accent list",
"Common.define.smartArt.textPictureAccentProcess": "Picture accent process",
"Common.define.smartArt.textPictureCaptionList": "Picture caption list",
"Common.define.smartArt.textPictureFrame": "PictureFrame",
"Common.define.smartArt.textPictureGrid": "Picture grid",
"Common.define.smartArt.textPictureLineup": "Picture lineup",
"Common.define.smartArt.textPictureOrganizationChart": "Picture organization chart",
"Common.define.smartArt.textPictureStrips": "Picture strips",
"Common.define.smartArt.textPieProcess": "Pie process",
"Common.define.smartArt.textPlusAndMinus": "Plus and minus",
"Common.define.smartArt.textProcess": "Process",
"Common.define.smartArt.textProcessArrows": "Process arrows",
"Common.define.smartArt.textProcessList": "Process list",
"Common.define.smartArt.textPyramid": "Pyramid",
"Common.define.smartArt.textPyramidList": "Pyramid list",
"Common.define.smartArt.textRadialCluster": "Radial cluster",
"Common.define.smartArt.textRadialCycle": "Radial cycle",
"Common.define.smartArt.textRadialList": "Radial list",
"Common.define.smartArt.textRadialPictureList": "Radial picture list",
"Common.define.smartArt.textRadialVenn": "Radial Venn",
"Common.define.smartArt.textRandomToResultProcess": "Random to result process",
"Common.define.smartArt.textRelationship": "Relationship",
"Common.define.smartArt.textRepeatingBendingProcess": "Repeating bending process",
"Common.define.smartArt.textReverseList": "Reverse list",
"Common.define.smartArt.textSegmentedCycle": "Segmented cycle",
"Common.define.smartArt.textSegmentedProcess": "Segmented process",
"Common.define.smartArt.textSegmentedPyramid": "Segmented pyramid",
"Common.define.smartArt.textSnapshotPictureList": "Snapshot picture list",
"Common.define.smartArt.textSpiralPicture": "Spiral Picture",
"Common.define.smartArt.textSquareAccentList": "Square accent list",
"Common.define.smartArt.textStackedList": "Stacked list",
"Common.define.smartArt.textStackedVenn": "Stacked Venn",
"Common.define.smartArt.textStaggeredProcess": "Staggered process",
"Common.define.smartArt.textStepDownProcess": "Step down process",
"Common.define.smartArt.textStepUpProcess": "Step up process",
"Common.define.smartArt.textSubStepProcess": "Sub-step process",
"Common.define.smartArt.textTabbedArc": "Tabbed Arc",
"Common.define.smartArt.textTableHierarchy": "Table hierarchy",
"Common.define.smartArt.textTableList": "Table list",
"Common.define.smartArt.textTabList": "Tab List",
"Common.define.smartArt.textTargetList": "Target list",
"Common.define.smartArt.textTextCycle": "Text cycle",
"Common.define.smartArt.textThemePictureAccent": "Theme picture accent",
"Common.define.smartArt.textThemePictureAlternatingAccent": "Theme picture alternating accent",
"Common.define.smartArt.textThemePictureGrid": "Theme picture grid",
"Common.define.smartArt.textTitledMatrix": "Titled matrix",
"Common.define.smartArt.textTitledPictureAccentList": "Titled picture accent list",
"Common.define.smartArt.textTitledPictureBlocks": "Titled picture blocks",
"Common.define.smartArt.textTitlePictureLineup": "Title picture lineup",
"Common.define.smartArt.textTrapezoidList": "Trapezoid list",
"Common.define.smartArt.textUpwardArrow": "Upward arrow",
"Common.define.smartArt.textVaryingWidthList": "Varying width list",
"Common.define.smartArt.textVerticalAccentList": "Vertical accent list",
"Common.define.smartArt.textVerticalArrowList": "Vertical arrow list",
"Common.define.smartArt.textVerticalBendingProcess": "Vertical bending process",
"Common.define.smartArt.textVerticalBlockList": "Vertical block list",
"Common.define.smartArt.textVerticalBoxList": "Vertical box list",
"Common.define.smartArt.textVerticalBracketList": "Vertical bracket list",
"Common.define.smartArt.textVerticalBulletList": "Vertical bullet list",
"Common.define.smartArt.textVerticalChevronList": "Vertical chevron list",
"Common.define.smartArt.textVerticalCircleList": "Vertical circle list",
"Common.define.smartArt.textVerticalCurvedList": "Vertical curved list",
"Common.define.smartArt.textVerticalEquation": "Vertical equation",
"Common.define.smartArt.textVerticalPictureAccentList": "Vertical picture accent list",
"Common.define.smartArt.textVerticalPictureList": "Vertical picture list",
"Common.define.smartArt.textVerticalProcess": "Vertical process",
"Common.Translation.textMoreButton": "More",
"Common.Translation.tipFileLocked": "Document is locked for editing. You can make changes and save it as local copy later.",
"Common.Translation.tipFileReadOnly": "The file is read-only. To keep your changes, save the file with a new name or in a different location.",
"Common.Translation.warnFileLocked": "You can't edit this file because it's being edited in another app.",
"Common.Translation.warnFileLockedBtnEdit": "Create a copy",
"Common.Translation.warnFileLockedBtnView": "Open for viewing",
"Common.UI.ButtonColored.textAutoColor": "Automatic",
"Common.UI.ButtonColored.textEyedropper": "Eyedropper",
"Common.UI.ButtonColored.textNewColor": "More colors",
"Common.UI.Calendar.textApril": "April",
"Common.UI.Calendar.textAugust": "August",
"Common.UI.Calendar.textDecember": "December",
"Common.UI.Calendar.textFebruary": "February",
"Common.UI.Calendar.textJanuary": "January",
"Common.UI.Calendar.textJuly": "July",
"Common.UI.Calendar.textJune": "June",
"Common.UI.Calendar.textMarch": "March",
"Common.UI.Calendar.textMay": "May",
"Common.UI.Calendar.textMonths": "Months",
"Common.UI.Calendar.textNovember": "November",
"Common.UI.Calendar.textOctober": "October",
"Common.UI.Calendar.textSeptember": "September",
"Common.UI.Calendar.textShortApril": "Apr",
"Common.UI.Calendar.textShortAugust": "Aug",
"Common.UI.Calendar.textShortDecember": "Dec",
"Common.UI.Calendar.textShortFebruary": "Feb",
"Common.UI.Calendar.textShortFriday": "Fr",
"Common.UI.Calendar.textShortJanuary": "Jan",
"Common.UI.Calendar.textShortJuly": "Jul",
"Common.UI.Calendar.textShortJune": "Jun",
"Common.UI.Calendar.textShortMarch": "Mar",
"Common.UI.Calendar.textShortMay": "May",
"Common.UI.Calendar.textShortMonday": "Mo",
"Common.UI.Calendar.textShortNovember": "Nov",
"Common.UI.Calendar.textShortOctober": "Oct",
"Common.UI.Calendar.textShortSaturday": "Sa",
"Common.UI.Calendar.textShortSeptember": "Sep",
"Common.UI.Calendar.textShortSunday": "Su",
"Common.UI.Calendar.textShortThursday": "Th",
"Common.UI.Calendar.textShortTuesday": "Tu",
"Common.UI.Calendar.textShortWednesday": "We",
"Common.UI.Calendar.textYears": "Years",
"Common.UI.ComboBorderSize.txtNoBorders": "No borders",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders",
"Common.UI.ComboDataView.emptyComboText": "No styles",
"Common.UI.ExtendedColorDialog.addButtonText": "Add",
"Common.UI.ExtendedColorDialog.textCurrent": "Current",
"Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.<br>Please enter a value between 000000 and FFFFFF.",
"Common.UI.ExtendedColorDialog.textNew": "New",
"Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.<br>Please enter a numeric value between 0 and 255.",
"Common.UI.HSBColorPicker.textNoColor": "No color",
"Common.UI.InputField.txtEmpty": "This field is required",
"Common.UI.InputFieldBtnCalendar.textDate": "Select date",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Hide password",
"Common.UI.InputFieldBtnPassword.textHintHold": "Press and hold to show password",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Show password",
"Common.UI.SearchBar.textFind": "Find",
"Common.UI.SearchBar.tipCloseSearch": "Close find",
"Common.UI.SearchBar.tipNextResult": "Next result",
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Open advanced settings",
"Common.UI.SearchBar.tipPreviousResult": "Previous result",
"Common.UI.SearchDialog.textHighlight": "Highlight results",
"Common.UI.SearchDialog.textMatchCase": "Case sensitive",
"Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text",
"Common.UI.SearchDialog.textSearchStart": "Enter your text here",
"Common.UI.SearchDialog.textTitle": "Find and replace",
"Common.UI.SearchDialog.textTitle2": "Find",
"Common.UI.SearchDialog.textWholeWords": "Whole words only",
"Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace",
"Common.UI.SearchDialog.txtBtnReplace": "Replace",
"Common.UI.SearchDialog.txtBtnReplaceAll": "Replace all",
"Common.UI.SynchronizeTip.textDontShow": "Don't show this message again",
"Common.UI.SynchronizeTip.textGotIt": "Got it",
"Common.UI.SynchronizeTip.textNew": "New",
"Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.<br>Please click to save your changes and reload the updates.",
"Common.UI.ThemeColorPalette.textRecentColors": "Recent colors",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard colors",
"Common.UI.ThemeColorPalette.textThemeColors": "Theme colors",
"Common.UI.ThemeColorPalette.textTransparent": "Transparent",
"Common.UI.Themes.txtThemeClassicLight": "Classic Light",
"Common.UI.Themes.txtThemeContrastDark": "Contrast Dark",
"Common.UI.Themes.txtThemeDark": "Dark",
"Common.UI.Themes.txtThemeGray": "Gray",
"Common.UI.Themes.txtThemeLight": "Light",
"Common.UI.Themes.txtThemeModernDark": "Modern Dark",
"Common.UI.Themes.txtThemeModernLight": "Modern Light",
"Common.UI.Themes.txtThemeSystem": "Same as system",
"Common.UI.Window.cancelButtonText": "Cancel",
"Common.UI.Window.closeButtonText": "Close",
"Common.UI.Window.noButtonText": "No",
"Common.UI.Window.okButtonText": "OK",
"Common.UI.Window.textConfirmation": "Confirmation",
"Common.UI.Window.textDontShow": "Don't show this message again",
"Common.UI.Window.textError": "Error",
"Common.UI.Window.textInformation": "Information",
"Common.UI.Window.textWarning": "Warning",
"Common.UI.Window.yesButtonText": "Yes",
"Common.Utils.Metric.txtCm": "cm",
"Common.Utils.Metric.txtPt": "pt",
"Common.Utils.String.textAlt": "Alt",
"Common.Utils.String.textComma": ",",
"Common.Utils.String.textCtrl": "Ctrl",
"Common.Utils.String.textShift": "Shift",
"Common.Utils.ThemeColor.txtaccent": "Accent",
"Common.Utils.ThemeColor.txtAqua": "Aqua",
"Common.Utils.ThemeColor.txtbackground": "Background",
"Common.Utils.ThemeColor.txtBlack": "Black",
"Common.Utils.ThemeColor.txtBlue": "Blue",
"Common.Utils.ThemeColor.txtBrightGreen": "Bright green",
"Common.Utils.ThemeColor.txtBrown": "Brown",
"Common.Utils.ThemeColor.txtDarkBlue": "Dark blue",
"Common.Utils.ThemeColor.txtDarker": "Darker",
"Common.Utils.ThemeColor.txtDarkGray": "Dark gray",
"Common.Utils.ThemeColor.txtDarkGreen": "Dark green",
"Common.Utils.ThemeColor.txtDarkPurple": "Dark purple",
"Common.Utils.ThemeColor.txtDarkRed": "Dark red",
"Common.Utils.ThemeColor.txtDarkTeal": "Dark teal",
"Common.Utils.ThemeColor.txtDarkYellow": "Dark yellow",
"Common.Utils.ThemeColor.txtGold": "Gold",
"Common.Utils.ThemeColor.txtGray": "Gray",
"Common.Utils.ThemeColor.txtGreen": "Green",
"Common.Utils.ThemeColor.txtIndigo": "Indigo",
"Common.Utils.ThemeColor.txtLavender": "Lavender",
"Common.Utils.ThemeColor.txtLightBlue": "Light blue",
"Common.Utils.ThemeColor.txtLighter": "Lighter",
"Common.Utils.ThemeColor.txtLightGray": "Light gray",
"Common.Utils.ThemeColor.txtLightGreen": "Light green",
"Common.Utils.ThemeColor.txtLightOrange": "Light orange",
"Common.Utils.ThemeColor.txtLightYellow": "Light yellow",
"Common.Utils.ThemeColor.txtOrange": "Orange",
"Common.Utils.ThemeColor.txtPink": "Pink",
"Common.Utils.ThemeColor.txtPurple": "Purple",
"Common.Utils.ThemeColor.txtRed": "Red",
"Common.Utils.ThemeColor.txtRose": "Rose",
"Common.Utils.ThemeColor.txtSkyBlue": "Sky blue",
"Common.Utils.ThemeColor.txtTeal": "Teal",
"Common.Utils.ThemeColor.txttext": "Text",
"Common.Utils.ThemeColor.txtTurquosie": "Turquoise",
"Common.Utils.ThemeColor.txtViolet": "Violet",
"Common.Utils.ThemeColor.txtWhite": "White",
"Common.Utils.ThemeColor.txtYellow": "Yellow",
"Common.Views.About.txtAddress": "address: ",
"Common.Views.About.txtLicensee": "LICENSEE",
"Common.Views.About.txtLicensor": "LICENSOR",
"Common.Views.About.txtMail": "email: ",
"Common.Views.About.txtPoweredBy": "Powered by",
"Common.Views.About.txtTel": "tel.: ",
"Common.Views.About.txtVersion": "Version ",
"Common.Views.AutoCorrectDialog.textAdd": "Add",
"Common.Views.AutoCorrectDialog.textApplyText": "Apply as you type",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "Text AutoCorrect",
"Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat as you type",
"Common.Views.AutoCorrectDialog.textBulleted": "Automatic bulleted lists",
"Common.Views.AutoCorrectDialog.textBy": "By",
"Common.Views.AutoCorrectDialog.textDelete": "Delete",
"Common.Views.AutoCorrectDialog.textDoubleSpaces": "Add period with double-space",
"Common.Views.AutoCorrectDialog.textFLCells": "Capitalize first letter of table cells",
"Common.Views.AutoCorrectDialog.textFLDont": "Don`t capitalize after",
"Common.Views.AutoCorrectDialog.textFLSentence": "Capitalize first letter of sentences",
"Common.Views.AutoCorrectDialog.textForLangFL": "Exceptions for the language:",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks",
"Common.Views.AutoCorrectDialog.textHyphens": "Hyphens (--) with dash (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists",
"Common.Views.AutoCorrectDialog.textQuotes": "\"Straight quotes\" with \"smart quotes\"",
"Common.Views.AutoCorrectDialog.textRecognized": "Recognized functions",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.",
"Common.Views.AutoCorrectDialog.textReplace": "Replace",
"Common.Views.AutoCorrectDialog.textReplaceText": "Replace as you type",
"Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type",
"Common.Views.AutoCorrectDialog.textReset": "Reset",
"Common.Views.AutoCorrectDialog.textResetAll": "Reset to default",
"Common.Views.AutoCorrectDialog.textRestore": "Restore",
"Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect",
"Common.Views.AutoCorrectDialog.textWarnAddFL": "Exceptions must contain only the letters, uppercase or lowercase.",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "Recognized functions must contain only the letters A through Z, uppercase or lowercase.",
"Common.Views.AutoCorrectDialog.textWarnResetFL": "Any exceptions you added will be removed and the removed ones will be restored. Do you want to continue?",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Any expression you added will be removed and the removed ones will be restored. Do you want to continue?",
"Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?",
"Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?",
"Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?",
"Common.Views.Chat.textChat": "Chat",
"Common.Views.Chat.textClosePanel": "Close chat",
"Common.Views.Chat.textEnterMessage": "Enter your message here",
"Common.Views.Chat.textSend": "Send",
"Common.Views.Comments.mniAuthorAsc": "Author A to Z",
"Common.Views.Comments.mniAuthorDesc": "Author Z to A",
"Common.Views.Comments.mniDateAsc": "Oldest",
"Common.Views.Comments.mniDateDesc": "Newest",
"Common.Views.Comments.mniFilterComments": "Show comments",
"Common.Views.Comments.mniFilterGroups": "Filter by group",
"Common.Views.Comments.mniPositionAsc": "From top",
"Common.Views.Comments.mniPositionDesc": "From bottom",
"Common.Views.Comments.textAdd": "Add",
"Common.Views.Comments.textAddComment": "Add comment",
"Common.Views.Comments.textAddCommentToDoc": "Add comment to document",
"Common.Views.Comments.textAddReply": "Add reply",
"Common.Views.Comments.textAll": "All",
"Common.Views.Comments.textAnonym": "Guest",
"Common.Views.Comments.textCancel": "Cancel",
"Common.Views.Comments.textClose": "Close",
"Common.Views.Comments.textClosePanel": "Close comments",
"Common.Views.Comments.textComment": "Comment",
"Common.Views.Comments.textComments": "Comments",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Enter your comment here",
"Common.Views.Comments.textHintAddComment": "Add comment",
"Common.Views.Comments.textOpen": "Open",
"Common.Views.Comments.textOpenAgain": "Open again",
"Common.Views.Comments.textReply": "Reply",
"Common.Views.Comments.textResolve": "Resolve",
"Common.Views.Comments.textResolved": "Resolved",
"Common.Views.Comments.textSort": "Sort comments",
"Common.Views.Comments.textSortFilter": "Sort and filter comments",
"Common.Views.Comments.textSortFilterMore": "Sort, filter and more",
"Common.Views.Comments.textSortMore": "Sort and more",
"Common.Views.Comments.textViewResolved": "You have no permission to reopen the comment",
"Common.Views.Comments.txtEmpty": "There are no comments in the document.",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
"Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.<br><br>To copy or paste to or from applications outside the editor tab use the following keyboard combinations:",
"Common.Views.CopyWarningDialog.textTitle": "Copy, cut and paste actions",
"Common.Views.CopyWarningDialog.textToCopy": "for Copy",
"Common.Views.CopyWarningDialog.textToCut": "for Cut",
"Common.Views.CopyWarningDialog.textToPaste": "for Paste",
"Common.Views.CustomizeQuickAccessDialog.textDownload": "Download",
"Common.Views.CustomizeQuickAccessDialog.textMsg": "Check the commands that will be displayed on the Quick Access Toolbar",
"Common.Views.CustomizeQuickAccessDialog.textPrint": "Print",
"Common.Views.CustomizeQuickAccessDialog.textQuickPrint": "Quick Print",
"Common.Views.CustomizeQuickAccessDialog.textRedo": "Redo",
"Common.Views.CustomizeQuickAccessDialog.textSave": "Save",
"Common.Views.CustomizeQuickAccessDialog.textTitle": "Customize quick access",
"Common.Views.CustomizeQuickAccessDialog.textUndo": "Undo",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...",
"Common.Views.DocumentAccessDialog.textTitle": "Sharing settings",
"Common.Views.DocumentPropertyDialog.errorDate": "You can choose a value from the calendar to store the value as Date.<br>If you enter a value manually, it will be stored as Text.",
"Common.Views.DocumentPropertyDialog.txtPropertyBooleanFalse": "No",
"Common.Views.DocumentPropertyDialog.txtPropertyBooleanTrue": "Yes",
"Common.Views.DocumentPropertyDialog.txtPropertyTitleBlankError": "Property should have a title",
"Common.Views.DocumentPropertyDialog.txtPropertyTitleLabel": "Title",
"Common.Views.DocumentPropertyDialog.txtPropertyTypeBoolean": "\"Yes\" or \"No\"",
"Common.Views.DocumentPropertyDialog.txtPropertyTypeDate": "Date",
"Common.Views.DocumentPropertyDialog.txtPropertyTypeLabel": "Type",
"Common.Views.DocumentPropertyDialog.txtPropertyTypeNumber": "Number",
"Common.Views.DocumentPropertyDialog.txtPropertyTypeNumberInvalid": "Provide a valid number",
"Common.Views.DocumentPropertyDialog.txtPropertyTypeText": "Text",
"Common.Views.DocumentPropertyDialog.txtPropertyValueBlankError": "Property should have a value",
"Common.Views.DocumentPropertyDialog.txtPropertyValueLabel": "Value",
"Common.Views.DocumentPropertyDialog.txtTitle": "New Document Property",
"Common.Views.Draw.hintEraser": "Eraser",
"Common.Views.Draw.hintSelect": "Select",
"Common.Views.Draw.txtEraser": "Eraser",
"Common.Views.Draw.txtHighlighter": "Highlighter",
"Common.Views.Draw.txtMM": "mm",
"Common.Views.Draw.txtPen": "Pen",
"Common.Views.Draw.txtSelect": "Select",
"Common.Views.Draw.txtSize": "Size",
"Common.Views.ExternalDiagramEditor.textTitle": "Chart editor",
"Common.Views.ExternalEditor.textClose": "Close",
"Common.Views.ExternalEditor.textSave": "Save & Exit",
"Common.Views.ExternalLinksDlg.closeButtonText": "Close",
"Common.Views.ExternalLinksDlg.textAutoUpdate": "Automatically update data from the linked sources",
"Common.Views.ExternalLinksDlg.textChange": "Change source",
"Common.Views.ExternalLinksDlg.textDelete": "Break links",
"Common.Views.ExternalLinksDlg.textDeleteAll": "Break all links",
"Common.Views.ExternalLinksDlg.textOk": "OK",
"Common.Views.ExternalLinksDlg.textOpen": "Open source",
"Common.Views.ExternalLinksDlg.textSource": "Source",
"Common.Views.ExternalLinksDlg.textStatus": "Status",
"Common.Views.ExternalLinksDlg.textUnknown": "Unknown",
"Common.Views.ExternalLinksDlg.textUpdate": "Update values",
"Common.Views.ExternalLinksDlg.textUpdateAll": "Update all",
"Common.Views.ExternalLinksDlg.textUpdating": "Updating...",
"Common.Views.ExternalLinksDlg.txtTitle": "External links",
"Common.Views.ExternalMergeEditor.textTitle": "Mail merge recipients",
"Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor",
"Common.Views.FormatSettingsDialog.textCategory": "Category",
"Common.Views.FormatSettingsDialog.textDecimal": "Decimal",
"Common.Views.FormatSettingsDialog.textFormat": "Format",
"Common.Views.FormatSettingsDialog.textLinked": "Linked to source",
"Common.Views.FormatSettingsDialog.textLocale": "Locale",
"Common.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator",
"Common.Views.FormatSettingsDialog.textSymbols": "Symbols",
"Common.Views.FormatSettingsDialog.textTitle": "Number format",
"Common.Views.FormatSettingsDialog.txtAccounting": "Accounting",
"Common.Views.FormatSettingsDialog.txtAs10": "As tenths (5/10)",
"Common.Views.FormatSettingsDialog.txtAs100": "As hundredths (50/100)",
"Common.Views.FormatSettingsDialog.txtAs16": "As sixteenths (8/16)",
"Common.Views.FormatSettingsDialog.txtAs2": "As halves (1/2)",
"Common.Views.FormatSettingsDialog.txtAs4": "As fourths (2/4)",
"Common.Views.FormatSettingsDialog.txtAs8": "As eighths (4/8)",
"Common.Views.FormatSettingsDialog.txtCurrency": "Currency",
"Common.Views.FormatSettingsDialog.txtCustom": "Custom",
"Common.Views.FormatSettingsDialog.txtCustomWarning": "Please enter the custom number format carefully. Spreadsheet Editor does not check custom formats for errors that may affect the xlsx file.",
"Common.Views.FormatSettingsDialog.txtDate": "Date",
"Common.Views.FormatSettingsDialog.txtFraction": "Fraction",
"Common.Views.FormatSettingsDialog.txtGeneral": "General",
"Common.Views.FormatSettingsDialog.txtNone": "None",
"Common.Views.FormatSettingsDialog.txtNumber": "Number",
"Common.Views.FormatSettingsDialog.txtPercentage": "Percentage",
"Common.Views.FormatSettingsDialog.txtSample": "Sample:",
"Common.Views.FormatSettingsDialog.txtScientific": "Scientific",
"Common.Views.FormatSettingsDialog.txtText": "Text",
"Common.Views.FormatSettingsDialog.txtTime": "Time",
"Common.Views.FormatSettingsDialog.txtUpto1": "Up to one digit (1/3)",
"Common.Views.FormatSettingsDialog.txtUpto2": "Up to two digits (12/25)",
"Common.Views.FormatSettingsDialog.txtUpto3": "Up to three digits (131/135)",
"Common.Views.Header.ariaQuickAccessToolbar": "Quick access toolbar",
"Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:",
"Common.Views.Header.textAddFavorite": "Mark as favorite",
"Common.Views.Header.textAdvSettings": "Advanced settings",
"Common.Views.Header.textBack": "Open file location",
"Common.Views.Header.textClose": "Close file",
"Common.Views.Header.textCompactView": "Hide toolbar",
"Common.Views.Header.textDocEditDesc": "Make any changes",
"Common.Views.Header.textDocViewDesc": "View the file, but make no changes",
"Common.Views.Header.textDocViewFormDesc": "See how the form will look like when filling out",
"Common.Views.Header.textDownload": "Download",
"Common.Views.Header.textEdit": "Editing",
"Common.Views.Header.textHideLines": "Hide Rulers",
"Common.Views.Header.textHideStatusBar": "Hide status bar",
"Common.Views.Header.textPrint": "Print",
"Common.Views.Header.textReadOnly": "Read only",
"Common.Views.Header.textRemoveFavorite": "Remove from Favorites",
"Common.Views.Header.textReview": "Reviewing",
"Common.Views.Header.textReviewDesc": "Suggest changes",
"Common.Views.Header.textShare": "Share",
"Common.Views.Header.textStartFill": "Share & collect",
"Common.Views.Header.textView": "Viewing",
"Common.Views.Header.textViewForm": "Preview",
"Common.Views.Header.textZoom": "Zoom",
"Common.Views.Header.tipAccessRights": "Manage document access rights",
"Common.Views.Header.tipCustomizeQuickAccessToolbar": "Customize Quick Access Toolbar",
"Common.Views.Header.tipDocEdit": "Editing",
"Common.Views.Header.tipDocView": "Viewing",
"Common.Views.Header.tipDocViewForm": "Viewing form",
"Common.Views.Header.tipDownload": "Download file",
"Common.Views.Header.tipFillStatus": "Filling status",
"Common.Views.Header.tipGoEdit": "Edit current file",
"Common.Views.Header.tipPrint": "Print file",
"Common.Views.Header.tipPrintQuick": "Quick print",
"Common.Views.Header.tipRedo": "Redo",
"Common.Views.Header.tipReview": "Reviewing",
"Common.Views.Header.tipSave": "Save",
"Common.Views.Header.tipSearch": "Find",
"Common.Views.Header.tipUndo": "Undo",
"Common.Views.Header.tipUsers": "View users",
"Common.Views.Header.tipViewSettings": "View settings",
"Common.Views.Header.tipViewUsers": "View users and manage document access rights",
"Common.Views.Header.txtAccessRights": "Change access rights",
"Common.Views.Header.txtRename": "Rename",
"Common.Views.History.textCloseHistory": "Close history",
"Common.Views.History.textHideAll": "Hide detailed changes",
"Common.Views.History.textHighlightDeleted": "Highlight deleted",
"Common.Views.History.textMore": "More",
"Common.Views.History.textRestore": "Restore",
"Common.Views.History.textShowAll": "Show detailed changes",
"Common.Views.History.textVer": "ver.",
"Common.Views.History.textVersionHistory": "Version History",
"Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
"Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid rows and columns count.",
"Common.Views.InsertTableDialog.txtColumns": "Number of columns",
"Common.Views.InsertTableDialog.txtMaxText": "The maximum value for this field is {0}.",
"Common.Views.InsertTableDialog.txtMinText": "The minimum value for this field is {0}.",
"Common.Views.InsertTableDialog.txtRows": "Number of rows",
"Common.Views.InsertTableDialog.txtTitle": "Table size",
"Common.Views.InsertTableDialog.txtTitleSplit": "Split cell",
"Common.Views.LanguageDialog.labelSelect": "Select document language",
"Common.Views.MacrosAiDialog.textAreaPlaceholder": "Input a prompt for the query",
"Common.Views.MacrosAiDialog.textCreate": "Create",
"Common.Views.MacrosDialog.textAutostart": "Autostart",
"Common.Views.MacrosDialog.textConvertFromVBA": "Convert from VBA",
"Common.Views.MacrosDialog.textConvertMacrosFromVBA": "Convert macros from VBA",
"Common.Views.MacrosDialog.textCopy": "Copy",
"Common.Views.MacrosDialog.textCreateFromDesc": "Create from description",
"Common.Views.MacrosDialog.textCreateMacrosFromDesc": "Create macros from description",
"Common.Views.MacrosDialog.textCustomFunction": "Custom function",
"Common.Views.MacrosDialog.textCustomFunctions": "Custom functions",
"Common.Views.MacrosDialog.textDebug": "Debug",
"Common.Views.MacrosDialog.textDelete": "Delete",
"Common.Views.MacrosDialog.textFunctions": "Functions",
"Common.Views.MacrosDialog.textLoading": "Loading...",
"Common.Views.MacrosDialog.textMacro": "Macro",
"Common.Views.MacrosDialog.textMacros": "Macros",
"Common.Views.MacrosDialog.textMakeAutostart": "Make autostart",
"Common.Views.MacrosDialog.textRename": "Rename",
"Common.Views.MacrosDialog.textRun": "Run",
"Common.Views.MacrosDialog.textSave": "Save",
"Common.Views.MacrosDialog.textTitle": "Macros",
"Common.Views.MacrosDialog.textUnMakeAutostart": "Unmake autostart",
"Common.Views.MacrosDialog.tipAI": "AI",
"Common.Views.MacrosDialog.tipFunctionAdd": "Add custom function",
"Common.Views.MacrosDialog.tipFunctionCopy": "Copy custom function",
"Common.Views.MacrosDialog.tipFunctionDelete": "Delete custom function",
"Common.Views.MacrosDialog.tipFunctionRename": "Rename custom function",
"Common.Views.MacrosDialog.tipMacrosAdd": "Add macros",
"Common.Views.MacrosDialog.tipMacrosCopy": "Copy macros",
"Common.Views.MacrosDialog.tipMacrosDebug": "Debug macros",
"Common.Views.MacrosDialog.tipMacrosRename": "Rename macros",
"Common.Views.MacrosDialog.tipMacrosRun": "Run macros",
"Common.Views.MacrosDialog.tipRedo": "Redo",
"Common.Views.MacrosDialog.tipUndo": "Undo",
"Common.Views.OpenDialog.closeButtonText": "Close file",
"Common.Views.OpenDialog.txtEncoding": "Encoding ",
"Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.",
"Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtPreview": "Preview",
"Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.",
"Common.Views.OpenDialog.txtTitle": "Choose %1 options",
"Common.Views.OpenDialog.txtTitleProtected": "Protected file",
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
"Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical",
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Repeat password",
"Common.Views.PasswordDialog.txtTitle": "Set password",
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"Common.Views.PluginDlg.textDock": "Pin plugin",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.PluginPanel.textClosePanel": "Close plugin",
"Common.Views.PluginPanel.textHidePanel": "Collapse plugin",
"Common.Views.PluginPanel.textLoading": "Loading",
"Common.Views.PluginPanel.textUndock": "Unpin plugin",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textBackgroundPlugins": "Background plugins",
"Common.Views.Plugins.textSettings": "Settings",
"Common.Views.Plugins.textStart": "Start",
"Common.Views.Plugins.textStop": "Stop",
"Common.Views.Plugins.textTheListOfBackgroundPlugins": "The list of background plugins",
"Common.Views.Plugins.tipMore": "More",
"Common.Views.Protection.hintAddPwd": "Encrypt with password",
"Common.Views.Protection.hintDelPwd": "Delete password",
"Common.Views.Protection.hintPwd": "Change or delete password",
"Common.Views.Protection.hintSignature": "Add digital signature or signature line",
"Common.Views.Protection.txtAddPwd": "Add password",
"Common.Views.Protection.txtChangePwd": "Change password",
"Common.Views.Protection.txtDeletePwd": "Delete password",
"Common.Views.Protection.txtEncrypt": "Encrypt",
"Common.Views.Protection.txtInvisibleSignature": "Add digital signature",
"Common.Views.Protection.txtSignature": "Signature",
"Common.Views.Protection.txtSignatureLine": "Add signature line",
"Common.Views.RecentFiles.txtOpenRecent": "Open recent",
"Common.Views.RenameDialog.textName": "File name",
"Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ",
"Common.Views.ReviewChanges.hintNext": "To next change",
"Common.Views.ReviewChanges.hintPrev": "To previous change",
"Common.Views.ReviewChanges.mniFromFile": "Document from file",
"Common.Views.ReviewChanges.mniFromStorage": "Document from storage",
"Common.Views.ReviewChanges.mniFromUrl": "Document from URL",
"Common.Views.ReviewChanges.mniMMFromFile": "From file",
"Common.Views.ReviewChanges.mniMMFromStorage": "From storage",
"Common.Views.ReviewChanges.mniMMFromUrl": "From URL",
"Common.Views.ReviewChanges.mniSettings": "Comparison settings",
"Common.Views.ReviewChanges.strFast": "Fast",
"Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.",
"Common.Views.ReviewChanges.strStrict": "Strict",
"Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.",
"Common.Views.ReviewChanges.textEnable": "Enable",
"Common.Views.ReviewChanges.textWarnTrackChanges": "Track Changes will be switched ON for all users with full access. The next time anyone opens the doc, Track Changes will remain enabled.",
"Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Enable track changes for everyone?",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change and move to next",
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
"Common.Views.ReviewChanges.tipCombine": "Combine current document with another one",
"Common.Views.ReviewChanges.tipCommentRem": "Delete comments",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Delete current comments",
"Common.Views.ReviewChanges.tipCommentResolve": "Resolve comments",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolve current comments",
"Common.Views.ReviewChanges.tipCompare": "Compare current document with another one",
"Common.Views.ReviewChanges.tipHistory": "Show version history",
"Common.Views.ReviewChanges.tipMailRecepients": "Mail merge",
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change and move to next",
"Common.Views.ReviewChanges.tipReview": "Track changes",
"Common.Views.ReviewChanges.tipReviewView": "Select the mode you want the changes to be displayed",
"Common.Views.ReviewChanges.tipSetDocLang": "Set document language",
"Common.Views.ReviewChanges.tipSetSpelling": "Spell checking",
"Common.Views.ReviewChanges.tipSharing": "Manage document access rights",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept all changes",
"Common.Views.ReviewChanges.txtAcceptChanges": "Accept changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept current change",
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
"Common.Views.ReviewChanges.txtCombine": "Combine",
"Common.Views.ReviewChanges.txtCommentRemAll": "Delete all comments",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Delete current comments",
"Common.Views.ReviewChanges.txtCommentRemMy": "Delete my comments",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Delete my current comments",
"Common.Views.ReviewChanges.txtCommentRemove": "Delete",
"Common.Views.ReviewChanges.txtCommentResolve": "Resolve",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve all comments",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve current comments",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve my comments",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve my current comments",
"Common.Views.ReviewChanges.txtCompare": "Compare",
"Common.Views.ReviewChanges.txtDocLang": "Language",
"Common.Views.ReviewChanges.txtEditing": "Editing",
"Common.Views.ReviewChanges.txtFinal": "All changes accepted {0}",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
"Common.Views.ReviewChanges.txtHistory": "Version history",
"Common.Views.ReviewChanges.txtMailMerge": "Mail Merge",
"Common.Views.ReviewChanges.txtMarkup": "All changes {0}",
"Common.Views.ReviewChanges.txtMarkupCap": "Markup and balloons",
"Common.Views.ReviewChanges.txtMarkupSimple": "All changes {0}<br>No balloons",
"Common.Views.ReviewChanges.txtMarkupSimpleCap": "Only markup",
"Common.Views.ReviewChanges.txtNext": "Next",
"Common.Views.ReviewChanges.txtOff": "OFF for me",
"Common.Views.ReviewChanges.txtOffGlobal": "OFF for me and everyone",
"Common.Views.ReviewChanges.txtOn": "ON for me",
"Common.Views.ReviewChanges.txtOnGlobal": "ON for me and everyone",
"Common.Views.ReviewChanges.txtOriginal": "All changes rejected {0}",
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
"Common.Views.ReviewChanges.txtPrev": "Previous",
"Common.Views.ReviewChanges.txtPreview": "Preview",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes",
"Common.Views.ReviewChanges.txtRejectChanges": "Reject changes",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject current change",
"Common.Views.ReviewChanges.txtSharing": "Sharing",
"Common.Views.ReviewChanges.txtSpelling": "Spell checking",
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
"Common.Views.ReviewChanges.txtView": "Display Mode",
"Common.Views.ReviewChangesDialog.textTitle": "Review changes",
"Common.Views.ReviewChangesDialog.txtAccept": "Accept",
"Common.Views.ReviewChangesDialog.txtAcceptAll": "Accept all changes",
"Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Accept current change",
"Common.Views.ReviewChangesDialog.txtNext": "To next change",
"Common.Views.ReviewChangesDialog.txtPrev": "To previous change",
"Common.Views.ReviewChangesDialog.txtReject": "Reject",
"Common.Views.ReviewChangesDialog.txtRejectAll": "Reject all changes",
"Common.Views.ReviewChangesDialog.txtRejectCurrent": "Reject current change",
"Common.Views.ReviewPopover.textAdd": "Add",
"Common.Views.ReviewPopover.textAddReply": "Add reply",
"Common.Views.ReviewPopover.textCancel": "Cancel",
"Common.Views.ReviewPopover.textClose": "Close",
"Common.Views.ReviewPopover.textComment": "Comment",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textEnterComment": "Enter your comment here",
"Common.Views.ReviewPopover.textFollowMove": "Follow move",
"Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email",
"Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email",
"Common.Views.ReviewPopover.textOpenAgain": "Open again",
"Common.Views.ReviewPopover.textReply": "Reply",
"Common.Views.ReviewPopover.textResolve": "Resolve",
"Common.Views.ReviewPopover.textViewResolved": "You have no permission to reopen the comment",
"Common.Views.ReviewPopover.txtAccept": "Accept",
"Common.Views.ReviewPopover.txtDeleteTip": "Delete",
"Common.Views.ReviewPopover.txtEditTip": "Edit",
"Common.Views.ReviewPopover.txtReject": "Reject",
"Common.Views.SaveAsDlg.textLoading": "Loading",
"Common.Views.SaveAsDlg.textTitle": "Folder for save",
"Common.Views.SearchPanel.textCaseSensitive": "Case sensitive",
"Common.Views.SearchPanel.textCloseSearch": "Close find",
"Common.Views.SearchPanel.textContentChanged": "Document changed.",
"Common.Views.SearchPanel.textFind": "Find",
"Common.Views.SearchPanel.textFindAndReplace": "Find and replace",
"Common.Views.SearchPanel.textItemsSuccessfullyReplaced": "{0} items successfully replaced.",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Match using regular expressions",
"Common.Views.SearchPanel.textNoMatches": "No matches",
"Common.Views.SearchPanel.textNoSearchResults": "No search results",
"Common.Views.SearchPanel.textPartOfItemsNotReplaced": "{0}/{1} items replaced. Remaining {2} items are locked by other users.",
"Common.Views.SearchPanel.textReplace": "Replace",
"Common.Views.SearchPanel.textReplaceAll": "Replace All",
"Common.Views.SearchPanel.textReplaceWith": "Replace with",
"Common.Views.SearchPanel.textSearchAgain": "{0}Perform new search{1} for accurate results.",
"Common.Views.SearchPanel.textSearchHasStopped": "Search has stopped",
"Common.Views.SearchPanel.textSearchResults": "Search results: {0}/{1}",
"Common.Views.SearchPanel.textSearchResultsTable": "Search results",
"Common.Views.SearchPanel.textTooManyResults": "There are too many results to show here",
"Common.Views.SearchPanel.textWholeWords": "Whole words only",
"Common.Views.SearchPanel.tipNextResult": "Next result",
"Common.Views.SearchPanel.tipPreviousResult": "Previous result",
"Common.Views.SelectFileDlg.textLoading": "Loading",
"Common.Views.SelectFileDlg.textTitle": "Select data source",
"Common.Views.ShapeShadowDialog.txtAngle": "Angle",
"Common.Views.ShapeShadowDialog.txtDistance": "Distance",
"Common.Views.ShapeShadowDialog.txtSize": "Size",
"Common.Views.ShapeShadowDialog.txtTitle": "Adjust Shadow",
"Common.Views.ShapeShadowDialog.txtTransparency": "Transparency",
"Common.Views.ShortcutsDialog.txtDescription": "Description",
"Common.Views.ShortcutsDialog.txtEmpty": "No matches found. Adjust your search.",
"Common.Views.ShortcutsDialog.txtRestoreAll": "Restore All to Defaults",
"Common.Views.ShortcutsDialog.txtRestoreContinue": "Do you want to continue?",
"Common.Views.ShortcutsDialog.txtRestoreDescription": "All shortcuts settings will be restored to default.",
"Common.Views.ShortcutsDialog.txtRestoreToDefault": "Restore to default",
"Common.Views.ShortcutsDialog.txtSearch": "Search",
"Common.Views.ShortcutsDialog.txtTitle": "Keyboard Shortcuts",
"Common.Views.ShortcutsEditDialog.txtAction": "Action",
"Common.Views.ShortcutsEditDialog.txtInputPlaceholder": "Type desired shortcut",
"Common.Views.ShortcutsEditDialog.txtInputWarnMany": "The shortcut used by actions %1",
"Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked": "The shortcut used by actions %1 and can’t be changed",
"Common.Views.ShortcutsEditDialog.txtInputWarnOne": "The shortcut used by action %1",
"Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked": "The shortcut used by action %1 and can’t be changed",
"Common.Views.ShortcutsEditDialog.txtNewShortcut": "New shortcut",
"Common.Views.ShortcutsEditDialog.txtRestoreContinue": "Do you want to continue?",
"Common.Views.ShortcutsEditDialog.txtRestoreDescription": "All shortcuts for action “%1” will be restored to default.",
"Common.Views.ShortcutsEditDialog.txtRestoreToDefault": "Restore to default",
"Common.Views.ShortcutsEditDialog.txtTitle": "Edit shortcut",
"Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut": "Type desired shortcut",
"Common.Views.SignDialog.textBold": "Bold",
"Common.Views.SignDialog.textCertificate": "Certificate",
"Common.Views.SignDialog.textChange": "Change",
"Common.Views.SignDialog.textInputName": "Input signer name",
"Common.Views.SignDialog.textItalic": "Italic",
"Common.Views.SignDialog.textNameError": "Signer name must not be empty.",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Select",
"Common.Views.SignDialog.textSelectImage": "Select image",
"Common.Views.SignDialog.textSignature": "Signature looks as",
"Common.Views.SignDialog.textTitle": "Sign document",
"Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature",
"Common.Views.SignDialog.textValid": "Valid from %1 to %2",
"Common.Views.SignDialog.tipFontName": "Font name",
"Common.Views.SignDialog.tipFontSize": "Font size",
"Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog",
"Common.Views.SignSettingsDialog.textDefInstruction": "Before signing this document, verify that the content you are signing is correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer's e-mail",
"Common.Views.SignSettingsDialog.textInfoName": "Suggested signer",
"Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer's title",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer",
"Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line",
"Common.Views.SignSettingsDialog.textTitle": "Signature setup",
"Common.Views.SignSettingsDialog.txtEmpty": "This field is required",
"Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode HEX value",
"Common.Views.SymbolTableDialog.textCopyright": "Copyright sign",
"Common.Views.SymbolTableDialog.textDCQuote": "Closing double quote",
"Common.Views.SymbolTableDialog.textDOQuote": "Opening double quote",
"Common.Views.SymbolTableDialog.textEllipsis": "Horizontal ellipsis",
"Common.Views.SymbolTableDialog.textEmDash": "Em dash",
"Common.Views.SymbolTableDialog.textEmSpace": "Em space",
"Common.Views.SymbolTableDialog.textEnDash": "En dash",
"Common.Views.SymbolTableDialog.textEnSpace": "En space",
"Common.Views.SymbolTableDialog.textFont": "Font",
"Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking hyphen",
"Common.Views.SymbolTableDialog.textNBSpace": "No-break space",
"Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow sign",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em space",
"Common.Views.SymbolTableDialog.textRange": "Range",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
"Common.Views.SymbolTableDialog.textRegistered": "Registered sign",
"Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote",
"Common.Views.SymbolTableDialog.textSection": "Section sign",
"Common.Views.SymbolTableDialog.textShortcut": "Shortcut key",
"Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen",
"Common.Views.SymbolTableDialog.textSOQuote": "Opening single quote",
"Common.Views.SymbolTableDialog.textSpecial": "Special characters",
"Common.Views.SymbolTableDialog.textSymbols": "Symbols",
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
"Common.Views.SymbolTableDialog.textTradeMark": "Trademark symbol ",
"Common.Views.UserNameDialog.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label must not be empty.",
"DE.Controllers.DocProtection.txtIsProtectedComment": "Document is protected. You may only insert comments to this document.",
"DE.Controllers.DocProtection.txtIsProtectedForms": "Document is protected. You may only fill in forms in this document.",
"DE.Controllers.DocProtection.txtIsProtectedTrack": "Document is protected. You may edit this document, but all changes will be tracked.",
"DE.Controllers.DocProtection.txtIsProtectedView": "Document is protected. You may only view this document.",
"DE.Controllers.DocProtection.txtWasProtectedComment": "Document has been protected by another user.\nYou may only insert comments to this document.",
"DE.Controllers.DocProtection.txtWasProtectedForms": "Document has been protected by another user.\nYou may only fill in forms in this document.",
"DE.Controllers.DocProtection.txtWasProtectedTrack": "Document has been protected by another user.\nYou may edit this document, but all changes will be tracked.",
"DE.Controllers.DocProtection.txtWasProtectedView": "Document has been protected by another user.\nYou may only view this document.",
"DE.Controllers.DocProtection.txtWasUnprotected": "Document has been unprotected.",
"DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
"DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document",
"DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
"DE.Controllers.LeftMenu.requestEditRightsText": "Requesting editing rights...",
"DE.Controllers.LeftMenu.textLoadHistory": "Loading version history...",
"DE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.",
"DE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
"DE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}",
"DE.Controllers.LeftMenu.textSelectPath": "Enter a new name for saving the file copy",
"DE.Controllers.LeftMenu.txtCompatible": "The document will be saved to the new format. It will allow to use all the editor features, but might affect the document layout.<br>Use the 'Compatibility' option of the advanced settings if you want to make the files compatible with older MS Word versions.",
"DE.Controllers.LeftMenu.txtUntitled": "Untitled",
"DE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.<br>Are you sure you want to continue?",
"DE.Controllers.LeftMenu.warnDownloadAsPdf": "Your {0} will be converted to an editable format. This may take a while. The resulting document will be optimized to allow you to edit the text, so it might not look exactly like the original {0}, especially if the original file contained lots of graphics.",
"DE.Controllers.LeftMenu.warnDownloadAsRTF": "If you continue saving in this format some of the formatting might be lost.<br>Are you sure you want to continue?",
"DE.Controllers.LeftMenu.warnReplaceString": "{0} is not a valid special character for the replacement field.",
"DE.Controllers.Main.applyChangesTextText": "Loading the changes...",
"DE.Controllers.Main.applyChangesTitleText": "Loading the Changes",
"DE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.<br>Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).",
"DE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.",
"DE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.",
"DE.Controllers.Main.criticalErrorExtTextClose": "Press \"OK\" to close the editor.",
"DE.Controllers.Main.criticalErrorTitle": "Error",
"DE.Controllers.Main.downloadErrorText": "Download failed.",
"DE.Controllers.Main.downloadMergeText": "Downloading...",
"DE.Controllers.Main.downloadMergeTitle": "Downloading",
"DE.Controllers.Main.downloadTextText": "Downloading document...",
"DE.Controllers.Main.downloadTitleText": "Downloading document",
"DE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect",
"DE.Controllers.Main.errorCannotPasteImg": "We can't paste this image from the Clipboard, but you can save it to your device and \ninsert it from there, or you can copy the image without text and paste it into the document.",
"DE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.",
"DE.Controllers.Main.errorComboSeries": "To create a combination chart, select at least two series of data.",
"DE.Controllers.Main.errorCompare": "The Compare Documents feature is not available while co-editing. ",
"DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.<br>When you click the 'OK' button, you will be prompted to download the document.",
"DE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. Please contact support in case the error persists.",
"DE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.",
"DE.Controllers.Main.errorDataRange": "Incorrect data range.",
"DE.Controllers.Main.errorDefaultMessage": "Error code: %1",
"DE.Controllers.Main.errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file for downloading.",
"DE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.<br>Use the 'Download as' option to save the file backup copy to a drive.",
"DE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.<br>Use the 'Save as...' option to save the file backup copy to a drive.",
"DE.Controllers.Main.errorEditProtectedRange": "You are not allowed to edit this selection because it is protected.",
"DE.Controllers.Main.errorEmailClient": "No email client could be found.",
"DE.Controllers.Main.errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.",
"DE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.",
"DE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.<br>Please contact your Document Server administrator for details.",
"DE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to a drive or try again later.",
"DE.Controllers.Main.errorInconsistentExt": "An error has occurred while opening the file.<br>The file content does not match the file extension.",
"DE.Controllers.Main.errorInconsistentExtDocx": "An error has occurred while opening the file.<br>The file content corresponds to text documents (e.g. docx), but the file has the inconsistent extension: %1.",
"DE.Controllers.Main.errorInconsistentExtPdf": "An error has occurred while opening the file.<br>The file content corresponds to one of the following formats: pdf/djvu/xps/oxps, but the file has the inconsistent extension: %1.",
"DE.Controllers.Main.errorInconsistentExtPptx": "An error has occurred while opening the file.<br>The file content corresponds to presentations (e.g. pptx), but the file has the inconsistent extension: %1.",
"DE.Controllers.Main.errorInconsistentExtXlsx": "An error has occurred while opening the file.<br>The file content corresponds to spreadsheets (e.g. xlsx), but the file has the inconsistent extension: %1.",
"DE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor",
"DE.Controllers.Main.errorKeyExpire": "Key descriptor expired",
"DE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.errorMailMergeLoadFile": "Loading the document failed. Please select a different file.",
"DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.",
"DE.Controllers.Main.errorNoTOC": "There's no table of contents to update. You can insert one from the References tab.",
"DE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.<br>Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.",
"DE.Controllers.Main.errorSaveWatermark": "This file contains a watermark image linked to another domain.<br>To make it visible in PDF, update the watermark image so it links from the same domain as your document, or upload it from your computer.",
"DE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"DE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.",
"DE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.",
"DE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.",
"DE.Controllers.Main.errorSetPassword": "Password could not be set.",
"DE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:<br> opening price, max price, min price, closing price.",
"DE.Controllers.Main.errorSubmit": "Submit failed.",
"DE.Controllers.Main.errorTextFormWrongFormat": "The value entered does not match the format of the field.",
"DE.Controllers.Main.errorToken": "The document security token is not correctly formed.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.errorTokenExpire": "The document security token has expired.<br>Please contact your Document Server administrator.",
"DE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.",
"DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Connection has been restored, and the file version has been changed.<br>Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.",
"DE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.",
"DE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded",
"DE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,<br>but will not be able to download or print it until the connection is restored and page is reloaded.",
"DE.Controllers.Main.leavePageText": "You have unsaved changes in this document. Click \"Stay on This Page\", then \"Save\" to save them. Click \"Leave This Page\" to discard all the unsaved changes.",
"DE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this document will be lost.<br> Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.",
"DE.Controllers.Main.loadFontsTextText": "Loading data...",
"DE.Controllers.Main.loadFontsTitleText": "Loading Data",
"DE.Controllers.Main.loadFontTextText": "Loading data...",
"DE.Controllers.Main.loadFontTitleText": "Loading Data",
"DE.Controllers.Main.loadImagesTextText": "Loading images...",
"DE.Controllers.Main.loadImagesTitleText": "Loading Images",
"DE.Controllers.Main.loadImageTextText": "Loading image...",
"DE.Controllers.Main.loadImageTitleText": "Loading Image",
"DE.Controllers.Main.loadingDocumentTextText": "Loading document...",
"DE.Controllers.Main.loadingDocumentTitleText": "Loading document",
"DE.Controllers.Main.mailMergeLoadFileText": "Loading Data Source...",
"DE.Controllers.Main.mailMergeLoadFileTitle": "Loading Data Source",
"DE.Controllers.Main.notcriticalErrorTitle": "Warning",
"DE.Controllers.Main.openErrorText": "An error has occurred while opening the file.",
"DE.Controllers.Main.openTextText": "Opening document...",
"DE.Controllers.Main.openTitleText": "Opening document",
"DE.Controllers.Main.printTextText": "Printing document...",
"DE.Controllers.Main.printTitleText": "Printing Document",
"DE.Controllers.Main.reloadButtonText": "Reload Page",
"DE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this document right now. Please try again later.",
"DE.Controllers.Main.requestEditFailedTitleText": "Access denied",
"DE.Controllers.Main.saveErrorText": "An error has occurred while saving the file.",
"DE.Controllers.Main.saveErrorTextDesktop": "This file cannot be saved or created.<br>Possible reasons are: <br>1. The file is read-only. <br>2. The file is being edited by other users. <br>3. The disk is full or corrupted.",
"DE.Controllers.Main.saveTextText": "Saving document...",
"DE.Controllers.Main.saveTitleText": "Saving document",
"DE.Controllers.Main.savingText": "Submitting",
"DE.Controllers.Main.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.",
"DE.Controllers.Main.sendMergeText": "Sending merge...",
"DE.Controllers.Main.sendMergeTitle": "Sending merge",
"DE.Controllers.Main.splitDividerErrorText": "The number of rows must be a divisor of %1.",
"DE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.",
"DE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.",
"DE.Controllers.Main.textAnonymous": "Anonymous",
"DE.Controllers.Main.textAnyone": "Anyone",
"DE.Controllers.Main.textApplyAll": "Apply to all equations",
"DE.Controllers.Main.textBuyNow": "Visit website",
"DE.Controllers.Main.textChangesSaved": "All changes saved",
"DE.Controllers.Main.textClose": "Close",
"DE.Controllers.Main.textCloseTip": "Click to close the tip",
"DE.Controllers.Main.textConnectionLost": "Trying to connect. Please check connection settings.",
"DE.Controllers.Main.textContactUs": "Contact sales",
"DE.Controllers.Main.textContinue": "Continue",
"DE.Controllers.Main.textConvertEquation": "This equation was created with an old version of the equation editor which is no longer supported. To edit it, convert the equation to the Office Math ML format.<br>Convert now?",
"DE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.<br>Please contact our Sales Department to get a quote.",
"DE.Controllers.Main.textDisconnect": "Connection is lost",
"DE.Controllers.Main.textGuest": "Guest",
"DE.Controllers.Main.textHasMacros": "The file contains automatic macros.<br>Do you want to run macros?",
"DE.Controllers.Main.textLearnMore": "Learn More",
"DE.Controllers.Main.textLoadingDocument": "Loading document",
"DE.Controllers.Main.textLongName": "Enter a name that is less than 128 characters.",
"DE.Controllers.Main.textNoLicenseTitle": "License limit reached",
"DE.Controllers.Main.textPaidFeature": "Paid feature",
"DE.Controllers.Main.textReconnect": "Connection is restored",
"DE.Controllers.Main.textRemember": "Remember my choice for all files",
"DE.Controllers.Main.textRememberMacros": "Remember my choice for all macros",
"DE.Controllers.Main.textRenameError": "User name must not be empty.",
"DE.Controllers.Main.textRenameLabel": "Enter a name to be used for collaboration",
"DE.Controllers.Main.textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?",
"DE.Controllers.Main.textShape": "Shape",
"DE.Controllers.Main.textSignature": "Signature",
"DE.Controllers.Main.textStrict": "Strict mode",
"DE.Controllers.Main.textText": "Text",
"DE.Controllers.Main.textTryQuickPrint": "You have selected Quick print: the entire document will be printed on the last selected or default printer.<br>Do you want to continue?",
"DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.<br>Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.",
"DE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.",
"DE.Controllers.Main.textUndo": "Undo",
"DE.Controllers.Main.textUpdateVersion": "The document cannot be edited right now.<br>Trying to update file, please wait...",
"DE.Controllers.Main.textUpdating": "Updating",
"DE.Controllers.Main.tipLicenseExceeded": "The document is open in read-only mode as the maximum number of simultaneous connections allowed by license has been reached.<br><br>Please try again later or contact the document owner if you need editing access.",
"DE.Controllers.Main.tipLicenseUsersExceeded": "The document is open in read-only mode as the maximum number of users allowed to edit documents by license has been reached.<br><br>Please try again later or contact the document owner if you need editing access.",
"DE.Controllers.Main.titleLicenseExp": "License expired",
"DE.Controllers.Main.titleLicenseNotActive": "License not active",
"DE.Controllers.Main.titleReadOnly": "Read-Only Mode",
"DE.Controllers.Main.titleServerVersion": "Editor updated",
"DE.Controllers.Main.titleUpdateVersion": "Version changed",
"DE.Controllers.Main.txtAbove": "above",
"DE.Controllers.Main.txtArt": "Your text here",
"DE.Controllers.Main.txtBasicShapes": "Basic shapes",
"DE.Controllers.Main.txtBelow": "below",
"DE.Controllers.Main.txtBookmarkError": "Error! Bookmark not defined.",
"DE.Controllers.Main.txtButtons": "Buttons",
"DE.Controllers.Main.txtCallouts": "Callouts",
"DE.Controllers.Main.txtCharts": "Charts",
"DE.Controllers.Main.txtChoose": "Choose an item",
"DE.Controllers.Main.txtClickToLoad": "Click to load image",
"DE.Controllers.Main.txtCurrentDocument": "Current document",
"DE.Controllers.Main.txtDiagramTitle": "Chart title",
"DE.Controllers.Main.txtEditingMode": "Set editing mode...",
"DE.Controllers.Main.txtEndOfFormula": "Unexpected end of formula",
"DE.Controllers.Main.txtEnterDate": "Enter a date",
"DE.Controllers.Main.txtErrorLoadHistory": "History loading failed",
"DE.Controllers.Main.txtEvenPage": "Even page",
"DE.Controllers.Main.txtFiguredArrows": "Figured arrows",
"DE.Controllers.Main.txtFirstPage": "First page",
"DE.Controllers.Main.txtFooter": "Footer",
"DE.Controllers.Main.txtFormulaNotInTable": "The Formula Not In Table",
"DE.Controllers.Main.txtHeader": "Header",
"DE.Controllers.Main.txtHyperlink": "Hyperlink",
"DE.Controllers.Main.txtIndTooLarge": "Index too large",
"DE.Controllers.Main.txtLines": "Lines",
"DE.Controllers.Main.txtMainDocOnly": "Error! Main document only.",
"DE.Controllers.Main.txtMath": "Math",
"DE.Controllers.Main.txtMissArg": "Missing argument",
"DE.Controllers.Main.txtMissOperator": "Missing operator",
"DE.Controllers.Main.txtNeedSynchronize": "You have updates",
"DE.Controllers.Main.txtNone": "None",
"DE.Controllers.Main.txtNoTableOfContents": "There are no headings in the document. Apply a heading style to the text so that it appears in the table of contents.",
"DE.Controllers.Main.txtNoTableOfFigures": "No table of figures entries found.",
"DE.Controllers.Main.txtNoText": "Error! No text of specified style in document.",
"DE.Controllers.Main.txtNotInTable": "Is not in table",
"DE.Controllers.Main.txtNotValidBookmark": "Error! Not a valid bookmark self-reference.",
"DE.Controllers.Main.txtOddPage": "Odd page",
"DE.Controllers.Main.txtOnPage": "on page",
"DE.Controllers.Main.txtRectangles": "Rectangles",
"DE.Controllers.Main.txtSameAsPrev": "Same as previous",
"DE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved",
"DE.Controllers.Main.txtScheme_Aspect": "Aspect",
"DE.Controllers.Main.txtScheme_Blue": "Blue",
"DE.Controllers.Main.txtScheme_Blue_Green": "Blue Green",
"DE.Controllers.Main.txtScheme_Blue_II": "Blue II",
"DE.Controllers.Main.txtScheme_Blue_Warm": "Blue Warm",
"DE.Controllers.Main.txtScheme_Grayscale": "Grayscale",
"DE.Controllers.Main.txtScheme_Green": "Green",
"DE.Controllers.Main.txtScheme_Green_Yellow": "Green Yellow",
"DE.Controllers.Main.txtScheme_Marquee": "Marquee",
"DE.Controllers.Main.txtScheme_Median": "Median",
"DE.Controllers.Main.txtScheme_Office": "Office",
"DE.Controllers.Main.txtScheme_Office_2007___2010": "Office 2007 - 2010",
"DE.Controllers.Main.txtScheme_Office_2013___2022": "Office 2013 - 2022",
"DE.Controllers.Main.txtScheme_Orange": "Orange",
"DE.Controllers.Main.txtScheme_Orange_Red": "Orange Red",
"DE.Controllers.Main.txtScheme_Paper": "Paper",
"DE.Controllers.Main.txtScheme_Red": "Red",
"DE.Controllers.Main.txtScheme_Red_Orange": "Red Orange",
"DE.Controllers.Main.txtScheme_Red_Violet": "Red Violet",
"DE.Controllers.Main.txtScheme_Slipstream": "Slipstream",
"DE.Controllers.Main.txtScheme_Violet": "Violet",
"DE.Controllers.Main.txtScheme_Violet_II": "Violet II",
"DE.Controllers.Main.txtScheme_Yellow": "Yellow",
"DE.Controllers.Main.txtScheme_Yellow_Orange": "Yellow Orange",
"DE.Controllers.Main.txtSection": "-Section",
"DE.Controllers.Main.txtSeries": "Series",
"DE.Controllers.Main.txtShape_accentBorderCallout1": "Line callout 1 (Border and accent bar)",
"DE.Controllers.Main.txtShape_accentBorderCallout2": "Line callout 2 (Border and accent bar)",
"DE.Controllers.Main.txtShape_accentBorderCallout3": "Line callout 3 (Border and accent bar)",
"DE.Controllers.Main.txtShape_accentCallout1": "Line callout 1 (Accent bar)",
"DE.Controllers.Main.txtShape_accentCallout2": "Line callout 2 (Accent bar)",
"DE.Controllers.Main.txtShape_accentCallout3": "Line callout 3 (Accent bar)",
"DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or previous button",
"DE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning button",
"DE.Controllers.Main.txtShape_actionButtonBlank": "Blank button",
"DE.Controllers.Main.txtShape_actionButtonDocument": "Document button",
"DE.Controllers.Main.txtShape_actionButtonEnd": "End button",
"DE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or next button",
"DE.Controllers.Main.txtShape_actionButtonHelp": "Help button",
"DE.Controllers.Main.txtShape_actionButtonHome": "Home button",
"DE.Controllers.Main.txtShape_actionButtonInformation": "Information button",
"DE.Controllers.Main.txtShape_actionButtonMovie": "Movie button",
"DE.Controllers.Main.txtShape_actionButtonReturn": "Return button",
"DE.Controllers.Main.txtShape_actionButtonSound": "Sound button",
"DE.Controllers.Main.txtShape_arc": "Arc",
"DE.Controllers.Main.txtShape_bentArrow": "Bent arrow",
"DE.Controllers.Main.txtShape_bentConnector5": "Elbow connector",
"DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow arrow connector",
"DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow double-arrow connector",
"DE.Controllers.Main.txtShape_bentUpArrow": "Bent up arrow",
"DE.Controllers.Main.txtShape_bevel": "Bevel",
"DE.Controllers.Main.txtShape_blockArc": "Block arc",
"DE.Controllers.Main.txtShape_borderCallout1": "Line callout 1",
"DE.Controllers.Main.txtShape_borderCallout2": "Line callout 2",
"DE.Controllers.Main.txtShape_borderCallout3": "Line callout 3",
"DE.Controllers.Main.txtShape_bracePair": "Double brace",
"DE.Controllers.Main.txtShape_callout1": "Line callout 1 (No border)",
"DE.Controllers.Main.txtShape_callout2": "Line callout 2 (No border)",
"DE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No border)",
"DE.Controllers.Main.txtShape_can": "Can",
"DE.Controllers.Main.txtShape_chevron": "Chevron",
"DE.Controllers.Main.txtShape_chord": "Chord",
"DE.Controllers.Main.txtShape_circularArrow": "Circular arrow",
"DE.Controllers.Main.txtShape_cloud": "Cloud",
"DE.Controllers.Main.txtShape_cloudCallout": "Cloud callout",
"DE.Controllers.Main.txtShape_corner": "Corner",
"DE.Controllers.Main.txtShape_cube": "Cube",
"DE.Controllers.Main.txtShape_curvedConnector3": "Curved connector",
"DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved arrow connector",
"DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved double-arrow connector",
"DE.Controllers.Main.txtShape_curvedDownArrow": "Curved down arrow",
"DE.Controllers.Main.txtShape_curvedLeftArrow": "Curved left arrow",
"DE.Controllers.Main.txtShape_curvedRightArrow": "Curved right arrow",
"DE.Controllers.Main.txtShape_curvedUpArrow": "Curved up arrow",
"DE.Controllers.Main.txtShape_decagon": "Decagon",
"DE.Controllers.Main.txtShape_diagStripe": "Diagonal stripe",
"DE.Controllers.Main.txtShape_diamond": "Diamond",
"DE.Controllers.Main.txtShape_dodecagon": "Dodecagon",
"DE.Controllers.Main.txtShape_donut": "Donut",
"DE.Controllers.Main.txtShape_doubleWave": "Double wave",
"DE.Controllers.Main.txtShape_downArrow": "Down arrow",
"DE.Controllers.Main.txtShape_downArrowCallout": "Down arrow callout",
"DE.Controllers.Main.txtShape_ellipse": "Ellipse",
"DE.Controllers.Main.txtShape_ellipseRibbon": "Curved down ribbon",
"DE.Controllers.Main.txtShape_ellipseRibbon2": "Curved up ribbon",
"DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate process",
"DE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate",
"DE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector",
"DE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision",
"DE.Controllers.Main.txtShape_flowChartDelay": "Flowchart: Delay",
"DE.Controllers.Main.txtShape_flowChartDisplay": "Flowchart: Display",
"DE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document",
"DE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract",
"DE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Data",
"DE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal storage",
"DE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic disk",
"DE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct access storage",
"DE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential access storage",
"DE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual input",
"DE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual operation",
"DE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge",
"DE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multidocument ",
"DE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page connector",
"DE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored data",
"DE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or",
"DE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined process",
"DE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation",
"DE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process",
"DE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Card",
"DE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched tape",
"DE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort",
"DE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing junction",
"DE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator",
"DE.Controllers.Main.txtShape_foldedCorner": "Folded corner",
"DE.Controllers.Main.txtShape_frame": "Frame",
"DE.Controllers.Main.txtShape_halfFrame": "Half frame",
"DE.Controllers.Main.txtShape_heart": "Heart",
"DE.Controllers.Main.txtShape_heptagon": "Heptagon",
"DE.Controllers.Main.txtShape_hexagon": "Hexagon",
"DE.Controllers.Main.txtShape_homePlate": "Pentagon",
"DE.Controllers.Main.txtShape_horizontalScroll": "Horizontal scroll",
"DE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1",
"DE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2",
"DE.Controllers.Main.txtShape_leftArrow": "Left arrow",
"DE.Controllers.Main.txtShape_leftArrowCallout": "Left arrow callout",
"DE.Controllers.Main.txtShape_leftBrace": "Left brace",
"DE.Controllers.Main.txtShape_leftBracket": "Left bracket",
"DE.Controllers.Main.txtShape_leftRightArrow": "Left right arrow",
"DE.Controllers.Main.txtShape_leftRightArrowCallout": "Left right arrow callout",
"DE.Controllers.Main.txtShape_leftRightUpArrow": "Left right up arrow",
"DE.Controllers.Main.txtShape_leftUpArrow": "Left up arrow",
"DE.Controllers.Main.txtShape_lightningBolt": "Lightning bolt",
"DE.Controllers.Main.txtShape_line": "Line",
"DE.Controllers.Main.txtShape_lineWithArrow": "Arrow",
"DE.Controllers.Main.txtShape_lineWithTwoArrows": "Double arrow",
"DE.Controllers.Main.txtShape_mathDivide": "Division",
"DE.Controllers.Main.txtShape_mathEqual": "Equal",
"DE.Controllers.Main.txtShape_mathMinus": "Minus",
"DE.Controllers.Main.txtShape_mathMultiply": "Multiply",
"DE.Controllers.Main.txtShape_mathNotEqual": "Not equal",
"DE.Controllers.Main.txtShape_mathPlus": "Plus",
"DE.Controllers.Main.txtShape_moon": "Moon",
"DE.Controllers.Main.txtShape_noSmoking": "\"No\" symbol",
"DE.Controllers.Main.txtShape_notchedRightArrow": "Notched right arrow",
"DE.Controllers.Main.txtShape_octagon": "Octagon",
"DE.Controllers.Main.txtShape_parallelogram": "Parallelogram",
"DE.Controllers.Main.txtShape_pentagon": "Pentagon",
"DE.Controllers.Main.txtShape_pie": "Pie",
"DE.Controllers.Main.txtShape_plaque": "Sign",
"DE.Controllers.Main.txtShape_plus": "Plus",
"DE.Controllers.Main.txtShape_polyline1": "Scribble",
"DE.Controllers.Main.txtShape_polyline2": "Freeform",
"DE.Controllers.Main.txtShape_quadArrow": "Quad arrow",
"DE.Controllers.Main.txtShape_quadArrowCallout": "Quad arrow callout",
"DE.Controllers.Main.txtShape_rect": "Rectangle",
"DE.Controllers.Main.txtShape_ribbon": "Down ribbon",
"DE.Controllers.Main.txtShape_ribbon2": "Up ribbon",
"DE.Controllers.Main.txtShape_rightArrow": "Right Arrow",
"DE.Controllers.Main.txtShape_rightArrowCallout": "Right arrow callout",
"DE.Controllers.Main.txtShape_rightBrace": "Right brace",
"DE.Controllers.Main.txtShape_rightBracket": "Right bracket",
"DE.Controllers.Main.txtShape_round1Rect": "Round single corner rectangle",
"DE.Controllers.Main.txtShape_round2DiagRect": "Round diagonal corner rectangle",
"DE.Controllers.Main.txtShape_round2SameRect": "Round same side corner rectangle",
"DE.Controllers.Main.txtShape_roundRect": "Round corner rectangle",
"DE.Controllers.Main.txtShape_rtTriangle": "Right triangle",
"DE.Controllers.Main.txtShape_smileyFace": "Smiley face",
"DE.Controllers.Main.txtShape_snip1Rect": "Snip single corner rectangle",
"DE.Controllers.Main.txtShape_snip2DiagRect": "Snip diagonal corner rectangle",
"DE.Controllers.Main.txtShape_snip2SameRect": "Snip same side corner rectangle",
"DE.Controllers.Main.txtShape_snipRoundRect": "Snip and round single corner rectangle",
"DE.Controllers.Main.txtShape_spline": "Curve",
"DE.Controllers.Main.txtShape_star10": "10-Point Star",
"DE.Controllers.Main.txtShape_star12": "12-Point Star",
"DE.Controllers.Main.txtShape_star16": "16-Point Star",
"DE.Controllers.Main.txtShape_star24": "24-Point Star",
"DE.Controllers.Main.txtShape_star32": "32-Point Star",
"DE.Controllers.Main.txtShape_star4": "4-Point Star",
"DE.Controllers.Main.txtShape_star5": "5-Point Star",
"DE.Controllers.Main.txtShape_star6": "6-Point Star",
"DE.Controllers.Main.txtShape_star7": "7-Point Star",
"DE.Controllers.Main.txtShape_star8": "8-Point Star",
"DE.Controllers.Main.txtShape_stripedRightArrow": "Striped right arrow",
"DE.Controllers.Main.txtShape_sun": "Sun",
"DE.Controllers.Main.txtShape_teardrop": "Teardrop",
"DE.Controllers.Main.txtShape_textRect": "Text box",
"DE.Controllers.Main.txtShape_trapezoid": "Trapezoid",
"DE.Controllers.Main.txtShape_triangle": "Triangle",
"DE.Controllers.Main.txtShape_upArrow": "Up arrow",
"DE.Controllers.Main.txtShape_upArrowCallout": "Up arrow callout",
"DE.Controllers.Main.txtShape_upDownArrow": "Up down arrow",
"DE.Controllers.Main.txtShape_uturnArrow": "U-Turn arrow",
"DE.Controllers.Main.txtShape_verticalScroll": "Vertical scroll",
"DE.Controllers.Main.txtShape_wave": "Wave",
"DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval сallout",
"DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular callout",
"DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded rectangular callout",
"DE.Controllers.Main.txtStarsRibbons": "Stars & ribbons",
"DE.Controllers.Main.txtStyle_Book_Title": "Book title",
"DE.Controllers.Main.txtStyle_Caption": "Caption",
"DE.Controllers.Main.txtStyle_Default_Paragraph_Font": "Default paragraph font",
"DE.Controllers.Main.txtStyle_Emphasis": "Emphasis",
"DE.Controllers.Main.txtStyle_endnote_reference": "Endnote reference",
"DE.Controllers.Main.txtStyle_endnote_text": "Endnote text",
"DE.Controllers.Main.txtStyle_footnote_reference": "Footnote reference",
"DE.Controllers.Main.txtStyle_footnote_text": "Footnote text",
"DE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"DE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"DE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"DE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"DE.Controllers.Main.txtStyle_Heading_5": "Heading 5",
"DE.Controllers.Main.txtStyle_Heading_6": "Heading 6",
"DE.Controllers.Main.txtStyle_Heading_7": "Heading 7",
"DE.Controllers.Main.txtStyle_Heading_8": "Heading 8",
"DE.Controllers.Main.txtStyle_Heading_9": "Heading 9",
"DE.Controllers.Main.txtStyle_Intense_Emphasis": "Intense emphasis",
"DE.Controllers.Main.txtStyle_Intense_Quote": "Intense quote",
"DE.Controllers.Main.txtStyle_Intense_Reference": "Intense reference",
"DE.Controllers.Main.txtStyle_List_Paragraph": "List paragraph",
"DE.Controllers.Main.txtStyle_No_List": "No list",
"DE.Controllers.Main.txtStyle_No_Spacing": "No spacing",
"DE.Controllers.Main.txtStyle_Normal": "Normal",
"DE.Controllers.Main.txtStyle_Quote": "Quote",
"DE.Controllers.Main.txtStyle_Strong": "Strong",
"DE.Controllers.Main.txtStyle_Subtitle": "Subtitle",
"DE.Controllers.Main.txtStyle_Subtle_Emphasis": "Subtle emphasis",
"DE.Controllers.Main.txtStyle_Subtle_Reference": "Subtle reference",
"DE.Controllers.Main.txtStyle_Title": "Title",
"DE.Controllers.Main.txtSyntaxError": "Syntax error",
"DE.Controllers.Main.txtTableInd": "Table index cannot be zero",
"DE.Controllers.Main.txtTableOfContents": "Table of contents",
"DE.Controllers.Main.txtTableOfFigures": "Table of figures",
"DE.Controllers.Main.txtTOCHeading": "TOC Heading",
"DE.Controllers.Main.txtTooLarge": "Number too large to format",
"DE.Controllers.Main.txtTypeEquation": "Type an equation here.",
"DE.Controllers.Main.txtUndefBookmark": "Undefined bookmark",
"DE.Controllers.Main.txtXAxis": "X Axis",
"DE.Controllers.Main.txtYAxis": "Y Axis",
"DE.Controllers.Main.txtZeroDivide": "Zero divide",
"DE.Controllers.Main.unknownErrorText": "Unknown error.",
"DE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.",
"DE.Controllers.Main.updateChartText": "Updating chart data...",
"DE.Controllers.Main.uploadDocExtMessage": "Unknown document format.",
"DE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded.",
"DE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.",
"DE.Controllers.Main.uploadImageExtMessage": "Unknown image format.",
"DE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.",
"DE.Controllers.Main.uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.",
"DE.Controllers.Main.uploadImageTextText": "Uploading image...",
"DE.Controllers.Main.uploadImageTitleText": "Uploading image",
"DE.Controllers.Main.waitText": "Please, wait...",
"DE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher",
"DE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.",
"DE.Controllers.Main.warnLicenseAnonymous": "Access denied for anonymous users.<br>This document will be opened for viewing only.",
"DE.Controllers.Main.warnLicenseBefore": "License not active.<br>Please contact your administrator.",
"DE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"DE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.<br>You have no access to document editing functionality.<br>Please contact your administrator.",
"DE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.<br>You have a limited access to document editing functionality.<br>Please contact your administrator to get full access",
"DE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Please contact your administrator to learn more.",
"DE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Please contact your administrator to learn more.",
"DE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.<br>Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.",
"DE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.",
"DE.Controllers.Main.warnStartFilling": "Form filling is in progress.<br>File editing is not currently available.",
"DE.Controllers.Navigation.txtBeginning": "Beginning of document",
"DE.Controllers.Navigation.txtGotoBeginning": "Go to the beginning of the document",
"DE.Controllers.Print.textMarginsLast": "Last Custom",
"DE.Controllers.Print.txtCustom": "Custom",
"DE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range",
"DE.Controllers.Print.txtPrintRangeSingleRange": "Enter either a single page number or a single page range (for example, 5-12). Or you can Print to PDF.",
"DE.Controllers.Search.notcriticalErrorTitle": "Warning",
"DE.Controllers.Search.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.",
"DE.Controllers.Search.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.",
"DE.Controllers.Search.textReplaceSuccess": "Search has been done. {0} occurrences have been replaced",
"DE.Controllers.Search.warnReplaceString": "{0} is not a valid special character for the Replace With box.",
"DE.Controllers.Statusbar.textDisconnect": "<b>Connection is lost</b><br>Trying to connect. Please check connection settings.",
"DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked",
"DE.Controllers.Statusbar.textSetTrackChanges": "You are in Track Changes mode",
"DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled",
"DE.Controllers.Statusbar.tipReview": "Track changes",
"DE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.<br>The text style will be displayed using one of the system fonts, the saved font will be used when it is available.<br>Do you want to continue?",
"DE.Controllers.Toolbar.dataUrl": "Paste a data URL",
"DE.Controllers.Toolbar.errorAccessDeny": "You are trying to perform an action you do not have rights for.<br>Please contact your Document Server administrator.",
"DE.Controllers.Toolbar.fileUrl": "Paste a file URL",
"DE.Controllers.Toolbar.helpChartElements": "Easily toggle the visibility of chart elements with several clicks.",
"DE.Controllers.Toolbar.helpChartElementsHeader": "Chart elements display",
"DE.Controllers.Toolbar.helpCommentFilter": "Manage your view by toggling between open and resolved comments in the left panel.",
"DE.Controllers.Toolbar.helpCommentFilterHeader": "Comment filters",
"DE.Controllers.Toolbar.notcriticalErrorTitle": "Warning",
"DE.Controllers.Toolbar.textAccent": "Accents",
"DE.Controllers.Toolbar.textBracket": "Brackets",
"DE.Controllers.Toolbar.textConvertFormDownload": "Download file as a fillable PDF form to be able to fill it out.",
"DE.Controllers.Toolbar.textConvertFormSave": "Save file as a fillable PDF form to be able to fill it out.",
"DE.Controllers.Toolbar.textDownloadPdf": "Download PDF",
"DE.Controllers.Toolbar.textEmptyMMergeUrl": "You need to specify URL.",
"DE.Controllers.Toolbar.textFieldExample": "Example of writing code: TIME \\@ \"dddd, MMMM d, yyyy\"",
"DE.Controllers.Toolbar.textFieldLabel": "Field codes",
"DE.Controllers.Toolbar.textFieldTitle": "Field",
"DE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.<br>Please enter a numeric value between 1 and 300",
"DE.Controllers.Toolbar.textFraction": "Fractions",
"DE.Controllers.Toolbar.textFunction": "Functions",
"DE.Controllers.Toolbar.textGroup": "Group",
"DE.Controllers.Toolbar.textInsert": "Insert",
"DE.Controllers.Toolbar.textIntegral": "Integrals",
"DE.Controllers.Toolbar.textLargeOperator": "Large operators",
"DE.Controllers.Toolbar.textLimitAndLog": "Limits and logarithms",
"DE.Controllers.Toolbar.textMatrix": "Matrices",
"DE.Controllers.Toolbar.textOperator": "Operators",
"DE.Controllers.Toolbar.textRadical": "Radicals",
"DE.Controllers.Toolbar.textRecentlyUsed": "Recently used",
"DE.Controllers.Toolbar.textSavePdf": "Save as PDF",
"DE.Controllers.Toolbar.textScript": "Scripts",
"DE.Controllers.Toolbar.textSymbols": "Symbols",
"DE.Controllers.Toolbar.textTabForms": "Forms",
"DE.Controllers.Toolbar.textWarning": "Warning",
"DE.Controllers.Toolbar.txtAccent_Accent": "Acute",
"DE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above",
"DE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards arrow above",
"DE.Controllers.Toolbar.txtAccent_ArrowR": "Rightwards arrow above",
"DE.Controllers.Toolbar.txtAccent_Bar": "Bar",
"DE.Controllers.Toolbar.txtAccent_BarBot": "Underbar",
"DE.Controllers.Toolbar.txtAccent_BarTop": "Overbar",
"DE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed formula (with placeholder)",
"DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed formula (example)",
"DE.Controllers.Toolbar.txtAccent_Check": "Check",
"DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace",
"DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace",
"DE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A",
"DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with overbar",
"DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y with overbar",
"DE.Controllers.Toolbar.txtAccent_DDDot": "Triple dot",
"DE.Controllers.Toolbar.txtAccent_DDot": "Double dot",
"DE.Controllers.Toolbar.txtAccent_Dot": "Dot",
"DE.Controllers.Toolbar.txtAccent_DoubleBar": "Double overbar",
"DE.Controllers.Toolbar.txtAccent_Grave": "Grave",
"DE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping character below",
"DE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping character above",
"DE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards harpoon above",
"DE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards harpoon above",
"DE.Controllers.Toolbar.txtAccent_Hat": "Hat",
"DE.Controllers.Toolbar.txtAccent_Smile": "Breve",
"DE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"DE.Controllers.Toolbar.txtBracket_Angle": "Angle brackets",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle brackets with separator",
"DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle brackets with two separators",
"DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right angle bracket",
"DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left angle bracket",
"DE.Controllers.Toolbar.txtBracket_Curve": "Curly brackets",
"DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly brackets with separator",
"DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right curly bracket",
"DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left curly bracket",
"DE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)",
"DE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)",
"DE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object",
"DE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object in parentheses",
"DE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example",
"DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient",
"DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient in angle brackets",
"DE.Controllers.Toolbar.txtBracket_Line": "Vertical bars",
"DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right vertical bar",
"DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left vertical bar",
"DE.Controllers.Toolbar.txtBracket_LineDouble": "Double vertical bars",
"DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right double vertical bar",
"DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left double vertical bar",
"DE.Controllers.Toolbar.txtBracket_LowLim": "Floor",
"DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right floor",
"DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left floor",
"DE.Controllers.Toolbar.txtBracket_Round": "Parentheses",
"DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentheses with separator",
"DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right parenthesis",
"DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left parenthesis",
"DE.Controllers.Toolbar.txtBracket_Square": "Square brackets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder between two right square brackets",
"DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted square brackets",
"DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right square bracket",
"DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left square bracket",
"DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder between two left square brackets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble": "Double square brackets",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right double square bracket",
"DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left double square bracket",
"DE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling",
"DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right ceiling",
"DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left ceiling",
"DE.Controllers.Toolbar.txtDownload": "Download",
"DE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction",
"DE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy",
"DE.Controllers.Toolbar.txtFractionDifferential_2": "cap delta y over cap delta x",
"DE.Controllers.Toolbar.txtFractionDifferential_3": "partial y over partial x",
"DE.Controllers.Toolbar.txtFractionDifferential_4": "delta y over delta x",
"DE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction",
"DE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2",
"DE.Controllers.Toolbar.txtFractionSmall": "Small fraction",
"DE.Controllers.Toolbar.txtFractionVertical": "Stacked fraction",
"DE.Controllers.Toolbar.txtFunction_1_Cos": "Inverse cosine function",
"DE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperbolic inverse cosine function",
"DE.Controllers.Toolbar.txtFunction_1_Cot": "Inverse cotangent function",
"DE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperbolic inverse cotangent function",
"DE.Controllers.Toolbar.txtFunction_1_Csc": "Inverse cosecant function",
"DE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperbolic inverse cosecant function",
"DE.Controllers.Toolbar.txtFunction_1_Sec": "Inverse secant function",
"DE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperbolic inverse secant function",
"DE.Controllers.Toolbar.txtFunction_1_Sin": "Inverse sine function",
"DE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperbolic inverse sine function",
"DE.Controllers.Toolbar.txtFunction_1_Tan": "Inverse tangent function",
"DE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperbolic inverse tangent function",
"DE.Controllers.Toolbar.txtFunction_Cos": "Cosine function",
"DE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic cosine function",
"DE.Controllers.Toolbar.txtFunction_Cot": "Cotangent function",
"DE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic cotangent function",
"DE.Controllers.Toolbar.txtFunction_Csc": "Cosecant function",
"DE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic cosecant function",
"DE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta",
"DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x",
"DE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula",
"DE.Controllers.Toolbar.txtFunction_Sec": "Secant function",
"DE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic secant function",
"DE.Controllers.Toolbar.txtFunction_Sin": "Sine function",
"DE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic sine function",
"DE.Controllers.Toolbar.txtFunction_Tan": "Tangent function",
"DE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic tangent function",
"DE.Controllers.Toolbar.txtIntegral": "Integral",
"DE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta",
"DE.Controllers.Toolbar.txtIntegral_dx": "Differential x",
"DE.Controllers.Toolbar.txtIntegral_dy": "Differential y",
"DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralDouble": "Double integral",
"DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral with limits",
"DE.Controllers.Toolbar.txtIntegralOriented": "Contour integral",
"DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral with limits",
"DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral with limits",
"DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral with limits",
"DE.Controllers.Toolbar.txtIntegralSubSup": "Integral with limits",
"DE.Controllers.Toolbar.txtIntegralTriple": "Triple integral",
"DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral with stacked limits",
"DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product with limits",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation over k of n choose k",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation from i equal zero to n",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation example using two indices",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product example",
"DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union example",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Prod": "Product",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLargeOperator_Union": "Union",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with limits",
"DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with subscript lower limit",
"DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with subscript/superscript limits",
"DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example",
"DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example",
"DE.Controllers.Toolbar.txtLimitLog_Lim": "Limit",
"DE.Controllers.Toolbar.txtLimitLog_Ln": "Natural logarithm",
"DE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm",
"DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm",
"DE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
"DE.Controllers.Toolbar.txtLimitLog_Min": "Minimum",
"DE.Controllers.Toolbar.txtMarginsH": "Top and bottom margins are too high for a given page height",
"DE.Controllers.Toolbar.txtMarginsW": "Left and right margins are too wide for a given page width",
"DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2 by 2 matrix in double vertical bars",
"DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2 by 2 determinant",
"DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty 2 by 2 matrix in parentheses",
"DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty 2 by 2 matrix in brackets",
"DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 empty matrix",
"DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots",
"DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots",
"DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix in parentheses",
"DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix in brackets",
"DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix with zeros",
"DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 identity matrix with blank off-diagonal cells",
"DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix with zeros",
"DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix with blank off-diagonal cells",
"DE.Controllers.Toolbar.txtNeedDownload": "PDF viewer can only save new changes in separate file copies. It doesn't support co-editing and other users won't see your changes unless you share a new file version.",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below",
"DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below",
"DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Leftwards arrow above",
"DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards arrow below",
"DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Rightwards arrow above",
"DE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon equal",
"DE.Controllers.Toolbar.txtOperator_Custom_1": "Yields",
"DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields",
"DE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition",
"DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left double arrow below",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left double arrow above",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below",
"DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards arrow above",
"DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equal equal",
"DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal",
"DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal",
"DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by",
"DE.Controllers.Toolbar.txtRadicalCustom_1": "Right hand side of quadratic formula",
"DE.Controllers.Toolbar.txtRadicalCustom_2": "Square root of a squared plus b squared",
"DE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree",
"DE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root",
"DE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree",
"DE.Controllers.Toolbar.txtRadicalSqrt": "Square root",
"DE.Controllers.Toolbar.txtSaveCopy": "Save copy",
"DE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared",
"DE.Controllers.Toolbar.txtScriptCustom_2": "e to the minus i omega t",
"DE.Controllers.Toolbar.txtScriptCustom_3": "x squared",
"DE.Controllers.Toolbar.txtScriptCustom_4": "Y left superscript n left subscript one",
"DE.Controllers.Toolbar.txtScriptSub": "Subscript",
"DE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript",
"DE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript",
"DE.Controllers.Toolbar.txtScriptSup": "Superscript",
"DE.Controllers.Toolbar.txtSymbol_about": "Approximately",
"DE.Controllers.Toolbar.txtSymbol_additional": "Complement",
"DE.Controllers.Toolbar.txtSymbol_aleph": "Alef",
"DE.Controllers.Toolbar.txtSymbol_alpha": "Alpha",
"DE.Controllers.Toolbar.txtSymbol_approx": "Almost equal to",
"DE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator",
"DE.Controllers.Toolbar.txtSymbol_beta": "Beta",
"DE.Controllers.Toolbar.txtSymbol_beth": "Bet",
"DE.Controllers.Toolbar.txtSymbol_bullet": "Bullet operator",
"DE.Controllers.Toolbar.txtSymbol_cap": "Intersection",
"DE.Controllers.Toolbar.txtSymbol_cbrt": "Cube root",
"DE.Controllers.Toolbar.txtSymbol_cdots": "Midline horizontal ellipsis",
"DE.Controllers.Toolbar.txtSymbol_celsius": "Degrees Celsius",
"DE.Controllers.Toolbar.txtSymbol_chi": "Chi",
"DE.Controllers.Toolbar.txtSymbol_cong": "Approximately equal to",
"DE.Controllers.Toolbar.txtSymbol_cup": "Union",
"DE.Controllers.Toolbar.txtSymbol_ddots": "Down right diagonal ellipsis",
"DE.Controllers.Toolbar.txtSymbol_degree": "Degrees",
"DE.Controllers.Toolbar.txtSymbol_delta": "Delta",
"DE.Controllers.Toolbar.txtSymbol_div": "Division sign",
"DE.Controllers.Toolbar.txtSymbol_downarrow": "Down arrow",
"DE.Controllers.Toolbar.txtSymbol_emptyset": "Empty set",
"DE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon",
"DE.Controllers.Toolbar.txtSymbol_equals": "Equal",
"DE.Controllers.Toolbar.txtSymbol_equiv": "Identical to",
"DE.Controllers.Toolbar.txtSymbol_eta": "Eta",
"DE.Controllers.Toolbar.txtSymbol_exists": "There exist",
"DE.Controllers.Toolbar.txtSymbol_factorial": "Factorial",
"DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrees Fahrenheit",
"DE.Controllers.Toolbar.txtSymbol_forall": "For all",
"DE.Controllers.Toolbar.txtSymbol_gamma": "Gamma",
"DE.Controllers.Toolbar.txtSymbol_geq": "Greater than or equal to",
"DE.Controllers.Toolbar.txtSymbol_gg": "Much greater than",
"DE.Controllers.Toolbar.txtSymbol_greater": "Greater than",
"DE.Controllers.Toolbar.txtSymbol_in": "Element of",
"DE.Controllers.Toolbar.txtSymbol_inc": "Increment",
"DE.Controllers.Toolbar.txtSymbol_infinity": "Infinity",
"DE.Controllers.Toolbar.txtSymbol_iota": "Iota",
"DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa",
"DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda",
"DE.Controllers.Toolbar.txtSymbol_leftarrow": "Left arrow",
"DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-right arrow",
"DE.Controllers.Toolbar.txtSymbol_leq": "Less than or equal to",
"DE.Controllers.Toolbar.txtSymbol_less": "Less than",
"DE.Controllers.Toolbar.txtSymbol_ll": "Much less than",
"DE.Controllers.Toolbar.txtSymbol_minus": "Minus",
"DE.Controllers.Toolbar.txtSymbol_mp": "Minus plus",
"DE.Controllers.Toolbar.txtSymbol_mu": "Mu",
"DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla",
"DE.Controllers.Toolbar.txtSymbol_neq": "Not equal to",
"DE.Controllers.Toolbar.txtSymbol_ni": "Contains as member",
"DE.Controllers.Toolbar.txtSymbol_not": "Not sign",
"DE.Controllers.Toolbar.txtSymbol_notexists": "There does not exist",
"DE.Controllers.Toolbar.txtSymbol_nu": "Nu",
"DE.Controllers.Toolbar.txtSymbol_o": "Omicron",
"DE.Controllers.Toolbar.txtSymbol_omega": "Omega",
"DE.Controllers.Toolbar.txtSymbol_partial": "Partial differential",
"DE.Controllers.Toolbar.txtSymbol_percent": "Percentage",
"DE.Controllers.Toolbar.txtSymbol_phi": "Phi",
"DE.Controllers.Toolbar.txtSymbol_pi": "Pi",
"DE.Controllers.Toolbar.txtSymbol_plus": "Plus",
"DE.Controllers.Toolbar.txtSymbol_pm": "Plus minus",
"DE.Controllers.Toolbar.txtSymbol_propto": "Proportional to",
"DE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"DE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth root",
"DE.Controllers.Toolbar.txtSymbol_qed": "End of proof",
"DE.Controllers.Toolbar.txtSymbol_rddots": "Up right diagonal ellipsis",
"DE.Controllers.Toolbar.txtSymbol_rho": "Rho",
"DE.Controllers.Toolbar.txtSymbol_rightarrow": "Right arrow",
"DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma",
"DE.Controllers.Toolbar.txtSymbol_sqrt": "Radical sign",
"DE.Controllers.Toolbar.txtSymbol_tau": "Tau",
"DE.Controllers.Toolbar.txtSymbol_therefore": "Therefore",
"DE.Controllers.Toolbar.txtSymbol_theta": "Theta",
"DE.Controllers.Toolbar.txtSymbol_times": "Multiplication sign",
"DE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow",
"DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon",
"DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon variant",
"DE.Controllers.Toolbar.txtSymbol_varphi": "Phi variant",
"DE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant",
"DE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant",
"DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant",
"DE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant",
"DE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis",
"DE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"DE.Controllers.Toolbar.txtUntitled": "Untitled",
"DE.Controllers.Viewport.textFitPage": "Fit to Page",
"DE.Controllers.Viewport.textFitWidth": "Fit to Width",
"DE.Controllers.Viewport.txtDarkMode": "Dark mode",
"DE.Views.BookmarksDialog.textAdd": "Add",
"DE.Views.BookmarksDialog.textAddAndGetLink": "Add & Get Link",
"DE.Views.BookmarksDialog.textBookmarkName": "Bookmark name",
"DE.Views.BookmarksDialog.textClose": "Close",
"DE.Views.BookmarksDialog.textCopy": "Copy",
"DE.Views.BookmarksDialog.textDelete": "Delete",
"DE.Views.BookmarksDialog.textGetLink": "Get link",
"DE.Views.BookmarksDialog.textGoto": "Go to",
"DE.Views.BookmarksDialog.textHidden": "Hidden bookmarks",
"DE.Views.BookmarksDialog.textLocation": "Location",
"DE.Views.BookmarksDialog.textName": "Name",
"DE.Views.BookmarksDialog.textSort": "Sort by",
"DE.Views.BookmarksDialog.textTitle": "Bookmarks",
"DE.Views.BookmarksDialog.txtInvalidName": "Bookmark name can only contain letters, digits and underscores, and should begin with the letter",
"DE.Views.CaptionDialog.textAdd": "Add label",
"DE.Views.CaptionDialog.textAfter": "After",
"DE.Views.CaptionDialog.textBefore": "Before",
"DE.Views.CaptionDialog.textCaption": "Caption",
"DE.Views.CaptionDialog.textChapter": "Chapter starts with style",
"DE.Views.CaptionDialog.textChapterInc": "Include chapter number",
"DE.Views.CaptionDialog.textColon": "colon",
"DE.Views.CaptionDialog.textDash": "dash",
"DE.Views.CaptionDialog.textDelete": "Delete label",
"DE.Views.CaptionDialog.textEquation": "Equation",
"DE.Views.CaptionDialog.textExamples": "Examples: Table 2-A, Image 1.IV",
"DE.Views.CaptionDialog.textExclude": "Exclude label from caption",
"DE.Views.CaptionDialog.textFigure": "Figure",
"DE.Views.CaptionDialog.textHyphen": "hyphen",
"DE.Views.CaptionDialog.textInsert": "Insert",
"DE.Views.CaptionDialog.textLabel": "Label",
"DE.Views.CaptionDialog.textLabelError": "Label must not be empty.",
"DE.Views.CaptionDialog.textLongDash": "long dash",
"DE.Views.CaptionDialog.textNumbering": "Numbering",
"DE.Views.CaptionDialog.textPeriod": "period",
"DE.Views.CaptionDialog.textSeparator": "Use separator",
"DE.Views.CaptionDialog.textTable": "Table",
"DE.Views.CaptionDialog.textTitle": "Insert caption",
"DE.Views.CellsAddDialog.textCol": "Columns",
"DE.Views.CellsAddDialog.textDown": "Below the cursor",
"DE.Views.CellsAddDialog.textLeft": "To the left",
"DE.Views.CellsAddDialog.textRight": "To the right",
"DE.Views.CellsAddDialog.textRow": "Rows",
"DE.Views.CellsAddDialog.textTitle": "Insert several",
"DE.Views.CellsAddDialog.textUp": "Above the cursor",
"DE.Views.ChartSettings.text3dDepth": "Depth (% of base)",
"DE.Views.ChartSettings.text3dHeight": "Height (% of base)",
"DE.Views.ChartSettings.text3dRotation": "3D Rotation",
"DE.Views.ChartSettings.textAdvanced": "Show advanced settings",
"DE.Views.ChartSettings.textAutoscale": "Autoscale",
"DE.Views.ChartSettings.textChartType": "Change chart type",
"DE.Views.ChartSettings.textData": "Data",
"DE.Views.ChartSettings.textDefault": "Default rotation",
"DE.Views.ChartSettings.textDown": "Down",
"DE.Views.ChartSettings.textEditData": "Edit data",
"DE.Views.ChartSettings.textEditLinks": "Edit Links",
"DE.Views.ChartSettings.textHeight": "Height",
"DE.Views.ChartSettings.textKeepRatio": "Constant proportions",
"DE.Views.ChartSettings.textLeft": "Left",
"DE.Views.ChartSettings.textLinkedData": "Linked Data",
"DE.Views.ChartSettings.textNarrow": "Narrow field of view",
"DE.Views.ChartSettings.textOriginalSize": "Actual Size",
"DE.Views.ChartSettings.textPerspective": "Perspective",
"DE.Views.ChartSettings.textRight": "Right",
"DE.Views.ChartSettings.textRightAngle": "Right angle axes",
"DE.Views.ChartSettings.textSelectData": "Select Data",
"DE.Views.ChartSettings.textSize": "Size",
"DE.Views.ChartSettings.textStyle": "Style",
"DE.Views.ChartSettings.textUndock": "Undock from panel",
"DE.Views.ChartSettings.textUp": "Up",
"DE.Views.ChartSettings.textUpdateData": "Update Data",
"DE.Views.ChartSettings.textWiden": "Widen field of view",
"DE.Views.ChartSettings.textWidth": "Width",
"DE.Views.ChartSettings.textWrap": "Wrapping Style",
"DE.Views.ChartSettings.textX": "X rotation",
"DE.Views.ChartSettings.textY": "Y rotation",
"DE.Views.ChartSettings.txtBehind": "Behind text",
"DE.Views.ChartSettings.txtInFront": "In front of Text",
"DE.Views.ChartSettings.txtInline": "In line with text",
"DE.Views.ChartSettings.txtSquare": "Square",
"DE.Views.ChartSettings.txtThrough": "Through",
"DE.Views.ChartSettings.txtTight": "Tight",
"DE.Views.ChartSettings.txtTitle": "Chart",
"DE.Views.ChartSettings.txtTopAndBottom": "Top and bottom",
"DE.Views.ChartSettingsDlg.textLeftOverlay": "Left overlay",
"DE.Views.ControlSettingsDialog.strGeneral": "General",
"DE.Views.ControlSettingsDialog.textAdd": "Add",
"DE.Views.ControlSettingsDialog.textAppearance": "Appearance",
"DE.Views.ControlSettingsDialog.textApplyAll": "Apply to all",
"DE.Views.ControlSettingsDialog.textBox": "Bounding box",
"DE.Views.ControlSettingsDialog.textChange": "Edit",
"DE.Views.ControlSettingsDialog.textCheckbox": "Check box",
"DE.Views.ControlSettingsDialog.textChecked": "Checked symbol",
"DE.Views.ControlSettingsDialog.textColor": "Color",
"DE.Views.ControlSettingsDialog.textCombobox": "Combo box",
"DE.Views.ControlSettingsDialog.textDate": "Date format",
"DE.Views.ControlSettingsDialog.textDelete": "Delete",
"DE.Views.ControlSettingsDialog.textDisplayName": "Display name",
"DE.Views.ControlSettingsDialog.textDown": "Down",
"DE.Views.ControlSettingsDialog.textDropDown": "Drop-down list",
"DE.Views.ControlSettingsDialog.textFormat": "Display the date like this",
"DE.Views.ControlSettingsDialog.textLang": "Language",
"DE.Views.ControlSettingsDialog.textLock": "Locking",
"DE.Views.ControlSettingsDialog.textName": "Title",
"DE.Views.ControlSettingsDialog.textNone": "None",
"DE.Views.ControlSettingsDialog.textPlaceholder": "Placeholder",
"DE.Views.ControlSettingsDialog.textShowAs": "Show as",
"DE.Views.ControlSettingsDialog.textSystemColor": "System",
"DE.Views.ControlSettingsDialog.textTag": "Tag",
"DE.Views.ControlSettingsDialog.textTitle": "Content control settings",
"DE.Views.ControlSettingsDialog.textUnchecked": "Unchecked symbol",
"DE.Views.ControlSettingsDialog.textUp": "Up",
"DE.Views.ControlSettingsDialog.textValue": "Value",
"DE.Views.ControlSettingsDialog.tipChange": "Change symbol",
"DE.Views.ControlSettingsDialog.txtLockDelete": "Content control cannot be deleted",
"DE.Views.ControlSettingsDialog.txtLockEdit": "Contents cannot be edited",
"DE.Views.ControlSettingsDialog.txtRemContent": "Remove content control when contents are edited",
"DE.Views.CrossReferenceDialog.textAboveBelow": "Above/below",
"DE.Views.CrossReferenceDialog.textBookmark": "Bookmark",
"DE.Views.CrossReferenceDialog.textBookmarkText": "Bookmark text",
"DE.Views.CrossReferenceDialog.textCaption": "Entire caption",
"DE.Views.CrossReferenceDialog.textEmpty": "The request reference is empty.",
"DE.Views.CrossReferenceDialog.textEndnote": "Endnote",
"DE.Views.CrossReferenceDialog.textEndNoteNum": "Endnote number",
"DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Endnote number (formatted)",
"DE.Views.CrossReferenceDialog.textEquation": "Equation",
"DE.Views.CrossReferenceDialog.textFigure": "Figure",
"DE.Views.CrossReferenceDialog.textFootnote": "Footnote",
"DE.Views.CrossReferenceDialog.textHeading": "Heading",
"DE.Views.CrossReferenceDialog.textHeadingNum": "Heading number",
"DE.Views.CrossReferenceDialog.textHeadingNumFull": "Heading number (full context)",
"DE.Views.CrossReferenceDialog.textHeadingNumNo": "Heading number (no context)",
"DE.Views.CrossReferenceDialog.textHeadingText": "Heading text",
"DE.Views.CrossReferenceDialog.textIncludeAbove": "Include above/below",
"DE.Views.CrossReferenceDialog.textInsert": "Insert",
"DE.Views.CrossReferenceDialog.textInsertAs": "Insert as hyperlink",
"DE.Views.CrossReferenceDialog.textLabelNum": "Only label and number",
"DE.Views.CrossReferenceDialog.textNoteNum": "Footnote number",
"DE.Views.CrossReferenceDialog.textNoteNumForm": "Footnote number (formatted)",
"DE.Views.CrossReferenceDialog.textOnlyCaption": "Only caption text",
"DE.Views.CrossReferenceDialog.textPageNum": "Page number",
"DE.Views.CrossReferenceDialog.textParagraph": "Numbered item",
"DE.Views.CrossReferenceDialog.textParaNum": "Paragraph number",
"DE.Views.CrossReferenceDialog.textParaNumFull": "Paragraph number (full context)",
"DE.Views.CrossReferenceDialog.textParaNumNo": "Paragraph number (no context)",
"DE.Views.CrossReferenceDialog.textSeparate": "Separate numbers with",
"DE.Views.CrossReferenceDialog.textTable": "Table",
"DE.Views.CrossReferenceDialog.textText": "Paragraph text",
"DE.Views.CrossReferenceDialog.textWhich": "For which caption",
"DE.Views.CrossReferenceDialog.textWhichBookmark": "For which bookmark",
"DE.Views.CrossReferenceDialog.textWhichEndnote": "For which endnote",
"DE.Views.CrossReferenceDialog.textWhichHeading": "For which heading",
"DE.Views.CrossReferenceDialog.textWhichNote": "For which footnote",
"DE.Views.CrossReferenceDialog.textWhichPara": "For which numbered item",
"DE.Views.CrossReferenceDialog.txtReference": "Insert reference to",
"DE.Views.CrossReferenceDialog.txtTitle": "Cross-reference",
"DE.Views.CrossReferenceDialog.txtType": "Reference type",
"DE.Views.CustomColumnsDialog.textColumns": "Number of columns",
"DE.Views.CustomColumnsDialog.textEqualWidth": "Equal column width",
"DE.Views.CustomColumnsDialog.textSeparator": "Column divider",
"DE.Views.CustomColumnsDialog.textTitle": "Columns",
"DE.Views.CustomColumnsDialog.textTitleSpacing": "Spacing",
"DE.Views.CustomColumnsDialog.textWidth": "Width",
"DE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: \"{1}\"",
"DE.Views.DateTimeDialog.textDefault": "Set as default",
"DE.Views.DateTimeDialog.textFormat": "Formats",
"DE.Views.DateTimeDialog.textLang": "Language",
"DE.Views.DateTimeDialog.textUpdate": "Update automatically",
"DE.Views.DateTimeDialog.txtTitle": "Date & time",
"DE.Views.DocProtection.hintProtectDoc": "Protect document",
"DE.Views.DocProtection.txtDocProtectedComment": "Document is protected.<br>You may only insert comments to this document.",
"DE.Views.DocProtection.txtDocProtectedForms": "Document is protected.<br>You may only fill in forms in this document.",
"DE.Views.DocProtection.txtDocProtectedTrack": "Document is protected.<br>You may edit this document, but all changes will be tracked.",
"DE.Views.DocProtection.txtDocProtectedView": "Document is protected.<br>You may only view this document.",
"DE.Views.DocProtection.txtDocUnlockDescription": "Enter a password to unprotect document",
"DE.Views.DocProtection.txtProtectDoc": "Protect Document",
"DE.Views.DocProtection.txtUnlockTitle": "Unprotect document",
"DE.Views.DocumentHolder.aboveText": "Above",
"DE.Views.DocumentHolder.addCommentText": "Add comment",
"DE.Views.DocumentHolder.advancedDropCapText": "Drop cap settings",
"DE.Views.DocumentHolder.advancedEquationText": "Equation settings",
"DE.Views.DocumentHolder.advancedFrameText": "Frame advanced settings",
"DE.Views.DocumentHolder.advancedParagraphText": "Paragraph advanced settings",
"DE.Views.DocumentHolder.advancedTableText": "Table advanced settings",
"DE.Views.DocumentHolder.advancedText": "Advanced settings",
"DE.Views.DocumentHolder.alignmentText": "Alignment",
"DE.Views.DocumentHolder.allLinearText": "All - Linear",
"DE.Views.DocumentHolder.allProfText": "All - Professional",
"DE.Views.DocumentHolder.belowText": "Below",
"DE.Views.DocumentHolder.breakBeforeText": "Page break before",
"DE.Views.DocumentHolder.btnChart": "Add, remove or change chart elements such as the title, legend, gridlines, and data labels",
"DE.Views.DocumentHolder.bulletsText": "Bullets and numbering",
"DE.Views.DocumentHolder.cellAlignText": "Cell vertical alignment",
"DE.Views.DocumentHolder.cellText": "Cell",
"DE.Views.DocumentHolder.centerText": "Center",
"DE.Views.DocumentHolder.chartText": "Chart advanced settings",
"DE.Views.DocumentHolder.columnText": "Column",
"DE.Views.DocumentHolder.currLinearText": "Current - Linear",
"DE.Views.DocumentHolder.currProfText": "Current - Professional",
"DE.Views.DocumentHolder.deleteColumnText": "Delete column",
"DE.Views.DocumentHolder.deleteRowText": "Delete row",
"DE.Views.DocumentHolder.deleteTableText": "Delete table",
"DE.Views.DocumentHolder.deleteText": "Delete",
"DE.Views.DocumentHolder.DepthAxis": "Z axis",
"DE.Views.DocumentHolder.direct270Text": "Rotate text up",
"DE.Views.DocumentHolder.direct90Text": "Rotate text down",
"DE.Views.DocumentHolder.directHText": "Horizontal",
"DE.Views.DocumentHolder.directionText": "Text direction",
"DE.Views.DocumentHolder.editChartText": "Edit data",
"DE.Views.DocumentHolder.editFooterText": "Edit footer",
"DE.Views.DocumentHolder.editHeaderText": "Edit header",
"DE.Views.DocumentHolder.editHyperlinkText": "Edit hyperlink",
"DE.Views.DocumentHolder.eqToDisplayText": "Change to Display",
"DE.Views.DocumentHolder.eqToInlineText": "Change to Inline",
"DE.Views.DocumentHolder.guestText": "Guest",
"DE.Views.DocumentHolder.hideEqToolbar": "Hide equation toolbar",
"DE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
"DE.Views.DocumentHolder.ignoreAllSpellText": "Ignore all",
"DE.Views.DocumentHolder.ignoreSpellText": "Ignore",
"DE.Views.DocumentHolder.imageText": "Image advanced settings",
"DE.Views.DocumentHolder.insertColumnLeftText": "Column left",
"DE.Views.DocumentHolder.insertColumnRightText": "Column right",
"DE.Views.DocumentHolder.insertColumnText": "Insert column",
"DE.Views.DocumentHolder.insertRowAboveText": "Row above",
"DE.Views.DocumentHolder.insertRowBelowText": "Row below",
"DE.Views.DocumentHolder.insertRowText": "Insert row",
"DE.Views.DocumentHolder.insertText": "Insert",
"DE.Views.DocumentHolder.keepLinesText": "Keep lines together",
"DE.Views.DocumentHolder.langText": "Select language",
"DE.Views.DocumentHolder.latexText": "LaTeX",
"DE.Views.DocumentHolder.leftText": "Left",
"DE.Views.DocumentHolder.loadSpellText": "Loading variants...",
"DE.Views.DocumentHolder.mergeCellsText": "Merge cells",
"DE.Views.DocumentHolder.mniImageFromFile": "Image from File",
"DE.Views.DocumentHolder.mniImageFromStorage": "Image from Storage",
"DE.Views.DocumentHolder.mniImageFromUrl": "Image from URL",
"DE.Views.DocumentHolder.moreText": "More variants...",
"DE.Views.DocumentHolder.noSpellVariantsText": "No variants",
"DE.Views.DocumentHolder.notcriticalErrorTitle": "Warning",
"DE.Views.DocumentHolder.originalSizeText": "Actual size",
"DE.Views.DocumentHolder.paragraphText": "Paragraph",
"DE.Views.DocumentHolder.removeHyperlinkText": "Remove hyperlink",
"DE.Views.DocumentHolder.rightText": "Right",
"DE.Views.DocumentHolder.rowText": "Row",
"DE.Views.DocumentHolder.saveStyleText": "Create new style",
"DE.Views.DocumentHolder.selectCellText": "Select cell",
"DE.Views.DocumentHolder.selectColumnText": "Select column",
"DE.Views.DocumentHolder.selectRowText": "Select row",
"DE.Views.DocumentHolder.selectTableText": "Select table",
"DE.Views.DocumentHolder.selectText": "Select",
"DE.Views.DocumentHolder.shapeText": "Shape advanced settings",
"DE.Views.DocumentHolder.showEqToolbar": "Show equation toolbar",
"DE.Views.DocumentHolder.spellcheckText": "Spellcheck",
"DE.Views.DocumentHolder.splitCellsText": "Split cell...",
"DE.Views.DocumentHolder.splitCellTitleText": "Split Cell",
"DE.Views.DocumentHolder.strDelete": "Remove signature",
"DE.Views.DocumentHolder.strDetails": "Signature Details",
"DE.Views.DocumentHolder.strSetup": "Signature Setup",
"DE.Views.DocumentHolder.strSign": "Sign",
"DE.Views.DocumentHolder.styleText": "Formatting as Style",
"DE.Views.DocumentHolder.tableText": "Table",
"DE.Views.DocumentHolder.textAccept": "Accept change",
"DE.Views.DocumentHolder.textAlign": "Align",
"DE.Views.DocumentHolder.textArrange": "Arrange",
"DE.Views.DocumentHolder.textArrangeBack": "Send to background",
"DE.Views.DocumentHolder.textArrangeBackward": "Send backward",
"DE.Views.DocumentHolder.textArrangeForward": "Bring forward",
"DE.Views.DocumentHolder.textArrangeFront": "Bring to foreground",
"DE.Views.DocumentHolder.textAxes": "Axes",
"DE.Views.DocumentHolder.textAxisTitles": "Axis Titles",
"DE.Views.DocumentHolder.textBottom": "Bottom",
"DE.Views.DocumentHolder.textCells": "Cells",
"DE.Views.DocumentHolder.textCenter": "Center",
"DE.Views.DocumentHolder.textChartTitle": "Chart Title",
"DE.Views.DocumentHolder.textClearField": "Clear field",
"DE.Views.DocumentHolder.textCol": "Delete entire column",
"DE.Views.DocumentHolder.textContentControls": "Content control",
"DE.Views.DocumentHolder.textContinueNumbering": "Continue numbering",
"DE.Views.DocumentHolder.textCopy": "Copy",
"DE.Views.DocumentHolder.textCrop": "Crop",
"DE.Views.DocumentHolder.textCropFill": "Fill",
"DE.Views.DocumentHolder.textCropFit": "Fit",
"DE.Views.DocumentHolder.textCut": "Cut",
"DE.Views.DocumentHolder.textDataLabels": "Data labels",
"DE.Views.DocumentHolder.textDataTable": "Data Table",
"DE.Views.DocumentHolder.textDistributeCols": "Distribute columns",
"DE.Views.DocumentHolder.textDistributeRows": "Distribute rows",
"DE.Views.DocumentHolder.textEditControls": "Content control settings",
"DE.Views.DocumentHolder.textEditField": "Edit field",
"DE.Views.DocumentHolder.textEditObject": "Edit object",
"DE.Views.DocumentHolder.textEditPoints": "Edit points",
"DE.Views.DocumentHolder.textEditWrapBoundary": "Edit wrap boundary",
"DE.Views.DocumentHolder.textErrorBars": "Error Bars",
"DE.Views.DocumentHolder.textExponential": "Exponential",
"DE.Views.DocumentHolder.textFieldCodes": "Toggle field codes",
"DE.Views.DocumentHolder.textFit": "Fit to width",
"DE.Views.DocumentHolder.textFlipH": "Flip horizontally",
"DE.Views.DocumentHolder.textFlipV": "Flip vertically",
"DE.Views.DocumentHolder.textFollow": "Follow move",
"DE.Views.DocumentHolder.textFromFile": "From file",
"DE.Views.DocumentHolder.textFromStorage": "From storage",
"DE.Views.DocumentHolder.textFromUrl": "From URL",
"DE.Views.DocumentHolder.textGridLines": "Gridlines",
"DE.Views.DocumentHolder.textHorAxis": "Horizontal axis",
"DE.Views.DocumentHolder.textHorAxisSec": "Secondary horizontal axis",
"DE.Views.DocumentHolder.textHorizontalMajor": "Horizontal Major",
"DE.Views.DocumentHolder.textHorizontalMinor": "Horizontal Minor",
"DE.Views.DocumentHolder.textIndents": "Adjust list indents",
"DE.Views.DocumentHolder.textInnerBottom": "Inner bottom",
"DE.Views.DocumentHolder.textInnerTop": "Inner top",
"DE.Views.DocumentHolder.textJoinList": "Join to previous list",
"DE.Views.DocumentHolder.textLeft": "Shift cells left",
"DE.Views.DocumentHolder.textLeftData": "Left",
"DE.Views.DocumentHolder.textLeftOverlay": "Left overlay",
"DE.Views.DocumentHolder.textLeftPos": "Left",
"DE.Views.DocumentHolder.textLegendPos": "Legend",
"DE.Views.DocumentHolder.textLinear": "Linear",
"DE.Views.DocumentHolder.textLinearForecast": "Linear Forecast",
"DE.Views.DocumentHolder.textLines": "Lines",
"DE.Views.DocumentHolder.textMovingAverage": "Moving Average (2)",
"DE.Views.DocumentHolder.textNest": "Nest table",
"DE.Views.DocumentHolder.textNextPage": "Next page",
"DE.Views.DocumentHolder.textNone": "None",
"DE.Views.DocumentHolder.textNoOverlay": "No overlay",
"DE.Views.DocumentHolder.textNumberingValue": "Numbering value",
"DE.Views.DocumentHolder.textOuterTop": "Outer top",
"DE.Views.DocumentHolder.textOverlay": "Overlay",
"DE.Views.DocumentHolder.textPaste": "Paste",
"DE.Views.DocumentHolder.textPrevPage": "Previous Page",
"DE.Views.DocumentHolder.textRedo": "Redo",
"DE.Views.DocumentHolder.textRefreshField": "Update field",
"DE.Views.DocumentHolder.textReject": "Reject change",
"DE.Views.DocumentHolder.textRemCheckBox": "Remove Checkbox",
"DE.Views.DocumentHolder.textRemComboBox": "Remove Combo Box",
"DE.Views.DocumentHolder.textRemDropdown": "Remove Dropdown",
"DE.Views.DocumentHolder.textRemField": "Remove text field",
"DE.Views.DocumentHolder.textRemove": "Remove",
"DE.Views.DocumentHolder.textRemoveControl": "Remove content control",
"DE.Views.DocumentHolder.textRemPicture": "Remove image",
"DE.Views.DocumentHolder.textRemRadioBox": "Remove Radio button",
"DE.Views.DocumentHolder.textReplace": "Replace image",
"DE.Views.DocumentHolder.textResetCrop": "Reset crop",
"DE.Views.DocumentHolder.textRight": "Right",
"DE.Views.DocumentHolder.textRightOverlay": "Right overlay",
"DE.Views.DocumentHolder.textRotate": "Rotate",
"DE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise",
"DE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
"DE.Views.DocumentHolder.textRow": "Delete entire row",
"DE.Views.DocumentHolder.textSaveAsPicture": "Save as picture",
"DE.Views.DocumentHolder.textSeparateList": "Separate list",
"DE.Views.DocumentHolder.textSettings": "Settings",
"DE.Views.DocumentHolder.textSeveral": "Several rows/columns",
"DE.Views.DocumentHolder.textShapeAlignBottom": "Align bottom",
"DE.Views.DocumentHolder.textShapeAlignCenter": "Align center",
"DE.Views.DocumentHolder.textShapeAlignLeft": "Align left",
"DE.Views.DocumentHolder.textShapeAlignMiddle": "Align middle",
"DE.Views.DocumentHolder.textShapeAlignRight": "Align right",
"DE.Views.DocumentHolder.textShapeAlignTop": "Align top",
"DE.Views.DocumentHolder.textShapesMerge": "Merge shapes",
"DE.Views.DocumentHolder.textShowDataTable": "Show Data Table",
"DE.Views.DocumentHolder.textShowLegendKeys": "Show Legend Keys",
"DE.Views.DocumentHolder.textShowUpDown": "Show Up/Down Bars",
"DE.Views.DocumentHolder.textStandardDeviation": "Standard Deviation",
"DE.Views.DocumentHolder.textStandardError": "Standard Error",
"DE.Views.DocumentHolder.textStartNewList": "Start new list",
"DE.Views.DocumentHolder.textStartNumberingFrom": "Set numbering value",
"DE.Views.DocumentHolder.textTitleCellsRemove": "Delete cells",
"DE.Views.DocumentHolder.textTOC": "Table of contents",
"DE.Views.DocumentHolder.textTOCSettings": "Table of contents settings",
"DE.Views.DocumentHolder.textTop": "Top",
"DE.Views.DocumentHolder.textTrendline": "Trendline",
"DE.Views.DocumentHolder.textUndo": "Undo",
"DE.Views.DocumentHolder.textUpdateAll": "Update entire table",
"DE.Views.DocumentHolder.textUpdatePages": "Update page numbers only",
"DE.Views.DocumentHolder.textUpdateTOC": "Update table of contents",
"DE.Views.DocumentHolder.textUpDownBars": " Up/Down Bars",
"DE.Views.DocumentHolder.textVertAxis": "Vertical axis",
"DE.Views.DocumentHolder.textVertAxisSec": "Secondary vertical axis",
"DE.Views.DocumentHolder.textVerticalMajor": "Vertical Major",
"DE.Views.DocumentHolder.textVerticalMinor": "Vertical Minor",
"DE.Views.DocumentHolder.textWrap": "Wrapping style",
"DE.Views.DocumentHolder.tipIsLocked": "This element is currently being edited by another user.",
"DE.Views.DocumentHolder.toDictionaryText": "Add to dictionary",
"DE.Views.DocumentHolder.txtAddBottom": "Add bottom border",
"DE.Views.DocumentHolder.txtAddFractionBar": "Add fraction bar",
"DE.Views.DocumentHolder.txtAddHor": "Add horizontal line",
"DE.Views.DocumentHolder.txtAddLB": "Add left bottom line",
"DE.Views.DocumentHolder.txtAddLeft": "Add left border",
"DE.Views.DocumentHolder.txtAddLT": "Add left top line",
"DE.Views.DocumentHolder.txtAddRight": "Add right border",
"DE.Views.DocumentHolder.txtAddTop": "Add top border",
"DE.Views.DocumentHolder.txtAddVer": "Add vertical line",
"DE.Views.DocumentHolder.txtAlignToChar": "Align to character",
"DE.Views.DocumentHolder.txtBehind": "Behind text",
"DE.Views.DocumentHolder.txtBorderProps": "Border properties",
"DE.Views.DocumentHolder.txtBottom": "Bottom",
"DE.Views.DocumentHolder.txtColumnAlign": "Column alignment",
"DE.Views.DocumentHolder.txtDecreaseArg": "Decrease argument size",
"DE.Views.DocumentHolder.txtDeleteArg": "Delete argument",
"DE.Views.DocumentHolder.txtDeleteBreak": "Delete manual break",
"DE.Views.DocumentHolder.txtDeleteChars": "Delete enclosing characters",
"DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators",
"DE.Views.DocumentHolder.txtDeleteEq": "Delete equation",
"DE.Views.DocumentHolder.txtDeleteGroupChar": "Delete char",
"DE.Views.DocumentHolder.txtDeleteRadical": "Delete radical",
"DE.Views.DocumentHolder.txtDestEmbed": "Use destination theme & Embed workbook",
"DE.Views.DocumentHolder.txtDestLink": "Use destination theme & Link data",
"DE.Views.DocumentHolder.txtDistribHor": "Distribute horizontally",
"DE.Views.DocumentHolder.txtDistribVert": "Distribute vertically",
"DE.Views.DocumentHolder.txtEmpty": "(Empty)",
"DE.Views.DocumentHolder.txtFractionLinear": "Change to linear fraction",
"DE.Views.DocumentHolder.txtFractionSkewed": "Change to skewed fraction",
"DE.Views.DocumentHolder.txtFractionStacked": "Change to stacked fraction",
"DE.Views.DocumentHolder.txtGroup": "Group",
"DE.Views.DocumentHolder.txtGroupCharOver": "Char over text",
"DE.Views.DocumentHolder.txtGroupCharUnder": "Char under text",
"DE.Views.DocumentHolder.txtHideBottom": "Hide bottom border",
"DE.Views.DocumentHolder.txtHideBottomLimit": "Hide bottom limit",
"DE.Views.DocumentHolder.txtHideCloseBracket": "Hide closing bracket",
"DE.Views.DocumentHolder.txtHideDegree": "Hide degree",
"DE.Views.DocumentHolder.txtHideHor": "Hide horizontal line",
"DE.Views.DocumentHolder.txtHideLB": "Hide left bottom line",
"DE.Views.DocumentHolder.txtHideLeft": "Hide left border",
"DE.Views.DocumentHolder.txtHideLT": "Hide left top line",
"DE.Views.DocumentHolder.txtHideOpenBracket": "Hide opening bracket",
"DE.Views.DocumentHolder.txtHidePlaceholder": "Hide placeholder",
"DE.Views.DocumentHolder.txtHideRight": "Hide right border",
"DE.Views.DocumentHolder.txtHideTop": "Hide top border",
"DE.Views.DocumentHolder.txtHideTopLimit": "Hide top limit",
"DE.Views.DocumentHolder.txtHideVer": "Hide vertical line",
"DE.Views.DocumentHolder.txtIncreaseArg": "Increase argument size",
"DE.Views.DocumentHolder.txtInFront": "In front of text",
"DE.Views.DocumentHolder.txtInline": "In line with text",
"DE.Views.DocumentHolder.txtInsertArgAfter": "Insert argument after",
"DE.Views.DocumentHolder.txtInsertArgBefore": "Insert argument before",
"DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break",
"DE.Views.DocumentHolder.txtInsertCaption": "Insert caption",
"DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after",
"DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before",
"DE.Views.DocumentHolder.txtInsImage": "Insert image from file",
"DE.Views.DocumentHolder.txtInsImageUrl": "Insert image from URL",
"DE.Views.DocumentHolder.txtKeepTextOnly": "Keep text only",
"DE.Views.DocumentHolder.txtLimitChange": "Change limits location",
"DE.Views.DocumentHolder.txtLimitOver": "Limit over text",
"DE.Views.DocumentHolder.txtLimitUnder": "Limit under text",
"DE.Views.DocumentHolder.txtMatchBrackets": "Match brackets to argument height",
"DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment",
"DE.Views.DocumentHolder.txtOverbar": "Bar over text",
"DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells",
"DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting",
"DE.Views.DocumentHolder.txtPercentage": "Percentage",
"DE.Views.DocumentHolder.txtPressLink": "Press {0} and click link",
"DE.Views.DocumentHolder.txtPrintSelection": "Print selection",
"DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar",
"DE.Views.DocumentHolder.txtRemLimit": "Remove limit",
"DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character",
"DE.Views.DocumentHolder.txtRemoveBar": "Remove bar",
"DE.Views.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?<br>It can't be undone.",
"DE.Views.DocumentHolder.txtRemScripts": "Remove scripts",
"DE.Views.DocumentHolder.txtRemSubscript": "Remove subscript",
"DE.Views.DocumentHolder.txtRemSuperscript": "Remove superscript",
"DE.Views.DocumentHolder.txtScriptsAfter": "Scripts after text",
"DE.Views.DocumentHolder.txtScriptsBefore": "Scripts before text",
"DE.Views.DocumentHolder.txtShowBottomLimit": "Show bottom limit",
"DE.Views.DocumentHolder.txtShowCloseBracket": "Show closing bracket",
"DE.Views.DocumentHolder.txtShowDegree": "Show degree",
"DE.Views.DocumentHolder.txtShowOpenBracket": "Show opening bracket",
"DE.Views.DocumentHolder.txtShowPlaceholder": "Show placeholder",
"DE.Views.DocumentHolder.txtShowTopLimit": "Show top limit",
"DE.Views.DocumentHolder.txtSourceEmbed": "Keep source formatting & Embed workbook",
"DE.Views.DocumentHolder.txtSourceLink": "Keep source formatting & Link data",
"DE.Views.DocumentHolder.txtSquare": "Square",
"DE.Views.DocumentHolder.txtStretchBrackets": "Stretch brackets",
"DE.Views.DocumentHolder.txtThrough": "Through",
"DE.Views.DocumentHolder.txtTight": "Tight",
"DE.Views.DocumentHolder.txtTop": "Top",
"DE.Views.DocumentHolder.txtTopAndBottom": "Top and bottom",
"DE.Views.DocumentHolder.txtUnderbar": "Bar under text",
"DE.Views.DocumentHolder.txtUngroup": "Ungroup",
"DE.Views.DocumentHolder.txtWarnUrl": "Clicking this link can be harmful to your device and data. To protect you computer, click only those hyperlinks from trusted sources. This location may be unsafe:<br><br>{0}<br><br>Are you sure you want to continue?",
"DE.Views.DocumentHolder.unicodeText": "Unicode",
"DE.Views.DocumentHolder.updateStyleText": "Update %1 style",
"DE.Views.DocumentHolder.vertAlignText": "Vertical alignment",
"DE.Views.DropcapSettingsAdvanced.strBorders": "Borders & Fill",
"DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop cap",
"DE.Views.DropcapSettingsAdvanced.strMargins": "Margins",
"DE.Views.DropcapSettingsAdvanced.textAlign": "Alignment",
"DE.Views.DropcapSettingsAdvanced.textAtLeast": "At least",
"DE.Views.DropcapSettingsAdvanced.textAuto": "Auto",
"DE.Views.DropcapSettingsAdvanced.textBackColor": "Background color",
"DE.Views.DropcapSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders",
"DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.DropcapSettingsAdvanced.textBottom": "Bottom",
"DE.Views.DropcapSettingsAdvanced.textCenter": "Center",
"DE.Views.DropcapSettingsAdvanced.textColumn": "Column",
"DE.Views.DropcapSettingsAdvanced.textDistance": "Distance from text",
"DE.Views.DropcapSettingsAdvanced.textExact": "Exactly",
"DE.Views.DropcapSettingsAdvanced.textFlow": "Flow frame",
"DE.Views.DropcapSettingsAdvanced.textFont": "Font",
"DE.Views.DropcapSettingsAdvanced.textFrame": "Frame",
"DE.Views.DropcapSettingsAdvanced.textHeight": "Height",
"DE.Views.DropcapSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.DropcapSettingsAdvanced.textInline": "Inline frame",
"DE.Views.DropcapSettingsAdvanced.textInMargin": "In margin",
"DE.Views.DropcapSettingsAdvanced.textInText": "In text",
"DE.Views.DropcapSettingsAdvanced.textLeft": "Left",
"DE.Views.DropcapSettingsAdvanced.textMargin": "Margin",
"DE.Views.DropcapSettingsAdvanced.textMove": "Move with text",
"DE.Views.DropcapSettingsAdvanced.textNone": "None",
"DE.Views.DropcapSettingsAdvanced.textPage": "Page",
"DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraph",
"DE.Views.DropcapSettingsAdvanced.textParameters": "Parameters",
"DE.Views.DropcapSettingsAdvanced.textPosition": "Position",
"DE.Views.DropcapSettingsAdvanced.textRelative": "Relative to",
"DE.Views.DropcapSettingsAdvanced.textRight": "Right",
"DE.Views.DropcapSettingsAdvanced.textRowHeight": "Height in rows",
"DE.Views.DropcapSettingsAdvanced.textTitle": "Drop cap - advanced settings",
"DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Frame - advanced settings",
"DE.Views.DropcapSettingsAdvanced.textTop": "Top",
"DE.Views.DropcapSettingsAdvanced.textVertical": "Vertical",
"DE.Views.DropcapSettingsAdvanced.textWidth": "Width",
"DE.Views.DropcapSettingsAdvanced.tipFontName": "Font",
"DE.Views.EditListItemDialog.textDisplayName": "Display name",
"DE.Views.EditListItemDialog.textNameError": "Display name must not be empty.",
"DE.Views.EditListItemDialog.textValue": "Value",
"DE.Views.EditListItemDialog.textValueError": "An item with the same value already exists.",
"DE.Views.FileMenu.ariaFileMenu": "File menu",
"DE.Views.FileMenu.btnBackCaption": "Open File Location",
"DE.Views.FileMenu.btnCloseEditor": "Close File",
"DE.Views.FileMenu.btnCloseMenuCaption": "Back",
"DE.Views.FileMenu.btnCreateNewCaption": "Create New",
"DE.Views.FileMenu.btnDownloadCaption": "Download As",
"DE.Views.FileMenu.btnExitCaption": "Close",
"DE.Views.FileMenu.btnFileOpenCaption": "Open",
"DE.Views.FileMenu.btnHelpCaption": "Help",
"DE.Views.FileMenu.btnHistoryCaption": "Version History",
"DE.Views.FileMenu.btnInfoCaption": "Info",
"DE.Views.FileMenu.btnPrintCaption": "Print",
"DE.Views.FileMenu.btnProtectCaption": "Protect",
"DE.Views.FileMenu.btnRecentFilesCaption": "Open Recent",
"DE.Views.FileMenu.btnRenameCaption": "Rename",
"DE.Views.FileMenu.btnReturnCaption": "Back to Document",
"DE.Views.FileMenu.btnRightsCaption": "Access Rights",
"DE.Views.FileMenu.btnSaveAsCaption": "Save As",
"DE.Views.FileMenu.btnSaveCaption": "Save",
"DE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy As",
"DE.Views.FileMenu.btnSettingsCaption": "Advanced Settings",
"DE.Views.FileMenu.btnSuggestCaption": "Suggest a Feature",
"DE.Views.FileMenu.btnSwitchToMobileCaption": "Switch to Mobile",
"DE.Views.FileMenu.btnToEditCaption": "Edit Document",
"DE.Views.FileMenu.textDownload": "Download",
"DE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank document",
"DE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Create New",
"DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddProperty": "Add property",
"DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
"DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights",
"DE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment",
"DE.Views.FileMenuPanels.DocumentInfo.txtCommon": "Common",
"DE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created",
"DE.Views.FileMenuPanels.DocumentInfo.txtDocumentInfo": "Document Info",
"DE.Views.FileMenuPanels.DocumentInfo.txtDocumentPropertyUpdateTitle": "Document Property",
"DE.Views.FileMenuPanels.DocumentInfo.txtFastWV": "Fast web view",
"DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Loading...",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last modified by",
"DE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"DE.Views.FileMenuPanels.DocumentInfo.txtNo": "No",
"DE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner",
"DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Pages",
"DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Page Size",
"DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Paragraphs",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "PDF Producer",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "Tagged PDF",
"DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "PDF Version",
"DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"DE.Views.FileMenuPanels.DocumentInfo.txtProperties": "Properties",
"DE.Views.FileMenuPanels.DocumentInfo.txtPropertyTitleConflictError": "Property with this title already exists",
"DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights",
"DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Characters with spaces",
"DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistics",
"DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject",
"DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Characters",
"DE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
"DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
"DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Words",
"DE.Views.FileMenuPanels.DocumentInfo.txtYes": "Yes",
"DE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Access Rights",
"DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights",
"DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights",
"DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning",
"DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "With password",
"DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Document",
"DE.Views.FileMenuPanels.ProtectDoc.strSignature": "With signature",
"DE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "Valid signatures have been added to the document.<br>The document is protected from editing.",
"DE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "Ensure the integrity of the document by adding an<br>invisible digital signature",
"DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit document",
"DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing will remove signatures from the document.<br>Continue?",
"DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "This document has been protected with password",
"DE.Views.FileMenuPanels.ProtectDoc.txtProtectDocument": "Encrypt this document with a password",
"DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "This document needs to be signed.",
"DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Valid signatures have been added to the document. The document is protected from editing.",
"DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Some of the digital signatures in the document are invalid or could not be verified. The document is protected from editing.",
"DE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures",
"DE.Views.FileMenuPanels.Settings.okButtonText": "Apply",
"DE.Views.FileMenuPanels.Settings.strChinese": "Chinese",
"DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode",
"DE.Views.FileMenuPanels.Settings.strDocContent": "Document content",
"DE.Views.FileMenuPanels.Settings.strFast": "Fast",
"DE.Views.FileMenuPanels.Settings.strFontRender": "Font hinting",
"DE.Views.FileMenuPanels.Settings.strFontSizeType": "Use first in the font size list",
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE",
"DE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore words with numbers",
"DE.Views.FileMenuPanels.Settings.strKeyboardShortcuts": "Keyboard Shortcuts",
"DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macros settings",
"DE.Views.FileMenuPanels.Settings.strNumeral": "Numeral",
"DE.Views.FileMenuPanels.Settings.strPasteButton": "Show the Paste Options button when the content is pasted",
"DE.Views.FileMenuPanels.Settings.strRTLSupport": "RTL interface",
"DE.Views.FileMenuPanels.Settings.strShowChanges": "Real-time collaboration changes",
"DE.Views.FileMenuPanels.Settings.strShowComments": "Show comments in text",
"DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Show changes from other users",
"DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Show resolved comments",
"DE.Views.FileMenuPanels.Settings.strStrict": "Strict",
"DE.Views.FileMenuPanels.Settings.strTabStyle": "Tab style",
"DE.Views.FileMenuPanels.Settings.strTheme": "Interface theme",
"DE.Views.FileMenuPanels.Settings.strUnit": "Unit of measurement",
"DE.Views.FileMenuPanels.Settings.strWestern": "Western",
"DE.Views.FileMenuPanels.Settings.strZoom": "Default zoom value",
"DE.Views.FileMenuPanels.Settings.text10Minutes": "Every 10 Minutes",
"DE.Views.FileMenuPanels.Settings.text30Minutes": "Every 30 Minutes",
"DE.Views.FileMenuPanels.Settings.text5Minutes": "Every 5 Minutes",
"DE.Views.FileMenuPanels.Settings.text60Minutes": "Every hour",
"DE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment guides",
"DE.Views.FileMenuPanels.Settings.textAutoRecover": "Save AutoRecover information",
"DE.Views.FileMenuPanels.Settings.textAutoSave": "Autosave",
"DE.Views.FileMenuPanels.Settings.textDisabled": "Disabled",
"DE.Views.FileMenuPanels.Settings.textFill": "Fill",
"DE.Views.FileMenuPanels.Settings.textForceSave": "Saving intermediate versions",
"DE.Views.FileMenuPanels.Settings.textLine": "Line",
"DE.Views.FileMenuPanels.Settings.textMinute": "Every minute",
"DE.Views.FileMenuPanels.Settings.textOldVersions": "Make the files compatible with older MS Word versions when saved as DOCX, DOTX",
"DE.Views.FileMenuPanels.Settings.textSmartSelection": "Use smart paragraph selection",
"DE.Views.FileMenuPanels.Settings.txtAdvancedSettings": "Advanced settings",
"DE.Views.FileMenuPanels.Settings.txtAll": "View all",
"DE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance",
"DE.Views.FileMenuPanels.Settings.txtArabic": "Arabic",
"DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "AutoCorrect options...",
"DE.Views.FileMenuPanels.Settings.txtCacheMode": "Default cache mode",
"DE.Views.FileMenuPanels.Settings.txtChangesBalloons": "Show by click in balloons",
"DE.Views.FileMenuPanels.Settings.txtChangesTip": "Show by hover in tooltips",
"DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter",
"DE.Views.FileMenuPanels.Settings.txtCollaboration": "Collaboration",
"DE.Views.FileMenuPanels.Settings.txtContext": "Context",
"DE.Views.FileMenuPanels.Settings.txtCustomize": "Customize",
"DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess": "Customize quick access",
"DE.Views.FileMenuPanels.Settings.txtDarkMode": "Turn on document dark mode",
"DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editing and saving",
"DE.Views.FileMenuPanels.Settings.txtFastTip": "Real-time co-editing. All changes are saved automatically",
"DE.Views.FileMenuPanels.Settings.txtFitPage": "Fit to page",
"DE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to width",
"DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglyphs",
"DE.Views.FileMenuPanels.Settings.txtHindi": "Hindi",
"DE.Views.FileMenuPanels.Settings.txtInch": "Inch",
"DE.Views.FileMenuPanels.Settings.txtLast": "View last",
"DE.Views.FileMenuPanels.Settings.txtLastUsed": "Last used",
"DE.Views.FileMenuPanels.Settings.txtMac": "as OS X",
"DE.Views.FileMenuPanels.Settings.txtNative": "Native",
"DE.Views.FileMenuPanels.Settings.txtNone": "View none",
"DE.Views.FileMenuPanels.Settings.txtProofing": "Proofing",
"DE.Views.FileMenuPanels.Settings.txtPt": "Point",
"DE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show the Quick Print button in the editor header",
"DE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The document will be printed on the last selected or default printer",
"DE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable all",
"DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without a notification",
"DE.Views.FileMenuPanels.Settings.txtScreenReader": "Turn on screen reader support",
"DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Show track changes",
"DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell checking",
"DE.Views.FileMenuPanels.Settings.txtStopMacros": "Disable All",
"DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Disable all macros without a notification",
"DE.Views.FileMenuPanels.Settings.txtStrictTip": "Use the \"Save\" button to sync the changes you and others make",
"DE.Views.FileMenuPanels.Settings.txtTabBack": "Use toolbar color as tabs background",
"DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Use Alt key to navigate the user interface using the keyboard",
"DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Use Option key to navigate the user interface using the keyboard",
"DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show notification",
"DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with a notification",
"DE.Views.FileMenuPanels.Settings.txtWin": "as Windows",
"DE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace",
"DE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Download as",
"DE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save copy as",
"DE.Views.FormSettings.textAddRole": "Add recipient",
"DE.Views.FormSettings.textAlways": "Always",
"DE.Views.FormSettings.textAnyone": "Anyone",
"DE.Views.FormSettings.textAspect": "Lock aspect ratio",
"DE.Views.FormSettings.textAtLeast": "At least",
"DE.Views.FormSettings.textAuto": "Auto",
"DE.Views.FormSettings.textAutofit": "AutoFit",
"DE.Views.FormSettings.textBackgroundColor": "Background color",
"DE.Views.FormSettings.textCheckbox": "Checkbox",
"DE.Views.FormSettings.textCheckDefault": "Checkbox is checked by default",
"DE.Views.FormSettings.textColor": "Border color",
"DE.Views.FormSettings.textComb": "Comb of characters",
"DE.Views.FormSettings.textCombobox": "Combo box",
"DE.Views.FormSettings.textComplex": "Complex field",
"DE.Views.FormSettings.textConnected": "Fields connected",
"DE.Views.FormSettings.textCreditCard": "Credit card number (e.g 4111-1111-1111-1111)",
"DE.Views.FormSettings.textDateField": "Date & time field",
"DE.Views.FormSettings.textDateFormat": "Display the date like this",
"DE.Views.FormSettings.textDefValue": "Default value",
"DE.Views.FormSettings.textDelete": "Delete",
"DE.Views.FormSettings.textDigits": "Digits",
"DE.Views.FormSettings.textDisconnect": "Disconnect",
"DE.Views.FormSettings.textDropDown": "Dropdown",
"DE.Views.FormSettings.textExact": "Exactly",
"DE.Views.FormSettings.textField": "Text field",
"DE.Views.FormSettings.textFillRoles": "Who needs to fill this out?",
"DE.Views.FormSettings.textFixed": "Fixed size field",
"DE.Views.FormSettings.textFormat": "Format",
"DE.Views.FormSettings.textFormatSymbols": "Allowed symbols",
"DE.Views.FormSettings.textFromFile": "From file",
"DE.Views.FormSettings.textFromStorage": "From storage",
"DE.Views.FormSettings.textFromUrl": "From URL",
"DE.Views.FormSettings.textGroupKey": "Group key",
"DE.Views.FormSettings.textImage": "Image",
"DE.Views.FormSettings.textKey": "Key",
"DE.Views.FormSettings.textLang": "Language",
"DE.Views.FormSettings.textLetters": "Letters",
"DE.Views.FormSettings.textLock": "Lock",
"DE.Views.FormSettings.textMask": "Arbitrary Mask",
"DE.Views.FormSettings.textMaxChars": "Characters limit",
"DE.Views.FormSettings.textMulti": "Multiline field",
"DE.Views.FormSettings.textNever": "Never",
"DE.Views.FormSettings.textNoBorder": "No border",
"DE.Views.FormSettings.textNone": "None",
"DE.Views.FormSettings.textPhone1": "Phone Number (e.g. (123) 456-7890)",
"DE.Views.FormSettings.textPhone2": "Phone Number (e.g. +447911123456)",
"DE.Views.FormSettings.textPlaceholder": "Placeholder",
"DE.Views.FormSettings.textRadiobox": "Radio button",
"DE.Views.FormSettings.textRadioChoice": "Radio button choice",
"DE.Views.FormSettings.textRadioDefault": "Button is checked by default",
"DE.Views.FormSettings.textReg": "Regular expression",
"DE.Views.FormSettings.textRequired": "Required",
"DE.Views.FormSettings.textScale": "When to scale",
"DE.Views.FormSettings.textSelectImage": "Select Image",
"DE.Views.FormSettings.textSignature": "Signature",
"DE.Views.FormSettings.textTag": "Tag",
"DE.Views.FormSettings.textTip": "Tip",
"DE.Views.FormSettings.textTipAdd": "Add new value",
"DE.Views.FormSettings.textTipDelete": "Delete value",
"DE.Views.FormSettings.textTipDown": "Move down",
"DE.Views.FormSettings.textTipUp": "Move up",
"DE.Views.FormSettings.textTooBig": "Image is too big",
"DE.Views.FormSettings.textTooSmall": "Image is too small",
"DE.Views.FormSettings.textUKPassport": "UK Passport number (e.g. 925665416)",
"DE.Views.FormSettings.textUnlock": "Unlock",
"DE.Views.FormSettings.textUSSSN": "US SSN (e.g. 123-45-6789)",
"DE.Views.FormSettings.textValue": "Value options",
"DE.Views.FormSettings.textWidth": "Cell width",
"DE.Views.FormSettings.textZipCodeUS": "US ZIP Code (e.g. 92663 or 92663-1234)",
"DE.Views.FormsTab.capBtnCheckBox": "Checkbox",
"DE.Views.FormsTab.capBtnComboBox": "Combo Box",
"DE.Views.FormsTab.capBtnComplex": "Complex Field",
"DE.Views.FormsTab.capBtnDownloadForm": "Download As PDF",
"DE.Views.FormsTab.capBtnDropDown": "Dropdown",
"DE.Views.FormsTab.capBtnEmail": "Email Address",
"DE.Views.FormsTab.capBtnFinal": "Mark as Final",
"DE.Views.FormsTab.capBtnImage": "Image",
"DE.Views.FormsTab.capBtnManager": "Manage Recipient Roles",
"DE.Views.FormsTab.capBtnNext": "Next Field",
"DE.Views.FormsTab.capBtnPhone": "Phone Number",
"DE.Views.FormsTab.capBtnPrev": "Previous Field",
"DE.Views.FormsTab.capBtnRadioBox": "Radio Button",
"DE.Views.FormsTab.capBtnSaveForm": "Save As PDF",
"DE.Views.FormsTab.capBtnSaveFormDesktop": "Save As...",
"DE.Views.FormsTab.capBtnSignature": "Signature",
"DE.Views.FormsTab.capBtnSubmit": "Complete & Submit",
"DE.Views.FormsTab.capBtnText": "Text Field",
"DE.Views.FormsTab.capBtnView": "Preview",
"DE.Views.FormsTab.capCreditCard": "Credit Card",
"DE.Views.FormsTab.capDateTime": "Date & Time",
"DE.Views.FormsTab.capZipCode": "ZIP Code",
"DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.",
"DE.Views.FormsTab.textAnyone": "Anyone",
"DE.Views.FormsTab.textClear": "Clear Fields",
"DE.Views.FormsTab.textClearFields": "Clear All Fields",
"DE.Views.FormsTab.textCreateForm": "Add fields and create a fillable PDF",
"DE.Views.FormsTab.textFilled": "Filled",
"DE.Views.FormsTab.textGotIt": "Got it",
"DE.Views.FormsTab.textHighlight": "Highlight Settings",
"DE.Views.FormsTab.textNoHighlight": "No highlighting",
"DE.Views.FormsTab.textRequired": "To submit the form, you must fill in all required fields",
"DE.Views.FormsTab.textSubmited": "Form submitted successfully",
"DE.Views.FormsTab.textSubmitOk": "Your PDF form has been saved in the Complete section.",
"DE.Views.FormsTab.tipCheckBox": "Insert checkbox",
"DE.Views.FormsTab.tipComboBox": "Insert combo box",
"DE.Views.FormsTab.tipComplexField": "Insert complex field",
"DE.Views.FormsTab.tipCreateField": "To create a field select the desired field type on the toolbar and click on it. The field will appear in the document.",
"DE.Views.FormsTab.tipCreditCard": "Insert credit card number",
"DE.Views.FormsTab.tipDateTime": "Insert date and time",
"DE.Views.FormsTab.tipDownloadForm": "Download a file as a fillable PDF",
"DE.Views.FormsTab.tipDropDown": "Insert dropdown list",
"DE.Views.FormsTab.tipEmailField": "Insert email address",
"DE.Views.FormsTab.tipFieldSettings": "You can configure selected fields on the right sidebar. Click this icon to open the field settings.",
"DE.Views.FormsTab.tipFieldsLink": "Learn more about field parameters",
"DE.Views.FormsTab.tipFinalForm": "Mark as final",
"DE.Views.FormsTab.tipFirstPage": "Go to the first page",
"DE.Views.FormsTab.tipFixedText": "Insert fixed text field",
"DE.Views.FormsTab.tipFormGroupKey": "Group radio buttons to make the filling process faster. Choices with the same names will be synchronized. Users can only tick one radio button from the group.",
"DE.Views.FormsTab.tipFormKey": "You can assign a key to a field or a group of fields. When a user fills in the data, it will be copied to all the fields with the same key.",
"DE.Views.FormsTab.tipHelpRoles": "Use the Manage Recipients feature to group fields by purpose and assign the responsible team members.",
"DE.Views.FormsTab.tipImageField": "Insert image",
"DE.Views.FormsTab.tipInlineText": "Insert inline text field",
"DE.Views.FormsTab.tipLastPage": "Go to the last page",
"DE.Views.FormsTab.tipManager": "Manage Recipient Roles",
"DE.Views.FormsTab.tipNextForm": "Go to the next field",
"DE.Views.FormsTab.tipNextPage": "Go to the next page",
"DE.Views.FormsTab.tipPhoneField": "Insert phone number",
"DE.Views.FormsTab.tipPrevForm": "Go to the previous field",
"DE.Views.FormsTab.tipPrevPage": "Go to the previous page",
"DE.Views.FormsTab.tipRadioBox": "Insert radio button",
"DE.Views.FormsTab.tipRolesLink": "Learn more about recipients",
"DE.Views.FormsTab.tipSaveFile": "Click \"Save As PDF\" to save the form in the format ready for filling.",
"DE.Views.FormsTab.tipSaveForm": "Save a file as a fillable PDF",
"DE.Views.FormsTab.tipSignField": "Insert signature",
"DE.Views.FormsTab.tipSubmit": "Submit form",
"DE.Views.FormsTab.tipTextField": "Insert text field",
"DE.Views.FormsTab.tipViewForm": "Preview",
"DE.Views.FormsTab.tipZipCode": "Insert ZIP code",
"DE.Views.FormsTab.txtFixedDesc": "Insert fixed text field",
"DE.Views.FormsTab.txtFixedText": "Fixed",
"DE.Views.FormsTab.txtInlineDesc": "Insert inline text field",
"DE.Views.FormsTab.txtInlineText": "Inline",
"DE.Views.FormsTab.txtSignedForm": "This document has been signed and cannot be edited.",
"DE.Views.FormsTab.txtUntitled": "Untitled",
"DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center",
"DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left",
"DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of page",
"DE.Views.HeaderFooterSettings.textBottomRight": "Bottom right",
"DE.Views.HeaderFooterSettings.textDiffFirst": "Different first page",
"DE.Views.HeaderFooterSettings.textDiffOdd": "Different odd and even pages",
"DE.Views.HeaderFooterSettings.textFrom": "Start at",
"DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Footer from bottom",
"DE.Views.HeaderFooterSettings.textHeaderFromTop": "Header from Top",
"DE.Views.HeaderFooterSettings.textInsertCurrent": "Insert to current position",
"DE.Views.HeaderFooterSettings.textNumFormat": "Number format",
"DE.Views.HeaderFooterSettings.textOptions": "Options",
"DE.Views.HeaderFooterSettings.textPageNum": "Insert page number",
"DE.Views.HeaderFooterSettings.textPageNumbering": "Page numbering",
"DE.Views.HeaderFooterSettings.textPosition": "Position",
"DE.Views.HeaderFooterSettings.textPrev": "Continue from previous section",
"DE.Views.HeaderFooterSettings.textSameAs": "Link to Previous",
"DE.Views.HeaderFooterSettings.textTopCenter": "Top center",
"DE.Views.HeaderFooterSettings.textTopLeft": "Top left",
"DE.Views.HeaderFooterSettings.textTopPage": "Top of page",
"DE.Views.HeaderFooterSettings.textTopRight": "Top right",
"DE.Views.HeaderFooterSettings.txtMoreTypes": "More types",
"DE.Views.HyperlinkSettingsDialog.textDefault": "Selected text fragment",
"DE.Views.HyperlinkSettingsDialog.textDisplay": "Display",
"DE.Views.HyperlinkSettingsDialog.textExternal": "External link",
"DE.Views.HyperlinkSettingsDialog.textInternal": "Place in document",
"DE.Views.HyperlinkSettingsDialog.textSelectFile": "Select file",
"DE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink settings",
"DE.Views.HyperlinkSettingsDialog.textTooltip": "ScreenTip text",
"DE.Views.HyperlinkSettingsDialog.textUrl": "Link to",
"DE.Views.HyperlinkSettingsDialog.txtBeginning": "Beginning of document",
"DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Bookmarks",
"DE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
"DE.Views.HyperlinkSettingsDialog.txtHeadings": "Headings",
"DE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format",
"DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters",
"DE.Views.HyperlinkSettingsDialog.txtUrlPlaceholder": "Enter the web address or select a file",
"DE.Views.HyphenationDialog.textAuto": "Automatically hyphenate document",
"DE.Views.HyphenationDialog.textCaps": "Hyphenate words in CAPS",
"DE.Views.HyphenationDialog.textLimit": "Limit consecutive hyphens to",
"DE.Views.HyphenationDialog.textNoLimit": "No limit",
"DE.Views.HyphenationDialog.textTitle": "Hyphenation",
"DE.Views.HyphenationDialog.textZone": "Hyphenation zone",
"DE.Views.ImageSettings.strTransparency": "Opacity",
"DE.Views.ImageSettings.textAdvanced": "Show advanced settings",
"DE.Views.ImageSettings.textCrop": "Crop",
"DE.Views.ImageSettings.textCropFill": "Fill",
"DE.Views.ImageSettings.textCropFit": "Fit",
"DE.Views.ImageSettings.textCropToShape": "Crop to shape",
"DE.Views.ImageSettings.textEdit": "Edit",
"DE.Views.ImageSettings.textEditObject": "Edit object",
"DE.Views.ImageSettings.textFitMargins": "Fit to margin",
"DE.Views.ImageSettings.textFlip": "Flip",
"DE.Views.ImageSettings.textFromFile": "From file",
"DE.Views.ImageSettings.textFromStorage": "From storage",
"DE.Views.ImageSettings.textFromUrl": "From URL",
"DE.Views.ImageSettings.textHeight": "Height",
"DE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise",
"DE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise",
"DE.Views.ImageSettings.textHintFlipH": "Flip horizontally",
"DE.Views.ImageSettings.textHintFlipV": "Flip vertically",
"DE.Views.ImageSettings.textInsert": "Replace Image",
"DE.Views.ImageSettings.textOriginalSize": "Actual Size",
"DE.Views.ImageSettings.textRecentlyUsed": "Recently used",
"DE.Views.ImageSettings.textResetCrop": "Reset crop",
"DE.Views.ImageSettings.textRotate90": "Rotate 90°",
"DE.Views.ImageSettings.textRotation": "Rotation",
"DE.Views.ImageSettings.textSize": "Size",
"DE.Views.ImageSettings.textWidth": "Width",
"DE.Views.ImageSettings.textWrap": "Wrapping Style",
"DE.Views.ImageSettings.txtBehind": "Behind text",
"DE.Views.ImageSettings.txtInFront": "In front of Text",
"DE.Views.ImageSettings.txtInline": "In line with text",
"DE.Views.ImageSettings.txtSquare": "Square",
"DE.Views.ImageSettings.txtThrough": "Through",
"DE.Views.ImageSettings.txtTight": "Tight",
"DE.Views.ImageSettings.txtTopAndBottom": "Top and bottom",
"DE.Views.ImageSettingsAdvanced.strMargins": "Text padding",
"DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolute",
"DE.Views.ImageSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.ImageSettingsAdvanced.textAlt": "Alternative text",
"DE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
"DE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, shape, chart, or table.",
"DE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
"DE.Views.ImageSettingsAdvanced.textAngle": "Angle",
"DE.Views.ImageSettingsAdvanced.textArrows": "Arrows",
"DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lock aspect ratio",
"DE.Views.ImageSettingsAdvanced.textAuto": "Auto",
"DE.Views.ImageSettingsAdvanced.textAutofit": "AutoFit",
"DE.Views.ImageSettingsAdvanced.textAxisCrosses": "Axis Crosses",
"DE.Views.ImageSettingsAdvanced.textAxisPos": "Axis Position",
"DE.Views.ImageSettingsAdvanced.textAxisTitle": "Title",
"DE.Views.ImageSettingsAdvanced.textBase": "Base",
"DE.Views.ImageSettingsAdvanced.textBeginSize": "Begin size",
"DE.Views.ImageSettingsAdvanced.textBeginStyle": "Begin style",
"DE.Views.ImageSettingsAdvanced.textBelow": "below",
"DE.Views.ImageSettingsAdvanced.textBetweenTickMarks": "Between Tick Marks",
"DE.Views.ImageSettingsAdvanced.textBevel": "Bevel",
"DE.Views.ImageSettingsAdvanced.textBillions": "Billions",
"DE.Views.ImageSettingsAdvanced.textBottom": "Bottom",
"DE.Views.ImageSettingsAdvanced.textBottomMargin": "Bottom margin",
"DE.Views.ImageSettingsAdvanced.textBtnWrap": "Text wrapping",
"DE.Views.ImageSettingsAdvanced.textCapType": "Cap type",
"DE.Views.ImageSettingsAdvanced.textCategoryName": "Category Name",
"DE.Views.ImageSettingsAdvanced.textCenter": "Center",
"DE.Views.ImageSettingsAdvanced.textCharacter": "Character",
"DE.Views.ImageSettingsAdvanced.textChartTitle": "Chart Title",
"DE.Views.ImageSettingsAdvanced.textColumn": "Column",
"DE.Views.ImageSettingsAdvanced.textCross": "Cross",
"DE.Views.ImageSettingsAdvanced.textCustom": "Custom",
"DE.Views.ImageSettingsAdvanced.textDataLabels": "Data Labels",
"DE.Views.ImageSettingsAdvanced.textDistance": "Distance from text",
"DE.Views.ImageSettingsAdvanced.textEndSize": "End size",
"DE.Views.ImageSettingsAdvanced.textEndStyle": "End style",
"DE.Views.ImageSettingsAdvanced.textFit": "Fit Width",
"DE.Views.ImageSettingsAdvanced.textFixed": "Fixed",
"DE.Views.ImageSettingsAdvanced.textFlat": "Flat",
"DE.Views.ImageSettingsAdvanced.textFlipped": "Flipped",
"DE.Views.ImageSettingsAdvanced.textFormat": "Label format",
"DE.Views.ImageSettingsAdvanced.textGridLines": "Gridlines",
"DE.Views.ImageSettingsAdvanced.textHeight": "Height",
"DE.Views.ImageSettingsAdvanced.textHideAxis": "Hide axis",
"DE.Views.ImageSettingsAdvanced.textHigh": "High",
"DE.Views.ImageSettingsAdvanced.textHorAxis": "Horizontal Axis",
"DE.Views.ImageSettingsAdvanced.textHorAxisSec": "Secondary Horizontal Axis",
"DE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
"DE.Views.ImageSettingsAdvanced.textHundredMil": "100 000 000",
"DE.Views.ImageSettingsAdvanced.textHundreds": "Hundreds",
"DE.Views.ImageSettingsAdvanced.textHundredThousands": "100 000",
"DE.Views.ImageSettingsAdvanced.textIn": "In",
"DE.Views.ImageSettingsAdvanced.textInnerBottom": "Inner Bottom",
"DE.Views.ImageSettingsAdvanced.textInnerTop": "Inner Top",
"DE.Views.ImageSettingsAdvanced.textJoinType": "Join type",
"DE.Views.ImageSettingsAdvanced.textKeepRatio": "Constant proportions",
"DE.Views.ImageSettingsAdvanced.textLabelDist": "Axis Label Distance",
"DE.Views.ImageSettingsAdvanced.textLabelInterval": "Interval between Labels",
"DE.Views.ImageSettingsAdvanced.textLabelOptions": "Label Options",
"DE.Views.ImageSettingsAdvanced.textLabelPos": "Label Position",
"DE.Views.ImageSettingsAdvanced.textLayout": "Layout",
"DE.Views.ImageSettingsAdvanced.textLeft": "Left",
"DE.Views.ImageSettingsAdvanced.textLeftMargin": "Left margin",
"DE.Views.ImageSettingsAdvanced.textLeftOverlay": "Left Overlay",
"DE.Views.ImageSettingsAdvanced.textLegendBottom": "Bottom",
"DE.Views.ImageSettingsAdvanced.textLegendLeft": "Left",
"DE.Views.ImageSettingsAdvanced.textLegendPos": "Legend",
"DE.Views.ImageSettingsAdvanced.textLegendRight": "Right",
"DE.Views.ImageSettingsAdvanced.textLegendTop": "Top",
"DE.Views.ImageSettingsAdvanced.textLine": "Line",
"DE.Views.ImageSettingsAdvanced.textLines": "Lines",
"DE.Views.ImageSettingsAdvanced.textLineStyle": "Line style",
"DE.Views.ImageSettingsAdvanced.textLogScale": "Logarithmic Scale",
"DE.Views.ImageSettingsAdvanced.textLow": "Low",
"DE.Views.ImageSettingsAdvanced.textMajor": "Major",
"DE.Views.ImageSettingsAdvanced.textMajorMinor": "Major and Minor",
"DE.Views.ImageSettingsAdvanced.textMajorType": "Major Type",
"DE.Views.ImageSettingsAdvanced.textManual": "Manual",
"DE.Views.ImageSettingsAdvanced.textMargin": "Margin",
"DE.Views.ImageSettingsAdvanced.textMarkers": "Markers",
"DE.Views.ImageSettingsAdvanced.textMarksInterval": "Interval between Marks",
"DE.Views.ImageSettingsAdvanced.textMaxValue": "Maximum Value",
"DE.Views.ImageSettingsAdvanced.textMillions": "Millions",
"DE.Views.ImageSettingsAdvanced.textMinor": "Minor",
"DE.Views.ImageSettingsAdvanced.textMinorType": "Minor Type",
"DE.Views.ImageSettingsAdvanced.textMinValue": "Minimum Value",
"DE.Views.ImageSettingsAdvanced.textMiter": "Miter",
"DE.Views.ImageSettingsAdvanced.textMove": "Move object with text",
"DE.Views.ImageSettingsAdvanced.textNextToAxis": "Next to axis",
"DE.Views.ImageSettingsAdvanced.textNone": "None",
"DE.Views.ImageSettingsAdvanced.textNoOverlay": "No Overlay",
"DE.Views.ImageSettingsAdvanced.textOnTickMarks": "On Tick Marks",
"DE.Views.ImageSettingsAdvanced.textOptions": "Options",
"DE.Views.ImageSettingsAdvanced.textOriginalSize": "Actual size",
"DE.Views.ImageSettingsAdvanced.textOut": "Out",
"DE.Views.ImageSettingsAdvanced.textOuterTop": "Outer Top",
"DE.Views.ImageSettingsAdvanced.textOverlap": "Allow overlap",
"DE.Views.ImageSettingsAdvanced.textOverlay": "Overlay",
"DE.Views.ImageSettingsAdvanced.textPage": "Page",
"DE.Views.ImageSettingsAdvanced.textParagraph": "Paragraph",
"DE.Views.ImageSettingsAdvanced.textPosition": "Position",
"DE.Views.ImageSettingsAdvanced.textPositionPc": "Relative position",
"DE.Views.ImageSettingsAdvanced.textRelative": "relative to",
"DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relative",
"DE.Views.ImageSettingsAdvanced.textResizeFit": "Resize shape to fit text",
"DE.Views.ImageSettingsAdvanced.textReverse": "Values in reverse order",
"DE.Views.ImageSettingsAdvanced.textRight": "Right",
"DE.Views.ImageSettingsAdvanced.textRightMargin": "Right margin",
"DE.Views.ImageSettingsAdvanced.textRightOf": "to the right of",
"DE.Views.ImageSettingsAdvanced.textRightOverlay": "Right Overlay",
"DE.Views.ImageSettingsAdvanced.textRotated": "Rotated",
"DE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"DE.Views.ImageSettingsAdvanced.textRound": "Round",
"DE.Views.ImageSettingsAdvanced.textSeparator": "Data Labels Separator",
"DE.Views.ImageSettingsAdvanced.textSeriesName": "Series Name",
"DE.Views.ImageSettingsAdvanced.textShape": "Shape settings",
"DE.Views.ImageSettingsAdvanced.textSize": "Size",
"DE.Views.ImageSettingsAdvanced.textSmooth": "Smooth",
"DE.Views.ImageSettingsAdvanced.textSquare": "Square",
"DE.Views.ImageSettingsAdvanced.textStraight": "Straight",
"DE.Views.ImageSettingsAdvanced.textTenMillions": "10 000 000",
"DE.Views.ImageSettingsAdvanced.textTenThousands": "10 000",
"DE.Views.ImageSettingsAdvanced.textTextBox": "Text box",
"DE.Views.ImageSettingsAdvanced.textThousands": "Thousands",
"DE.Views.ImageSettingsAdvanced.textTickOptions": "Tick Options",
"DE.Views.ImageSettingsAdvanced.textTitle": "Image - advanced settings",
"DE.Views.ImageSettingsAdvanced.textTitleChart": "Chart - advanced settings",
"DE.Views.ImageSettingsAdvanced.textTitleShape": "Shape - advanced settings",
"DE.Views.ImageSettingsAdvanced.textTop": "Top",
"DE.Views.ImageSettingsAdvanced.textTopMargin": "Top margin",
"DE.Views.ImageSettingsAdvanced.textTrillions": "Trillions",
"DE.Views.ImageSettingsAdvanced.textUnits": "Display Units",
"DE.Views.ImageSettingsAdvanced.textValue": "Value",
"DE.Views.ImageSettingsAdvanced.textVertAxis": "Vertical Axis",
"DE.Views.ImageSettingsAdvanced.textVertAxisSec": "Secondary Vertical Axis",
"DE.Views.ImageSettingsAdvanced.textVertical": "Vertical",
"DE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"DE.Views.ImageSettingsAdvanced.textWeightArrows": "Weights & Arrows",
"DE.Views.ImageSettingsAdvanced.textWidth": "Width",
"DE.Views.ImageSettingsAdvanced.textWrap": "Wrapping style",
"DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Behind text",
"DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "In front of text",
"DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "In line with text",
"DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Square",
"DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Through",
"DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Tight",
"DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Top and bottom",
"DE.Views.LeftMenu.ariaLeftMenu": "Left menu",
"DE.Views.LeftMenu.tipAbout": "About",
"DE.Views.LeftMenu.tipChat": "Chat",
"DE.Views.LeftMenu.tipComments": "Comments",
"DE.Views.LeftMenu.tipNavigation": "Navigation",
"DE.Views.LeftMenu.tipOutline": "Headings",
"DE.Views.LeftMenu.tipPageThumbnails": "Page thumbnails",
"DE.Views.LeftMenu.tipPlugins": "Plugins",
"DE.Views.LeftMenu.tipSearch": "Find",
"DE.Views.LeftMenu.tipSupport": "Feedback & Support",
"DE.Views.LeftMenu.tipTitles": "Titles",
"DE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE",
"DE.Views.LeftMenu.txtEditor": "Document Editor",
"DE.Views.LeftMenu.txtLimit": "Limit access",
"DE.Views.LeftMenu.txtTrial": "TRIAL MODE",
"DE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode",
"DE.Views.LineNumbersDialog.textAddLineNumbering": "Add line numbering",
"DE.Views.LineNumbersDialog.textApplyTo": "Apply changes to",
"DE.Views.LineNumbersDialog.textContinuous": "Continuous",
"DE.Views.LineNumbersDialog.textCountBy": "Count by",
"DE.Views.LineNumbersDialog.textDocument": "Whole document",
"DE.Views.LineNumbersDialog.textForward": "This point forward",
"DE.Views.LineNumbersDialog.textFromText": "From text",
"DE.Views.LineNumbersDialog.textNumbering": "Numbering",
"DE.Views.LineNumbersDialog.textRestartEachPage": "Restart each page",
"DE.Views.LineNumbersDialog.textRestartEachSection": "Restart each section",
"DE.Views.LineNumbersDialog.textSection": "Current section",
"DE.Views.LineNumbersDialog.textStartAt": "Start at",
"DE.Views.LineNumbersDialog.textTitle": "Line numbers",
"DE.Views.LineNumbersDialog.txtAutoText": "Auto",
"DE.Views.Links.capBtnAddText": "Add Text",
"DE.Views.Links.capBtnBookmarks": "Bookmark",
"DE.Views.Links.capBtnCaption": "Caption",
"DE.Views.Links.capBtnContentsUpdate": "Update Table",
"DE.Views.Links.capBtnCrossRef": "Cross-reference",
"DE.Views.Links.capBtnInsContents": "Table of Contents",
"DE.Views.Links.capBtnInsFootnote": "Footnote",
"DE.Views.Links.capBtnInsLink": "Hyperlink",
"DE.Views.Links.capBtnTOF": "Table of Figures",
"DE.Views.Links.confirmDeleteFootnotes": "Do you want to delete all footnotes?",
"DE.Views.Links.confirmReplaceTOF": "Do you want to replace the selected table of figures?",
"DE.Views.Links.mniConvertNote": "Convert all notes",
"DE.Views.Links.mniDelFootnote": "Delete all notes",
"DE.Views.Links.mniInsEndnote": "Insert endnote",
"DE.Views.Links.mniInsFootnote": "Insert footnote",
"DE.Views.Links.mniNoteSettings": "Notes settings",
"DE.Views.Links.textContentsRemove": "Remove table of contents",
"DE.Views.Links.textContentsSettings": "Settings",
"DE.Views.Links.textConvertToEndnotes": "Convert all footnotes to endnotes",
"DE.Views.Links.textConvertToFootnotes": "Convert all endnotes to footnotes",
"DE.Views.Links.textGotoEndnote": "Go to endnotes",
"DE.Views.Links.textGotoFootnote": "Go to footnotes",
"DE.Views.Links.textSwapNotes": "Swap footnotes and endnotes",
"DE.Views.Links.textUpdateAll": "Update entire table",
"DE.Views.Links.textUpdatePages": "Update page numbers only",
"DE.Views.Links.tipAddText": "Include heading in the table of contents",
"DE.Views.Links.tipBookmarks": "Create a bookmark",
"DE.Views.Links.tipCaption": "Insert caption",
"DE.Views.Links.tipContents": "Insert table of contents",
"DE.Views.Links.tipContentsUpdate": "Update table of contents",
"DE.Views.Links.tipCrossRef": "Insert cross-reference",
"DE.Views.Links.tipInsertHyperlink": "Add hyperlink",
"DE.Views.Links.tipNotes": "Insert or edit footnotes",
"DE.Views.Links.tipTableFigures": "Insert table of figures",
"DE.Views.Links.tipTableFiguresUpdate": "Update table of figures",
"DE.Views.Links.titleUpdateTOF": "Update table of figures",
"DE.Views.Links.txtDontShowTof": "Do not show in table of contents",
"DE.Views.Links.txtLevel": "Level",
"DE.Views.ListIndentsDialog.textSpace": "Space",
"DE.Views.ListIndentsDialog.textTab": "Tab character",
"DE.Views.ListIndentsDialog.textTitle": "List Indents",
"DE.Views.ListIndentsDialog.txtFollowBullet": "Follow bullet with",
"DE.Views.ListIndentsDialog.txtFollowNumber": "Follow number with",
"DE.Views.ListIndentsDialog.txtIndent": "Text indent",
"DE.Views.ListIndentsDialog.txtNone": "None",
"DE.Views.ListIndentsDialog.txtPosBullet": "Bullet position",
"DE.Views.ListIndentsDialog.txtPosNumber": "Number position",
"DE.Views.ListSettingsDialog.textAuto": "Automatic",
"DE.Views.ListSettingsDialog.textBold": "Bold",
"DE.Views.ListSettingsDialog.textCenter": "Center",
"DE.Views.ListSettingsDialog.textHide": "Hide settings",
"DE.Views.ListSettingsDialog.textItalic": "Italic",
"DE.Views.ListSettingsDialog.textLeft": "Left",
"DE.Views.ListSettingsDialog.textLevel": "Level",
"DE.Views.ListSettingsDialog.textMore": "Show more settings",
"DE.Views.ListSettingsDialog.textPreview": "Preview",
"DE.Views.ListSettingsDialog.textRight": "Right",
"DE.Views.ListSettingsDialog.textSelectLevel": "Select level",
"DE.Views.ListSettingsDialog.textSpace": "Space",
"DE.Views.ListSettingsDialog.textTab": "Tab character",
"DE.Views.ListSettingsDialog.txtAlign": "Alignment",
"DE.Views.ListSettingsDialog.txtAlignAt": "at",
"DE.Views.ListSettingsDialog.txtBullet": "Bullet",
"DE.Views.ListSettingsDialog.txtColor": "Color",
"DE.Views.ListSettingsDialog.txtFollow": "Follow number with",
"DE.Views.ListSettingsDialog.txtFontName": "Font",
"DE.Views.ListSettingsDialog.txtInclcudeLevel": "Include level number",
"DE.Views.ListSettingsDialog.txtIndent": "Text indent",
"DE.Views.ListSettingsDialog.txtLikeText": "Like a text",
"DE.Views.ListSettingsDialog.txtMoreTypes": "More types",
"DE.Views.ListSettingsDialog.txtNewBullet": "New bullet",
"DE.Views.ListSettingsDialog.txtNone": "None",
"DE.Views.ListSettingsDialog.txtNumFormatString": "Number format",
"DE.Views.ListSettingsDialog.txtRestart": "Restart list",
"DE.Views.ListSettingsDialog.txtSize": "Size",
"DE.Views.ListSettingsDialog.txtStart": "Start at",
"DE.Views.ListSettingsDialog.txtSymbol": "Symbol",
"DE.Views.ListSettingsDialog.txtTabStop": "Add tab stop at",
"DE.Views.ListSettingsDialog.txtTitle": "List settings",
"DE.Views.ListSettingsDialog.txtType": "Type",
"DE.Views.ListTypesAdvanced.labelSelect": "Select list type",
"DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF",
"DE.Views.MailMergeEmailDlg.okButtonText": "Send",
"DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Theme",
"DE.Views.MailMergeEmailDlg.textAttachDocx": "Attach as DOCX",
"DE.Views.MailMergeEmailDlg.textAttachPdf": "Attach as PDF",
"DE.Views.MailMergeEmailDlg.textFileName": "File name",
"DE.Views.MailMergeEmailDlg.textFormat": "Mail format",
"DE.Views.MailMergeEmailDlg.textFrom": "From",
"DE.Views.MailMergeEmailDlg.textHTML": "HTML",
"DE.Views.MailMergeEmailDlg.textMessage": "Message",
"DE.Views.MailMergeEmailDlg.textSubject": "Subject line",
"DE.Views.MailMergeEmailDlg.textTitle": "Send to email",
"DE.Views.MailMergeEmailDlg.textTo": "To",
"DE.Views.MailMergeEmailDlg.textWarning": "Warning!",
"DE.Views.MailMergeEmailDlg.textWarningMsg": "Please note that mailing cannot be stopped once your click the 'Send' button.",
"DE.Views.MailMergeSettings.downloadMergeTitle": "Merging",
"DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Merge failed.",
"DE.Views.MailMergeSettings.notcriticalErrorTitle": "Warning",
"DE.Views.MailMergeSettings.textAddRecipients": "Add some recipients to the list first",
"DE.Views.MailMergeSettings.textAll": "All records",
"DE.Views.MailMergeSettings.textCurrent": "Current record",
"DE.Views.MailMergeSettings.textDataSource": "Data source",
"DE.Views.MailMergeSettings.textDocx": "Docx",
"DE.Views.MailMergeSettings.textDownload": "Download",
"DE.Views.MailMergeSettings.textEditData": "Edit recipient list",
"DE.Views.MailMergeSettings.textEmail": "Email",
"DE.Views.MailMergeSettings.textFrom": "From",
"DE.Views.MailMergeSettings.textGoToMail": "Go to Mail",
"DE.Views.MailMergeSettings.textHighlight": "Highlight merge fields",
"DE.Views.MailMergeSettings.textInsertField": "Insert merge field",
"DE.Views.MailMergeSettings.textMaxRecepients": "Max 100 recipients.",
"DE.Views.MailMergeSettings.textMerge": "Merge",
"DE.Views.MailMergeSettings.textMergeFields": "Merge fields",
"DE.Views.MailMergeSettings.textMergeTo": "Merge to",
"DE.Views.MailMergeSettings.textPdf": "PDF",
"DE.Views.MailMergeSettings.textPortal": "Save",
"DE.Views.MailMergeSettings.textPreview": "Preview results",
"DE.Views.MailMergeSettings.textReadMore": "Read more",
"DE.Views.MailMergeSettings.textSendMsg": "All mail messages are ready and will be sent out within some time.<br>The speed of mailing depends on your mail service.<br>You can continue working with document or close it. After the operation is over the notification will be sent to your registration email address.",
"DE.Views.MailMergeSettings.textTo": "To",
"DE.Views.MailMergeSettings.txtFirst": "To first record",
"DE.Views.MailMergeSettings.txtFromToError": "\"From\" value must be less than \"To\" value",
"DE.Views.MailMergeSettings.txtLast": "To last record",
"DE.Views.MailMergeSettings.txtNext": "To next record",
"DE.Views.MailMergeSettings.txtPrev": "To previous record",
"DE.Views.MailMergeSettings.txtUntitled": "Untitled",
"DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed",
"DE.Views.Navigation.strNavigate": "Headings",
"DE.Views.Navigation.txtClosePanel": "Close headings",
"DE.Views.Navigation.txtCollapse": "Collapse all",
"DE.Views.Navigation.txtDemote": "Demote",
"DE.Views.Navigation.txtEmpty": "There are no headings in the document.<br>Apply a heading style to the text so that it appears in the table of contents.",
"DE.Views.Navigation.txtEmptyItem": "Empty heading",
"DE.Views.Navigation.txtEmptyViewer": "There are no headings in the document.",
"DE.Views.Navigation.txtExpand": "Expand all",
"DE.Views.Navigation.txtExpandToLevel": "Expand to level",
"DE.Views.Navigation.txtFontSize": "Font size",
"DE.Views.Navigation.txtHeadingAfter": "New heading after",
"DE.Views.Navigation.txtHeadingBefore": "New heading before",
"DE.Views.Navigation.txtLarge": "Large",
"DE.Views.Navigation.txtMedium": "Medium",
"DE.Views.Navigation.txtNewHeading": "New subheading",
"DE.Views.Navigation.txtPromote": "Promote",
"DE.Views.Navigation.txtSelect": "Select content",
"DE.Views.Navigation.txtSettings": "Headings settings",
"DE.Views.Navigation.txtSmall": "Small",
"DE.Views.Navigation.txtWrapHeadings": "Wrap long headings",
"DE.Views.NoteSettingsDialog.textApply": "Apply",
"DE.Views.NoteSettingsDialog.textApplyTo": "Apply changes to",
"DE.Views.NoteSettingsDialog.textContinue": "Continuous",
"DE.Views.NoteSettingsDialog.textCustom": "Custom mark",
"DE.Views.NoteSettingsDialog.textDocEnd": "End of document",
"DE.Views.NoteSettingsDialog.textDocument": "Whole document",
"DE.Views.NoteSettingsDialog.textEachPage": "Restart each page",
"DE.Views.NoteSettingsDialog.textEachSection": "Restart each section",
"DE.Views.NoteSettingsDialog.textEndnote": "Endnote",
"DE.Views.NoteSettingsDialog.textFootnote": "Footnote",
"DE.Views.NoteSettingsDialog.textFormat": "Format",
"DE.Views.NoteSettingsDialog.textInsert": "Insert",
"DE.Views.NoteSettingsDialog.textLocation": "Location",
"DE.Views.NoteSettingsDialog.textNumbering": "Numbering",
"DE.Views.NoteSettingsDialog.textNumFormat": "Number format",
"DE.Views.NoteSettingsDialog.textPageBottom": "Bottom of page",
"DE.Views.NoteSettingsDialog.textSectEnd": "End of section",
"DE.Views.NoteSettingsDialog.textSection": "Current section",
"DE.Views.NoteSettingsDialog.textStart": "Start at",
"DE.Views.NoteSettingsDialog.textTextBottom": "Below text",
"DE.Views.NoteSettingsDialog.textTitle": "Notes settings",
"DE.Views.NotesRemoveDialog.textEnd": "Delete all endnotes",
"DE.Views.NotesRemoveDialog.textFoot": "Delete all footnotes",
"DE.Views.NotesRemoveDialog.textTitle": "Delete notes",
"DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Warning",
"DE.Views.PageMarginsDialog.textBottom": "Bottom",
"DE.Views.PageMarginsDialog.textGutter": "Gutter",
"DE.Views.PageMarginsDialog.textGutterPosition": "Gutter position",
"DE.Views.PageMarginsDialog.textInside": "Inside",
"DE.Views.PageMarginsDialog.textLandscape": "Landscape",
"DE.Views.PageMarginsDialog.textLeft": "Left",
"DE.Views.PageMarginsDialog.textMirrorMargins": "Mirror margins",
"DE.Views.PageMarginsDialog.textMultiplePages": "Multiple pages",
"DE.Views.PageMarginsDialog.textNormal": "Normal",
"DE.Views.PageMarginsDialog.textOrientation": "Orientation",
"DE.Views.PageMarginsDialog.textOutside": "Outside",
"DE.Views.PageMarginsDialog.textPortrait": "Portrait",
"DE.Views.PageMarginsDialog.textPreview": "Preview",
"DE.Views.PageMarginsDialog.textRight": "Right",
"DE.Views.PageMarginsDialog.textTitle": "Margins",
"DE.Views.PageMarginsDialog.textTop": "Top",
"DE.Views.PageMarginsDialog.txtMarginsH": "Top and bottom margins are too high for a given page height",
"DE.Views.PageMarginsDialog.txtMarginsW": "Left and right margins are too wide for a given page width",
"DE.Views.PageSizeDialog.textHeight": "Height",
"DE.Views.PageSizeDialog.textPreset": "Preset",
"DE.Views.PageSizeDialog.textTitle": "Page size",
"DE.Views.PageSizeDialog.textWidth": "Width",
"DE.Views.PageSizeDialog.txtCustom": "Custom",
"DE.Views.PageThumbnails.textClosePanel": "Close page thumbnails",
"DE.Views.PageThumbnails.textHighlightVisiblePart": "Highlight visible part of page",
"DE.Views.PageThumbnails.textPageThumbnails": "Page thumbnails",
"DE.Views.PageThumbnails.textThumbnailsSettings": "Thumbnails settings",
"DE.Views.PageThumbnails.textThumbnailsSize": "Thumbnails size",
"DE.Views.ParagraphSettings.strIndent": "Indents",
"DE.Views.ParagraphSettings.strIndentsLeftText": "Left",
"DE.Views.ParagraphSettings.strIndentsRightText": "Right",
"DE.Views.ParagraphSettings.strIndentsSpecial": "Special",
"DE.Views.ParagraphSettings.strLineHeight": "Line spacing",
"DE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph spacing",
"DE.Views.ParagraphSettings.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style",
"DE.Views.ParagraphSettings.strSpacingAfter": "After",
"DE.Views.ParagraphSettings.strSpacingBefore": "Before",
"DE.Views.ParagraphSettings.textAdvanced": "Show advanced settings",
"DE.Views.ParagraphSettings.textAt": "At",
"DE.Views.ParagraphSettings.textAtLeast": "At least",
"DE.Views.ParagraphSettings.textAuto": "Multiple",
"DE.Views.ParagraphSettings.textBackColor": "Background color",
"DE.Views.ParagraphSettings.textExact": "Exactly",
"DE.Views.ParagraphSettings.textFirstLine": "First line",
"DE.Views.ParagraphSettings.textHanging": "Hanging",
"DE.Views.ParagraphSettings.textNoneSpecial": "(none)",
"DE.Views.ParagraphSettings.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field",
"DE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps",
"DE.Views.ParagraphSettingsAdvanced.strBorders": "Borders & Fill",
"DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Page break before",
"DE.Views.ParagraphSettingsAdvanced.strDirection": "Direction",
"DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough",
"DE.Views.ParagraphSettingsAdvanced.strIndent": "Indents",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
"DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line spacing",
"DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Outline level",
"DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before",
"DE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special",
"DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Keep lines together",
"DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Keep with next",
"DE.Views.ParagraphSettingsAdvanced.strMargins": "Paddings",
"DE.Views.ParagraphSettingsAdvanced.strOrphan": "Orphan control",
"DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font",
"DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & spacing",
"DE.Views.ParagraphSettingsAdvanced.strParagraphLine": "Line & page breaks",
"DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Placement",
"DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps",
"DE.Views.ParagraphSettingsAdvanced.strSomeParagraphSpace": "Don't add interval between paragraphs of the same style",
"DE.Views.ParagraphSettingsAdvanced.strSpacing": "Spacing",
"DE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough",
"DE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript",
"DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript",
"DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suppress line numbers",
"DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs",
"DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment",
"DE.Views.ParagraphSettingsAdvanced.textAll": "All",
"DE.Views.ParagraphSettingsAdvanced.textAtLeast": "At least",
"DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
"DE.Views.ParagraphSettingsAdvanced.textBackColor": "Background color",
"DE.Views.ParagraphSettingsAdvanced.textBodyText": "Basic text",
"DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders and apply chosen style to them",
"DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.ParagraphSettingsAdvanced.textBottom": "Bottom",
"DE.Views.ParagraphSettingsAdvanced.textCentered": "Centered",
"DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character spacing",
"DE.Views.ParagraphSettingsAdvanced.textContext": "Contextual",
"DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Contextual and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Contextual, historical and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Contextual and historical",
"DE.Views.ParagraphSettingsAdvanced.textDefault": "Default tab",
"DE.Views.ParagraphSettingsAdvanced.textDirLtr": "Left-to-right",
"DE.Views.ParagraphSettingsAdvanced.textDirRtl": "Right-to-left",
"DE.Views.ParagraphSettingsAdvanced.textDiscret": "Discretionary",
"DE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"DE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"DE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line",
"DE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging",
"DE.Views.ParagraphSettingsAdvanced.textHistorical": "Historical",
"DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Historical and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textJustified": "Justified",
"DE.Views.ParagraphSettingsAdvanced.textLeader": "Leader",
"DE.Views.ParagraphSettingsAdvanced.textLeft": "Left",
"DE.Views.ParagraphSettingsAdvanced.textLevel": "Level",
"DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatures",
"DE.Views.ParagraphSettingsAdvanced.textNone": "None",
"DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)",
"DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType features",
"DE.Views.ParagraphSettingsAdvanced.textPosition": "Position",
"DE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
"DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove all",
"DE.Views.ParagraphSettingsAdvanced.textRight": "Right",
"DE.Views.ParagraphSettingsAdvanced.textSet": "Specify",
"DE.Views.ParagraphSettingsAdvanced.textSpacing": "Spacing",
"DE.Views.ParagraphSettingsAdvanced.textStandard": "Standard only",
"DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Standard and contextual",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Standard, contextual and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Standard, contextual and historical",
"DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Standard and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Standard, historical and discretionary",
"DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Standard and historical",
"DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left",
"DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab position",
"DE.Views.ParagraphSettingsAdvanced.textTabRight": "Right",
"DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - advanced settings",
"DE.Views.ParagraphSettingsAdvanced.textTop": "Top",
"DE.Views.ParagraphSettingsAdvanced.tipAll": "Set outer border and all inner lines",
"DE.Views.ParagraphSettingsAdvanced.tipBottom": "Set bottom border only",
"DE.Views.ParagraphSettingsAdvanced.tipInner": "Set horizontal inner lines only",
"DE.Views.ParagraphSettingsAdvanced.tipLeft": "Set left border only",
"DE.Views.ParagraphSettingsAdvanced.tipNone": "Set no borders",
"DE.Views.ParagraphSettingsAdvanced.tipOuter": "Set outer border only",
"DE.Views.ParagraphSettingsAdvanced.tipRight": "Set right border only",
"DE.Views.ParagraphSettingsAdvanced.tipTop": "Set top border only",
"DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.PrintWithPreview.textMarginsLast": "Last Custom",
"DE.Views.PrintWithPreview.textMarginsModerate": "Moderate",
"DE.Views.PrintWithPreview.textMarginsNarrow": "Narrow",
"DE.Views.PrintWithPreview.textMarginsNormal": "Normal",
"DE.Views.PrintWithPreview.textMarginsWide": "Wide",
"DE.Views.PrintWithPreview.txtAllPages": "All pages",
"DE.Views.PrintWithPreview.txtBlackAndWhitePrinting": "Black and white printing",
"DE.Views.PrintWithPreview.txtBothSides": "Print on both sides",
"DE.Views.PrintWithPreview.txtBothSidesLongDesc": "Flip pages on long edge",
"DE.Views.PrintWithPreview.txtBothSidesShortDesc": "Flip pages on short edge",
"DE.Views.PrintWithPreview.txtBottom": "Bottom",
"DE.Views.PrintWithPreview.txtColorPrinting": "Color printing",
"DE.Views.PrintWithPreview.txtCopies": "Copies",
"DE.Views.PrintWithPreview.txtCurrentPage": "Current page",
"DE.Views.PrintWithPreview.txtCustom": "Custom",
"DE.Views.PrintWithPreview.txtCustomPages": "Custom print",
"DE.Views.PrintWithPreview.txtLandscape": "Landscape",
"DE.Views.PrintWithPreview.txtLeft": "Left",
"DE.Views.PrintWithPreview.txtMargins": "Margins",
"DE.Views.PrintWithPreview.txtOf": "of {0}",
"DE.Views.PrintWithPreview.txtOneSide": "Print one sided",
"DE.Views.PrintWithPreview.txtOneSideDesc": "Only print on one side of the page",
"DE.Views.PrintWithPreview.txtPage": "Page",
"DE.Views.PrintWithPreview.txtPageNumInvalid": "Page number invalid",
"DE.Views.PrintWithPreview.txtPageOrientation": "Page orientation",
"DE.Views.PrintWithPreview.txtPages": "Pages",
"DE.Views.PrintWithPreview.txtPageSize": "Page size",
"DE.Views.PrintWithPreview.txtPortrait": "Portrait",
"DE.Views.PrintWithPreview.txtPrint": "Print",
"DE.Views.PrintWithPreview.txtPrinter": "Printer",
"DE.Views.PrintWithPreview.txtPrinterNotSelected": "Printer not selected",
"DE.Views.PrintWithPreview.txtPrintersNotFound": "Printers not found",
"DE.Views.PrintWithPreview.txtPrintPdf": "Print to PDF",
"DE.Views.PrintWithPreview.txtPrintRange": "Print range",
"DE.Views.PrintWithPreview.txtPrintSides": "Print sides",
"DE.Views.PrintWithPreview.txtPrintUsingSystemDialog": "Print using the system dialog",
"DE.Views.PrintWithPreview.txtRight": "Right",
"DE.Views.PrintWithPreview.txtSelection": "Selection",
"DE.Views.PrintWithPreview.txtTop": "Top",
"DE.Views.PrintWithPreview.txtWaitingForPrinters": "Waiting for printers",
"DE.Views.ProtectDialog.textComments": "Comments",
"DE.Views.ProtectDialog.textForms": "Filling forms",
"DE.Views.ProtectDialog.textReview": "Tracked changes",
"DE.Views.ProtectDialog.textView": "No changes (Read only)",
"DE.Views.ProtectDialog.txtAllow": "Allow only this type of editing in the document",
"DE.Views.ProtectDialog.txtIncorrectPwd": "Confirmation password is not identical",
"DE.Views.ProtectDialog.txtLimit": "Password is limited to 15 characters",
"DE.Views.ProtectDialog.txtOptional": "optional",
"DE.Views.ProtectDialog.txtPassword": "Password",
"DE.Views.ProtectDialog.txtProtect": "Protect",
"DE.Views.ProtectDialog.txtRepeat": "Repeat password",
"DE.Views.ProtectDialog.txtTitle": "Protect",
"DE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"DE.Views.RightMenu.ariaRightMenu": "Right menu",
"DE.Views.RightMenu.txtChartSettings": "Chart settings",
"DE.Views.RightMenu.txtFormSettings": "Form settings",
"DE.Views.RightMenu.txtHeaderFooterSettings": "Header and footer settings",
"DE.Views.RightMenu.txtImageSettings": "Image settings",
"DE.Views.RightMenu.txtMailMergeSettings": "Mail merge settings",
"DE.Views.RightMenu.txtParagraphSettings": "Paragraph settings",
"DE.Views.RightMenu.txtShapeSettings": "Shape settings",
"DE.Views.RightMenu.txtSignatureSettings": "Signature settings",
"DE.Views.RightMenu.txtTableSettings": "Table settings",
"DE.Views.RightMenu.txtTextArtSettings": "Text Art settings",
"DE.Views.RoleDeleteDlg.textLabel": "To delete this recipient, you need to move the fields associated with it to another recipient.",
"DE.Views.RoleDeleteDlg.textSelect": "Select recipient for field merger",
"DE.Views.RoleDeleteDlg.textTitle": "Delete recipient",
"DE.Views.RoleEditDlg.errNameExists": "Recipient with such a name already exists.",
"DE.Views.RoleEditDlg.textEmptyError": "Recipient name must not be empty.",
"DE.Views.RoleEditDlg.textName": "Recipient name",
"DE.Views.RoleEditDlg.textNameEx": "Example: Applicant, Client, Sales Rep",
"DE.Views.RoleEditDlg.textNoHighlight": "No highlighting",
"DE.Views.RoleEditDlg.txtTitleEdit": "Edit Recipient",
"DE.Views.RoleEditDlg.txtTitleNew": "Create new recipients",
"DE.Views.RolesManagerDlg.textAnyone": "Anyone",
"DE.Views.RolesManagerDlg.textDelete": "Delete",
"DE.Views.RolesManagerDlg.textDeleteLast": "Are you sure you want to delete the recipient {0}?<br>Once deleted, the default recipient will be created.",
"DE.Views.RolesManagerDlg.textDescription": "Add recipients and set the order in which the fillers receive and sign the document",
"DE.Views.RolesManagerDlg.textDown": "Move recipient down",
"DE.Views.RolesManagerDlg.textEdit": "Edit",
"DE.Views.RolesManagerDlg.textEmpty": "No recipients have been created yet.<br>Create at least one recipient and it will appear in this field.",
"DE.Views.RolesManagerDlg.textNew": "New",
"DE.Views.RolesManagerDlg.textUp": "Move recipient up",
"DE.Views.RolesManagerDlg.txtTitle": "Manage Recipient Roles",
"DE.Views.RolesManagerDlg.warnCantDelete": "You cannot delete this recipient because it has associated fields.",
"DE.Views.RolesManagerDlg.warnDelete": "Are you sure you want to delete the recipient {0}?",
"DE.Views.SaveFormDlg.saveButtonText": "Save",
"DE.Views.SaveFormDlg.textAnyone": "Anyone",
"DE.Views.SaveFormDlg.textDescription": "When saving to the PDF, only recipients with fields are added to the filling list",
"DE.Views.SaveFormDlg.textEmpty": "There are no recipients associated with fields.",
"DE.Views.SaveFormDlg.textFill": "Filling list",
"DE.Views.SaveFormDlg.txtTitle": "Save as form",
"DE.Views.ShapeSettings.strBackground": "Background color",
"DE.Views.ShapeSettings.strChange": "Change shape",
"DE.Views.ShapeSettings.strColor": "Color",
"DE.Views.ShapeSettings.strFill": "Fill",
"DE.Views.ShapeSettings.strForeground": "Foreground color",
"DE.Views.ShapeSettings.strPattern": "Pattern",
"DE.Views.ShapeSettings.strShadow": "Show shadow",
"DE.Views.ShapeSettings.strSize": "Size",
"DE.Views.ShapeSettings.strStroke": "Line",
"DE.Views.ShapeSettings.strTransparency": "Opacity",
"DE.Views.ShapeSettings.strType": "Type",
"DE.Views.ShapeSettings.textAdjustShadow": "Adjust Shadow",
"DE.Views.ShapeSettings.textAdvanced": "Show advanced settings",
"DE.Views.ShapeSettings.textAngle": "Angle",
"DE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"DE.Views.ShapeSettings.textColor": "Color fill",
"DE.Views.ShapeSettings.textDirection": "Direction",
"DE.Views.ShapeSettings.textEditPoints": "Edit points",
"DE.Views.ShapeSettings.textEditShape": "Edit shape",
"DE.Views.ShapeSettings.textEmptyPattern": "No pattern",
"DE.Views.ShapeSettings.textEyedropper": "Eyedropper",
"DE.Views.ShapeSettings.textFlip": "Flip",
"DE.Views.ShapeSettings.textFromFile": "From file",
"DE.Views.ShapeSettings.textFromStorage": "From storage",
"DE.Views.ShapeSettings.textFromUrl": "From URL",
"DE.Views.ShapeSettings.textGradient": "Gradient points",
"DE.Views.ShapeSettings.textGradientFill": "Gradient fill",
"DE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise",
"DE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise",
"DE.Views.ShapeSettings.textHintFlipH": "Flip horizontally",
"DE.Views.ShapeSettings.textHintFlipV": "Flip vertically",
"DE.Views.ShapeSettings.textImageTexture": "Picture or texture",
"DE.Views.ShapeSettings.textLinear": "Linear",
"DE.Views.ShapeSettings.textMoreColors": "More colors",
"DE.Views.ShapeSettings.textNoFill": "No fill",
"DE.Views.ShapeSettings.textNoShadow": "No Shadow",
"DE.Views.ShapeSettings.textPatternFill": "Pattern",
"DE.Views.ShapeSettings.textPosition": "Position",
"DE.Views.ShapeSettings.textRadial": "Radial",
"DE.Views.ShapeSettings.textRecentlyUsed": "Recently used",
"DE.Views.ShapeSettings.textRotate90": "Rotate 90°",
"DE.Views.ShapeSettings.textRotation": "Rotation",
"DE.Views.ShapeSettings.textSelectImage": "Select picture",
"DE.Views.ShapeSettings.textSelectTexture": "Select",
"DE.Views.ShapeSettings.textShadow": "Shadow",
"DE.Views.ShapeSettings.textStretch": "Stretch",
"DE.Views.ShapeSettings.textStyle": "Style",
"DE.Views.ShapeSettings.textTexture": "From texture",
"DE.Views.ShapeSettings.textTile": "Tile",
"DE.Views.ShapeSettings.textWrap": "Wrapping Style",
"DE.Views.ShapeSettings.tipAddGradientPoint": "Add gradient point",
"DE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove gradient point",
"DE.Views.ShapeSettings.txtBehind": "Behind text",
"DE.Views.ShapeSettings.txtBrownPaper": "Brown paper",
"DE.Views.ShapeSettings.txtCanvas": "Canvas",
"DE.Views.ShapeSettings.txtCarton": "Carton",
"DE.Views.ShapeSettings.txtDarkFabric": "Dark fabric",
"DE.Views.ShapeSettings.txtGrain": "Grain",
"DE.Views.ShapeSettings.txtGranite": "Granite",
"DE.Views.ShapeSettings.txtGreyPaper": "Gray paper",
"DE.Views.ShapeSettings.txtInFront": "In front of Text",
"DE.Views.ShapeSettings.txtInline": "In line with text",
"DE.Views.ShapeSettings.txtKnit": "Knit",
"DE.Views.ShapeSettings.txtLeather": "Leather",
"DE.Views.ShapeSettings.txtNoBorders": "No line",
"DE.Views.ShapeSettings.txtOffsetBottom": "Offset: Bottom",
"DE.Views.ShapeSettings.txtOffsetBottomLeft": "Offset: Bottom left",
"DE.Views.ShapeSettings.txtOffsetBottomRight": "Offset: Bottom right",
"DE.Views.ShapeSettings.txtOffsetCenter": "Offset: Center",
"DE.Views.ShapeSettings.txtOffsetLeft": "Offset: Left",
"DE.Views.ShapeSettings.txtOffsetRight": "Offset: Right",
"DE.Views.ShapeSettings.txtOffsetTop": "Offset: Top",
"DE.Views.ShapeSettings.txtOffsetTopLeft": "Offset: Top left",
"DE.Views.ShapeSettings.txtOffsetTopRight": "Offset: Top right",
"DE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"DE.Views.ShapeSettings.txtSquare": "Square",
"DE.Views.ShapeSettings.txtThrough": "Through",
"DE.Views.ShapeSettings.txtTight": "Tight",
"DE.Views.ShapeSettings.txtTopAndBottom": "Top and bottom",
"DE.Views.ShapeSettings.txtWood": "Wood",
"DE.Views.SignatureSettings.notcriticalErrorTitle": "Warning",
"DE.Views.SignatureSettings.strDelete": "Remove Signature",
"DE.Views.SignatureSettings.strDetails": "Signature details",
"DE.Views.SignatureSettings.strInvalid": "Invalid signatures",
"DE.Views.SignatureSettings.strRequested": "Requested signatures",
"DE.Views.SignatureSettings.strSetup": "Signature setup",
"DE.Views.SignatureSettings.strSign": "Sign",
"DE.Views.SignatureSettings.strSignature": "Signature",
"DE.Views.SignatureSettings.strSigner": "Signer",
"DE.Views.SignatureSettings.strValid": "Valid signatures",
"DE.Views.SignatureSettings.txtContinueEditing": "Edit anyway",
"DE.Views.SignatureSettings.txtEditWarning": "Editing will remove signatures from the document.<br>Continue?",
"DE.Views.SignatureSettings.txtRemoveWarning": "Do you want to remove this signature?<br>It can't be undone.",
"DE.Views.SignatureSettings.txtRequestedSignatures": "This document needs to be signed.",
"DE.Views.SignatureSettings.txtSigned": "Valid signatures have been added to the document. The document is protected from editing.",
"DE.Views.SignatureSettings.txtSignedForm": "This document has been signed and cannot be edited.",
"DE.Views.SignatureSettings.txtSignedInvalid": "Some of the digital signatures in the document are invalid or could not be verified. The document is protected from editing.",
"DE.Views.Statusbar.goToPageText": "Go to Page",
"DE.Views.Statusbar.pageIndexText": "Page {0} of {1}",
"DE.Views.Statusbar.tipFitPage": "Fit to page",
"DE.Views.Statusbar.tipFitWidth": "Fit to width",
"DE.Views.Statusbar.tipHandTool": "Hand tool",
"DE.Views.Statusbar.tipSelectTool": "Select tool",
"DE.Views.Statusbar.tipSetLang": "Set text language",
"DE.Views.Statusbar.tipZoomFactor": "Zoom",
"DE.Views.Statusbar.tipZoomIn": "Zoom in",
"DE.Views.Statusbar.tipZoomOut": "Zoom out",
"DE.Views.Statusbar.txtPageNumInvalid": "Page number invalid",
"DE.Views.Statusbar.txtPages": "Pages",
"DE.Views.Statusbar.txtParagraphs": "Paragraphs",
"DE.Views.Statusbar.txtSpaces": "Symbols with spaces",
"DE.Views.Statusbar.txtSymbols": "Symbols",
"DE.Views.Statusbar.txtWordCount": "Word count",
"DE.Views.Statusbar.txtWords": "Words",
"DE.Views.StyleTitleDialog.textHeader": "Create new style",
"DE.Views.StyleTitleDialog.textNextStyle": "Next paragraph style",
"DE.Views.StyleTitleDialog.textTitle": "Title",
"DE.Views.StyleTitleDialog.txtEmpty": "This field is required",
"DE.Views.StyleTitleDialog.txtNotEmpty": "Field must not be empty",
"DE.Views.StyleTitleDialog.txtSameAs": "Same as created new style",
"DE.Views.TableFormulaDialog.textBookmark": "Paste bookmark",
"DE.Views.TableFormulaDialog.textFormat": "Number format",
"DE.Views.TableFormulaDialog.textFormula": "Formula",
"DE.Views.TableFormulaDialog.textInsertFunction": "Paste function",
"DE.Views.TableFormulaDialog.textTitle": "Formula settings",
"DE.Views.TableOfContentsSettings.strAlign": "Right align page numbers",
"DE.Views.TableOfContentsSettings.strFullCaption": "Include label and number",
"DE.Views.TableOfContentsSettings.strLinks": "Format table of contents as links",
"DE.Views.TableOfContentsSettings.strLinksOF": "Format table of figures as links",
"DE.Views.TableOfContentsSettings.strShowPages": "Show page numbers",
"DE.Views.TableOfContentsSettings.textBuildTable": "Build table of contents from",
"DE.Views.TableOfContentsSettings.textBuildTableOF": "Build table of figures from",
"DE.Views.TableOfContentsSettings.textEquation": "Equation",
"DE.Views.TableOfContentsSettings.textFigure": "Figure",
"DE.Views.TableOfContentsSettings.textLeader": "Leader",
"DE.Views.TableOfContentsSettings.textLevel": "Level",
"DE.Views.TableOfContentsSettings.textLevels": "Levels",
"DE.Views.TableOfContentsSettings.textNone": "None",
"DE.Views.TableOfContentsSettings.textRadioCaption": "Caption",
"DE.Views.TableOfContentsSettings.textRadioLevels": "Outline levels",
"DE.Views.TableOfContentsSettings.textRadioStyle": "Style",
"DE.Views.TableOfContentsSettings.textRadioStyles": "Selected styles",
"DE.Views.TableOfContentsSettings.textStyle": "Style",
"DE.Views.TableOfContentsSettings.textStyles": "Styles",
"DE.Views.TableOfContentsSettings.textTable": "Table",
"DE.Views.TableOfContentsSettings.textTitle": "Table of contents",
"DE.Views.TableOfContentsSettings.textTitleTOF": "Table of figures",
"DE.Views.TableOfContentsSettings.txtCentered": "Centered",
"DE.Views.TableOfContentsSettings.txtClassic": "Classic",
"DE.Views.TableOfContentsSettings.txtCurrent": "Current",
"DE.Views.TableOfContentsSettings.txtDistinctive": "Distinctive",
"DE.Views.TableOfContentsSettings.txtFormal": "Formal",
"DE.Views.TableOfContentsSettings.txtModern": "Modern",
"DE.Views.TableOfContentsSettings.txtOnline": "Online",
"DE.Views.TableOfContentsSettings.txtSimple": "Simple",
"DE.Views.TableOfContentsSettings.txtStandard": "Standard",
"DE.Views.TableSettings.deleteColumnText": "Delete column",
"DE.Views.TableSettings.deleteRowText": "Delete row",
"DE.Views.TableSettings.deleteTableText": "Delete table",
"DE.Views.TableSettings.insertColumnLeftText": "Insert column left",
"DE.Views.TableSettings.insertColumnRightText": "Insert column right",
"DE.Views.TableSettings.insertRowAboveText": "Insert row above",
"DE.Views.TableSettings.insertRowBelowText": "Insert row below",
"DE.Views.TableSettings.mergeCellsText": "Merge cells",
"DE.Views.TableSettings.selectCellText": "Select cell",
"DE.Views.TableSettings.selectColumnText": "Select column",
"DE.Views.TableSettings.selectRowText": "Select row",
"DE.Views.TableSettings.selectTableText": "Select table",
"DE.Views.TableSettings.splitCellsText": "Split Cell...",
"DE.Views.TableSettings.splitCellTitleText": "Split Cell",
"DE.Views.TableSettings.strRepeatRow": "Repeat as header row at the top of each page",
"DE.Views.TableSettings.textAddFormula": "Add formula",
"DE.Views.TableSettings.textAdvanced": "Show advanced settings",
"DE.Views.TableSettings.textAutofit": "Automaticaly resize to fit content",
"DE.Views.TableSettings.textBackColor": "Background Color",
"DE.Views.TableSettings.textBanded": "Banded",
"DE.Views.TableSettings.textBorderColor": "Color",
"DE.Views.TableSettings.textBorders": "Borders style",
"DE.Views.TableSettings.textCellSize": "Rows & columns size",
"DE.Views.TableSettings.textColumns": "Columns",
"DE.Views.TableSettings.textConvert": "Convert table to text",
"DE.Views.TableSettings.textDistributeCols": "Distribute columns",
"DE.Views.TableSettings.textDistributeRows": "Distribute rows",
"DE.Views.TableSettings.textEdit": "Rows & columns",
"DE.Views.TableSettings.textEmptyTemplate": "No templates",
"DE.Views.TableSettings.textFirst": "First",
"DE.Views.TableSettings.textHeader": "Header",
"DE.Views.TableSettings.textHeight": "Height",
"DE.Views.TableSettings.textLast": "Last",
"DE.Views.TableSettings.textRows": "Rows",
"DE.Views.TableSettings.textSelectBorders": "Select borders you want to change applying style chosen above",
"DE.Views.TableSettings.textTemplate": "Select from template",
"DE.Views.TableSettings.textTotal": "Total",
"DE.Views.TableSettings.textWidth": "Width",
"DE.Views.TableSettings.tipAll": "Set outer border and all inner lines",
"DE.Views.TableSettings.tipBottom": "Set outer bottom border only",
"DE.Views.TableSettings.tipInner": "Set inner lines only",
"DE.Views.TableSettings.tipInnerHor": "Set horizontal inner lines only",
"DE.Views.TableSettings.tipInnerVert": "Set vertical inner lines only",
"DE.Views.TableSettings.tipLeft": "Set outer left border only",
"DE.Views.TableSettings.tipNone": "Set no borders",
"DE.Views.TableSettings.tipOuter": "Set outer border only",
"DE.Views.TableSettings.tipRight": "Set outer right border only",
"DE.Views.TableSettings.tipTop": "Set outer top border only",
"DE.Views.TableSettings.txtGroupTable_BorderedAndLined": "Bordered & Lined tables",
"DE.Views.TableSettings.txtGroupTable_Custom": "Custom",
"DE.Views.TableSettings.txtGroupTable_Grid": "Grid tables",
"DE.Views.TableSettings.txtGroupTable_List": "List tables",
"DE.Views.TableSettings.txtGroupTable_Plain": "Plain tables",
"DE.Views.TableSettings.txtNoBorders": "No borders",
"DE.Views.TableSettings.txtTable_Accent": "Accent",
"DE.Views.TableSettings.txtTable_Bordered": "Bordered",
"DE.Views.TableSettings.txtTable_BorderedAndLined": "Bordered & Lined",
"DE.Views.TableSettings.txtTable_Colorful": "Colorful",
"DE.Views.TableSettings.txtTable_Dark": "Dark",
"DE.Views.TableSettings.txtTable_GridTable": "Grid table",
"DE.Views.TableSettings.txtTable_Light": "Light",
"DE.Views.TableSettings.txtTable_Lined": "Lined",
"DE.Views.TableSettings.txtTable_ListTable": "List table",
"DE.Views.TableSettings.txtTable_PlainTable": "Plain table",
"DE.Views.TableSettings.txtTable_TableGrid": "Table grid",
"DE.Views.TableSettingsAdvanced.textAlign": "Alignment",
"DE.Views.TableSettingsAdvanced.textAlignment": "Alignment",
"DE.Views.TableSettingsAdvanced.textAllowSpacing": "Spacing between cells",
"DE.Views.TableSettingsAdvanced.textAlt": "Alternative text",
"DE.Views.TableSettingsAdvanced.textAltDescription": "Description",
"DE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, shape, chart, or table.",
"DE.Views.TableSettingsAdvanced.textAltTitle": "Title",
"DE.Views.TableSettingsAdvanced.textAnchorText": "Text",
"DE.Views.TableSettingsAdvanced.textAutofit": "Automatically resize to fit contents",
"DE.Views.TableSettingsAdvanced.textBackColor": "Cell background",
"DE.Views.TableSettingsAdvanced.textBelow": "below",
"DE.Views.TableSettingsAdvanced.textBorderColor": "Border color",
"DE.Views.TableSettingsAdvanced.textBorderDesc": "Click on diagram or use buttons to select borders and apply chosen style to them",
"DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Borders & Background",
"DE.Views.TableSettingsAdvanced.textBorderWidth": "Border size",
"DE.Views.TableSettingsAdvanced.textBottom": "Bottom",
"DE.Views.TableSettingsAdvanced.textCellOptions": "Cell options",
"DE.Views.TableSettingsAdvanced.textCellProps": "Cell",
"DE.Views.TableSettingsAdvanced.textCellSize": "Cell size",
"DE.Views.TableSettingsAdvanced.textCenter": "Center",
"DE.Views.TableSettingsAdvanced.textCenterTooltip": "Center",
"DE.Views.TableSettingsAdvanced.textCheckMargins": "Use default margins",
"DE.Views.TableSettingsAdvanced.textDefaultMargins": "Default cell margins",
"DE.Views.TableSettingsAdvanced.textDistance": "Distance from text",
"DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal",
"DE.Views.TableSettingsAdvanced.textIndLeft": "Indent from left",
"DE.Views.TableSettingsAdvanced.textLeft": "Left",
"DE.Views.TableSettingsAdvanced.textLeftTooltip": "Left",
"DE.Views.TableSettingsAdvanced.textMargin": "Margin",
"DE.Views.TableSettingsAdvanced.textMargins": "Cell margins",
"DE.Views.TableSettingsAdvanced.textMeasure": "Measure in",
"DE.Views.TableSettingsAdvanced.textMove": "Move object with text",
"DE.Views.TableSettingsAdvanced.textOnlyCells": "For selected cells only",
"DE.Views.TableSettingsAdvanced.textOptions": "Options",
"DE.Views.TableSettingsAdvanced.textOverlap": "Allow overlap",
"DE.Views.TableSettingsAdvanced.textPage": "Page",
"DE.Views.TableSettingsAdvanced.textPosition": "Position",
"DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferred width",
"DE.Views.TableSettingsAdvanced.textPreview": "Preview",
"DE.Views.TableSettingsAdvanced.textRelative": "relative to",
"DE.Views.TableSettingsAdvanced.textRight": "Right",
"DE.Views.TableSettingsAdvanced.textRightOf": "to the right of",
"DE.Views.TableSettingsAdvanced.textRightTooltip": "Right",
"DE.Views.TableSettingsAdvanced.textTable": "Table",
"DE.Views.TableSettingsAdvanced.textTableBackColor": "Table background",
"DE.Views.TableSettingsAdvanced.textTablePosition": "Table position",
"DE.Views.TableSettingsAdvanced.textTableSize": "Table size",
"DE.Views.TableSettingsAdvanced.textTitle": "Table - advanced settings",
"DE.Views.TableSettingsAdvanced.textTop": "Top",
"DE.Views.TableSettingsAdvanced.textVertical": "Vertical",
"DE.Views.TableSettingsAdvanced.textWidth": "Width",
"DE.Views.TableSettingsAdvanced.textWidthSpaces": "Width & Spaces",
"DE.Views.TableSettingsAdvanced.textWrap": "Text wrapping",
"DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Inline table",
"DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Flow table",
"DE.Views.TableSettingsAdvanced.textWrappingStyle": "Wrapping style",
"DE.Views.TableSettingsAdvanced.textWrapText": "Wrap text",
"DE.Views.TableSettingsAdvanced.tipAll": "Set outer border and all inner lines",
"DE.Views.TableSettingsAdvanced.tipCellAll": "Set borders for inner cells only",
"DE.Views.TableSettingsAdvanced.tipCellInner": "Set vertical and horizontal lines for inner cells only",
"DE.Views.TableSettingsAdvanced.tipCellOuter": "Set outer borders for inner cells only",
"DE.Views.TableSettingsAdvanced.tipInner": "Set inner lines only",
"DE.Views.TableSettingsAdvanced.tipNone": "Set no borders",
"DE.Views.TableSettingsAdvanced.tipOuter": "Set outer border only",
"DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Set outer border and borders for all inner cells",
"DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Set outer border and vertical and horizontal lines for inner cells",
"DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Set table outer border and outer borders for inner cells",
"DE.Views.TableSettingsAdvanced.txtCm": "Centimeter",
"DE.Views.TableSettingsAdvanced.txtInch": "Inch",
"DE.Views.TableSettingsAdvanced.txtNoBorders": "No borders",
"DE.Views.TableSettingsAdvanced.txtPercent": "Percent",
"DE.Views.TableSettingsAdvanced.txtPt": "Point",
"DE.Views.TableToTextDialog.textEmpty": "You must type a character for the custom separator.",
"DE.Views.TableToTextDialog.textNested": "Convert nested tables",
"DE.Views.TableToTextDialog.textOther": "Other",
"DE.Views.TableToTextDialog.textPara": "Paragraph marks",
"DE.Views.TableToTextDialog.textSemicolon": "Semicolons",
"DE.Views.TableToTextDialog.textSeparator": "Separate text with",
"DE.Views.TableToTextDialog.textTab": "Tabs",
"DE.Views.TableToTextDialog.textTitle": "Convert table to text",
"DE.Views.TextArtSettings.strColor": "Color",
"DE.Views.TextArtSettings.strFill": "Fill",
"DE.Views.TextArtSettings.strSize": "Size",
"DE.Views.TextArtSettings.strStroke": "Line",
"DE.Views.TextArtSettings.strTransparency": "Opacity",
"DE.Views.TextArtSettings.strType": "Type",
"DE.Views.TextArtSettings.textAngle": "Angle",
"DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"DE.Views.TextArtSettings.textColor": "Color fill",
"DE.Views.TextArtSettings.textDirection": "Direction",
"DE.Views.TextArtSettings.textGradient": "Gradient points",
"DE.Views.TextArtSettings.textGradientFill": "Gradient fill",
"DE.Views.TextArtSettings.textLinear": "Linear",
"DE.Views.TextArtSettings.textNoFill": "No fill",
"DE.Views.TextArtSettings.textPosition": "Position",
"DE.Views.TextArtSettings.textRadial": "Radial",
"DE.Views.TextArtSettings.textSelectTexture": "Select",
"DE.Views.TextArtSettings.textStyle": "Style",
"DE.Views.TextArtSettings.textTemplate": "Template",
"DE.Views.TextArtSettings.textTransform": "Transform",
"DE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point",
"DE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point",
"DE.Views.TextArtSettings.txtNoBorders": "No line",
"DE.Views.TextToTableDialog.textAutofit": "Autofit behavior",
"DE.Views.TextToTableDialog.textColumns": "Columns",
"DE.Views.TextToTableDialog.textContents": "Autofit to contents",
"DE.Views.TextToTableDialog.textEmpty": "You must type a character for the custom separator.",
"DE.Views.TextToTableDialog.textFixed": "Fixed column width",
"DE.Views.TextToTableDialog.textOther": "Other",
"DE.Views.TextToTableDialog.textPara": "Paragraphs",
"DE.Views.TextToTableDialog.textRows": "Rows",
"DE.Views.TextToTableDialog.textSemicolon": "Semicolons",
"DE.Views.TextToTableDialog.textSeparator": "Separate text at",
"DE.Views.TextToTableDialog.textTab": "Tabs",
"DE.Views.TextToTableDialog.textTableSize": "Table size",
"DE.Views.TextToTableDialog.textTitle": "Convert text to table",
"DE.Views.TextToTableDialog.textWindow": "Autofit to window",
"DE.Views.TextToTableDialog.txtAutoText": "Auto",
"DE.Views.Toolbar.capBtnAddComment": "Add Comment",
"DE.Views.Toolbar.capBtnBlankPage": "Blank Page",
"DE.Views.Toolbar.capBtnColumns": "Columns",
"DE.Views.Toolbar.capBtnComment": "Comment",
"DE.Views.Toolbar.capBtnDateTime": "Date & Time",
"DE.Views.Toolbar.capBtnHand": "Hand",
"DE.Views.Toolbar.capBtnHyphenation": "Hyphenation",
"DE.Views.Toolbar.capBtnInsChart": "Chart",
"DE.Views.Toolbar.capBtnInsControls": "Content Controls",
"DE.Views.Toolbar.capBtnInsDropcap": "Drop Cap",
"DE.Views.Toolbar.capBtnInsEquation": "Equation",
"DE.Views.Toolbar.capBtnInsField": "Field",
"DE.Views.Toolbar.capBtnInsHeader": "Header & Footer",
"DE.Views.Toolbar.capBtnInsImage": "Image",
"DE.Views.Toolbar.capBtnInsPagebreak": "Breaks",
"DE.Views.Toolbar.capBtnInsShape": "Shape",
"DE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"DE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"DE.Views.Toolbar.capBtnInsTable": "Table",
"DE.Views.Toolbar.capBtnInsTextart": "Text Art",
"DE.Views.Toolbar.capBtnInsTextbox": "Text Box",
"DE.Views.Toolbar.capBtnInsTextFromFile": "Text from File",
"DE.Views.Toolbar.capBtnLineNumbers": "Line Numbers",
"DE.Views.Toolbar.capBtnMargins": "Margins",
"DE.Views.Toolbar.capBtnPageColor": "Page Color",
"DE.Views.Toolbar.capBtnPageOrient": "Orientation",
"DE.Views.Toolbar.capBtnPageSize": "Size",
"DE.Views.Toolbar.capBtnSelect": "Select",
"DE.Views.Toolbar.capBtnWatermark": "Watermark",
"DE.Views.Toolbar.capColorScheme": "Colors",
"DE.Views.Toolbar.capImgAlign": "Align",
"DE.Views.Toolbar.capImgBackward": "Send Backward",
"DE.Views.Toolbar.capImgForward": "Bring Forward",
"DE.Views.Toolbar.capImgGroup": "Group",
"DE.Views.Toolbar.capImgWrapping": "Wrapping",
"DE.Views.Toolbar.capShapesMerge": "Merge Shapes",
"DE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word",
"DE.Views.Toolbar.mniCustomTable": "Insert custom table",
"DE.Views.Toolbar.mniDrawTable": "Draw table",
"DE.Views.Toolbar.mniEditControls": "Control settings",
"DE.Views.Toolbar.mniEditDropCap": "Drop Cap Settings",
"DE.Views.Toolbar.mniEditFooter": "Edit footer",
"DE.Views.Toolbar.mniEditHeader": "Edit header",
"DE.Views.Toolbar.mniEraseTable": "Erase table",
"DE.Views.Toolbar.mniFromFile": "From File",
"DE.Views.Toolbar.mniFromStorage": "From Storage",
"DE.Views.Toolbar.mniFromUrl": "From URL",
"DE.Views.Toolbar.mniHiddenBorders": "Hidden table borders",
"DE.Views.Toolbar.mniHiddenChars": "Nonprinting characters",
"DE.Views.Toolbar.mniHighlightControls": "Highlight settings",
"DE.Views.Toolbar.mniImageFromFile": "Image from file",
"DE.Views.Toolbar.mniImageFromStorage": "Image from storage",
"DE.Views.Toolbar.mniImageFromUrl": "Image from URL",
"DE.Views.Toolbar.mniInsertSSE": "Insert Spreadsheet",
"DE.Views.Toolbar.mniLowerCase": "lowercase",
"DE.Views.Toolbar.mniRemoveFooter": "Remove footer",
"DE.Views.Toolbar.mniRemoveHeader": "Remove header",
"DE.Views.Toolbar.mniSentenceCase": "Sentence case.",
"DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file",
"DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file",
"DE.Views.Toolbar.mniTextFromURL": "Text from the URL file",
"DE.Views.Toolbar.mniTextToTable": "Convert Text to Table",
"DE.Views.Toolbar.mniToggleCase": "tOGGLE cASE",
"DE.Views.Toolbar.mniUpperCase": "UPPERCASE",
"DE.Views.Toolbar.strMenuNoFill": "No Fill",
"DE.Views.Toolbar.textAddSpaceAfter": "Add space after paragraph",
"DE.Views.Toolbar.textAddSpaceBefore": "Add space before paragraph",
"DE.Views.Toolbar.textAllBorders": "All borders",
"DE.Views.Toolbar.textAlpha": "Greek Small Letter Alpha",
"DE.Views.Toolbar.textAuto": "Automatic",
"DE.Views.Toolbar.textAutoColor": "Automatic",
"DE.Views.Toolbar.textBetta": "Greek Small Letter Beta",
"DE.Views.Toolbar.textBlackHeart": "Black heart suit",
"DE.Views.Toolbar.textBold": "Bold",
"DE.Views.Toolbar.textBordersColor": "Border color",
"DE.Views.Toolbar.textBordersStyle": "Border style",
"DE.Views.Toolbar.textBottom": "Bottom: ",
"DE.Views.Toolbar.textBottomBorders": "Bottom borders",
"DE.Views.Toolbar.textBullet": "Bullet",
"DE.Views.Toolbar.textChangeLevel": "Change list level",
"DE.Views.Toolbar.textCheckboxControl": "Check box",
"DE.Views.Toolbar.textColumnsCustom": "Custom columns",
"DE.Views.Toolbar.textColumnsLeft": "Left",
"DE.Views.Toolbar.textColumnsOne": "One",
"DE.Views.Toolbar.textColumnsRight": "Right",
"DE.Views.Toolbar.textColumnsThree": "Three",
"DE.Views.Toolbar.textColumnsTwo": "Two",
"DE.Views.Toolbar.textComboboxControl": "Combo box",
"DE.Views.Toolbar.textContinuous": "Continuous",
"DE.Views.Toolbar.textContPage": "Continuous page",
"DE.Views.Toolbar.textCopyright": "Copyright Sign",
"DE.Views.Toolbar.textCustomHyphen": "Hyphenation options",
"DE.Views.Toolbar.textCustomLineNumbers": "Line numbering options",
"DE.Views.Toolbar.textDateControl": "Date picker",
"DE.Views.Toolbar.textDegree": "Degree Sign",
"DE.Views.Toolbar.textDelta": "Greek Small Letter Delta",
"DE.Views.Toolbar.textDirLtr": "Left-to-right",
"DE.Views.Toolbar.textDirRtl": "Right-to-left",
"DE.Views.Toolbar.textDivision": "Division Sign",
"DE.Views.Toolbar.textDollar": "Dollar Sign",
"DE.Views.Toolbar.textDropdownControl": "Drop-down list",
"DE.Views.Toolbar.textEditMode": "Edit PDF",
"DE.Views.Toolbar.textEditWatermark": "Custom watermark",
"DE.Views.Toolbar.textEuro": "Euro Sign",
"DE.Views.Toolbar.textEvenPage": "Even page",
"DE.Views.Toolbar.textGreaterEqual": "Greater Than Or Equal To",
"DE.Views.Toolbar.textIndAfter": "Indent after",
"DE.Views.Toolbar.textIndBefore": "Indent before",
"DE.Views.Toolbar.textIndLeft": "Left indent",
"DE.Views.Toolbar.textIndRight": "Right indent",
"DE.Views.Toolbar.textInfinity": "Infinity",
"DE.Views.Toolbar.textInMargin": "In margin",
"DE.Views.Toolbar.textInsColumnBreak": "Insert column break",
"DE.Views.Toolbar.textInsertPageCount": "Insert number of pages",
"DE.Views.Toolbar.textInsertPageNumber": "Insert page number",
"DE.Views.Toolbar.textInsideBorders": "Inside borders",
"DE.Views.Toolbar.textInsideHorBorders": "Inside horizontal borders",
"DE.Views.Toolbar.textInsideVertBorders": "Inside vertical borders",
"DE.Views.Toolbar.textInsPageBreak": "Insert page break",
"DE.Views.Toolbar.textInsSectionBreak": "Insert section break",
"DE.Views.Toolbar.textInText": "In text",
"DE.Views.Toolbar.textItalic": "Italic",
"DE.Views.Toolbar.textLandscape": "Landscape",
"DE.Views.Toolbar.textLeft": "Left: ",
"DE.Views.Toolbar.textLeftBorders": "Left borders",
"DE.Views.Toolbar.textLessEqual": "Less Than Or Equal To",
"DE.Views.Toolbar.textLetterPi": "Greek Small Letter Pi",
"DE.Views.Toolbar.textLineSpaceOptions": "Line spacing options",
"DE.Views.Toolbar.textListSettings": "List settings",
"DE.Views.Toolbar.textMarginsLast": "Last Custom",
"DE.Views.Toolbar.textMarginsModerate": "Moderate",
"DE.Views.Toolbar.textMarginsNarrow": "Narrow",
"DE.Views.Toolbar.textMarginsNormal": "Normal",
"DE.Views.Toolbar.textMarginsWide": "Wide",
"DE.Views.Toolbar.textMoreSymbols": "More symbols",
"DE.Views.Toolbar.textNewColor": "More colors",
"DE.Views.Toolbar.textNextPage": "Next Page",
"DE.Views.Toolbar.textNoBorders": "No borders",
"DE.Views.Toolbar.textNoHighlight": "No highlighting",
"DE.Views.Toolbar.textNone": "None",
"DE.Views.Toolbar.textNotEqualTo": "Not Equal To",
"DE.Views.Toolbar.textOddPage": "Odd Page",
"DE.Views.Toolbar.textOneHalf": "Vulgar Fraction One Half",
"DE.Views.Toolbar.textOneQuarter": "Vulgar Fraction One Quarter",
"DE.Views.Toolbar.textOutBorders": "Outside borders",
"DE.Views.Toolbar.textPageMarginsCustom": "Custom margins",
"DE.Views.Toolbar.textPageSizeCustom": "Custom page size",
"DE.Views.Toolbar.textPictureControl": "Picture",
"DE.Views.Toolbar.textPlainControl": "Plain text",
"DE.Views.Toolbar.textPlusMinus": "Plus-Minus Sign",
"DE.Views.Toolbar.textPortrait": "Portrait",
"DE.Views.Toolbar.textRegistered": "Registered Sign",
"DE.Views.Toolbar.textRemoveControl": "Remove content control",
"DE.Views.Toolbar.textRemSpaceAfter": "Remove space after paragraph",
"DE.Views.Toolbar.textRemSpaceBefore": "Remove space before paragraph",
"DE.Views.Toolbar.textRemWatermark": "Remove watermark",
"DE.Views.Toolbar.textRestartEachPage": "Restart each page",
"DE.Views.Toolbar.textRestartEachSection": "Restart each section",
"DE.Views.Toolbar.textRichControl": "Rich text",
"DE.Views.Toolbar.textRight": "Right: ",
"DE.Views.Toolbar.textRightBorders": "Right borders",
"DE.Views.Toolbar.textSection": "Section Sign",
"DE.Views.Toolbar.textShapesCombine": "Combine",
"DE.Views.Toolbar.textShapesFragment": "Fragment",
"DE.Views.Toolbar.textShapesIntersect": "Intersect",
"DE.Views.Toolbar.textShapesSubstract": "Subtract",
"DE.Views.Toolbar.textShapesUnion": "Union",
"DE.Views.Toolbar.textSmile": "White Smiling Face",
"DE.Views.Toolbar.textSpaceAfter": "Space after",
"DE.Views.Toolbar.textSpaceBefore": "Space before",
"DE.Views.Toolbar.textSquareRoot": "Square Root",
"DE.Views.Toolbar.textStrikeout": "Strikethrough",
"DE.Views.Toolbar.textStyleMenuDelete": "Delete style",
"DE.Views.Toolbar.textStyleMenuDeleteAll": "Delete all custom styles",
"DE.Views.Toolbar.textStyleMenuNew": "New style from selection",
"DE.Views.Toolbar.textStyleMenuRestore": "Restore to default",
"DE.Views.Toolbar.textStyleMenuRestoreAll": "Restore all to default styles",
"DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection",
"DE.Views.Toolbar.textSubscript": "Subscript",
"DE.Views.Toolbar.textSuperscript": "Superscript",
"DE.Views.Toolbar.textSuppressForCurrentParagraph": "Suppress for current paragraph",
"DE.Views.Toolbar.textTabCollaboration": "Collaboration",
"DE.Views.Toolbar.textTabDraw": "Draw",
"DE.Views.Toolbar.textTabFile": "File",
"DE.Views.Toolbar.textTabHome": "Home",
"DE.Views.Toolbar.textTabInsert": "Insert",
"DE.Views.Toolbar.textTabLayout": "Layout",
"DE.Views.Toolbar.textTabLinks": "References",
"DE.Views.Toolbar.textTabProtect": "Protection",
"DE.Views.Toolbar.textTabReview": "Review",
"DE.Views.Toolbar.textTabView": "View",
"DE.Views.Toolbar.textTilde": "Tilde",
"DE.Views.Toolbar.textTitleError": "Error",
"DE.Views.Toolbar.textToCurrent": "To current position",
"DE.Views.Toolbar.textTop": "Top: ",
"DE.Views.Toolbar.textTopBorders": "Top borders",
"DE.Views.Toolbar.textTradeMark": "Trade Mark Sign",
"DE.Views.Toolbar.textUnderline": "Underline",
"DE.Views.Toolbar.textYen": "Yen Sign",
"DE.Views.Toolbar.tipAlignCenter": "Align center",
"DE.Views.Toolbar.tipAlignJust": "Justified",
"DE.Views.Toolbar.tipAlignLeft": "Align left",
"DE.Views.Toolbar.tipAlignRight": "Align right",
"DE.Views.Toolbar.tipBack": "Back",
"DE.Views.Toolbar.tipBlankPage": "Insert blank page",
"DE.Views.Toolbar.tipBorders": "Borders",
"DE.Views.Toolbar.tipChangeCase": "Change case",
"DE.Views.Toolbar.tipChangeChart": "Change chart type",
"DE.Views.Toolbar.tipClearStyle": "Clear style",
"DE.Views.Toolbar.tipColorSchemas": "Change color theme",
"DE.Views.Toolbar.tipColumns": "Insert columns",
"DE.Views.Toolbar.tipControls": "Insert content controls",
"DE.Views.Toolbar.tipCopy": "Copy",
"DE.Views.Toolbar.tipCopyStyle": "Copy style",
"DE.Views.Toolbar.tipCut": "Cut",
"DE.Views.Toolbar.tipDateTime": "Insert current date and time",
"DE.Views.Toolbar.tipDecFont": "Decrement font size",
"DE.Views.Toolbar.tipDecPrLeft": "Decrease indent",
"DE.Views.Toolbar.tipDownload": "Download file",
"DE.Views.Toolbar.tipDropCap": "Insert drop cap",
"DE.Views.Toolbar.tipEditHeader": "Edit header or footer",
"DE.Views.Toolbar.tipEditMode": "Edit current file.<br>The page will be reloaded.",
"DE.Views.Toolbar.tipFontColor": "Font color",
"DE.Views.Toolbar.tipFontName": "Font",
"DE.Views.Toolbar.tipFontSize": "Font size",
"DE.Views.Toolbar.tipHandTool": "Hand tool",
"DE.Views.Toolbar.tipHighlightColor": "Highlight color",
"DE.Views.Toolbar.tipHyphenation": "Change hyphenation",
"DE.Views.Toolbar.tipImgAlign": "Align objects",
"DE.Views.Toolbar.tipImgGroup": "Group objects",
"DE.Views.Toolbar.tipImgWrapping": "Wrap text",
"DE.Views.Toolbar.tipIncFont": "Increment font size",
"DE.Views.Toolbar.tipIncPrLeft": "Increase indent",
"DE.Views.Toolbar.tipInsertChart": "Insert chart",
"DE.Views.Toolbar.tipInsertEquation": "Insert equation",
"DE.Views.Toolbar.tipInsertHorizontalText": "Insert horizontal text box",
"DE.Views.Toolbar.tipInsertImage": "Insert image",
"DE.Views.Toolbar.tipInsertNum": "Insert page number",
"DE.Views.Toolbar.tipInsertShape": "Insert shape",
"DE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt",
"DE.Views.Toolbar.tipInsertSymbol": "Insert symbol",
"DE.Views.Toolbar.tipInsertTable": "Insert table",
"DE.Views.Toolbar.tipInsertText": "Insert text box",
"DE.Views.Toolbar.tipInsertTextArt": "Insert Text Art",
"DE.Views.Toolbar.tipInsertVerticalText": "Insert vertical text box",
"DE.Views.Toolbar.tipInsField": "Insert field",
"DE.Views.Toolbar.tipLineNumbers": "Show line numbers",
"DE.Views.Toolbar.tipLineSpace": "Paragraph line spacing",
"DE.Views.Toolbar.tipMailRecepients": "Mail merge",
"DE.Views.Toolbar.tipMarkers": "Bullets",
"DE.Views.Toolbar.tipMarkersArrow": "Arrow bullets",
"DE.Views.Toolbar.tipMarkersCheckmark": "Checkmark bullets",
"DE.Views.Toolbar.tipMarkersDash": "Dash bullets",
"DE.Views.Toolbar.tipMarkersFRhombus": "Filled rhombus bullets",
"DE.Views.Toolbar.tipMarkersFRound": "Filled round bullets",
"DE.Views.Toolbar.tipMarkersFSquare": "Filled square bullets",
"DE.Views.Toolbar.tipMarkersHRound": "Hollow round bullets",
"DE.Views.Toolbar.tipMarkersStar": "Star bullets",
"DE.Views.Toolbar.tipMultiLevelArticl": "Multi-level numbered articles",
"DE.Views.Toolbar.tipMultiLevelChapter": "Multi-level numbered chapters",
"DE.Views.Toolbar.tipMultiLevelHeadings": "Multi-level numbered headings",
"DE.Views.Toolbar.tipMultiLevelHeadVarious": "Multi-level various numbered headings",
"DE.Views.Toolbar.tipMultiLevelNumbered": "Multi-level numbered bullets",
"DE.Views.Toolbar.tipMultilevels": "Multilevel list",
"DE.Views.Toolbar.tipMultiLevelSymbols": "Multi-level symbols bullets",
"DE.Views.Toolbar.tipMultiLevelVarious": "Multi-level various numbered bullets",
"DE.Views.Toolbar.tipNumbers": "Numbering",
"DE.Views.Toolbar.tipPageBreak": "Insert page or section break",
"DE.Views.Toolbar.tipPageColor": "Change page color",
"DE.Views.Toolbar.tipPageMargins": "Page margins",
"DE.Views.Toolbar.tipPageOrient": "Page orientation",
"DE.Views.Toolbar.tipPageSize": "Page size",
"DE.Views.Toolbar.tipParagraphStyle": "Paragraph style",
"DE.Views.Toolbar.tipPaste": "Paste",
"DE.Views.Toolbar.tipPrColor": "Shading",
"DE.Views.Toolbar.tipPrint": "Print",
"DE.Views.Toolbar.tipPrintQuick": "Quick print",
"DE.Views.Toolbar.tipRedo": "Redo",
"DE.Views.Toolbar.tipReplace": "Replace",
"DE.Views.Toolbar.tipSave": "Save",
"DE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.",
"DE.Views.Toolbar.tipSelectAll": "Select all",
"DE.Views.Toolbar.tipSelectTool": "Select tool",
"DE.Views.Toolbar.tipSendBackward": "Send backward",
"DE.Views.Toolbar.tipSendForward": "Bring forward",
"DE.Views.Toolbar.tipShapesMerge": "Merge shapes",
"DE.Views.Toolbar.tipShowHiddenChars": "Nonprinting characters",
"DE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.",
"DE.Views.Toolbar.tipTextDir": "Text direction",
"DE.Views.Toolbar.tipTextFromFile": "Text from file",
"DE.Views.Toolbar.tipUndo": "Undo",
"DE.Views.Toolbar.tipWatermark": "Edit watermark",
"DE.Views.Toolbar.txtAutoText": "Auto",
"DE.Views.Toolbar.txtDistribHor": "Distribute horizontally",
"DE.Views.Toolbar.txtDistribVert": "Distribute vertically",
"DE.Views.Toolbar.txtGroupBulletDoc": "Document bullets",
"DE.Views.Toolbar.txtGroupBulletLib": "Bullet library",
"DE.Views.Toolbar.txtGroupMultiDoc": "Lists in current document",
"DE.Views.Toolbar.txtGroupMultiLib": "List library",
"DE.Views.Toolbar.txtGroupNumDoc": "Document numbering formats",
"DE.Views.Toolbar.txtGroupNumLib": "Numbering library",
"DE.Views.Toolbar.txtGroupRecent": "Recently used",
"DE.Views.Toolbar.txtMarginAlign": "Align to margin",
"DE.Views.Toolbar.txtObjectsAlign": "Align selected objects",
"DE.Views.Toolbar.txtPageAlign": "Align to page",
"DE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
"DE.Views.ViewTab.textDarkDocument": "Dark Document",
"DE.Views.ViewTab.textFill": "Fill",
"DE.Views.ViewTab.textFitToPage": "Fit To Page",
"DE.Views.ViewTab.textFitToWidth": "Fit To Width",
"DE.Views.ViewTab.textInterfaceTheme": "Interface Theme",
"DE.Views.ViewTab.textLeftMenu": "Left Panel",
"DE.Views.ViewTab.textLine": "Line",
"DE.Views.ViewTab.textMacros": "Macros",
"DE.Views.ViewTab.textNavigation": "Navigation",
"DE.Views.ViewTab.textOutline": "Headings",
"DE.Views.ViewTab.textRightMenu": "Right Panel",
"DE.Views.ViewTab.textRulers": "Rulers",
"DE.Views.ViewTab.textStatusBar": "Status Bar",
"DE.Views.ViewTab.textTabStyle": "Tab style",
"DE.Views.ViewTab.textZoom": "Zoom",
"DE.Views.ViewTab.tipDarkDocument": "Dark document",
"DE.Views.ViewTab.tipFitToPage": "Fit to page",
"DE.Views.ViewTab.tipFitToWidth": "Fit to width",
"DE.Views.ViewTab.tipHeadings": "Headings",
"DE.Views.ViewTab.tipInterfaceTheme": "Interface theme",
"DE.Views.ViewTab.tipMacros": "Macros",
"DE.Views.WatermarkSettingsDialog.textAuto": "Auto",
"DE.Views.WatermarkSettingsDialog.textBold": "Bold",
"DE.Views.WatermarkSettingsDialog.textColor": "Text color",
"DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal",
"DE.Views.WatermarkSettingsDialog.textFont": "Font",
"DE.Views.WatermarkSettingsDialog.textFromFile": "From file",
"DE.Views.WatermarkSettingsDialog.textFromStorage": "From storage",
"DE.Views.WatermarkSettingsDialog.textFromUrl": "From URL",
"DE.Views.WatermarkSettingsDialog.textHor": "Horizontal",
"DE.Views.WatermarkSettingsDialog.textImageW": "Image watermark",
"DE.Views.WatermarkSettingsDialog.textItalic": "Italic",
"DE.Views.WatermarkSettingsDialog.textLanguage": "Language",
"DE.Views.WatermarkSettingsDialog.textLayout": "Layout",
"DE.Views.WatermarkSettingsDialog.textNone": "None",
"DE.Views.WatermarkSettingsDialog.textScale": "Scale",
"DE.Views.WatermarkSettingsDialog.textSelect": "Select image",
"DE.Views.WatermarkSettingsDialog.textStrikeout": "Strikethrough",
"DE.Views.WatermarkSettingsDialog.textText": "Text",
"DE.Views.WatermarkSettingsDialog.textTextW": "Text watermark",
"DE.Views.WatermarkSettingsDialog.textTitle": "Watermark settings",
"DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent",
"DE.Views.WatermarkSettingsDialog.textUnderline": "Underline",
"DE.Views.WatermarkSettingsDialog.tipFontName": "Font name",
"DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size"
}