en.json
175 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
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
"Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymous",
"Common.Controllers.ExternalDiagramEditor.textClose": "Close",
"Common.Controllers.ExternalDiagramEditor.warningText": "This object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalDiagramEditor.warningTitle": "Warning",
"Common.Controllers.ExternalOleEditor.textAnonymous": "Anonymous User",
"Common.Controllers.ExternalOleEditor.textClose": "Close",
"Common.Controllers.ExternalOleEditor.warningText": "This object is disabled because it is being edited by another user.",
"Common.Controllers.ExternalOleEditor.warningTitle": "Warning",
"Common.define.chartData.textArea": "Area Chart",
"Common.define.chartData.textAreaStacked": "Stacked Area Chart",
"Common.define.chartData.textAreaStackedPer": "100% Stacked Area Chart",
"Common.define.chartData.textBar": "Bar Chart",
"Common.define.chartData.textBarNormal": "Clustered Column Chart",
"Common.define.chartData.textBarNormal3d": "3D Clustered Column Chart",
"Common.define.chartData.textBarNormal3dPerspective": "3D Column Chart",
"Common.define.chartData.textBarStacked": "Stacked Column Chart",
"Common.define.chartData.textBarStacked3d": "3D Stacked Column Chart",
"Common.define.chartData.textBarStackedPer": "100% Stacked Column Chart",
"Common.define.chartData.textBarStackedPer3d": "3D 100% Stacked Column Chart",
"Common.define.chartData.textCharts": "Flowchart",
"Common.define.chartData.textColumn": "Column Chart",
"Common.define.chartData.textCombo": "Combo",
"Common.define.chartData.textComboAreaBar": "Stacked Area - Clustered Column Chart",
"Common.define.chartData.textComboBarLine": "Clustered Column - Line Chart",
"Common.define.chartData.textComboBarLineSecondary": "Clustered Column - Line Chart (Secondary Axis)",
"Common.define.chartData.textComboCustom": "Custom Combo",
"Common.define.chartData.textDoughnut": "Doughnut Chart",
"Common.define.chartData.textHBarNormal": "Clustered Bar Chart",
"Common.define.chartData.textHBarNormal3d": "3D Clustered Bar Chart",
"Common.define.chartData.textHBarStacked": "Stacked Bar Chart",
"Common.define.chartData.textHBarStacked3d": "3D Stacked Bar Chart",
"Common.define.chartData.textHBarStackedPer": "100% Stacked Bar Chart",
"Common.define.chartData.textHBarStackedPer3d": "3D 100% Stacked Bar Chart",
"Common.define.chartData.textLine": "Line Chart",
"Common.define.chartData.textLine3d": "3D Line Chart",
"Common.define.chartData.textLineMarker": "Line Chart with Markers",
"Common.define.chartData.textLineStacked": "Stacked Line Chart",
"Common.define.chartData.textLineStackedMarker": "Stacked Line Chart with Markers",
"Common.define.chartData.textLineStackedPer": "100% Stacked Line Chart",
"Common.define.chartData.textLineStackedPerMarker": "100% Stacked Line Chart with Markers",
"Common.define.chartData.textPie": "Pie Chart",
"Common.define.chartData.textPie3d": "3D Pie Chart",
"Common.define.chartData.textPoint": "XY (Scatter Chart)",
"Common.define.chartData.textRadar": "Radar Chart",
"Common.define.chartData.textRadarFilled": "Filled Radar Chart",
"Common.define.chartData.textRadarMarker": "Radar Chart with Markers",
"Common.define.chartData.textScatter": "XY (Scatter Chart)",
"Common.define.chartData.textScatterLine": "Scatter Chart with Straight Lines",
"Common.define.chartData.textScatterLineMarker": "Scatter Chart with Straight Lines and Markers",
"Common.define.chartData.textScatterSmooth": "Scatter Chart with Smooth Lines",
"Common.define.chartData.textScatterSmoothMarker": "Scatter Chart with Smooth Lines and Markers",
"Common.define.chartData.textStock": "Stock Chart",
"Common.define.chartData.textSurface": "Surface",
"Common.define.effectData.textAcross": "Across",
"Common.define.effectData.textAppear": "Appear",
"Common.define.effectData.textArcDown": "Down",
"Common.define.effectData.textArcLeft": "Left",
"Common.define.effectData.textArcRight": "Right",
"Common.define.effectData.textArcs": "Arcs",
"Common.define.effectData.textArcUp": "Up",
"Common.define.effectData.textBasic": "Basic",
"Common.define.effectData.textBasicSwivel": "Basic Swivel",
"Common.define.effectData.textBasicZoom": "Basic Zoom",
"Common.define.effectData.textBean": "Bean",
"Common.define.effectData.textBlinds": "Blinds",
"Common.define.effectData.textBlink": "Blink",
"Common.define.effectData.textBoldFlash": "Bold Flash",
"Common.define.effectData.textBoldReveal": "Bold Reveal",
"Common.define.effectData.textBoomerang": "Boomerang",
"Common.define.effectData.textBounce": "Bounce",
"Common.define.effectData.textBounceLeft": "Bounce Left",
"Common.define.effectData.textBounceRight": "Bounce Right",
"Common.define.effectData.textBox": "Box",
"Common.define.effectData.textBrushColor": "Brush Color",
"Common.define.effectData.textCenterRevolve": "Center Revolve",
"Common.define.effectData.textCheckerboard": "Checkerboard",
"Common.define.effectData.textCircle": "Circle",
"Common.define.effectData.textCollapse": "Collapse",
"Common.define.effectData.textColorPulse": "Color Pulse",
"Common.define.effectData.textComplementaryColor": "Complementary Color",
"Common.define.effectData.textComplementaryColor2": "Complementary Color 2",
"Common.define.effectData.textCompress": "Compress",
"Common.define.effectData.textContrast": "Contrast",
"Common.define.effectData.textContrastingColor": "Contrasting Color",
"Common.define.effectData.textCredits": "Credits",
"Common.define.effectData.textCrescentMoon": "Crescent Moon",
"Common.define.effectData.textCurveDown": "Curve Down",
"Common.define.effectData.textCurvedSquare": "Curved Square",
"Common.define.effectData.textCurvedX": "Curved X",
"Common.define.effectData.textCurvyLeft": "Curvy Left",
"Common.define.effectData.textCurvyRight": "Curvy Right",
"Common.define.effectData.textCurvyStar": "Curvy Star",
"Common.define.effectData.textCustomPath": "Custom Path",
"Common.define.effectData.textCuverUp": "Curve Up",
"Common.define.effectData.textDarken": "Darken",
"Common.define.effectData.textDecayingWave": "Decaying Wave",
"Common.define.effectData.textDesaturate": "Desaturate",
"Common.define.effectData.textDiagonalDownRight": "Right",
"Common.define.effectData.textDiagonalUpRight": "Right",
"Common.define.effectData.textDiamond": "Diamond",
"Common.define.effectData.textDisappear": "Disappear",
"Common.define.effectData.textDissolveIn": "Dissolve In",
"Common.define.effectData.textDissolveOut": "Dissolve Out",
"Common.define.effectData.textDown": "Down",
"Common.define.effectData.textDrop": "Drop",
"Common.define.effectData.textEmphasis": "Emphasis",
"Common.define.effectData.textEntrance": "Entrance",
"Common.define.effectData.textEqualTriangle": "Equilateral Triangle",
"Common.define.effectData.textExciting": "Exciting",
"Common.define.effectData.textExit": "Exit",
"Common.define.effectData.textExpand": "Expand",
"Common.define.effectData.textFade": "Fade Out",
"Common.define.effectData.textFigureFour": "Figure 8",
"Common.define.effectData.textFillColor": "Fill Color",
"Common.define.effectData.textFlip": "Flip",
"Common.define.effectData.textFloat": "Float",
"Common.define.effectData.textFloatDown": "Float Down",
"Common.define.effectData.textFloatIn": "Float In",
"Common.define.effectData.textFloatOut": "Float Out",
"Common.define.effectData.textFloatUp": "Float Up",
"Common.define.effectData.textFlyIn": "Fly In",
"Common.define.effectData.textFlyOut": "Fly Out",
"Common.define.effectData.textFontColor": "Font Color",
"Common.define.effectData.textFootball": "Football",
"Common.define.effectData.textFromBottom": "From Bottom",
"Common.define.effectData.textFromBottomLeft": "From Bottom Left",
"Common.define.effectData.textFromBottomRight": "From Bottom Right",
"Common.define.effectData.textFromLeft": "From Left",
"Common.define.effectData.textFromRight": "From Right",
"Common.define.effectData.textFromTop": "From Top",
"Common.define.effectData.textFromTopLeft": "From Top Left",
"Common.define.effectData.textFromTopRight": "From Top Right",
"Common.define.effectData.textFunnel": "Funnel",
"Common.define.effectData.textGrowShrink": "Grow/Shrink",
"Common.define.effectData.textGrowTurn": "Grow & Turn",
"Common.define.effectData.textGrowWithColor": "Grow with Color",
"Common.define.effectData.textHeart": "Heart",
"Common.define.effectData.textHeartbeat": "Heartbeat",
"Common.define.effectData.textHexagon": "Hexagon",
"Common.define.effectData.textHorizontal": "Horizontal",
"Common.define.effectData.textHorizontalFigure": "Horizontal Figure 8",
"Common.define.effectData.textHorizontalIn": "Horizontal In",
"Common.define.effectData.textHorizontalOut": "Horizontal Out",
"Common.define.effectData.textIn": "In",
"Common.define.effectData.textInFromScreenCenter": "In from Screen Center",
"Common.define.effectData.textInSlightly": "In Slightly",
"Common.define.effectData.textInToScreenBottom": "In to Screen Bottom",
"Common.define.effectData.textInvertedSquare": "Inverted Square",
"Common.define.effectData.textInvertedTriangle": "Inverted Triangle",
"Common.define.effectData.textLeft": "Left",
"Common.define.effectData.textLeftDown": "Left Down",
"Common.define.effectData.textLeftUp": "Left Up",
"Common.define.effectData.textLighten": "Lighten",
"Common.define.effectData.textLineColor": "Line Color",
"Common.define.effectData.textLines": "Lines",
"Common.define.effectData.textLinesCurves": "Lines & Curves",
"Common.define.effectData.textLoopDeLoop": "Ripple",
"Common.define.effectData.textLoops": "Loops",
"Common.define.effectData.textModerate": "Moderate",
"Common.define.effectData.textNeutron": "Neutron",
"Common.define.effectData.textObjectCenter": "Object Center",
"Common.define.effectData.textObjectColor": "Object Color",
"Common.define.effectData.textOctagon": "Octagon",
"Common.define.effectData.textOut": "Out",
"Common.define.effectData.textOutFromScreenBottom": "Out from Screen Bottom",
"Common.define.effectData.textOutSlightly": "Out Slightly",
"Common.define.effectData.textOutToScreenCenter": "Out to Screen Center",
"Common.define.effectData.textParallelogram": "Parallelogram",
"Common.define.effectData.textPath": "Motion Path",
"Common.define.effectData.textPathCurve": "Curve",
"Common.define.effectData.textPathLine": "Line",
"Common.define.effectData.textPathScribble": "Scribble",
"Common.define.effectData.textPeanut": "Peanut",
"Common.define.effectData.textPeekIn": "Peek In",
"Common.define.effectData.textPeekOut": "Peek Out",
"Common.define.effectData.textPentagon": "Pentagon",
"Common.define.effectData.textPinwheel": "Pinwheel",
"Common.define.effectData.textPlus": "Plus",
"Common.define.effectData.textPointStar": "Point Star",
"Common.define.effectData.textPointStar4": "4-Point Star",
"Common.define.effectData.textPointStar5": "5-Point Star",
"Common.define.effectData.textPointStar6": "6-Point Star",
"Common.define.effectData.textPointStar8": "8-Point Star",
"Common.define.effectData.textPulse": "Pulse",
"Common.define.effectData.textRandomBars": "Random Bars",
"Common.define.effectData.textRight": "Right",
"Common.define.effectData.textRightDown": "Right Down",
"Common.define.effectData.textRightTriangle": "Right Triangle",
"Common.define.effectData.textRightUp": "Right Up",
"Common.define.effectData.textRiseUp": "Rise Up",
"Common.define.effectData.textSCurve1": "S Curve 1",
"Common.define.effectData.textSCurve2": "S Curve 2",
"Common.define.effectData.textShape": "Shape",
"Common.define.effectData.textShapes": "Shapes",
"Common.define.effectData.textShimmer": "Shimmer",
"Common.define.effectData.textShrinkTurn": "Shrink & Turn",
"Common.define.effectData.textSineWave": "Sine Wave",
"Common.define.effectData.textSinkDown": "Sink Down",
"Common.define.effectData.textSlideCenter": "Slide Center",
"Common.define.effectData.textSpecial": "Special",
"Common.define.effectData.textSpin": "Spin",
"Common.define.effectData.textSpinner": "Spinner",
"Common.define.effectData.textSpiralIn": "Spiral In",
"Common.define.effectData.textSpiralLeft": "Spiral Left",
"Common.define.effectData.textSpiralOut": "Spiral Out",
"Common.define.effectData.textSpiralRight": "Spiral Right",
"Common.define.effectData.textSplit": "Split",
"Common.define.effectData.textSpoke1": "1 Spoke",
"Common.define.effectData.textSpoke2": "2 Spoke",
"Common.define.effectData.textSpoke3": "3 Spoke",
"Common.define.effectData.textSpoke4": "4 Spoke",
"Common.define.effectData.textSpoke8": "8 Spoke",
"Common.define.effectData.textSpring": "Spring",
"Common.define.effectData.textSquare": "Square",
"Common.define.effectData.textStairsDown": "Stairs Down",
"Common.define.effectData.textStretch": "Stretch",
"Common.define.effectData.textStrips": "Strips",
"Common.define.effectData.textSubtle": "Subtle",
"Common.define.effectData.textSwivel": "Swivel",
"Common.define.effectData.textSwoosh": "Swoosh",
"Common.define.effectData.textTeardrop": "Teardrop",
"Common.define.effectData.textTeeter": "Teeter",
"Common.define.effectData.textToBottom": "To Bottom",
"Common.define.effectData.textToBottomLeft": "To Bottom Left",
"Common.define.effectData.textToBottomRight": "To Bottom Right",
"Common.define.effectData.textToLeft": "To Left",
"Common.define.effectData.textToRight": "To Right",
"Common.define.effectData.textToTop": "To Top",
"Common.define.effectData.textToTopLeft": "To Top Left",
"Common.define.effectData.textToTopRight": "To Top Right",
"Common.define.effectData.textTransparency": "Transparency",
"Common.define.effectData.textTrapezoid": "Trapezoid",
"Common.define.effectData.textTurnDown": "Turn Down",
"Common.define.effectData.textTurnDownRight": "Turn Down Right",
"Common.define.effectData.textTurns": "Turns",
"Common.define.effectData.textTurnUp": "Turn Up",
"Common.define.effectData.textTurnUpRight": "Turn Up Right",
"Common.define.effectData.textUnderline": "Underline",
"Common.define.effectData.textUp": "Up",
"Common.define.effectData.textVertical": "Vertical",
"Common.define.effectData.textVerticalFigure": "Vertical Figure 8",
"Common.define.effectData.textVerticalIn": "Vertical In",
"Common.define.effectData.textVerticalOut": "Vertical Out",
"Common.define.effectData.textWave": "Wave",
"Common.define.effectData.textWedge": "Wedge",
"Common.define.effectData.textWheel": "Wheel",
"Common.define.effectData.textWhip": "Whip",
"Common.define.effectData.textWipe": "Wipe",
"Common.define.effectData.textZigzag": "Zigzag",
"Common.define.effectData.textZoom": "Zoom",
"Common.define.gridlineData.txtCm": "cm",
"Common.define.gridlineData.txtPt": "pt",
"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 Chart",
"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": "Picture Frame",
"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": "The file is locked and cannot be edited. You can make changes and save them as a local copy.",
"Common.Translation.tipFileReadOnly": "This file has read-only permissions. To save, rename the file or save it in a different location.",
"Common.Translation.warnFileLocked": "Another application is editing this file. You can continue editing and save as a copy.",
"Common.Translation.warnFileLockedBtnEdit": "Create Copy",
"Common.Translation.warnFileLockedBtnView": "Open to View",
"Common.UI.ButtonColored.textAutoColor": "Automatic",
"Common.UI.ButtonColored.textEyedropper": "Eyedropper",
"Common.UI.ButtonColored.textNewColor": "More Colors",
"Common.UI.ComboBorderSize.txtNoBorders": "No Borders",
"Common.UI.ComboBorderSizeEditable.txtNoBorders": "No Borders",
"Common.UI.ComboDataView.emptyComboText": "No Style",
"Common.UI.ExtendedColorDialog.addButtonText": "OK",
"Common.UI.ExtendedColorDialog.textCurrent": "Current",
"Common.UI.ExtendedColorDialog.textHexErr": "The value entered is incorrect.<br>Please enter a value between 000000 and FFFFFF.",
"Common.UI.ExtendedColorDialog.textNew": "New",
"Common.UI.ExtendedColorDialog.textRGBErr": "The value entered is incorrect.<br>Please enter a value between 0 and 255.",
"Common.UI.HSBColorPicker.textNoColor": "No Color",
"Common.UI.InputFieldBtnPassword.textHintHidePwd": "Hide Password",
"Common.UI.InputFieldBtnPassword.textHintShowPwd": "Show Password",
"Common.UI.SearchBar.textFind": "Find",
"Common.UI.SearchBar.tipCloseSearch": "Close Search",
"Common.UI.SearchBar.tipNextResult": "Next",
"Common.UI.SearchBar.tipOpenAdvancedSettings": "Open Advanced Settings",
"Common.UI.SearchBar.tipPreviousResult": "Previous",
"Common.UI.SearchDialog.textHighlight": "Highlight",
"Common.UI.SearchDialog.textMatchCase": "Match Case",
"Common.UI.SearchDialog.textReplaceDef": "Enter 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.textSynchronize": "This document has been changed by another user.<br>Please click to save changes and reload updates.",
"Common.UI.ThemeColorPalette.textRecentColors": "Recent Colors",
"Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors",
"Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors",
"Common.UI.Themes.txtThemeClassicLight": "Classic Light",
"Common.UI.Themes.txtThemeContrastDark": "Contrast Dark",
"Common.UI.Themes.txtThemeDark": "Dark",
"Common.UI.Themes.txtThemeLight": "Light",
"Common.UI.Themes.txtThemeSystem": "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.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": "Phone:",
"Common.Views.About.txtVersion": "Version",
"Common.Views.AutoCorrectDialog.textAdd": "Add",
"Common.Views.AutoCorrectDialog.textApplyText": "Apply as you type",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "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": "Replace two spaces with a period (.)",
"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": "Language exceptions:",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks",
"Common.Views.AutoCorrectDialog.textHyphens": "Replace hyphens (-) with dash (—)",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNumbered": "Automatic numbered lists",
"Common.Views.AutoCorrectDialog.textQuotes": "Replace \"straight quotes\" with \"smart quotes\"",
"Common.Views.AutoCorrectDialog.textRecognized": "Recognized functions",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized as math functions. These expressions will not be automatically italicized.",
"Common.Views.AutoCorrectDialog.textReplace": "Replace",
"Common.Views.AutoCorrectDialog.textReplaceText": "Replace text 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 uppercase or lowercase letters.",
"Common.Views.AutoCorrectDialog.textWarnAddRec": "Recognized functions can only contain letters A to Z, uppercase or lowercase.",
"Common.Views.AutoCorrectDialog.textWarnResetFL": "Any exceptions you added will be removed, and any exceptions you removed will be restored. Do you want to continue?",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Any expressions you added will be removed, and any expressions you removed will be restored. Do you want to continue?",
"Common.Views.AutoCorrectDialog.warnReplace": "An AutoCorrect entry for %1 already exists. Confirm replacement?",
"Common.Views.AutoCorrectDialog.warnReset": "This will remove all customizations made to AutoCorrect and restore default values. Do you want to continue?",
"Common.Views.AutoCorrectDialog.warnRestore": "The AutoCorrect entry for %1 will be restored to default. Confirm?",
"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.mniFilterGroups": "Filter by group",
"Common.Views.Comments.mniPositionAsc": "Top to bottom",
"Common.Views.Comments.mniPositionDesc": "Bottom to top",
"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.textComments": "Comments",
"Common.Views.Comments.textEdit": "OK",
"Common.Views.Comments.textEnterCommentHint": "Enter your comment here",
"Common.Views.Comments.textHintAddComment": "Add Comment",
"Common.Views.Comments.textOpenAgain": "Reopen",
"Common.Views.Comments.textReply": "Reply",
"Common.Views.Comments.textResolve": "Resolve",
"Common.Views.Comments.textResolved": "Resolved",
"Common.Views.Comments.textSort": "Sort Comments",
"Common.Views.Comments.textViewResolved": "You don't have permission to reopen comments",
"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": "Common.Views.CopyWarningDialog.textMsg",
"Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Operations",
"Common.Views.CopyWarningDialog.textToCopy": "Copy",
"Common.Views.CopyWarningDialog.textToCut": "Cut",
"Common.Views.CopyWarningDialog.textToPaste": "Paste",
"Common.Views.DocumentAccessDialog.textLoading": "Loading...",
"Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings",
"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": "Diagram Editor",
"Common.Views.ExternalEditor.textClose": "Close",
"Common.Views.ExternalEditor.textSave": "Save and Exit",
"Common.Views.ExternalOleEditor.textTitle": "Spreadsheet Editor",
"Common.Views.Header.labelCoUsersDescr": "Users editing the file:",
"Common.Views.Header.textAddFavorite": "Add to Favorites",
"Common.Views.Header.textAdvSettings": "Advanced Settings",
"Common.Views.Header.textBack": "Open File Location",
"Common.Views.Header.textCompactView": "Compact Toolbar View",
"Common.Views.Header.textHideLines": "Hide Ruler",
"Common.Views.Header.textHideNotes": "Hide Comments",
"Common.Views.Header.textHideStatusBar": "Hide Status Bar",
"Common.Views.Header.textReadOnly": "Read Only",
"Common.Views.Header.textRemoveFavorite": "Remove from Favorites",
"Common.Views.Header.textSaveBegin": "Saving...",
"Common.Views.Header.textSaveChanged": "Modified",
"Common.Views.Header.textSaveEnd": "All changes saved",
"Common.Views.Header.textSaveExpander": "All changes saved",
"Common.Views.Header.textShare": "Share",
"Common.Views.Header.textZoom": "Zoom",
"Common.Views.Header.tipAccessRights": "Manage document access rights",
"Common.Views.Header.tipDownload": "Download file",
"Common.Views.Header.tipGoEdit": "Edit current file",
"Common.Views.Header.tipPrint": "Print",
"Common.Views.Header.tipPrintQuick": "Quick Print",
"Common.Views.Header.tipRedo": "Redo",
"Common.Views.Header.tipSave": "Save",
"Common.Views.Header.tipSearch": "Search",
"Common.Views.Header.tipUndo": "Undo",
"Common.Views.Header.tipUndock": "Open in separate window",
"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.textHide": "Collapse",
"Common.Views.History.textHideAll": "Hide detailed changes",
"Common.Views.History.textRestore": "Restore",
"Common.Views.History.textShow": "Expand",
"Common.Views.History.textShowAll": "Show detailed changes",
"Common.Views.History.textVer": "Version",
"Common.Views.ImageFromUrlDialog.textUrl": "Paste image URL:",
"Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"Common.Views.InsertTableDialog.textInvalidRowsCols": "You need to specify valid row and column numbers",
"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": "Insert Table",
"Common.Views.InsertTableDialog.txtTitleSplit": "Split Cells",
"Common.Views.LanguageDialog.labelSelect": "Select document language",
"Common.Views.ListSettingsDialog.textBulleted": "Bulleted",
"Common.Views.ListSettingsDialog.textFromFile": "From File",
"Common.Views.ListSettingsDialog.textFromStorage": "From Storage",
"Common.Views.ListSettingsDialog.textFromUrl": "From URL",
"Common.Views.ListSettingsDialog.textNumbering": "Numbering",
"Common.Views.ListSettingsDialog.textSelect": "Select",
"Common.Views.ListSettingsDialog.tipChange": "Modify bullet point",
"Common.Views.ListSettingsDialog.txtBullet": "Bullet",
"Common.Views.ListSettingsDialog.txtColor": "Color",
"Common.Views.ListSettingsDialog.txtImage": "Image",
"Common.Views.ListSettingsDialog.txtImport": "Import",
"Common.Views.ListSettingsDialog.txtNewBullet": "Add a new bullet point",
"Common.Views.ListSettingsDialog.txtNewImage": "New Image",
"Common.Views.ListSettingsDialog.txtNone": "None",
"Common.Views.ListSettingsDialog.txtOfText": "% of text",
"Common.Views.ListSettingsDialog.txtSize": "Size",
"Common.Views.ListSettingsDialog.txtStart": "Start",
"Common.Views.ListSettingsDialog.txtSymbol": "Symbol",
"Common.Views.ListSettingsDialog.txtTitle": "List Settings",
"Common.Views.ListSettingsDialog.txtType": "Type",
"Common.Views.OpenDialog.closeButtonText": "Close File",
"Common.Views.OpenDialog.txtEncoding": "Encoding",
"Common.Views.OpenDialog.txtIncorrectPwd": "Incorrect password",
"Common.Views.OpenDialog.txtOpenFile": "Enter password to open file",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtProtected": "After you enter the password and open the file, the current password for this file will be reset.",
"Common.Views.OpenDialog.txtTitle": "Select %1 option",
"Common.Views.OpenDialog.txtTitleProtected": "Protected File",
"Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document",
"Common.Views.PasswordDialog.txtIncorrectPwd": "The confirmation password does not match",
"Common.Views.PasswordDialog.txtPassword": "Password",
"Common.Views.PasswordDialog.txtRepeat": "Re-enter password",
"Common.Views.PasswordDialog.txtTitle": "Set Password",
"Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Keep it in a safe place.",
"Common.Views.PluginDlg.textLoading": "Loading",
"Common.Views.Plugins.groupCaption": "Plugins",
"Common.Views.Plugins.strPlugins": "Plugins",
"Common.Views.Plugins.textClosePanel": "Close Plugins",
"Common.Views.Plugins.textLoading": "Loading",
"Common.Views.Plugins.textStart": "Start",
"Common.Views.Plugins.textStop": "Stop",
"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": "File name cannot contain any of the following characters:",
"Common.Views.ReviewChanges.hintNext": "Next change",
"Common.Views.ReviewChanges.hintPrev": "Previous change",
"Common.Views.ReviewChanges.strFast": "Automatic",
"Common.Views.ReviewChanges.strFastDesc": "Automatic co-editing mode, automatically saves change tracking.",
"Common.Views.ReviewChanges.strStrict": "Manual",
"Common.Views.ReviewChanges.strStrictDesc": "Use the \"Save\" button to synchronize your changes and those of others.",
"Common.Views.ReviewChanges.tipAcceptCurrent": "Accept this revision",
"Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode",
"Common.Views.ReviewChanges.tipCommentRem": "Remove comment",
"Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comment",
"Common.Views.ReviewChanges.tipCommentResolve": "Resolve comment",
"Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolve this comment",
"Common.Views.ReviewChanges.tipHistory": "Show version history",
"Common.Views.ReviewChanges.tipRejectCurrent": "Reject this revision",
"Common.Views.ReviewChanges.tipReview": "Track changes",
"Common.Views.ReviewChanges.tipReviewView": "Select the mode in which you want to display changes",
"Common.Views.ReviewChanges.tipSetDocLang": "Set document language",
"Common.Views.ReviewChanges.tipSetSpelling": "Spell check",
"Common.Views.ReviewChanges.tipSharing": "Manage document access rights",
"Common.Views.ReviewChanges.txtAccept": "Accept",
"Common.Views.ReviewChanges.txtAcceptAll": "Accept All Revisions",
"Common.Views.ReviewChanges.txtAcceptChanges": "Accept Changes",
"Common.Views.ReviewChanges.txtAcceptCurrent": "Accept This Revision",
"Common.Views.ReviewChanges.txtChat": "Chat",
"Common.Views.ReviewChanges.txtClose": "Close",
"Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode",
"Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments",
"Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comment",
"Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments",
"Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comment",
"Common.Views.ReviewChanges.txtCommentRemove": "Delete",
"Common.Views.ReviewChanges.txtCommentResolve": "Resolve",
"Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments",
"Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve This Comment",
"Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments",
"Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comment",
"Common.Views.ReviewChanges.txtDocLang": "Language",
"Common.Views.ReviewChanges.txtFinal": "All revisions accepted (preview)",
"Common.Views.ReviewChanges.txtFinalCap": "Final",
"Common.Views.ReviewChanges.txtHistory": "Version History",
"Common.Views.ReviewChanges.txtMarkup": "All changes (editing)",
"Common.Views.ReviewChanges.txtMarkupCap": "Markup",
"Common.Views.ReviewChanges.txtNext": "Next change",
"Common.Views.ReviewChanges.txtOriginal": "All revisions rejected (preview)",
"Common.Views.ReviewChanges.txtOriginalCap": "Original",
"Common.Views.ReviewChanges.txtPrev": "Previous change",
"Common.Views.ReviewChanges.txtReject": "Reject",
"Common.Views.ReviewChanges.txtRejectAll": "Reject All Revisions",
"Common.Views.ReviewChanges.txtRejectChanges": "Reject Changes",
"Common.Views.ReviewChanges.txtRejectCurrent": "Reject This Revision",
"Common.Views.ReviewChanges.txtSharing": "Share",
"Common.Views.ReviewChanges.txtSpelling": "Spell Check",
"Common.Views.ReviewChanges.txtTurnon": "Track Changes",
"Common.Views.ReviewChanges.txtView": "Display Mode",
"Common.Views.ReviewPopover.textAdd": "Add",
"Common.Views.ReviewPopover.textAddReply": "Add Reply",
"Common.Views.ReviewPopover.textCancel": "Cancel",
"Common.Views.ReviewPopover.textClose": "Close",
"Common.Views.ReviewPopover.textEdit": "OK",
"Common.Views.ReviewPopover.textEnterComment": "Enter your comment here",
"Common.Views.ReviewPopover.textMention": "+ Grant access to document and send email",
"Common.Views.ReviewPopover.textMentionNotify": "+ Notify user via email",
"Common.Views.ReviewPopover.textOpenAgain": "Reopen",
"Common.Views.ReviewPopover.textReply": "Reply",
"Common.Views.ReviewPopover.textResolve": "Resolve",
"Common.Views.ReviewPopover.textViewResolved": "You don't have permission to reopen comments",
"Common.Views.ReviewPopover.txtDeleteTip": "Delete",
"Common.Views.ReviewPopover.txtEditTip": "Edit",
"Common.Views.SaveAsDlg.textLoading": "Loading",
"Common.Views.SaveAsDlg.textTitle": "Save Folder",
"Common.Views.SearchPanel.textCaseSensitive": "Match Case",
"Common.Views.SearchPanel.textCloseSearch": "Close Search",
"Common.Views.SearchPanel.textContentChanged": "The file has been changed.",
"Common.Views.SearchPanel.textFind": "Find",
"Common.Views.SearchPanel.textFindAndReplace": "Find and Replace",
"Common.Views.SearchPanel.textItemsSuccessfullyReplaced": "{0} items replaced successfully.",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Use Regular Expression",
"Common.Views.SearchPanel.textNoMatches": "No matches found",
"Common.Views.SearchPanel.textNoSearchResults": "No search results found",
"Common.Views.SearchPanel.textPartOfItemsNotReplaced": "{0}/{1} items replaced successfully. The 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 a new search{1} for accurate results.",
"Common.Views.SearchPanel.textSearchHasStopped": "Search has stopped",
"Common.Views.SearchPanel.textSearchResults": "Search results: {0}/{1}",
"Common.Views.SearchPanel.textTooManyResults": "Too many results",
"Common.Views.SearchPanel.textWholeWords": "Whole Words",
"Common.Views.SearchPanel.tipNextResult": "Next",
"Common.Views.SearchPanel.tipPreviousResult": "Previous",
"Common.Views.SelectFileDlg.textLoading": "Loading",
"Common.Views.SelectFileDlg.textTitle": "Select Data Source",
"Common.Views.SignDialog.textBold": "Bold",
"Common.Views.SignDialog.textCertificate": "Certificate",
"Common.Views.SignDialog.textChange": "Change",
"Common.Views.SignDialog.textInputName": "Enter signer name",
"Common.Views.SignDialog.textItalic": "Italic",
"Common.Views.SignDialog.textNameError": "Signer name cannot be empty",
"Common.Views.SignDialog.textPurpose": "Purpose for signing this document",
"Common.Views.SignDialog.textSelect": "Please select",
"Common.Views.SignDialog.textSelectImage": "Select Image",
"Common.Views.SignDialog.textSignature": "Signature style",
"Common.Views.SignDialog.textTitle": "Sign Document",
"Common.Views.SignDialog.textUseImage": "Or click \"Select Image\" to use an image 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 signature dialog",
"Common.Views.SignSettingsDialog.textDefInstruction": "Before signing this document, make sure that what you are signing is correct.",
"Common.Views.SignSettingsDialog.textInfoEmail": "Suggested signer email",
"Common.Views.SignSettingsDialog.textInfoName": "Suggested signer",
"Common.Views.SignSettingsDialog.textInfoTitle": "Suggested signer title",
"Common.Views.SignSettingsDialog.textInstructions": "Instructions for signer",
"Common.Views.SignSettingsDialog.textShowDate": "Show signature date in signature line",
"Common.Views.SignSettingsDialog.textTitle": "Signature Settings",
"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",
"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": "Non-breaking space",
"Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow",
"Common.Views.SymbolTableDialog.textQEmSpace": "1/4 em space",
"Common.Views.SymbolTableDialog.textRange": "Subset",
"Common.Views.SymbolTableDialog.textRecent": "Recently used symbols",
"Common.Views.SymbolTableDialog.textRegistered": "Registered",
"Common.Views.SymbolTableDialog.textSCQuote": "Closing single quote",
"Common.Views.SymbolTableDialog.textSection": "Section",
"Common.Views.SymbolTableDialog.textShortcut": "Shortcut",
"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": "Symbols",
"Common.Views.SymbolTableDialog.textTradeMark": "Trademark",
"Common.Views.UserNameDialog.textDontShow": "Don't ask me again",
"Common.Views.UserNameDialog.textLabel": "Label:",
"Common.Views.UserNameDialog.textLabelError": "Label cannot be empty",
"PE.Controllers.LeftMenu.leavePageText": "PE.Controllers.LeftMenu.leavePageText",
"PE.Controllers.LeftMenu.newDocumentTitle": "Untitled Presentation",
"PE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning",
"PE.Controllers.LeftMenu.requestEditRightsText": "Requesting edit rights...",
"PE.Controllers.LeftMenu.textLoadHistory": "Loading version history...",
"PE.Controllers.LeftMenu.textNoTextFound": "The data you searched for could not be found. Please adjust your search options.",
"PE.Controllers.LeftMenu.textReplaceSkipped": "Replaced. {0} skipped.",
"PE.Controllers.LeftMenu.textReplaceSuccess": "Search completed. Occurrences: {0}",
"PE.Controllers.LeftMenu.txtUntitled": "Untitled",
"PE.Controllers.Main.applyChangesTextText": "Loading data...",
"PE.Controllers.Main.applyChangesTitleText": "Loading data",
"PE.Controllers.Main.confirmMaxChangesSize": "PE.Controllers.Main.confirmMaxChangesSize",
"PE.Controllers.Main.convertationTimeoutText": "Conversion timeout",
"PE.Controllers.Main.criticalErrorExtText": "Click \"OK\" to return to the file list.",
"PE.Controllers.Main.criticalErrorTitle": "Error",
"PE.Controllers.Main.downloadErrorText": "Download failed",
"PE.Controllers.Main.downloadTextText": "Downloading presentation...",
"PE.Controllers.Main.downloadTitleText": "Download File",
"PE.Controllers.Main.errorAccessDeny": "You are trying to perform an operation for which you do not have permission.<br>Please contact your document server administrator.",
"PE.Controllers.Main.errorBadImageUrl": "Incorrect image URL",
"PE.Controllers.Main.errorCannotPasteImg": "PE.Controllers.Main.errorCannotPasteImg",
"PE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited now",
"PE.Controllers.Main.errorComboSeries": "To create a combo chart, select at least two data series.",
"PE.Controllers.Main.errorConnectToServer": "PE.Controllers.Main.errorConnectToServer",
"PE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. If the error persists, please contact support.",
"PE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received and cannot be decrypted.",
"PE.Controllers.Main.errorDataRange": "Incorrect data range",
"PE.Controllers.Main.errorDefaultMessage": "Error code: %1",
"PE.Controllers.Main.errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file to be downloaded.",
"PE.Controllers.Main.errorEditingDownloadas": "PE.Controllers.Main.errorEditingDownloadas",
"PE.Controllers.Main.errorEditingSaveas": "PE.Controllers.Main.errorEditingSaveas",
"PE.Controllers.Main.errorEmailClient": "Email client not found.",
"PE.Controllers.Main.errorFilePassProtect": "This document is password protected and cannot be opened.",
"PE.Controllers.Main.errorFileSizeExceed": "PE.Controllers.Main.errorFileSizeExceed",
"PE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the \"Save As\" option to save the file to your computer's hard drive or try again later.",
"PE.Controllers.Main.errorInconsistentExt": "An error occurred while opening the file.<br>The file extension is inconsistent: %1.",
"PE.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.",
"PE.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.",
"PE.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.",
"PE.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.",
"PE.Controllers.Main.errorKeyEncrypt": "Unknown key description",
"PE.Controllers.Main.errorKeyExpire": "Key expired",
"PE.Controllers.Main.errorLoadingFont": "Font not loaded.<br>Please contact the document server administrator.",
"PE.Controllers.Main.errorProcessSaveResult": "Save failed",
"PE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.",
"PE.Controllers.Main.errorSessionAbsolute": "Document editing session has expired. Please reload the page.",
"PE.Controllers.Main.errorSessionIdle": "The file has not been edited for a considerable time. Please reload the page.",
"PE.Controllers.Main.errorSessionToken": "Connection to server has been interrupted. Please reload the page.",
"PE.Controllers.Main.errorSetPassword": "Failed to set password successfully",
"PE.Controllers.Main.errorStockChart": "PE.Controllers.Main.errorStockChart",
"PE.Controllers.Main.errorToken": "Document security token is not properly formed.<br>Please contact your file server administrator.",
"PE.Controllers.Main.errorTokenExpire": "Document security token has expired.<br>Please contact your document server administrator.",
"PE.Controllers.Main.errorUpdateVersion": "The file version has changed. The page will be reloaded.",
"PE.Controllers.Main.errorUpdateVersionOnDisconnect": "PE.Controllers.Main.errorUpdateVersionOnDisconnect",
"PE.Controllers.Main.errorUserDrop": "The file is not accessible now.",
"PE.Controllers.Main.errorUsersExceed": "The number of users exceeds the limit allowed by the pricing plan",
"PE.Controllers.Main.errorViewerDisconnect": "PE.Controllers.Main.errorViewerDisconnect",
"PE.Controllers.Main.leavePageText": "PE.Controllers.Main.leavePageText",
"PE.Controllers.Main.leavePageTextOnClose": "PE.Controllers.Main.leavePageTextOnClose",
"PE.Controllers.Main.loadFontsTextText": "Loading data...",
"PE.Controllers.Main.loadFontsTitleText": "Loading data",
"PE.Controllers.Main.loadFontTextText": "Loading data...",
"PE.Controllers.Main.loadFontTitleText": "Loading data",
"PE.Controllers.Main.loadImagesTextText": "Loading images...",
"PE.Controllers.Main.loadImagesTitleText": "Loading images",
"PE.Controllers.Main.loadImageTextText": "Loading image...",
"PE.Controllers.Main.loadImageTitleText": "Loading image",
"PE.Controllers.Main.loadingDocumentTextText": "Loading slides...",
"PE.Controllers.Main.loadingDocumentTitleText": "Opening document...",
"PE.Controllers.Main.loadThemeTextText": "Loading theme",
"PE.Controllers.Main.loadThemeTitleText": "Loading theme",
"PE.Controllers.Main.notcriticalErrorTitle": "Warning",
"PE.Controllers.Main.openErrorText": "An error occurred while opening the file",
"PE.Controllers.Main.openTextText": "Opening...",
"PE.Controllers.Main.openTitleText": "Opening",
"PE.Controllers.Main.printTextText": "Printing slides",
"PE.Controllers.Main.printTitleText": "Print Slides",
"PE.Controllers.Main.reloadButtonText": "Reload Page",
"PE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this presentation. Please try again later.",
"PE.Controllers.Main.requestEditFailedTitleText": "Access Denied",
"PE.Controllers.Main.saveErrorText": "An error occurred while saving the file",
"PE.Controllers.Main.saveErrorTextDesktop": "PE.Controllers.Main.saveErrorTextDesktop",
"PE.Controllers.Main.saveTextText": "Saving slides...",
"PE.Controllers.Main.saveTitleText": "Saving Slides",
"PE.Controllers.Main.scriptLoadError": "Connection speed is too slow, some components could not be loaded. Please reload the page.",
"PE.Controllers.Main.splitDividerErrorText": "The number of rows must be a divisor of %1.",
"PE.Controllers.Main.splitMaxColsErrorText": "The number of columns must be less than %1.",
"PE.Controllers.Main.splitMaxRowsErrorText": "The number of rows must be less than %1.",
"PE.Controllers.Main.textAnonymous": "Anonymous",
"PE.Controllers.Main.textApplyAll": "Apply to all formulas",
"PE.Controllers.Main.textBuyNow": "Visit Website",
"PE.Controllers.Main.textChangesSaved": "All changes saved",
"PE.Controllers.Main.textClose": "Close",
"PE.Controllers.Main.textCloseTip": "Click to close tip",
"PE.Controllers.Main.textContactUs": "Contact Sales",
"PE.Controllers.Main.textContinue": "Send",
"PE.Controllers.Main.textConvertEquation": "PE.Controllers.Main.textConvertEquation",
"PE.Controllers.Main.textCustomLoader": "Please note that according to the license terms you do not have the right to change the loader.<br>Please contact our sales department for a quote.",
"PE.Controllers.Main.textDisconnect": "Network connection failed",
"PE.Controllers.Main.textGuest": "Guest",
"PE.Controllers.Main.textHasMacros": "This file contains automatic macros.<br>Do you want to run the macros?",
"PE.Controllers.Main.textLearnMore": "Learn More",
"PE.Controllers.Main.textLoadingDocument": "Loading slides",
"PE.Controllers.Main.textLongName": "Enter a name, must be less than 128 characters.",
"PE.Controllers.Main.textNoLicenseTitle": "License limit reached",
"PE.Controllers.Main.textObject": "Object",
"PE.Controllers.Main.textPaidFeature": "Paid Feature",
"PE.Controllers.Main.textReconnect": "Connection restored",
"PE.Controllers.Main.textRemember": "Remember my choice for all files",
"PE.Controllers.Main.textRememberMacros": "Remember my choice",
"PE.Controllers.Main.textRenameError": "User name cannot be empty.",
"PE.Controllers.Main.textRenameLabel": "Enter a name to use for collaboration.",
"PE.Controllers.Main.textRequestMacros": "The macro makes a request to a URL. Do you allow the request to %1?",
"PE.Controllers.Main.textShape": "Shape",
"PE.Controllers.Main.textStrict": "Manual mode",
"PE.Controllers.Main.textText": "Text",
"PE.Controllers.Main.textTryQuickPrint": "PE.Controllers.Main.textTryQuickPrint",
"PE.Controllers.Main.textTryUndoRedo": "PE.Controllers.Main.textTryUndoRedo",
"PE.Controllers.Main.textTryUndoRedoWarn": "Undo/Redo is disabled in automatic co-editing mode.",
"PE.Controllers.Main.textUndo": "Undo",
"PE.Controllers.Main.titleLicenseExp": "License Expired",
"PE.Controllers.Main.titleLicenseNotActive": "License Not Active",
"PE.Controllers.Main.titleServerVersion": "Editor Updated",
"PE.Controllers.Main.txtAddFirstSlide": "Click to add first slide",
"PE.Controllers.Main.txtAddNotes": "Click here to add notes",
"PE.Controllers.Main.txtArt": "Your text here",
"PE.Controllers.Main.txtBasicShapes": "Basic Shapes",
"PE.Controllers.Main.txtButtons": "Action Buttons",
"PE.Controllers.Main.txtCallouts": "Callouts",
"PE.Controllers.Main.txtCharts": "Flowchart",
"PE.Controllers.Main.txtClipArt": "Clip Art",
"PE.Controllers.Main.txtDateTime": "Date & Time",
"PE.Controllers.Main.txtDiagram": "SmartArt",
"PE.Controllers.Main.txtDiagramTitle": "Diagram Title",
"PE.Controllers.Main.txtEditingMode": "Setting editing mode...",
"PE.Controllers.Main.txtErrorLoadHistory": "Failed to load history",
"PE.Controllers.Main.txtFiguredArrows": "Block Arrows",
"PE.Controllers.Main.txtFooter": "Footer",
"PE.Controllers.Main.txtHeader": "Header",
"PE.Controllers.Main.txtImage": "Image",
"PE.Controllers.Main.txtLines": "Lines",
"PE.Controllers.Main.txtLoading": "Loading...",
"PE.Controllers.Main.txtMath": "Equation",
"PE.Controllers.Main.txtMedia": "Media",
"PE.Controllers.Main.txtNeedSynchronize": "You have updates",
"PE.Controllers.Main.txtNone": "None",
"PE.Controllers.Main.txtPicture": "Picture",
"PE.Controllers.Main.txtRectangles": "Rectangles",
"PE.Controllers.Main.txtSeries": "Series",
"PE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (with border and accent line)",
"PE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (with border and accent line)",
"PE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (with border and accent line)",
"PE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (with accent line)",
"PE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (with accent line)",
"PE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (with accent line)",
"PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Action Button: Back or Previous",
"PE.Controllers.Main.txtShape_actionButtonBeginning": "Action Button: Beginning",
"PE.Controllers.Main.txtShape_actionButtonBlank": "Action Button: Custom",
"PE.Controllers.Main.txtShape_actionButtonDocument": "Action Button: Document",
"PE.Controllers.Main.txtShape_actionButtonEnd": "Action Button: End",
"PE.Controllers.Main.txtShape_actionButtonForwardNext": "Action Button: Forward or Next",
"PE.Controllers.Main.txtShape_actionButtonHelp": "Action Button: Help",
"PE.Controllers.Main.txtShape_actionButtonHome": "Action Button: Home",
"PE.Controllers.Main.txtShape_actionButtonInformation": "Action Button: Information",
"PE.Controllers.Main.txtShape_actionButtonMovie": "Action Button: Movie",
"PE.Controllers.Main.txtShape_actionButtonReturn": "Action Button: Return",
"PE.Controllers.Main.txtShape_actionButtonSound": "Action Button: Sound",
"PE.Controllers.Main.txtShape_arc": "Arcs",
"PE.Controllers.Main.txtShape_bentArrow": "Bent Arrow",
"PE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector",
"PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector",
"PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector",
"PE.Controllers.Main.txtShape_bentUpArrow": "Bent Up Arrow",
"PE.Controllers.Main.txtShape_bevel": "Bevel",
"PE.Controllers.Main.txtShape_blockArc": "Block Arc",
"PE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1",
"PE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2",
"PE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3",
"PE.Controllers.Main.txtShape_bracePair": "Double Brace",
"PE.Controllers.Main.txtShape_callout1": "Line Callout 1 (no border)",
"PE.Controllers.Main.txtShape_callout2": "Line Callout 2 (no border)",
"PE.Controllers.Main.txtShape_callout3": "Line Callout 3 (no border)",
"PE.Controllers.Main.txtShape_can": "Can",
"PE.Controllers.Main.txtShape_chevron": "Chevron",
"PE.Controllers.Main.txtShape_chord": "Chord",
"PE.Controllers.Main.txtShape_circularArrow": "Circular Arrow",
"PE.Controllers.Main.txtShape_cloud": "Cloud",
"PE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout",
"PE.Controllers.Main.txtShape_corner": "L-Shape",
"PE.Controllers.Main.txtShape_cube": "Cube",
"PE.Controllers.Main.txtShape_curvedConnector3": "Curved Connector",
"PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved Arrow Connector",
"PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved Double-Arrow Connector",
"PE.Controllers.Main.txtShape_curvedDownArrow": "Curved Down Arrow",
"PE.Controllers.Main.txtShape_curvedLeftArrow": "Curved Left Arrow",
"PE.Controllers.Main.txtShape_curvedRightArrow": "Curved Right Arrow",
"PE.Controllers.Main.txtShape_curvedUpArrow": "Curved Up Arrow",
"PE.Controllers.Main.txtShape_decagon": "Decagon",
"PE.Controllers.Main.txtShape_diagStripe": "Diagonal Stripe",
"PE.Controllers.Main.txtShape_diamond": "Diamond",
"PE.Controllers.Main.txtShape_dodecagon": "Dodecagon",
"PE.Controllers.Main.txtShape_donut": "Donut",
"PE.Controllers.Main.txtShape_doubleWave": "Double Wave",
"PE.Controllers.Main.txtShape_downArrow": "Down Arrow",
"PE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout",
"PE.Controllers.Main.txtShape_ellipse": "Ellipse",
"PE.Controllers.Main.txtShape_ellipseRibbon": "Ellipse Ribbon",
"PE.Controllers.Main.txtShape_ellipseRibbon2": "Ellipse Ribbon 2",
"PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate Process",
"PE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate",
"PE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector",
"PE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision",
"PE.Controllers.Main.txtShape_flowChartDelay": "Flowchart: Delay",
"PE.Controllers.Main.txtShape_flowChartDisplay": "Flowchart: Display",
"PE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document",
"PE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract",
"PE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Data",
"PE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal Storage",
"PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Disk",
"PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct Access Storage",
"PE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential Access Storage",
"PE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual Input",
"PE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual Operation",
"PE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge",
"PE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multidocument",
"PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page Connector",
"PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored Data",
"PE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or",
"PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined Process",
"PE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation",
"PE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process",
"PE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Card",
"PE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched Tape",
"PE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort",
"PE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing Junction",
"PE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator",
"PE.Controllers.Main.txtShape_foldedCorner": "Folded Corner",
"PE.Controllers.Main.txtShape_frame": "Frame",
"PE.Controllers.Main.txtShape_halfFrame": "Half Frame",
"PE.Controllers.Main.txtShape_heart": "Heart",
"PE.Controllers.Main.txtShape_heptagon": "Heptagon",
"PE.Controllers.Main.txtShape_hexagon": "Hexagon",
"PE.Controllers.Main.txtShape_homePlate": "Home Plate",
"PE.Controllers.Main.txtShape_horizontalScroll": "Horizontal Scroll",
"PE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1",
"PE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2",
"PE.Controllers.Main.txtShape_leftArrow": "Left Arrow",
"PE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout",
"PE.Controllers.Main.txtShape_leftBrace": "Left Brace",
"PE.Controllers.Main.txtShape_leftBracket": "Left Bracket",
"PE.Controllers.Main.txtShape_leftRightArrow": "Left-Right Arrow",
"PE.Controllers.Main.txtShape_leftRightArrowCallout": "Left-Right Arrow Callout",
"PE.Controllers.Main.txtShape_leftRightUpArrow": "T-Shape Arrow",
"PE.Controllers.Main.txtShape_leftUpArrow": "Bent Two-Way Arrow",
"PE.Controllers.Main.txtShape_lightningBolt": "Lightning Bolt",
"PE.Controllers.Main.txtShape_line": "Line",
"PE.Controllers.Main.txtShape_lineWithArrow": "Arrow",
"PE.Controllers.Main.txtShape_lineWithTwoArrows": "Double Arrow",
"PE.Controllers.Main.txtShape_mathDivide": "Division",
"PE.Controllers.Main.txtShape_mathEqual": "Equal",
"PE.Controllers.Main.txtShape_mathMinus": "Minus",
"PE.Controllers.Main.txtShape_mathMultiply": "Multiplication",
"PE.Controllers.Main.txtShape_mathNotEqual": "Not Equal",
"PE.Controllers.Main.txtShape_mathPlus": "Plus",
"PE.Controllers.Main.txtShape_moon": "Crescent Moon",
"PE.Controllers.Main.txtShape_noSmoking": "No Symbol",
"PE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow",
"PE.Controllers.Main.txtShape_octagon": "Octagon",
"PE.Controllers.Main.txtShape_parallelogram": "Parallelogram",
"PE.Controllers.Main.txtShape_pentagon": "Pentagon",
"PE.Controllers.Main.txtShape_pie": "Pie Chart",
"PE.Controllers.Main.txtShape_plaque": "Plaque",
"PE.Controllers.Main.txtShape_plus": "Plus",
"PE.Controllers.Main.txtShape_polyline1": "Freeform",
"PE.Controllers.Main.txtShape_polyline2": "Freeform Scribble",
"PE.Controllers.Main.txtShape_quadArrow": "Quad Arrow",
"PE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout",
"PE.Controllers.Main.txtShape_rect": "Rectangle",
"PE.Controllers.Main.txtShape_ribbon": "Ribbon",
"PE.Controllers.Main.txtShape_ribbon2": "Ribbon 2",
"PE.Controllers.Main.txtShape_rightArrow": "Right Arrow",
"PE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout",
"PE.Controllers.Main.txtShape_rightBrace": "Right Brace",
"PE.Controllers.Main.txtShape_rightBracket": "Right Bracket",
"PE.Controllers.Main.txtShape_round1Rect": "Rounded Rectangle (single corner)",
"PE.Controllers.Main.txtShape_round2DiagRect": "Rounded Rectangle (diagonal corners)",
"PE.Controllers.Main.txtShape_round2SameRect": "Rounded Rectangle (same-side corners)",
"PE.Controllers.Main.txtShape_roundRect": "Rounded Rectangle",
"PE.Controllers.Main.txtShape_rtTriangle": "Right Triangle",
"PE.Controllers.Main.txtShape_smileyFace": "Smiley Face",
"PE.Controllers.Main.txtShape_snip1Rect": "Snip Rectangle (single corner)",
"PE.Controllers.Main.txtShape_snip2DiagRect": "Snip Rectangle (diagonal corners)",
"PE.Controllers.Main.txtShape_snip2SameRect": "Snip Rectangle (same-side corners)",
"PE.Controllers.Main.txtShape_snipRoundRect": "Snip Rounded Rectangle",
"PE.Controllers.Main.txtShape_spline": "Curve",
"PE.Controllers.Main.txtShape_star10": "10-Point Star",
"PE.Controllers.Main.txtShape_star12": "12-Point Star",
"PE.Controllers.Main.txtShape_star16": "16-Point Star",
"PE.Controllers.Main.txtShape_star24": "24-Point Star",
"PE.Controllers.Main.txtShape_star32": "32-Point Star",
"PE.Controllers.Main.txtShape_star4": "4-Point Star",
"PE.Controllers.Main.txtShape_star5": "5-Point Star",
"PE.Controllers.Main.txtShape_star6": "6-Point Star",
"PE.Controllers.Main.txtShape_star7": "7-Point Star",
"PE.Controllers.Main.txtShape_star8": "8-Point Star",
"PE.Controllers.Main.txtShape_stripedRightArrow": "Striped Right Arrow",
"PE.Controllers.Main.txtShape_sun": "Sun",
"PE.Controllers.Main.txtShape_teardrop": "Teardrop",
"PE.Controllers.Main.txtShape_textRect": "Text Box",
"PE.Controllers.Main.txtShape_trapezoid": "Trapezoid",
"PE.Controllers.Main.txtShape_triangle": "Triangle",
"PE.Controllers.Main.txtShape_upArrow": "Up Arrow",
"PE.Controllers.Main.txtShape_upArrowCallout": "Up Arrow Callout",
"PE.Controllers.Main.txtShape_upDownArrow": "Up-Down Arrow",
"PE.Controllers.Main.txtShape_uturnArrow": "U-Turn Arrow",
"PE.Controllers.Main.txtShape_verticalScroll": "Vertical Scroll",
"PE.Controllers.Main.txtShape_wave": "Wave",
"PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Wedge Ellipse Callout",
"PE.Controllers.Main.txtShape_wedgeRectCallout": "Wedge Rectangular Callout",
"PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Wedge Rounded Rectangular Callout",
"PE.Controllers.Main.txtSldLtTBlank": "Blank",
"PE.Controllers.Main.txtSldLtTChart": "Chart",
"PE.Controllers.Main.txtSldLtTChartAndTx": "Chart and Text",
"PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art and Text",
"PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art and Vertical Text",
"PE.Controllers.Main.txtSldLtTCust": "Custom",
"PE.Controllers.Main.txtSldLtTDgm": "Diagram",
"PE.Controllers.Main.txtSldLtTFourObj": "Four Objects",
"PE.Controllers.Main.txtSldLtTMediaAndTx": "Media and Text",
"PE.Controllers.Main.txtSldLtTObj": "Title and Object",
"PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Object and Two Objects",
"PE.Controllers.Main.txtSldLtTObjAndTx": "Object and Text",
"PE.Controllers.Main.txtSldLtTObjOnly": "Object",
"PE.Controllers.Main.txtSldLtTObjOverTx": "Object over Text",
"PE.Controllers.Main.txtSldLtTObjTx": "Title, Object and Caption",
"PE.Controllers.Main.txtSldLtTPicTx": "Picture and Caption",
"PE.Controllers.Main.txtSldLtTSecHead": "Section Header",
"PE.Controllers.Main.txtSldLtTTbl": "Table",
"PE.Controllers.Main.txtSldLtTTitle": "Title",
"PE.Controllers.Main.txtSldLtTTitleOnly": "Title Only",
"PE.Controllers.Main.txtSldLtTTwoColTx": "Two Column Text",
"PE.Controllers.Main.txtSldLtTTwoObj": "Two Objects",
"PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Two Objects and Object",
"PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Two Objects and Text",
"PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Two Objects over Text",
"PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Two Text and Two Objects",
"PE.Controllers.Main.txtSldLtTTx": "Text",
"PE.Controllers.Main.txtSldLtTTxAndChart": "Text and Chart",
"PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text and Clip Art",
"PE.Controllers.Main.txtSldLtTTxAndMedia": "Text and Media",
"PE.Controllers.Main.txtSldLtTTxAndObj": "Text and Object",
"PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text and Two Objects",
"PE.Controllers.Main.txtSldLtTTxOverObj": "Text over Object",
"PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertical Title and Text",
"PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertical Title and Text over Chart",
"PE.Controllers.Main.txtSldLtTVertTx": "Vertical Text",
"PE.Controllers.Main.txtSlideNumber": "Slide Number",
"PE.Controllers.Main.txtSlideSubtitle": "Click to add subtitle",
"PE.Controllers.Main.txtSlideText": "Click to add text",
"PE.Controllers.Main.txtSlideTitle": "Click to add title",
"PE.Controllers.Main.txtStarsRibbons": "Stars and Banners",
"PE.Controllers.Main.txtTheme_basic": "Basic",
"PE.Controllers.Main.txtTheme_blank": "Blank",
"PE.Controllers.Main.txtTheme_classic": "Classic",
"PE.Controllers.Main.txtTheme_corner": "Corner",
"PE.Controllers.Main.txtTheme_dotted": "Dotted",
"PE.Controllers.Main.txtTheme_green": "Green",
"PE.Controllers.Main.txtTheme_green_leaf": "Green Leaf",
"PE.Controllers.Main.txtTheme_lines": "Lines",
"PE.Controllers.Main.txtTheme_office": "Office",
"PE.Controllers.Main.txtTheme_office_theme": "Office Theme",
"PE.Controllers.Main.txtTheme_official": "Official",
"PE.Controllers.Main.txtTheme_pixel": "Pixel",
"PE.Controllers.Main.txtTheme_safari": "Safari",
"PE.Controllers.Main.txtTheme_turtle": "Turtle Module",
"PE.Controllers.Main.txtXAxis": "X Axis",
"PE.Controllers.Main.txtYAxis": "Y Axis",
"PE.Controllers.Main.unknownErrorText": "Unknown error",
"PE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported",
"PE.Controllers.Main.uploadImageExtMessage": "Unknown image format",
"PE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded",
"PE.Controllers.Main.uploadImageSizeMessage": "Image is too large. Maximum size is 25MB.",
"PE.Controllers.Main.uploadImageTextText": "Uploading images...",
"PE.Controllers.Main.uploadImageTitleText": "Uploading Images",
"PE.Controllers.Main.waitText": "Please wait...",
"PE.Controllers.Main.warnBrowserIE9": "This application has poor functionality on IE9. Use IE10 or higher",
"PE.Controllers.Main.warnBrowserZoom": "Your browser's current zoom setting is not fully supported. Please press Ctrl + 0 to reset to default zoom.",
"PE.Controllers.Main.warnLicenseBefore": "License is not activated.<br>Please contact the administrator.",
"PE.Controllers.Main.warnLicenseExceeded": "PE.Controllers.Main.warnLicenseExceeded",
"PE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"PE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired<br>You do not have a license for file editing functionality<br>Please contact the administrator.",
"PE.Controllers.Main.warnLicenseLimitedRenewed": "PE.Controllers.Main.warnLicenseLimitedRenewed",
"PE.Controllers.Main.warnLicenseUsersExceeded": "You have reached the user limit for %1 editor. Please contact your administrator for more information.",
"PE.Controllers.Main.warnNoLicense": "PE.Controllers.Main.warnNoLicense",
"PE.Controllers.Main.warnNoLicenseUsers": "You have reached the user limit for %1 editor. Please contact %1 sales team to learn about individual upgrade terms.",
"PE.Controllers.Main.warnProcessRightsChange": "You have been denied permission to edit the file.",
"PE.Controllers.Main.warnLicenseAnonymous": "Anonymous user access is denied. This document will open for viewing only.",
"PE.Controllers.Print.txtPrintRangeInvalid": "Invalid print range",
"PE.Controllers.Print.txtPrintRangeSingleRange": "PE.Controllers.Print.txtPrintRangeSingleRange",
"PE.Controllers.Search.notcriticalErrorTitle": "Warning",
"PE.Controllers.Search.textNoTextFound": "The data you searched for could not be found. Please adjust your search options.",
"PE.Controllers.Search.textReplaceSkipped": "Replacement completed. {0} matches skipped.",
"PE.Controllers.Search.textReplaceSuccess": "Search completed. {0} matches replaced",
"PE.Controllers.Search.warnReplaceString": "{0} is not a valid specification",
"PE.Controllers.Statusbar.textDisconnect": "<b>Connection failed</b><br>Trying to connect. Please check connection settings.",
"PE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"PE.Controllers.Toolbar.confirmAddFontName": "PE.Controllers.Toolbar.confirmAddFontName",
"PE.Controllers.Toolbar.textAccent": "Accent",
"PE.Controllers.Toolbar.textBracket": "Bracket",
"PE.Controllers.Toolbar.textEmptyImgUrl": "You need to specify an image URL.",
"PE.Controllers.Toolbar.textFontSizeErr": "The value entered is incorrect.<br>Please enter a value between 1 and 300",
"PE.Controllers.Toolbar.textFraction": "Fraction",
"PE.Controllers.Toolbar.textFunction": "Trigonometric Function",
"PE.Controllers.Toolbar.textInsert": "Insert",
"PE.Controllers.Toolbar.textIntegral": "Integral",
"PE.Controllers.Toolbar.textLargeOperator": "Large Operator",
"PE.Controllers.Toolbar.textLimitAndLog": "Limit and Logarithm",
"PE.Controllers.Toolbar.textMatrix": "Matrix",
"PE.Controllers.Toolbar.textOperator": "Operator",
"PE.Controllers.Toolbar.textRadical": "Radical",
"PE.Controllers.Toolbar.textScript": "Subscript and Superscript",
"PE.Controllers.Toolbar.textSymbols": "Symbols",
"PE.Controllers.Toolbar.textWarning": "Warning",
"PE.Controllers.Toolbar.txtAccent_Accent": "Acute Accent",
"PE.Controllers.Toolbar.txtAccent_ArrowD": "Left-Right Arrow Above",
"PE.Controllers.Toolbar.txtAccent_ArrowL": "Left Arrow Above",
"PE.Controllers.Toolbar.txtAccent_ArrowR": "Right Arrow Above",
"PE.Controllers.Toolbar.txtAccent_Bar": "Bar",
"PE.Controllers.Toolbar.txtAccent_BarBot": "Underline",
"PE.Controllers.Toolbar.txtAccent_BarTop": "Overline",
"PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed Formula (with placeholder)",
"PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed Formula (example)",
"PE.Controllers.Toolbar.txtAccent_Check": "Check",
"PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Bottom Bracket",
"PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Top Brace",
"PE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A",
"PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with Long Bar",
"PE.Controllers.Toolbar.txtAccent_Custom_3": "x XNOR y",
"PE.Controllers.Toolbar.txtAccent_DDDot": "Three Dots",
"PE.Controllers.Toolbar.txtAccent_DDot": "Double Dot",
"PE.Controllers.Toolbar.txtAccent_Dot": "Dot",
"PE.Controllers.Toolbar.txtAccent_DoubleBar": "Double Bar",
"PE.Controllers.Toolbar.txtAccent_Grave": "Grave Accent",
"PE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping Character Below",
"PE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping Character Above",
"PE.Controllers.Toolbar.txtAccent_HarpoonL": "Left Harpoon Above",
"PE.Controllers.Toolbar.txtAccent_HarpoonR": "Right Harpoon Above",
"PE.Controllers.Toolbar.txtAccent_Hat": "Hat",
"PE.Controllers.Toolbar.txtAccent_Smile": "Breve",
"PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"PE.Controllers.Toolbar.txtBracket_Angle": "Angle Bracket",
"PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Angle Bracket with Delimiter",
"PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Angle Bracket with Delimiter",
"PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Right Angle Bracket",
"PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Left Angle Bracket",
"PE.Controllers.Toolbar.txtBracket_Curve": "Curly Bracket",
"PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Curly Bracket with Delimiter",
"PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Right Brace",
"PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Left Brace",
"PE.Controllers.Toolbar.txtBracket_Custom_1": "Case (Two Cases)",
"PE.Controllers.Toolbar.txtBracket_Custom_2": "Case (Three Cases)",
"PE.Controllers.Toolbar.txtBracket_Custom_3": "Stacked Object",
"PE.Controllers.Toolbar.txtBracket_Custom_4": "Stacked Object in Parentheses",
"PE.Controllers.Toolbar.txtBracket_Custom_5": "Case Example",
"PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial Coefficient",
"PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial Coefficient in Angle Brackets",
"PE.Controllers.Toolbar.txtBracket_Line": "Vertical Line",
"PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Right Vertical Line",
"PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Left Vertical Line",
"PE.Controllers.Toolbar.txtBracket_LineDouble": "Double Vertical Line",
"PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Right Double Vertical Line",
"PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Left Double Vertical Line",
"PE.Controllers.Toolbar.txtBracket_LowLim": "Floor",
"PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Right Floor",
"PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Left Floor",
"PE.Controllers.Toolbar.txtBracket_Round": "Round Bracket",
"PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Round Bracket with Delimiter",
"PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Right Parenthesis",
"PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Left Parenthesis",
"PE.Controllers.Toolbar.txtBracket_Square": "Square Bracket",
"PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Placeholder Between Two Right Square Brackets",
"PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Inverted Square Bracket",
"PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Right Square Bracket",
"PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Left Square Bracket",
"PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Placeholder Between Two Left Square Brackets",
"PE.Controllers.Toolbar.txtBracket_SquareDouble": "Double Square Bracket",
"PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Right Double Square Bracket",
"PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Left Double Square Bracket",
"PE.Controllers.Toolbar.txtBracket_UppLim": "Ceiling",
"PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Right Ceiling",
"PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Left Ceiling",
"PE.Controllers.Toolbar.txtFractionDiagonal": "Diagonal Fraction",
"PE.Controllers.Toolbar.txtFractionDifferential_1": "dx over dy",
"PE.Controllers.Toolbar.txtFractionDifferential_2": "Δy over Δx",
"PE.Controllers.Toolbar.txtFractionDifferential_3": "Partial y over Partial x",
"PE.Controllers.Toolbar.txtFractionDifferential_4": "Δx over Δy",
"PE.Controllers.Toolbar.txtFractionHorizontal": "Linear Fraction",
"PE.Controllers.Toolbar.txtFractionPi_2": "π/2",
"PE.Controllers.Toolbar.txtFractionSmall": "Small Fraction",
"PE.Controllers.Toolbar.txtFractionVertical": "Stacked Fraction",
"PE.Controllers.Toolbar.txtFunction_1_Cos": "Arccosine",
"PE.Controllers.Toolbar.txtFunction_1_Cosh": "Inverse Hyperbolic Cosine",
"PE.Controllers.Toolbar.txtFunction_1_Cot": "Arccotangent",
"PE.Controllers.Toolbar.txtFunction_1_Coth": "Inverse Hyperbolic Cotangent",
"PE.Controllers.Toolbar.txtFunction_1_Csc": "Arccosecant",
"PE.Controllers.Toolbar.txtFunction_1_Csch": "Inverse Hyperbolic Cosecant",
"PE.Controllers.Toolbar.txtFunction_1_Sec": "Arcsecant",
"PE.Controllers.Toolbar.txtFunction_1_Sech": "Inverse Hyperbolic Secant",
"PE.Controllers.Toolbar.txtFunction_1_Sin": "Arcsine",
"PE.Controllers.Toolbar.txtFunction_1_Sinh": "Inverse Hyperbolic Sine",
"PE.Controllers.Toolbar.txtFunction_1_Tan": "Arctangent",
"PE.Controllers.Toolbar.txtFunction_1_Tanh": "Inverse Hyperbolic Tangent",
"PE.Controllers.Toolbar.txtFunction_Cos": "Cosine",
"PE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic Cosine",
"PE.Controllers.Toolbar.txtFunction_Cot": "Cotangent",
"PE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic Cotangent",
"PE.Controllers.Toolbar.txtFunction_Csc": "Cosecant",
"PE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic Cosecant",
"PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine θ",
"PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x",
"PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent",
"PE.Controllers.Toolbar.txtFunction_Sec": "Secant",
"PE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic Secant",
"PE.Controllers.Toolbar.txtFunction_Sin": "Sine",
"PE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic Sine",
"PE.Controllers.Toolbar.txtFunction_Tan": "Tangent",
"PE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic Tangent",
"PE.Controllers.Toolbar.txtIntegral": "Integral",
"PE.Controllers.Toolbar.txtIntegral_dtheta": "Differential θ",
"PE.Controllers.Toolbar.txtIntegral_dx": "Differential x",
"PE.Controllers.Toolbar.txtIntegral_dy": "Differential y",
"PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral with Stacked Limits",
"PE.Controllers.Toolbar.txtIntegralDouble": "Double Integral",
"PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double Integral with Stacked Limits",
"PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double Integral with Limits",
"PE.Controllers.Toolbar.txtIntegralOriented": "Contour Integral",
"PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour Integral with Stacked Limits",
"PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface Integral",
"PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface Integral with Stacked Limits",
"PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface Integral with Limits",
"PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour Integral with Limits",
"PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume Integral",
"PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume Integral with Stacked Limits",
"PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume Integral with Limits",
"PE.Controllers.Toolbar.txtIntegralSubSup": "Integral with Limits",
"PE.Controllers.Toolbar.txtIntegralTriple": "Triple Integral",
"PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple Integral with Stacked Limits",
"PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple Integral with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Logical And",
"PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Logical And with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Logical And with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Logical And with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Logical And with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coproduct",
"PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduct with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduct with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduct with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduct with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sum of k choose n over k",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sum from i equals 0 to n",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sum Example with Two Indices",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product Example",
"PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union Example",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Logical Or",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Logical Or with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Logical Or with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Logical Or with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Logical Or with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Prod": "Product",
"PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Sum": "Sum",
"PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sum with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sum with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sum with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sum with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Union": "Union",
"PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union with Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union with Limits",
"PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union with Subscript Lower Limit",
"PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union with Subscript/Superscript Limits",
"PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Example",
"PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Max Example",
"PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit",
"PE.Controllers.Toolbar.txtLimitLog_Ln": "Natural Logarithm",
"PE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm",
"PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm",
"PE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
"PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum",
"PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty 2x2 Matrix with Double Vertical Lines",
"PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty 2x2 Determinant",
"PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "2x2 Empty Matrix with Round Brackets",
"PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "2x2 Empty Matrix with Square Brackets",
"PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Empty Matrix",
"PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots",
"PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Center Dots",
"PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots",
"PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical Dots",
"PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix in Brackets",
"PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix in Brackets",
"PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Identity Matrix with Zeros",
"PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "2x2 Identity Matrix with Blanks Except Diagonal",
"PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Identity Matrix with Zeros",
"PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Identity Matrix with Blanks Except Diagonal",
"PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Left-Right Arrow Below",
"PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Left-Right Arrow Above",
"PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Left Arrow Below",
"PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Left Arrow Above",
"PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Right Arrow Below",
"PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Right Arrow Above",
"PE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon Equals",
"PE.Controllers.Toolbar.txtOperator_Custom_1": "Proportional To",
"PE.Controllers.Toolbar.txtOperator_Custom_2": "Triangle Area",
"PE.Controllers.Toolbar.txtOperator_Definition": "Definition Equals",
"PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Equals",
"PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Left-Right Double Arrow Below",
"PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Left-Right Double Arrow Above",
"PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Left Double Arrow Below",
"PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Left Double Arrow Above",
"PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Right Double Arrow Below",
"PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Right Double Arrow Above",
"PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equals Equals",
"PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Equals",
"PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Equals",
"PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Unit of Measure",
"PE.Controllers.Toolbar.txtRadicalCustom_1": "Right Side of Quadratic Equation",
"PE.Controllers.Toolbar.txtRadicalCustom_2": "Square Root of a Squared Plus b Squared",
"PE.Controllers.Toolbar.txtRadicalRoot_2": "Square Root with Index",
"PE.Controllers.Toolbar.txtRadicalRoot_3": "Cube Root",
"PE.Controllers.Toolbar.txtRadicalRoot_n": "nth Root",
"PE.Controllers.Toolbar.txtRadicalSqrt": "Square Root",
"PE.Controllers.Toolbar.txtScriptCustom_1": "x subscript y squared",
"PE.Controllers.Toolbar.txtScriptCustom_2": "e to the power of negative i omega t",
"PE.Controllers.Toolbar.txtScriptCustom_3": "x squared",
"PE.Controllers.Toolbar.txtScriptCustom_4": "Y with left superscript n and left subscript 1",
"PE.Controllers.Toolbar.txtScriptSub": "Subscript",
"PE.Controllers.Toolbar.txtScriptSubSup": "Subscript",
"PE.Controllers.Toolbar.txtScriptSubSupLeft": "Left Script",
"PE.Controllers.Toolbar.txtScriptSup": "Superscript",
"PE.Controllers.Toolbar.txtSymbol_about": "Approximately",
"PE.Controllers.Toolbar.txtSymbol_additional": "Complement",
"PE.Controllers.Toolbar.txtSymbol_aleph": "Aleph",
"PE.Controllers.Toolbar.txtSymbol_alpha": "Alpha",
"PE.Controllers.Toolbar.txtSymbol_approx": "Approximately Equal",
"PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk Operator",
"PE.Controllers.Toolbar.txtSymbol_beta": "Beta",
"PE.Controllers.Toolbar.txtSymbol_beth": "Beth",
"PE.Controllers.Toolbar.txtSymbol_bullet": "Bullet Operator",
"PE.Controllers.Toolbar.txtSymbol_cap": "Intersection",
"PE.Controllers.Toolbar.txtSymbol_cbrt": "Cube Root",
"PE.Controllers.Toolbar.txtSymbol_cdots": "Center Horizontal Ellipsis",
"PE.Controllers.Toolbar.txtSymbol_celsius": "Celsius",
"PE.Controllers.Toolbar.txtSymbol_chi": "Chi",
"PE.Controllers.Toolbar.txtSymbol_cong": "Congruent",
"PE.Controllers.Toolbar.txtSymbol_cup": "Union",
"PE.Controllers.Toolbar.txtSymbol_ddots": "Right Diagonal Ellipsis",
"PE.Controllers.Toolbar.txtSymbol_degree": "Degree",
"PE.Controllers.Toolbar.txtSymbol_delta": "Delta",
"PE.Controllers.Toolbar.txtSymbol_div": "Division",
"PE.Controllers.Toolbar.txtSymbol_downarrow": "Down Arrow",
"PE.Controllers.Toolbar.txtSymbol_emptyset": "Empty Set",
"PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon",
"PE.Controllers.Toolbar.txtSymbol_equals": "Equals",
"PE.Controllers.Toolbar.txtSymbol_equiv": "Equivalent",
"PE.Controllers.Toolbar.txtSymbol_eta": "Eta",
"PE.Controllers.Toolbar.txtSymbol_exists": "Exists",
"PE.Controllers.Toolbar.txtSymbol_factorial": "Factorial",
"PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Fahrenheit",
"PE.Controllers.Toolbar.txtSymbol_forall": "For All",
"PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma",
"PE.Controllers.Toolbar.txtSymbol_geq": "Greater Than or Equal",
"PE.Controllers.Toolbar.txtSymbol_gg": "Much Greater Than",
"PE.Controllers.Toolbar.txtSymbol_greater": "Greater Than",
"PE.Controllers.Toolbar.txtSymbol_in": "Element Of",
"PE.Controllers.Toolbar.txtSymbol_inc": "Increment",
"PE.Controllers.Toolbar.txtSymbol_infinity": "Infinity",
"PE.Controllers.Toolbar.txtSymbol_iota": "Iota",
"PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa",
"PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda",
"PE.Controllers.Toolbar.txtSymbol_leftarrow": "Left Arrow",
"PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-Right Arrow",
"PE.Controllers.Toolbar.txtSymbol_leq": "Less Than or Equal",
"PE.Controllers.Toolbar.txtSymbol_less": "Less Than",
"PE.Controllers.Toolbar.txtSymbol_ll": "Much Less Than",
"PE.Controllers.Toolbar.txtSymbol_minus": "Minus",
"PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus",
"PE.Controllers.Toolbar.txtSymbol_mu": "Mu",
"PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla",
"PE.Controllers.Toolbar.txtSymbol_neq": "Not Equal",
"PE.Controllers.Toolbar.txtSymbol_ni": "Contains As Member",
"PE.Controllers.Toolbar.txtSymbol_not": "Not",
"PE.Controllers.Toolbar.txtSymbol_notexists": "Not Exists",
"PE.Controllers.Toolbar.txtSymbol_nu": "Nu",
"PE.Controllers.Toolbar.txtSymbol_o": "Omicron",
"PE.Controllers.Toolbar.txtSymbol_omega": "Omega",
"PE.Controllers.Toolbar.txtSymbol_partial": "Partial Differential",
"PE.Controllers.Toolbar.txtSymbol_percent": "Percent",
"PE.Controllers.Toolbar.txtSymbol_phi": "Phi",
"PE.Controllers.Toolbar.txtSymbol_pi": "Pi",
"PE.Controllers.Toolbar.txtSymbol_plus": "Plus",
"PE.Controllers.Toolbar.txtSymbol_pm": "Plus Minus",
"PE.Controllers.Toolbar.txtSymbol_propto": "Proportional To",
"PE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"PE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth Root",
"PE.Controllers.Toolbar.txtSymbol_qed": "Q.E.D.",
"PE.Controllers.Toolbar.txtSymbol_rddots": "Right Diagonal Ellipsis",
"PE.Controllers.Toolbar.txtSymbol_rho": "Rho",
"PE.Controllers.Toolbar.txtSymbol_rightarrow": "Right Arrow",
"PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma",
"PE.Controllers.Toolbar.txtSymbol_sqrt": "Square Root",
"PE.Controllers.Toolbar.txtSymbol_tau": "Tau",
"PE.Controllers.Toolbar.txtSymbol_therefore": "Therefore",
"PE.Controllers.Toolbar.txtSymbol_theta": "Theta",
"PE.Controllers.Toolbar.txtSymbol_times": "Times",
"PE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow",
"PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon",
"PE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant Epsilon",
"PE.Controllers.Toolbar.txtSymbol_varphi": "Variant Phi",
"PE.Controllers.Toolbar.txtSymbol_varpi": "Variant Pi",
"PE.Controllers.Toolbar.txtSymbol_varrho": "Variant Rho",
"PE.Controllers.Toolbar.txtSymbol_varsigma": "Variant Sigma",
"PE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Theta",
"PE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
"PE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"PE.Controllers.Viewport.textFitPage": "Fit to Page",
"PE.Controllers.Viewport.textFitWidth": "Fit to Width",
"PE.Views.Animation.str0_5": "0.5 sec (Very Fast)",
"PE.Views.Animation.str1": "1 sec (Fast)",
"PE.Views.Animation.str2": "2 sec (Medium)",
"PE.Views.Animation.str20": "20 sec (Very Slow)",
"PE.Views.Animation.str3": "3 sec (Slow)",
"PE.Views.Animation.str5": "5 sec (Very Slow)",
"PE.Views.Animation.strDelay": "Delay",
"PE.Views.Animation.strDuration": "Duration",
"PE.Views.Animation.strRepeat": "Repeat",
"PE.Views.Animation.strRewind": "Rewind",
"PE.Views.Animation.strStart": "Start",
"PE.Views.Animation.strTrigger": "Trigger",
"PE.Views.Animation.textAutoPreview": "Auto Preview",
"PE.Views.Animation.textMoreEffects": "Show More Effects",
"PE.Views.Animation.textMoveEarlier": "Move Earlier",
"PE.Views.Animation.textMoveLater": "Move Later",
"PE.Views.Animation.textMultiple": "Multiple",
"PE.Views.Animation.textNone": "None",
"PE.Views.Animation.textNoRepeat": "(None)",
"PE.Views.Animation.textOnClickOf": "On Click Of:",
"PE.Views.Animation.textOnClickSequence": "In Click Sequence",
"PE.Views.Animation.textStartAfterPrevious": "After Previous",
"PE.Views.Animation.textStartOnClick": "On Click",
"PE.Views.Animation.textStartWithPrevious": "With Previous",
"PE.Views.Animation.textUntilEndOfSlide": "Until End of Slide",
"PE.Views.Animation.textUntilNextClick": "Until Next Click",
"PE.Views.Animation.txtAddEffect": "Add Animation",
"PE.Views.Animation.txtAnimationPane": "Animation Pane",
"PE.Views.Animation.txtParameters": "Effect Options",
"PE.Views.Animation.txtPreview": "Preview",
"PE.Views.Animation.txtSec": "sec",
"PE.Views.AnimationDialog.textPreviewEffect": "Preview Effect",
"PE.Views.AnimationDialog.textTitle": "More Effects",
"PE.Views.ChartSettings.text3dDepth": "Depth (% of original depth)",
"PE.Views.ChartSettings.text3dHeight": "Height (% of original height)",
"PE.Views.ChartSettings.text3dRotation": "3-D Rotation",
"PE.Views.ChartSettings.textAdvanced": "Show Advanced Settings",
"PE.Views.ChartSettings.textAutoscale": "Autoscale",
"PE.Views.ChartSettings.textChartType": "Change Chart Type",
"PE.Views.ChartSettings.textDefault": "Default Rotation",
"PE.Views.ChartSettings.textDown": "Down",
"PE.Views.ChartSettings.textEditData": "Edit Data",
"PE.Views.ChartSettings.textHeight": "Height",
"PE.Views.ChartSettings.textKeepRatio": "Lock Aspect Ratio",
"PE.Views.ChartSettings.textLeft": "Left",
"PE.Views.ChartSettings.textNarrow": "Narrow Field of View",
"PE.Views.ChartSettings.textPerspective": "Perspective",
"PE.Views.ChartSettings.textRight": "Right",
"PE.Views.ChartSettings.textRightAngle": "Right Angle Axes",
"PE.Views.ChartSettings.textSize": "Size",
"PE.Views.ChartSettings.textStyle": "Type",
"PE.Views.ChartSettings.textUp": "Up",
"PE.Views.ChartSettings.textWiden": "Widen Field of View",
"PE.Views.ChartSettings.textWidth": "Width",
"PE.Views.ChartSettings.textX": "X Rotation",
"PE.Views.ChartSettings.textY": "Y Rotation",
"PE.Views.ChartSettingsAdvanced.textAlt": "Alternative Text",
"PE.Views.ChartSettingsAdvanced.textAltDescription": "Description",
"PE.Views.ChartSettingsAdvanced.textAltTip": "PE.Views.ChartSettingsAdvanced.textAltTip",
"PE.Views.ChartSettingsAdvanced.textAltTitle": "Title",
"PE.Views.ChartSettingsAdvanced.textCenter": "Center",
"PE.Views.ChartSettingsAdvanced.textChartName": "Chart Name",
"PE.Views.ChartSettingsAdvanced.textFrom": "Base Point",
"PE.Views.ChartSettingsAdvanced.textGeneral": "General",
"PE.Views.ChartSettingsAdvanced.textHeight": "Height",
"PE.Views.ChartSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.ChartSettingsAdvanced.textKeepRatio": "Lock Aspect Ratio",
"PE.Views.ChartSettingsAdvanced.textPlacement": "Size and Position",
"PE.Views.ChartSettingsAdvanced.textPosition": "Position",
"PE.Views.ChartSettingsAdvanced.textSize": "Size",
"PE.Views.ChartSettingsAdvanced.textTitle": "Chart - Advanced Settings",
"PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
"PE.Views.ChartSettingsAdvanced.textVertical": "Vertical",
"PE.Views.ChartSettingsAdvanced.textWidth": "Width",
"PE.Views.DateTimeDialog.confirmDefault": "Set default format for {0}: {1}",
"PE.Views.DateTimeDialog.textDefault": "Set as Default",
"PE.Views.DateTimeDialog.textFormat": "Format",
"PE.Views.DateTimeDialog.textLang": "Language",
"PE.Views.DateTimeDialog.textUpdate": "Auto Update",
"PE.Views.DateTimeDialog.txtTitle": "Date and Time",
"PE.Views.DocumentHolder.aboveText": "Above",
"PE.Views.DocumentHolder.addCommentText": "Add Comment",
"PE.Views.DocumentHolder.addToLayoutText": "Add to Layout",
"PE.Views.DocumentHolder.advancedChartText": "Chart Advanced Settings",
"PE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
"PE.Views.DocumentHolder.advancedImageText": "Image Advanced Settings",
"PE.Views.DocumentHolder.advancedParagraphText": "Paragraph Advanced Settings",
"PE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings",
"PE.Views.DocumentHolder.advancedTableText": "Table Advanced Settings",
"PE.Views.DocumentHolder.alignmentText": "Alignment",
"PE.Views.DocumentHolder.allLinearText": "All - Linear",
"PE.Views.DocumentHolder.allProfText": "All - Professional",
"PE.Views.DocumentHolder.belowText": "Below",
"PE.Views.DocumentHolder.cellAlignText": "Cell Vertical Alignment",
"PE.Views.DocumentHolder.cellText": "Cell",
"PE.Views.DocumentHolder.centerText": "Center",
"PE.Views.DocumentHolder.columnText": "Column",
"PE.Views.DocumentHolder.currLinearText": "Current - Linear",
"PE.Views.DocumentHolder.currProfText": "Current - Professional",
"PE.Views.DocumentHolder.deleteColumnText": "Delete Column",
"PE.Views.DocumentHolder.deleteRowText": "Delete Row",
"PE.Views.DocumentHolder.deleteTableText": "Delete Table",
"PE.Views.DocumentHolder.deleteText": "Delete",
"PE.Views.DocumentHolder.direct270Text": "Rotate 270°",
"PE.Views.DocumentHolder.direct90Text": "Rotate 90°",
"PE.Views.DocumentHolder.directHText": "Horizontal",
"PE.Views.DocumentHolder.directionText": "Text Direction",
"PE.Views.DocumentHolder.editChartText": "Edit Data",
"PE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"PE.Views.DocumentHolder.hideEqToolbar": "Hide Equation Toolbar",
"PE.Views.DocumentHolder.hyperlinkText": "Hyperlink",
"PE.Views.DocumentHolder.ignoreAllSpellText": "Ignore All",
"PE.Views.DocumentHolder.ignoreSpellText": "Ignore",
"PE.Views.DocumentHolder.insertColumnLeftText": "Insert Column to the Left",
"PE.Views.DocumentHolder.insertColumnRightText": "Insert Column to the Right",
"PE.Views.DocumentHolder.insertColumnText": "Insert Column",
"PE.Views.DocumentHolder.insertRowAboveText": "Insert Row Above",
"PE.Views.DocumentHolder.insertRowBelowText": "Insert Row Below",
"PE.Views.DocumentHolder.insertRowText": "Insert Row",
"PE.Views.DocumentHolder.insertText": "Insert",
"PE.Views.DocumentHolder.langText": "Select Language",
"PE.Views.DocumentHolder.latexText": "LaTeX",
"PE.Views.DocumentHolder.leftText": "Left",
"PE.Views.DocumentHolder.loadSpellText": "Load Variants...",
"PE.Views.DocumentHolder.mergeCellsText": "Merge Cells",
"PE.Views.DocumentHolder.mniCustomTable": "Insert Table",
"PE.Views.DocumentHolder.moreText": "More Variants...",
"PE.Views.DocumentHolder.noSpellVariantsText": "No Variants",
"PE.Views.DocumentHolder.originalSizeText": "Original Size",
"PE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
"PE.Views.DocumentHolder.rightText": "Right",
"PE.Views.DocumentHolder.rowText": "Row",
"PE.Views.DocumentHolder.selectText": "Select",
"PE.Views.DocumentHolder.showEqToolbar": "Show Equation Toolbar",
"PE.Views.DocumentHolder.spellcheckText": "Spell Check",
"PE.Views.DocumentHolder.splitCellsText": "Split Cells",
"PE.Views.DocumentHolder.splitCellTitleText": "Split Cells",
"PE.Views.DocumentHolder.tableText": "Table",
"PE.Views.DocumentHolder.textAddHGuides": "Add Horizontal Guide",
"PE.Views.DocumentHolder.textAddVGuides": "Add Vertical Guide",
"PE.Views.DocumentHolder.textArrangeBack": "Send to Back",
"PE.Views.DocumentHolder.textArrangeBackward": "Send Backward",
"PE.Views.DocumentHolder.textArrangeForward": "Bring Forward",
"PE.Views.DocumentHolder.textArrangeFront": "Bring to Front",
"PE.Views.DocumentHolder.textClearGuides": "Clear Guides",
"PE.Views.DocumentHolder.textCm": "cm",
"PE.Views.DocumentHolder.textCopy": "Copy",
"PE.Views.DocumentHolder.textCrop": "Crop",
"PE.Views.DocumentHolder.textCropFill": "Fill",
"PE.Views.DocumentHolder.textCropFit": "Fit",
"PE.Views.DocumentHolder.textCustom": "Custom",
"PE.Views.DocumentHolder.textCut": "Cut",
"PE.Views.DocumentHolder.textDeleteGuide": "Delete Guide",
"PE.Views.DocumentHolder.textDistributeCols": "Distribute Columns Evenly",
"PE.Views.DocumentHolder.textDistributeRows": "Distribute Rows Evenly",
"PE.Views.DocumentHolder.textEditPoints": "Edit Points",
"PE.Views.DocumentHolder.textFlipH": "Flip Horizontal",
"PE.Views.DocumentHolder.textFlipV": "Flip Vertical",
"PE.Views.DocumentHolder.textFromFile": "From File",
"PE.Views.DocumentHolder.textFromStorage": "From Storage",
"PE.Views.DocumentHolder.textFromUrl": "From URL",
"PE.Views.DocumentHolder.textGridlines": "Gridlines",
"PE.Views.DocumentHolder.textGuides": "Guides",
"PE.Views.DocumentHolder.textNextPage": "Next Slide",
"PE.Views.DocumentHolder.textPaste": "Paste",
"PE.Views.DocumentHolder.textPrevPage": "Previous Slide",
"PE.Views.DocumentHolder.textReplace": "Change Picture",
"PE.Views.DocumentHolder.textRotate": "Rotate",
"PE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise",
"PE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
"PE.Views.DocumentHolder.textRulers": "Rulers",
"PE.Views.DocumentHolder.textSaveAsPicture": "Save as Picture",
"PE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
"PE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
"PE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
"PE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle",
"PE.Views.DocumentHolder.textShapeAlignRight": "Align Right",
"PE.Views.DocumentHolder.textShapeAlignTop": "Align Top",
"PE.Views.DocumentHolder.textShowGridlines": "Show Gridlines",
"PE.Views.DocumentHolder.textShowGuides": "Show Guides",
"PE.Views.DocumentHolder.textSlideSettings": "Format Background",
"PE.Views.DocumentHolder.textSmartGuides": "Smart Guides",
"PE.Views.DocumentHolder.textSnapObjects": "Snap Objects to Grid",
"PE.Views.DocumentHolder.textUndo": "Undo",
"PE.Views.DocumentHolder.tipGuides": "Show Guides",
"PE.Views.DocumentHolder.tipIsLocked": "This element is being edited by another user.",
"PE.Views.DocumentHolder.toDictionaryText": "Add to Dictionary",
"PE.Views.DocumentHolder.txtAddBottom": "Add Bottom Border",
"PE.Views.DocumentHolder.txtAddFractionBar": "Add Fraction Bar",
"PE.Views.DocumentHolder.txtAddHor": "Add Spacing Between Paragraphs of Same Style",
"PE.Views.DocumentHolder.txtAddLB": "Add Left Bottom Line",
"PE.Views.DocumentHolder.txtAddLeft": "Add Left Border",
"PE.Views.DocumentHolder.txtAddLT": "Add Left Top Line",
"PE.Views.DocumentHolder.txtAddRight": "Add Right Border",
"PE.Views.DocumentHolder.txtAddTop": "Add Top Border",
"PE.Views.DocumentHolder.txtAddVer": "Add Vertical Line",
"PE.Views.DocumentHolder.txtAlign": "Align",
"PE.Views.DocumentHolder.txtAlignToChar": "Align to Character",
"PE.Views.DocumentHolder.txtArrange": "Arrange",
"PE.Views.DocumentHolder.txtBackground": "Background",
"PE.Views.DocumentHolder.txtBorderProps": "Border Properties",
"PE.Views.DocumentHolder.txtBottom": "Bottom",
"PE.Views.DocumentHolder.txtChangeLayout": "Layout",
"PE.Views.DocumentHolder.txtChangeTheme": "Change Theme",
"PE.Views.DocumentHolder.txtColumnAlign": "Column Alignment",
"PE.Views.DocumentHolder.txtDecreaseArg": "Decrease Argument Size",
"PE.Views.DocumentHolder.txtDeleteArg": "Delete Argument",
"PE.Views.DocumentHolder.txtDeleteBreak": "Delete Manual Break",
"PE.Views.DocumentHolder.txtDeleteChars": "Delete Enclosing Characters",
"PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Delete Enclosing Characters and Separators",
"PE.Views.DocumentHolder.txtDeleteEq": "Delete Equation",
"PE.Views.DocumentHolder.txtDeleteGroupChar": "Delete Character",
"PE.Views.DocumentHolder.txtDeleteRadical": "Delete Radical",
"PE.Views.DocumentHolder.txtDeleteSlide": "Delete Slide",
"PE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally",
"PE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically",
"PE.Views.DocumentHolder.txtDuplicateSlide": "Duplicate Slide",
"PE.Views.DocumentHolder.txtFractionLinear": "Change to Linear Fraction",
"PE.Views.DocumentHolder.txtFractionSkewed": "Change to Skewed Fraction",
"PE.Views.DocumentHolder.txtFractionStacked": "Change to Stacked Fraction",
"PE.Views.DocumentHolder.txtGroup": "Group",
"PE.Views.DocumentHolder.txtGroupCharOver": "Character Over Text",
"PE.Views.DocumentHolder.txtGroupCharUnder": "Character Under Text",
"PE.Views.DocumentHolder.txtHideBottom": "Hide Bottom Border",
"PE.Views.DocumentHolder.txtHideBottomLimit": "Hide Bottom Limit",
"PE.Views.DocumentHolder.txtHideCloseBracket": "Hide Right Bracket",
"PE.Views.DocumentHolder.txtHideDegree": "Hide Degree",
"PE.Views.DocumentHolder.txtHideHor": "Hide Horizontal Line",
"PE.Views.DocumentHolder.txtHideLB": "Hide Left Bottom Line",
"PE.Views.DocumentHolder.txtHideLeft": "Hide Left Border",
"PE.Views.DocumentHolder.txtHideLT": "Hide Left Top Line",
"PE.Views.DocumentHolder.txtHideOpenBracket": "Hide Left Bracket",
"PE.Views.DocumentHolder.txtHidePlaceholder": "Hide Placeholder",
"PE.Views.DocumentHolder.txtHideRight": "Hide Right Border",
"PE.Views.DocumentHolder.txtHideTop": "Hide Top Border",
"PE.Views.DocumentHolder.txtHideTopLimit": "Hide Top Limit",
"PE.Views.DocumentHolder.txtHideVer": "Hide Vertical Line",
"PE.Views.DocumentHolder.txtIncreaseArg": "Increase Argument Size",
"PE.Views.DocumentHolder.txtInsAudio": "Insert Audio",
"PE.Views.DocumentHolder.txtInsChart": "Insert Chart",
"PE.Views.DocumentHolder.txtInsertArgAfter": "Insert Argument After",
"PE.Views.DocumentHolder.txtInsertArgBefore": "Insert Argument Before",
"PE.Views.DocumentHolder.txtInsertBreak": "Insert Manual Break",
"PE.Views.DocumentHolder.txtInsertEqAfter": "Insert Equation After",
"PE.Views.DocumentHolder.txtInsertEqBefore": "Insert Equation Before",
"PE.Views.DocumentHolder.txtInsImage": "Insert Image",
"PE.Views.DocumentHolder.txtInsImageUrl": "Insert Online Image",
"PE.Views.DocumentHolder.txtInsSmartArt": "Insert SmartArt",
"PE.Views.DocumentHolder.txtInsTable": "Insert Table",
"PE.Views.DocumentHolder.txtInsVideo": "Insert Video",
"PE.Views.DocumentHolder.txtKeepTextOnly": "Keep Text Only",
"PE.Views.DocumentHolder.txtLimitChange": "Change Limit Position",
"PE.Views.DocumentHolder.txtLimitOver": "Limit Over Text",
"PE.Views.DocumentHolder.txtLimitUnder": "Limit Under Text",
"PE.Views.DocumentHolder.txtMatchBrackets": "Match Brackets to Argument Height",
"PE.Views.DocumentHolder.txtMatrixAlign": "Matrix Alignment",
"PE.Views.DocumentHolder.txtMoveSlidesToEnd": "Move Slides to End",
"PE.Views.DocumentHolder.txtMoveSlidesToStart": "Move Slides to Start",
"PE.Views.DocumentHolder.txtNewSlide": "New Slide",
"PE.Views.DocumentHolder.txtOverbar": "Overbar",
"PE.Views.DocumentHolder.txtPasteDestFormat": "Use Destination Theme",
"PE.Views.DocumentHolder.txtPastePicture": "Picture",
"PE.Views.DocumentHolder.txtPasteSourceFormat": "Keep Source Formatting",
"PE.Views.DocumentHolder.txtPressLink": "Press {0} and click the link",
"PE.Views.DocumentHolder.txtPreview": "Slide Show",
"PE.Views.DocumentHolder.txtPrintSelection": "Print Selection",
"PE.Views.DocumentHolder.txtRemFractionBar": "Remove Fraction Bar",
"PE.Views.DocumentHolder.txtRemLimit": "Remove Limit",
"PE.Views.DocumentHolder.txtRemoveAccentChar": "Remove Accent Character",
"PE.Views.DocumentHolder.txtRemoveBar": "Remove Top/Bottom Bar",
"PE.Views.DocumentHolder.txtRemScripts": "Remove Subscripts and Superscripts",
"PE.Views.DocumentHolder.txtRemSubscript": "Remove Subscript",
"PE.Views.DocumentHolder.txtRemSuperscript": "Remove Superscript",
"PE.Views.DocumentHolder.txtResetLayout": "Reset Slide",
"PE.Views.DocumentHolder.txtScriptsAfter": "Subscripts and Superscripts After Text",
"PE.Views.DocumentHolder.txtScriptsBefore": "Subscripts and Superscripts Before Text",
"PE.Views.DocumentHolder.txtSelectAll": "Select All",
"PE.Views.DocumentHolder.txtShowBottomLimit": "Show Bottom Limit",
"PE.Views.DocumentHolder.txtShowCloseBracket": "Show Right Bracket",
"PE.Views.DocumentHolder.txtShowDegree": "Show Degree",
"PE.Views.DocumentHolder.txtShowOpenBracket": "Show Left Bracket",
"PE.Views.DocumentHolder.txtShowPlaceholder": "Show Placeholder",
"PE.Views.DocumentHolder.txtShowTopLimit": "Show Top Limit",
"PE.Views.DocumentHolder.txtSlide": "Slide",
"PE.Views.DocumentHolder.txtSlideHide": "Hide Slide",
"PE.Views.DocumentHolder.txtStretchBrackets": "Stretch Brackets",
"PE.Views.DocumentHolder.txtTop": "Top",
"PE.Views.DocumentHolder.txtUnderbar": "Underbar",
"PE.Views.DocumentHolder.txtUngroup": "Ungroup",
"PE.Views.DocumentHolder.txtWarnUrl": "Clicking this link may harm your device or data.<br>Are you sure you want to continue?",
"PE.Views.DocumentHolder.unicodeText": "Unicode",
"PE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
"PE.Views.DocumentPreview.goToSlideText": "Go to Slide",
"PE.Views.DocumentPreview.slideIndexText": "Slide {0} of {1}",
"PE.Views.DocumentPreview.txtClose": "End Show",
"PE.Views.DocumentPreview.txtEndSlideshow": "End Slide Show",
"PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen",
"PE.Views.DocumentPreview.txtFinalMessage": "End of slide show. Click to exit.",
"PE.Views.DocumentPreview.txtFullScreen": "Full Screen",
"PE.Views.DocumentPreview.txtNext": "Next Slide",
"PE.Views.DocumentPreview.txtPageNumInvalid": "Invalid slide number",
"PE.Views.DocumentPreview.txtPause": "Pause Show",
"PE.Views.DocumentPreview.txtPlay": "Start Show",
"PE.Views.DocumentPreview.txtPrev": "Previous Slide",
"PE.Views.DocumentPreview.txtReset": "Reset",
"PE.Views.FileMenu.btnAboutCaption": "About",
"PE.Views.FileMenu.btnBackCaption": "Open File Location",
"PE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
"PE.Views.FileMenu.btnCreateNewCaption": "New",
"PE.Views.FileMenu.btnDownloadCaption": "Save As",
"PE.Views.FileMenu.btnExitCaption": "Close",
"PE.Views.FileMenu.btnFileOpenCaption": "Open",
"PE.Views.FileMenu.btnHelpCaption": "Help",
"PE.Views.FileMenu.btnHistoryCaption": "Version History",
"PE.Views.FileMenu.btnInfoCaption": "Slide Info",
"PE.Views.FileMenu.btnPrintCaption": "Print",
"PE.Views.FileMenu.btnProtectCaption": "Protect",
"PE.Views.FileMenu.btnRecentFilesCaption": "Recent Files",
"PE.Views.FileMenu.btnRenameCaption": "Rename",
"PE.Views.FileMenu.btnReturnCaption": "Return to Presentation",
"PE.Views.FileMenu.btnRightsCaption": "Access Rights",
"PE.Views.FileMenu.btnSaveAsCaption": "Save As",
"PE.Views.FileMenu.btnSaveCaption": "Save",
"PE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy As",
"PE.Views.FileMenu.btnSettingsCaption": "Advanced Settings",
"PE.Views.FileMenu.btnSetDefaultCaption": "Set as Default App",
"PE.Views.FileMenu.btnFeedbackCaption": "Feedback",
"PE.Views.FileMenu.btnUnInstallCaption": "Uninstall",
"PE.Views.FileMenu.btnEnableOnlineCaption": "Enable Online Slide Preview/Edit",
"PE.Views.FileMenu.btnDisableOnlineCaption": "Disable Online Slide Preview/Edit",
"PE.Views.FileMenu.btnDownloadOnlineCaption": "Download Document",
"PE.Views.FileMenu.btnToEditCaption": "Edit Presentation",
"PE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank Presentation",
"PE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Create New",
"PE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
"PE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
"PE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change Access Rights",
"PE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment",
"PE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By",
"PE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Created By",
"PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"PE.Views.FileMenuPanels.DocumentInfo.txtPresentationInfo": "Presentation Info",
"PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Users with Rights",
"PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject",
"PE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
"PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
"PE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Access Rights",
"PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change Access Rights",
"PE.Views.FileMenuPanels.DocumentRights.txtRights": "Users with Rights",
"PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning",
"PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Encrypt with Password",
"PE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Presentation",
"PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Add Signature",
"PE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "PE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature",
"PE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "<br>Adding an invisible digital signature ensures the integrity of the presentation",
"PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Presentation",
"PE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing will remove signatures from the presentation.<br>Are you sure you want to continue?",
"PE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "This presentation is password protected",
"PE.Views.FileMenuPanels.ProtectDoc.txtProtectPresentation": "Encrypt this presentation with a password",
"PE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Valid signature has been added to the presentation. Editing of this presentation is restricted.",
"PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "PE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid",
"PE.Views.FileMenuPanels.ProtectDoc.txtView": "View Signature",
"PE.Views.FileMenuPanels.RecentFiles.txtOpenRecent": "Open Recent",
"PE.Views.FileMenuPanels.Settings.okButtonText": "Apply",
"PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing Mode",
"PE.Views.FileMenuPanels.Settings.strFast": "Automatic",
"PE.Views.FileMenuPanels.Settings.strFontRender": "Font Rendering",
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignore Words in UPPERCASE",
"PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignore Words with Numbers",
"PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Macro Settings",
"PE.Views.FileMenuPanels.Settings.strPasteButton": "Show \"Paste Options\" button after performing paste operation",
"PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Show Other Users' Changes",
"PE.Views.FileMenuPanels.Settings.strStrict": "Manual",
"PE.Views.FileMenuPanels.Settings.strTheme": "Interface Theme",
"PE.Views.FileMenuPanels.Settings.strUnit": "Measurement Unit",
"PE.Views.FileMenuPanels.Settings.strZoom": "Default Zoom Ratio",
"PE.Views.FileMenuPanels.Settings.text10Minutes": "Every 10 minutes",
"PE.Views.FileMenuPanels.Settings.text30Minutes": "Every 30 minutes",
"PE.Views.FileMenuPanels.Settings.text5Minutes": "Every 5 minutes",
"PE.Views.FileMenuPanels.Settings.text60Minutes": "Every hour",
"PE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides",
"PE.Views.FileMenuPanels.Settings.textAutoRecover": "Auto Recover",
"PE.Views.FileMenuPanels.Settings.textAutoSave": "Auto Save",
"PE.Views.FileMenuPanels.Settings.textDisabled": "Disabled",
"PE.Views.FileMenuPanels.Settings.textForceSave": "Save intermediate versions",
"PE.Views.FileMenuPanels.Settings.textMinute": "Every minute",
"PE.Views.FileMenuPanels.Settings.txtAdvancedSettings": "Advanced Settings",
"PE.Views.FileMenuPanels.Settings.txtAll": "View All",
"PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "AutoCorrect Options...",
"PE.Views.FileMenuPanels.Settings.txtCacheMode": "Default Cache Mode",
"PE.Views.FileMenuPanels.Settings.txtCm": "cm",
"PE.Views.FileMenuPanels.Settings.txtCollaboration": "Collaboration",
"PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Editing and Saving",
"PE.Views.FileMenuPanels.Settings.txtFastTip": "Real-time collaborative editing. All",
"PE.Views.FileMenuPanels.Settings.txtFitSlide": "Fit to Page",
"PE.Views.FileMenuPanels.Settings.txtFitWidth": "Fit to Width",
"PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Special Characters",
"PE.Views.FileMenuPanels.Settings.txtInch": "inch",
"PE.Views.FileMenuPanels.Settings.txtLast": "Last Viewed",
"PE.Views.FileMenuPanels.Settings.txtMac": "Mac-like",
"PE.Views.FileMenuPanels.Settings.txtNative": "Native System",
"PE.Views.FileMenuPanels.Settings.txtProofing": "Proofing",
"PE.Views.FileMenuPanels.Settings.txtPt": "pt",
"PE.Views.FileMenuPanels.Settings.txtQuickPrint": "Show Quick Print button in editor header",
"PE.Views.FileMenuPanels.Settings.txtQuickPrintTip": "The file will be printed using the most recently selected printer or the default printer.",
"PE.Views.FileMenuPanels.Settings.txtRunMacros": "Enable All",
"PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Enable all macros without notification",
"PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Spell Check",
"PE.Views.FileMenuPanels.Settings.txtStopMacros": "Disable All",
"PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Disable all macros without notification",
"PE.Views.FileMenuPanels.Settings.txtStrictTip": "PE.Views.FileMenuPanels.Settings.txtStrictTip",
"PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Use Alt key on keyboard to navigate user interface",
"PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Use Option key on keyboard to navigate user interface",
"PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Show Notification",
"PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Disable all macros with notification",
"PE.Views.FileMenuPanels.Settings.txtWin": "Windows-like",
"PE.Views.FileMenuPanels.Settings.txtWorkspace": "Workspace",
"PE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Save As",
"PE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save Copy As",
"PE.Views.GridSettings.textCm": "cm",
"PE.Views.GridSettings.textCustom": "Custom",
"PE.Views.GridSettings.textSpacing": "Spacing",
"PE.Views.GridSettings.textTitle": "Grid Settings",
"PE.Views.HeaderFooterDialog.applyAllText": "Apply to All",
"PE.Views.HeaderFooterDialog.applyText": "Apply",
"PE.Views.HeaderFooterDialog.diffLanguage": "PE.Views.HeaderFooterDialog.diffLanguage",
"PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Warning",
"PE.Views.HeaderFooterDialog.textDateTime": "Date and Time",
"PE.Views.HeaderFooterDialog.textFixed": "Fixed",
"PE.Views.HeaderFooterDialog.textFooter": "Text in Footer",
"PE.Views.HeaderFooterDialog.textFormat": "Format",
"PE.Views.HeaderFooterDialog.textHFTitle": "Header and Footer",
"PE.Views.HeaderFooterDialog.textLang": "Language",
"PE.Views.HeaderFooterDialog.textNotes": "Notes and Handouts",
"PE.Views.HeaderFooterDialog.textNotTitle": "Don't show on title slide",
"PE.Views.HeaderFooterDialog.textPageNum": "Page Number",
"PE.Views.HeaderFooterDialog.textPreview": "Preview",
"PE.Views.HeaderFooterDialog.textSlide": "Slide",
"PE.Views.HeaderFooterDialog.textSlideNum": "Slide Number",
"PE.Views.HeaderFooterDialog.textTitle": "Footer Settings",
"PE.Views.HeaderFooterDialog.textUpdate": "Auto Update",
"PE.Views.HeaderFooterDialog.txtFooter": "Footer",
"PE.Views.HeaderFooterDialog.txtHeader": "Header",
"PE.Views.HyperlinkSettingsDialog.strDisplay": "Text to Display",
"PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link To",
"PE.Views.HyperlinkSettingsDialog.textDefault": "Selected Text Fragment",
"PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter title here",
"PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here",
"PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
"PE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
"PE.Views.HyperlinkSettingsDialog.textInternalLink": "Place in This Document",
"PE.Views.HyperlinkSettingsDialog.textSlides": "Slide Titles",
"PE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
"PE.Views.HyperlinkSettingsDialog.textTitle": "Insert Hyperlink",
"PE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required",
"PE.Views.HyperlinkSettingsDialog.txtFirst": "First Slide",
"PE.Views.HyperlinkSettingsDialog.txtLast": "Last Slide",
"PE.Views.HyperlinkSettingsDialog.txtNext": "Next Slide",
"PE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"PE.Views.HyperlinkSettingsDialog.txtPrev": "Previous Slide",
"PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters",
"PE.Views.HyperlinkSettingsDialog.txtSlide": "Slide",
"PE.Views.ImageSettings.textAdvanced": "Show Advanced Settings",
"PE.Views.ImageSettings.textCrop": "Crop",
"PE.Views.ImageSettings.textCropFill": "Fill",
"PE.Views.ImageSettings.textCropFit": "Fit",
"PE.Views.ImageSettings.textCropToShape": "Crop to Shape",
"PE.Views.ImageSettings.textEdit": "Change",
"PE.Views.ImageSettings.textEditObject": "Edit Object",
"PE.Views.ImageSettings.textFitSlide": "Fit to Page",
"PE.Views.ImageSettings.textFlip": "Flip",
"PE.Views.ImageSettings.textFromFile": "From File",
"PE.Views.ImageSettings.textFromStorage": "From Storage",
"PE.Views.ImageSettings.textFromUrl": "From URL",
"PE.Views.ImageSettings.textHeight": "Height",
"PE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise",
"PE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise",
"PE.Views.ImageSettings.textHintFlipH": "Flip Horizontal",
"PE.Views.ImageSettings.textHintFlipV": "Flip Vertical",
"PE.Views.ImageSettings.textInsert": "Change Picture",
"PE.Views.ImageSettings.textOriginalSize": "Original Size",
"PE.Views.ImageSettings.textRecentlyUsed": "Recently Used",
"PE.Views.ImageSettings.textRotate90": "Rotate 90°",
"PE.Views.ImageSettings.textRotation": "Rotation",
"PE.Views.ImageSettings.textSize": "Size",
"PE.Views.ImageSettings.textWidth": "Width",
"PE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
"PE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
"PE.Views.ImageSettingsAdvanced.textAltTip": "PE.Views.ImageSettingsAdvanced.textAltTip",
"PE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
"PE.Views.ImageSettingsAdvanced.textAngle": "Angle",
"PE.Views.ImageSettingsAdvanced.textCenter": "Center",
"PE.Views.ImageSettingsAdvanced.textFlipped": "Flipped",
"PE.Views.ImageSettingsAdvanced.textFrom": "Base Point",
"PE.Views.ImageSettingsAdvanced.textGeneral": "General",
"PE.Views.ImageSettingsAdvanced.textHeight": "Height",
"PE.Views.ImageSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
"PE.Views.ImageSettingsAdvanced.textImageName": "Image Name",
"PE.Views.ImageSettingsAdvanced.textKeepRatio": "Lock Aspect Ratio",
"PE.Views.ImageSettingsAdvanced.textOriginalSize": "Original Size",
"PE.Views.ImageSettingsAdvanced.textPlacement": "Size and Position",
"PE.Views.ImageSettingsAdvanced.textPosition": "Position",
"PE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"PE.Views.ImageSettingsAdvanced.textSize": "Size",
"PE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings",
"PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
"PE.Views.ImageSettingsAdvanced.textVertical": "Vertical",
"PE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"PE.Views.ImageSettingsAdvanced.textWidth": "Width",
"PE.Views.LeftMenu.tipAbout": "About",
"PE.Views.LeftMenu.tipChat": "Chat",
"PE.Views.LeftMenu.tipComments": "Comments",
"PE.Views.LeftMenu.tipPlugins": "Plugins",
"PE.Views.LeftMenu.tipSearch": "Search",
"PE.Views.LeftMenu.tipSlides": "Thumbnails",
"PE.Views.LeftMenu.tipSupport": "Feedback and Support",
"PE.Views.LeftMenu.tipTitles": "Titles",
"PE.Views.LeftMenu.txtDeveloper": "Developer Mode",
"PE.Views.LeftMenu.txtEditor": "Spreadsheet Editor",
"PE.Views.LeftMenu.txtLimit": "Limited Access",
"PE.Views.LeftMenu.txtTrial": "Trial Mode",
"PE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode",
"PE.Views.ParagraphSettings.strLineHeight": "Line Spacing",
"PE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing",
"PE.Views.ParagraphSettings.strSpacingAfter": "After",
"PE.Views.ParagraphSettings.strSpacingBefore": "Before",
"PE.Views.ParagraphSettings.textAdvanced": "Show Advanced Settings",
"PE.Views.ParagraphSettings.textAt": "At",
"PE.Views.ParagraphSettings.textAtLeast": "At Least",
"PE.Views.ParagraphSettings.textAuto": "Multiple",
"PE.Views.ParagraphSettings.textExact": "Exactly",
"PE.Views.ParagraphSettings.txtAutoText": "Auto",
"PE.Views.ParagraphSettingsAdvanced.noTabs": "Specified tabs will be displayed in this field",
"PE.Views.ParagraphSettingsAdvanced.strAllCaps": "All Caps",
"PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double Strikethrough",
"PE.Views.ParagraphSettingsAdvanced.strIndent": "Indent",
"PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
"PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
"PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before",
"PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special",
"PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font",
"PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents and Spacing",
"PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small Caps",
"PE.Views.ParagraphSettingsAdvanced.strSpacing": "Spacing",
"PE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough",
"PE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript",
"PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript",
"PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs",
"PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment",
"PE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
"PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing",
"PE.Views.ParagraphSettingsAdvanced.textDefault": "Default",
"PE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"PE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"PE.Views.ParagraphSettingsAdvanced.textFirstLine": "First Line",
"PE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging",
"PE.Views.ParagraphSettingsAdvanced.textJustified": "Justified",
"PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(None)",
"PE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
"PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All",
"PE.Views.ParagraphSettingsAdvanced.textSet": "Set",
"PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left",
"PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position",
"PE.Views.ParagraphSettingsAdvanced.textTabRight": "Right",
"PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings",
"PE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"PE.Views.PrintWithPreview.txtAllPages": "All Slides",
"PE.Views.PrintWithPreview.txtBothSides": "Print on Both Sides",
"PE.Views.PrintWithPreview.txtBothSidesLongDesc": "Flip pages on long edge",
"PE.Views.PrintWithPreview.txtBothSidesShortDesc": "Flip pages on short edge",
"PE.Views.PrintWithPreview.txtCopies": "Copies",
"PE.Views.PrintWithPreview.txtCurrentPage": "Current Slide",
"PE.Views.PrintWithPreview.txtCustomPages": "Custom Print",
"PE.Views.PrintWithPreview.txtEmptyTable": "The presentation does not contain printable content. The presentation is empty.",
"PE.Views.PrintWithPreview.txtHeaderFooterSettings": "Header/Footer Settings",
"PE.Views.PrintWithPreview.txtOf": "of {0}",
"PE.Views.PrintWithPreview.txtOneSide": "Print on One Side",
"PE.Views.PrintWithPreview.txtOneSideDesc": "Print pages on one side only",
"PE.Views.PrintWithPreview.txtPage": "Slide",
"PE.Views.PrintWithPreview.txtPageNumInvalid": "Invalid slide number",
"PE.Views.PrintWithPreview.txtPages": "Slides",
"PE.Views.PrintWithPreview.txtPaperSize": "Paper Size",
"PE.Views.PrintWithPreview.txtPrint": "Print",
"PE.Views.PrintWithPreview.txtPrintPdf": "Print as PDF",
"PE.Views.PrintWithPreview.txtPrintRange": "Print Range",
"PE.Views.PrintWithPreview.txtPrintSides": "Print on Both Sides",
"PE.Views.RightMenu.txtChartSettings": "Chart Settings",
"PE.Views.RightMenu.txtImageSettings": "Image Settings",
"PE.Views.RightMenu.txtParagraphSettings": "Paragraph Settings",
"PE.Views.RightMenu.txtShapeSettings": "Shape Settings",
"PE.Views.RightMenu.txtSignatureSettings": "Signature Settings",
"PE.Views.RightMenu.txtSlideSettings": "Slide Settings",
"PE.Views.RightMenu.txtTableSettings": "Table Settings",
"PE.Views.RightMenu.txtTextArtSettings": "Text Art Settings",
"PE.Views.ShapeSettings.strBackground": "Background Color",
"PE.Views.ShapeSettings.strChange": "Change AutoShape",
"PE.Views.ShapeSettings.strColor": "Color",
"PE.Views.ShapeSettings.strFill": "Fill",
"PE.Views.ShapeSettings.strForeground": "Foreground Color",
"PE.Views.ShapeSettings.strPattern": "Pattern",
"PE.Views.ShapeSettings.strShadow": "Show Shadow",
"PE.Views.ShapeSettings.strSize": "Width",
"PE.Views.ShapeSettings.strStroke": "Line",
"PE.Views.ShapeSettings.strTransparency": "Transparency",
"PE.Views.ShapeSettings.strType": "Type",
"PE.Views.ShapeSettings.textAdvanced": "Show Advanced Settings",
"PE.Views.ShapeSettings.textAngle": "Angle",
"PE.Views.ShapeSettings.textBorderSizeErr": "The value entered is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"PE.Views.ShapeSettings.textColor": "Color",
"PE.Views.ShapeSettings.textDirection": "Direction",
"PE.Views.ShapeSettings.textEditPoints": "Edit Points",
"PE.Views.ShapeSettings.textEditShape": "Edit Shape",
"PE.Views.ShapeSettings.textEmptyPattern": "No Pattern",
"PE.Views.ShapeSettings.textFlip": "Flip",
"PE.Views.ShapeSettings.textFromFile": "From File",
"PE.Views.ShapeSettings.textFromStorage": "From Storage",
"PE.Views.ShapeSettings.textFromUrl": "From URL",
"PE.Views.ShapeSettings.textGradient": "Gradient",
"PE.Views.ShapeSettings.textGradientFill": "Gradient Fill",
"PE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise",
"PE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise",
"PE.Views.ShapeSettings.textHintFlipH": "Flip Horizontal",
"PE.Views.ShapeSettings.textHintFlipV": "Flip Vertical",
"PE.Views.ShapeSettings.textImageTexture": "Image Texture",
"PE.Views.ShapeSettings.textLinear": "Linear",
"PE.Views.ShapeSettings.textNoFill": "No Fill",
"PE.Views.ShapeSettings.textPatternFill": "Pattern Fill",
"PE.Views.ShapeSettings.textPosition": "Position",
"PE.Views.ShapeSettings.textRadial": "Radial",
"PE.Views.ShapeSettings.textRecentlyUsed": "Recently Used",
"PE.Views.ShapeSettings.textRotate90": "Rotate 90°",
"PE.Views.ShapeSettings.textRotation": "Rotation",
"PE.Views.ShapeSettings.textSelectImage": "Select Image",
"PE.Views.ShapeSettings.textSelectTexture": "Select Texture",
"PE.Views.ShapeSettings.textStretch": "Stretch",
"PE.Views.ShapeSettings.textStyle": "Style",
"PE.Views.ShapeSettings.textTexture": "Texture",
"PE.Views.ShapeSettings.textTile": "Tile",
"PE.Views.ShapeSettings.tipAddGradientPoint": "Add Gradient Point",
"PE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove Gradient Point",
"PE.Views.ShapeSettings.txtBrownPaper": "Brown Paper",
"PE.Views.ShapeSettings.txtCanvas": "Canvas",
"PE.Views.ShapeSettings.txtCarton": "Carton",
"PE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric",
"PE.Views.ShapeSettings.txtGrain": "Grain",
"PE.Views.ShapeSettings.txtGranite": "Granite",
"PE.Views.ShapeSettings.txtGreyPaper": "Grey Paper",
"PE.Views.ShapeSettings.txtKnit": "Knit",
"PE.Views.ShapeSettings.txtLeather": "Leather",
"PE.Views.ShapeSettings.txtNoBorders": "No Borders",
"PE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"PE.Views.ShapeSettings.txtWood": "Wood",
"PE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
"PE.Views.ShapeSettingsAdvanced.strMargins": "Margins",
"PE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text",
"PE.Views.ShapeSettingsAdvanced.textAltDescription": "Description",
"PE.Views.ShapeSettingsAdvanced.textAltTip": "PE.Views.ShapeSettingsAdvanced.textAltTip",
"PE.Views.ShapeSettingsAdvanced.textAltTitle": "Title",
"PE.Views.ShapeSettingsAdvanced.textAngle": "Angle",
"PE.Views.ShapeSettingsAdvanced.textArrows": "Arrows",
"PE.Views.ShapeSettingsAdvanced.textAutofit": "Autofit",
"PE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size",
"PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style",
"PE.Views.ShapeSettingsAdvanced.textBevel": "Bevel",
"PE.Views.ShapeSettingsAdvanced.textBottom": "Bottom",
"PE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type",
"PE.Views.ShapeSettingsAdvanced.textCenter": "Center",
"PE.Views.ShapeSettingsAdvanced.textColNumber": "Number of Columns",
"PE.Views.ShapeSettingsAdvanced.textEndSize": "End Size",
"PE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style",
"PE.Views.ShapeSettingsAdvanced.textFlat": "Flat",
"PE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped",
"PE.Views.ShapeSettingsAdvanced.textFrom": "Base Point",
"PE.Views.ShapeSettingsAdvanced.textGeneral": "General",
"PE.Views.ShapeSettingsAdvanced.textHeight": "Height",
"PE.Views.ShapeSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally",
"PE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type",
"PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Lock Aspect Ratio",
"PE.Views.ShapeSettingsAdvanced.textLeft": "Left",
"PE.Views.ShapeSettingsAdvanced.textLineStyle": "Line",
"PE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
"PE.Views.ShapeSettingsAdvanced.textNofit": "Do Not Autofit",
"PE.Views.ShapeSettingsAdvanced.textPlacement": "Size and Position",
"PE.Views.ShapeSettingsAdvanced.textPosition": "Position",
"PE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize Shape to Fit Text",
"PE.Views.ShapeSettingsAdvanced.textRight": "Right",
"PE.Views.ShapeSettingsAdvanced.textRotation": "Rotation",
"PE.Views.ShapeSettingsAdvanced.textRound": "Round",
"PE.Views.ShapeSettingsAdvanced.textShapeName": "Shape Name",
"PE.Views.ShapeSettingsAdvanced.textShrink": "Shrink Text on Overflow",
"PE.Views.ShapeSettingsAdvanced.textSize": "Size",
"PE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing Between Columns",
"PE.Views.ShapeSettingsAdvanced.textSquare": "Square",
"PE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box",
"PE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings",
"PE.Views.ShapeSettingsAdvanced.textTop": "Top",
"PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
"PE.Views.ShapeSettingsAdvanced.textVertical": "Vertical",
"PE.Views.ShapeSettingsAdvanced.textVertically": "Vertically",
"PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Line and Arrows",
"PE.Views.ShapeSettingsAdvanced.textWidth": "Width",
"PE.Views.ShapeSettingsAdvanced.txtNone": "None",
"PE.Views.SignatureSettings.notcriticalErrorTitle": "Warning",
"PE.Views.SignatureSettings.strDelete": "Delete Signature",
"PE.Views.SignatureSettings.strDetails": "Signature Details",
"PE.Views.SignatureSettings.strInvalid": "Invalid Signature",
"PE.Views.SignatureSettings.strSign": "Sign",
"PE.Views.SignatureSettings.strSignature": "Signature",
"PE.Views.SignatureSettings.strValid": "Valid Signature",
"PE.Views.SignatureSettings.txtContinueEditing": "Continue Editing",
"PE.Views.SignatureSettings.txtEditWarning": "Editing will remove signatures from the presentation.<br>Are you sure you want to continue?",
"PE.Views.SignatureSettings.txtRemoveWarning": "Do you want to remove this signature?<br>This action cannot be undone.",
"PE.Views.SignatureSettings.txtSigned": "Valid signature has been added to the presentation. Editing of this presentation is restricted.",
"PE.Views.SignatureSettings.txtSignedInvalid": "Some digital signatures in the presentation are invalid or cannot be verified. Editing of this presentation is restricted.",
"PE.Views.SlideSettings.strBackground": "Background Color",
"PE.Views.SlideSettings.strColor": "Color",
"PE.Views.SlideSettings.strDateTime": "Show Date and Time",
"PE.Views.SlideSettings.strFill": "Background",
"PE.Views.SlideSettings.strForeground": "Foreground Color",
"PE.Views.SlideSettings.strPattern": "Pattern",
"PE.Views.SlideSettings.strSlideNum": "Show Slide Number",
"PE.Views.SlideSettings.strTransparency": "Darkness",
"PE.Views.SlideSettings.textAdvanced": "Show Advanced Settings",
"PE.Views.SlideSettings.textAngle": "Angle",
"PE.Views.SlideSettings.textColor": "Solid Fill",
"PE.Views.SlideSettings.textDirection": "Direction",
"PE.Views.SlideSettings.textEmptyPattern": "No Pattern",
"PE.Views.SlideSettings.textFromFile": "From File",
"PE.Views.SlideSettings.textFromStorage": "From Storage",
"PE.Views.SlideSettings.textFromUrl": "From URL",
"PE.Views.SlideSettings.textGradient": "Gradient",
"PE.Views.SlideSettings.textGradientFill": "Gradient Fill",
"PE.Views.SlideSettings.textImageTexture": "Image or Texture Fill",
"PE.Views.SlideSettings.textLinear": "Linear",
"PE.Views.SlideSettings.textNoFill": "No Fill",
"PE.Views.SlideSettings.textPatternFill": "Pattern Fill",
"PE.Views.SlideSettings.textPosition": "Position",
"PE.Views.SlideSettings.textRadial": "Radial",
"PE.Views.SlideSettings.textReset": "Reset Changes",
"PE.Views.SlideSettings.textSelectImage": "Select Image",
"PE.Views.SlideSettings.textSelectTexture": "Select",
"PE.Views.SlideSettings.textStretch": "Stretch",
"PE.Views.SlideSettings.textStyle": "Type",
"PE.Views.SlideSettings.textTexture": "Texture",
"PE.Views.SlideSettings.textTile": "Tile",
"PE.Views.SlideSettings.tipAddGradientPoint": "Add Gradient Point",
"PE.Views.SlideSettings.tipRemoveGradientPoint": "Remove Gradient Point",
"PE.Views.SlideSettings.txtBrownPaper": "Brown Paper",
"PE.Views.SlideSettings.txtCanvas": "Canvas",
"PE.Views.SlideSettings.txtCarton": "Carton",
"PE.Views.SlideSettings.txtDarkFabric": "Dark Fabric",
"PE.Views.SlideSettings.txtGrain": "Grain",
"PE.Views.SlideSettings.txtGranite": "Granite",
"PE.Views.SlideSettings.txtGreyPaper": "Grey Paper",
"PE.Views.SlideSettings.txtKnit": "Knit",
"PE.Views.SlideSettings.txtLeather": "Leather",
"PE.Views.SlideSettings.txtPapyrus": "Papyrus",
"PE.Views.SlideSettings.txtWood": "Wood",
"PE.Views.SlideshowSettings.textLoop": "Loop continuously until 'Esc'",
"PE.Views.SlideshowSettings.textTitle": "Slideshow Settings",
"PE.Views.SlideSizeSettings.strLandscape": "Landscape",
"PE.Views.SlideSizeSettings.strPortrait": "Portrait",
"PE.Views.SlideSizeSettings.textHeight": "Height",
"PE.Views.SlideSizeSettings.textSlideOrientation": "Slide Orientation",
"PE.Views.SlideSizeSettings.textSlideSize": "Slide Size",
"PE.Views.SlideSizeSettings.textTitle": "Slide Size Settings",
"PE.Views.SlideSizeSettings.textWidth": "Width",
"PE.Views.SlideSizeSettings.txt35": "35mm Slides",
"PE.Views.SlideSizeSettings.txtA3": "A3 (297x420 mm)",
"PE.Views.SlideSizeSettings.txtA4": "A4 (210x297 mm)",
"PE.Views.SlideSizeSettings.txtB4": "B4 (ISO) (250x353 mm)",
"PE.Views.SlideSizeSettings.txtB5": "B5 (ISO) (176x250 mm)",
"PE.Views.SlideSizeSettings.txtBanner": "Banner",
"PE.Views.SlideSizeSettings.txtCustom": "Custom",
"PE.Views.SlideSizeSettings.txtLedger": "Ledger (11x17 in)",
"PE.Views.SlideSizeSettings.txtLetter": "Letter (8.5x11 in)",
"PE.Views.SlideSizeSettings.txtOverhead": "Overhead",
"PE.Views.SlideSizeSettings.txtSlideNum": "Number Slides From",
"PE.Views.SlideSizeSettings.txtStandard": "Standard (4:3)",
"PE.Views.SlideSizeSettings.txtWidescreen": "Widescreen",
"PE.Views.Statusbar.goToPageText": "Go to Slide",
"PE.Views.Statusbar.pageIndexText": "Slide {0} of {1}",
"PE.Views.Statusbar.textShowBegin": "From Beginning",
"PE.Views.Statusbar.textShowCurrent": "From Current Slide",
"PE.Views.Statusbar.textShowPresenterView": "Use Presenter View",
"PE.Views.Statusbar.tipAccessRights": "Manage Document Access Rights",
"PE.Views.Statusbar.tipFitPage": "Fit to Page",
"PE.Views.Statusbar.tipFitWidth": "Fit to Width",
"PE.Views.Statusbar.tipPreview": "Slide Show",
"PE.Views.Statusbar.tipSetLang": "Set Text Language",
"PE.Views.Statusbar.tipZoomFactor": "Zoom",
"PE.Views.Statusbar.tipZoomIn": "Zoom In",
"PE.Views.Statusbar.tipZoomOut": "Zoom Out",
"PE.Views.Statusbar.txtPageNumInvalid": "Invalid slide number",
"PE.Views.TableSettings.deleteColumnText": "Delete Column",
"PE.Views.TableSettings.deleteRowText": "Delete Row",
"PE.Views.TableSettings.deleteTableText": "Delete Table",
"PE.Views.TableSettings.insertColumnLeftText": "Insert Column to the Left",
"PE.Views.TableSettings.insertColumnRightText": "Insert Column to the Right",
"PE.Views.TableSettings.insertRowAboveText": "Insert Row Above",
"PE.Views.TableSettings.insertRowBelowText": "Insert Row Below",
"PE.Views.TableSettings.mergeCellsText": "Merge Cells",
"PE.Views.TableSettings.selectCellText": "Select Cell",
"PE.Views.TableSettings.selectColumnText": "Select Column",
"PE.Views.TableSettings.selectRowText": "Select Row",
"PE.Views.TableSettings.selectTableText": "Select Table",
"PE.Views.TableSettings.splitCellsText": "Split Cells",
"PE.Views.TableSettings.splitCellTitleText": "Split Cells",
"PE.Views.TableSettings.textAdvanced": "Show Advanced Settings",
"PE.Views.TableSettings.textBackColor": "Background Color",
"PE.Views.TableSettings.textBanded": "Banded Rows",
"PE.Views.TableSettings.textColBanded": "Banded Columns",
"PE.Views.TableSettings.textBorderColor": "Color",
"PE.Views.TableSettings.textBorders": "Border Style",
"PE.Views.TableSettings.textCellSize": "Cell Size",
"PE.Views.TableSettings.textColumns": "Columns",
"PE.Views.TableSettings.textDistributeCols": "Distribute Columns Evenly",
"PE.Views.TableSettings.textDistributeRows": "Distribute Rows Evenly",
"PE.Views.TableSettings.textEdit": "Rows and Columns",
"PE.Views.TableSettings.textEmptyTemplate": "No Template",
"PE.Views.TableSettings.textFirst": "First Column",
"PE.Views.TableSettings.textHeader": "Header Row",
"PE.Views.TableSettings.textHeight": "Height",
"PE.Views.TableSettings.textLast": "Last Column",
"PE.Views.TableSettings.textRows": "Rows",
"PE.Views.TableSettings.textSelectBorders": "Select the borders you want to apply the style to",
"PE.Views.TableSettings.textTemplate": "Table Style",
"PE.Views.TableSettings.textTotal": "Total Row",
"PE.Views.TableSettings.textWidth": "Width",
"PE.Views.TableSettings.tipAll": "All Borders",
"PE.Views.TableSettings.tipBottom": "Bottom Border",
"PE.Views.TableSettings.tipInner": "Inner Borders",
"PE.Views.TableSettings.tipInnerHor": "Inner Horizontal Borders",
"PE.Views.TableSettings.tipInnerVert": "Inner Vertical Borders",
"PE.Views.TableSettings.tipLeft": "Left Border",
"PE.Views.TableSettings.tipNone": "No Borders",
"PE.Views.TableSettings.tipOuter": "Outer Borders",
"PE.Views.TableSettings.tipRight": "Right Border",
"PE.Views.TableSettings.tipTop": "Top Border",
"PE.Views.TableSettings.txtGroupTable_Custom": "Custom",
"PE.Views.TableSettings.txtGroupTable_Dark": "Dark",
"PE.Views.TableSettings.txtGroupTable_Light": "Light",
"PE.Views.TableSettings.txtGroupTable_Medium": "Medium",
"PE.Views.TableSettings.txtGroupTable_Optimal": "Best Match for File",
"PE.Views.TableSettings.txtNoBorders": "No Borders",
"PE.Views.TableSettings.txtTable_Accent": "Accent",
"PE.Views.TableSettings.txtTable_DarkStyle": "Dark Style",
"PE.Views.TableSettings.txtTable_LightStyle": "Light Style",
"PE.Views.TableSettings.txtTable_MediumStyle": "Medium Style",
"PE.Views.TableSettings.txtTable_NoGrid": "No Grid",
"PE.Views.TableSettings.txtTable_NoStyle": "No Style",
"PE.Views.TableSettings.txtTable_TableGrid": "Table Grid",
"PE.Views.TableSettings.txtTable_ThemedStyle": "Themed Style",
"PE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
"PE.Views.TableSettingsAdvanced.textAltDescription": "Description",
"PE.Views.TableSettingsAdvanced.textAltTip": "PE.Views.TableSettingsAdvanced.textAltTip",
"PE.Views.TableSettingsAdvanced.textAltTitle": "Title",
"PE.Views.TableSettingsAdvanced.textBottom": "Bottom",
"PE.Views.TableSettingsAdvanced.textCenter": "Center",
"PE.Views.TableSettingsAdvanced.textCheckMargins": "Use Default Margins",
"PE.Views.TableSettingsAdvanced.textDefaultMargins": "Default Margins",
"PE.Views.TableSettingsAdvanced.textFrom": "Base Point",
"PE.Views.TableSettingsAdvanced.textGeneral": "General",
"PE.Views.TableSettingsAdvanced.textHeight": "Height",
"PE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal",
"PE.Views.TableSettingsAdvanced.textKeepRatio": "Lock Aspect Ratio",
"PE.Views.TableSettingsAdvanced.textLeft": "Left",
"PE.Views.TableSettingsAdvanced.textMargins": "Cell Margins",
"PE.Views.TableSettingsAdvanced.textPlacement": "Size and Position",
"PE.Views.TableSettingsAdvanced.textPosition": "Position",
"PE.Views.TableSettingsAdvanced.textRight": "Right",
"PE.Views.TableSettingsAdvanced.textSize": "Size",
"PE.Views.TableSettingsAdvanced.textTableName": "Table Name",
"PE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
"PE.Views.TableSettingsAdvanced.textTop": "Top",
"PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Top Left Corner",
"PE.Views.TableSettingsAdvanced.textVertical": "Vertical",
"PE.Views.TableSettingsAdvanced.textWidth": "Width",
"PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margins",
"PE.Views.TextArtSettings.strBackground": "Background Color",
"PE.Views.TextArtSettings.strColor": "Color",
"PE.Views.TextArtSettings.strFill": "Text Fill",
"PE.Views.TextArtSettings.strForeground": "Foreground Color",
"PE.Views.TextArtSettings.strPattern": "Pattern",
"PE.Views.TextArtSettings.strSize": "Width",
"PE.Views.TextArtSettings.strStroke": "Text Outline",
"PE.Views.TextArtSettings.strTransparency": "Transparency",
"PE.Views.TextArtSettings.strType": "Type",
"PE.Views.TextArtSettings.textAngle": "Angle",
"PE.Views.TextArtSettings.textBorderSizeErr": "The value entered is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"PE.Views.TextArtSettings.textColor": "Solid Fill",
"PE.Views.TextArtSettings.textDirection": "Direction",
"PE.Views.TextArtSettings.textEmptyPattern": "No Pattern",
"PE.Views.TextArtSettings.textFromFile": "From File",
"PE.Views.TextArtSettings.textFromUrl": "From URL",
"PE.Views.TextArtSettings.textGradient": "Gradient",
"PE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"PE.Views.TextArtSettings.textImageTexture": "Image or Texture",
"PE.Views.TextArtSettings.textLinear": "Linear",
"PE.Views.TextArtSettings.textNoFill": "No Fill",
"PE.Views.TextArtSettings.textPatternFill": "Pattern Fill",
"PE.Views.TextArtSettings.textPosition": "Position",
"PE.Views.TextArtSettings.textRadial": "Radial",
"PE.Views.TextArtSettings.textSelectTexture": "Select",
"PE.Views.TextArtSettings.textStretch": "Stretch",
"PE.Views.TextArtSettings.textStyle": "Type",
"PE.Views.TextArtSettings.textTemplate": "Style",
"PE.Views.TextArtSettings.textTexture": "Texture",
"PE.Views.TextArtSettings.textTile": "Tile",
"PE.Views.TextArtSettings.textTransform": "Follow Path",
"PE.Views.TextArtSettings.tipAddGradientPoint": "Add Gradient Point",
"PE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove Gradient Point",
"PE.Views.TextArtSettings.txtBrownPaper": "Brown Paper",
"PE.Views.TextArtSettings.txtCanvas": "Canvas",
"PE.Views.TextArtSettings.txtCarton": "Carton",
"PE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric",
"PE.Views.TextArtSettings.txtGrain": "Grain",
"PE.Views.TextArtSettings.txtGranite": "Granite",
"PE.Views.TextArtSettings.txtGreyPaper": "Grey Paper",
"PE.Views.TextArtSettings.txtKnit": "Knit",
"PE.Views.TextArtSettings.txtLeather": "Leather",
"PE.Views.TextArtSettings.txtNoBorders": "No Borders",
"PE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"PE.Views.TextArtSettings.txtWood": "Wood",
"PE.Views.Toolbar.capAddSlide": "New Slide",
"PE.Views.Toolbar.capBtnAddComment": "Add Comment",
"PE.Views.Toolbar.capBtnComment": "Comments",
"PE.Views.Toolbar.capBtnDateTime": "Date and Time",
"PE.Views.Toolbar.capBtnInsHeader": "Header and Footer",
"PE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"PE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"PE.Views.Toolbar.capBtnSlideNum": "Slide Number",
"PE.Views.Toolbar.capInsertAudio": "Audio",
"PE.Views.Toolbar.capInsertChart": "Chart",
"PE.Views.Toolbar.capInsertEquation": "Equation",
"PE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
"PE.Views.Toolbar.capInsertImage": "Picture",
"PE.Views.Toolbar.capInsertShape": "Shape",
"PE.Views.Toolbar.capInsertTable": "Table",
"PE.Views.Toolbar.capInsertText": "Text Box",
"PE.Views.Toolbar.capInsertTextArt": "Text Art",
"PE.Views.Toolbar.capInsertVideo": "Video",
"PE.Views.Toolbar.capTabFile": "File",
"PE.Views.Toolbar.capTabHome": "Home",
"PE.Views.Toolbar.capTabInsert": "Insert",
"PE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word",
"PE.Views.Toolbar.mniCustomTable": "Insert Table",
"PE.Views.Toolbar.mniImageFromFile": "Local Image",
"PE.Views.Toolbar.mniImageFromStorage": "Image from Storage",
"PE.Views.Toolbar.mniImageFromUrl": "Online URL",
"PE.Views.Toolbar.mniInsertSSE": "Excel Spreadsheet",
"PE.Views.Toolbar.mniLowerCase": "lowercase",
"PE.Views.Toolbar.mniSentenceCase": "Sentence case",
"PE.Views.Toolbar.mniSlideAdvanced": "Custom Slide Size",
"PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)",
"PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)",
"PE.Views.Toolbar.mniToggleCase": "tOGGLE cASE",
"PE.Views.Toolbar.mniUpperCase": "UPPERCASE",
"PE.Views.Toolbar.strMenuNoFill": "No Fill",
"PE.Views.Toolbar.textAlignBottom": "Align Bottom",
"PE.Views.Toolbar.textAlignCenter": "Center",
"PE.Views.Toolbar.textAlignJust": "Justify",
"PE.Views.Toolbar.textAlignLeft": "Align Left",
"PE.Views.Toolbar.textAlignMiddle": "Align Middle",
"PE.Views.Toolbar.textAlignRight": "Align Right",
"PE.Views.Toolbar.textAlignTop": "Align Top",
"PE.Views.Toolbar.textAlpha": "Greek Small Letter Alpha",
"PE.Views.Toolbar.textArrangeBack": "Send to Back",
"PE.Views.Toolbar.textArrangeBackward": "Send Backward",
"PE.Views.Toolbar.textArrangeForward": "Bring Forward",
"PE.Views.Toolbar.textArrangeFront": "Bring to Front",
"PE.Views.Toolbar.textBetta": "Greek Small Letter Beta",
"PE.Views.Toolbar.textBlackHeart": "Black Heart",
"PE.Views.Toolbar.textBold": "Bold",
"PE.Views.Toolbar.textBullet": "Bullet",
"PE.Views.Toolbar.textColumnsCustom": "Custom Columns",
"PE.Views.Toolbar.textColumnsOne": "One Column",
"PE.Views.Toolbar.textColumnsThree": "Three Columns",
"PE.Views.Toolbar.textColumnsTwo": "Two Columns",
"PE.Views.Toolbar.textCopyright": "Copyright Sign",
"PE.Views.Toolbar.textDegree": "Degree Sign",
"PE.Views.Toolbar.textDelta": "Greek Small Letter Delta",
"PE.Views.Toolbar.textDivision": "Division Sign",
"PE.Views.Toolbar.textDollar": "Dollar Sign",
"PE.Views.Toolbar.textEuro": "Euro Sign",
"PE.Views.Toolbar.textGreaterEqual": "Greater-Than or Equal To",
"PE.Views.Toolbar.textInfinity": "Infinity",
"PE.Views.Toolbar.textItalic": "Italic",
"PE.Views.Toolbar.textLessEqual": "Less-Than or Equal To",
"PE.Views.Toolbar.textLetterPi": "Greek Small Letter Pi",
"PE.Views.Toolbar.textListSettings": "List Settings",
"PE.Views.Toolbar.textMoreSymbols": "More Symbols",
"PE.Views.Toolbar.textNotEqualTo": "Not Equal To",
"PE.Views.Toolbar.textOneHalf": "Vulgar Fraction One Half",
"PE.Views.Toolbar.textOneQuarter": "Vulgar Fraction One Quarter",
"PE.Views.Toolbar.textPlusMinus": "Plus-Minus Sign",
"PE.Views.Toolbar.textRecentlyUsed": "Recently Used Shapes",
"PE.Views.Toolbar.textRegistered": "Registered Sign",
"PE.Views.Toolbar.textSection": "Section Sign",
"PE.Views.Toolbar.textShapeAlignBottom": "Align Bottom",
"PE.Views.Toolbar.textShapeAlignCenter": "Align Center",
"PE.Views.Toolbar.textShapeAlignLeft": "Align Left",
"PE.Views.Toolbar.textShapeAlignMiddle": "Align Middle",
"PE.Views.Toolbar.textShapeAlignRight": "Align Right",
"PE.Views.Toolbar.textShapeAlignTop": "Align Top",
"PE.Views.Toolbar.textShowBegin": "From Beginning",
"PE.Views.Toolbar.textShowCurrent": "From Current Slide",
"PE.Views.Toolbar.textShowPresenterView": "Use Presenter View",
"PE.Views.Toolbar.textShowSettings": "Slideshow Settings",
"PE.Views.Toolbar.textSmile": "White Smiling Face",
"PE.Views.Toolbar.textSquareRoot": "Square Root",
"PE.Views.Toolbar.textStrikeout": "Strikethrough",
"PE.Views.Toolbar.textSubscript": "Subscript",
"PE.Views.Toolbar.textSuperscript": "Superscript",
"PE.Views.Toolbar.textTabAnimation": "Animation",
"PE.Views.Toolbar.textTabCollaboration": "Review",
"PE.Views.Toolbar.textTabDraw": "Draw",
"PE.Views.Toolbar.textTabFile": "File",
"PE.Views.Toolbar.textTabHome": "Home",
"PE.Views.Toolbar.textTabInsert": "Insert",
"PE.Views.Toolbar.textTabProtect": "Protect",
"PE.Views.Toolbar.textTabTransitions": "Transitions",
"PE.Views.Toolbar.textTabView": "View",
"PE.Views.Toolbar.textTilde": "Tilde",
"PE.Views.Toolbar.textTitleError": "Error",
"PE.Views.Toolbar.textTradeMark": "Trade Mark Sign",
"PE.Views.Toolbar.textUnderline": "Underline",
"PE.Views.Toolbar.textYen": "Yen Sign",
"PE.Views.Toolbar.textRmb": "Yuan Sign",
"PE.Views.Toolbar.tipAddSlide": "New Slide",
"PE.Views.Toolbar.tipBack": "Back",
"PE.Views.Toolbar.tipChangeCase": "Change Case",
"PE.Views.Toolbar.tipChangeChart": "Change Chart Type",
"PE.Views.Toolbar.tipChangeSlide": "Change Slide Layout",
"PE.Views.Toolbar.tipClearStyle": "Clear Style",
"PE.Views.Toolbar.tipColorSchemas": "Change Color Scheme",
"PE.Views.Toolbar.tipColumns": "Insert Columns",
"PE.Views.Toolbar.tipCopy": "Copy",
"PE.Views.Toolbar.tipCopyStyle": "Format Painter",
"PE.Views.Toolbar.tipCut": "Cut",
"PE.Views.Toolbar.tipDateTime": "Insert Current Date and Time",
"PE.Views.Toolbar.tipDecFont": "Decrease Font Size",
"PE.Views.Toolbar.tipDecPrLeft": "Decrease Indent",
"PE.Views.Toolbar.tipEditHeader": "Edit Header and Footer",
"PE.Views.Toolbar.tipFontColor": "Font Color",
"PE.Views.Toolbar.tipFontName": "Font",
"PE.Views.Toolbar.tipFontSize": "Font Size",
"PE.Views.Toolbar.tipHAligh": "Horizontal Alignment",
"PE.Views.Toolbar.tipHighlightColor": "Highlight",
"PE.Views.Toolbar.tipIncFont": "Increase Font Size",
"PE.Views.Toolbar.tipIncPrLeft": "Increase Indent",
"PE.Views.Toolbar.tipInsertAudio": "Insert Audio",
"PE.Views.Toolbar.tipInsertChart": "Insert Chart",
"PE.Views.Toolbar.tipInsertEquation": "Insert Equation",
"PE.Views.Toolbar.tipInsertHorizontalText": "Horizontal Text Box",
"PE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink",
"PE.Views.Toolbar.tipInsertImage": "Insert Picture",
"PE.Views.Toolbar.tipInsertShape": "Insert Shape",
"PE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt",
"PE.Views.Toolbar.tipInsertSymbol": "Insert Symbol",
"PE.Views.Toolbar.tipInsertTable": "Insert Table",
"PE.Views.Toolbar.tipInsertText": "Insert Text Box",
"PE.Views.Toolbar.tipInsertTextArt": "Insert Text Art",
"PE.Views.Toolbar.tipInsertVerticalText": "Vertical Text Box",
"PE.Views.Toolbar.tipInsertVideo": "Insert Video",
"PE.Views.Toolbar.tipLineSpace": "Line Spacing",
"PE.Views.Toolbar.tipMarkers": "Bullets",
"PE.Views.Toolbar.tipMarkersArrow": "Arrow Bullet",
"PE.Views.Toolbar.tipMarkersCheckmark": "Checkmark Bullet",
"PE.Views.Toolbar.tipMarkersDash": "Dash Bullet",
"PE.Views.Toolbar.tipMarkersFRhombus": "Filled Rhombus Bullet",
"PE.Views.Toolbar.tipMarkersFRound": "Filled Round Bullet",
"PE.Views.Toolbar.tipMarkersFSquare": "Filled Square Bullet",
"PE.Views.Toolbar.tipMarkersHRound": "Hollow Round Bullet",
"PE.Views.Toolbar.tipMarkersStar": "Star Bullet",
"PE.Views.Toolbar.tipNone": "None",
"PE.Views.Toolbar.tipNumbers": "Numbering",
"PE.Views.Toolbar.tipPaste": "Paste",
"PE.Views.Toolbar.tipPreview": "Slide Show",
"PE.Views.Toolbar.tipPrint": "Print",
"PE.Views.Toolbar.tipPrintQuick": "Quick Print",
"PE.Views.Toolbar.tipRedo": "Redo",
"PE.Views.Toolbar.tipSave": "Save",
"PE.Views.Toolbar.tipSaveCoauth": "Save your changes for other users to see",
"PE.Views.Toolbar.tipSelectAll": "Select All",
"PE.Views.Toolbar.tipShapeAlign": "Align Shapes",
"PE.Views.Toolbar.tipShapeArrange": "Arrange Shapes",
"PE.Views.Toolbar.tipSlideNum": "Insert Slide Number",
"PE.Views.Toolbar.tipSlideSize": "Slide Size",
"PE.Views.Toolbar.tipSlideTheme": "Slide Theme",
"PE.Views.Toolbar.tipUndo": "Undo",
"PE.Views.Toolbar.tipVAligh": "Vertical Alignment",
"PE.Views.Toolbar.tipViewSettings": "View Settings",
"PE.Views.Toolbar.txtDistribHor": "Distribute Horizontally",
"PE.Views.Toolbar.txtDistribVert": "Distribute Vertically",
"PE.Views.Toolbar.txtDuplicateSlide": "Duplicate Slide",
"PE.Views.Toolbar.txtGroup": "Group",
"PE.Views.Toolbar.txtObjectsAlign": "Align Selected Objects",
"PE.Views.Toolbar.txtScheme1": "Office",
"PE.Views.Toolbar.txtScheme10": "Median",
"PE.Views.Toolbar.txtScheme11": "Metro",
"PE.Views.Toolbar.txtScheme12": "Module",
"PE.Views.Toolbar.txtScheme13": "Opulent",
"PE.Views.Toolbar.txtScheme14": "Oriel",
"PE.Views.Toolbar.txtScheme15": "Origin",
"PE.Views.Toolbar.txtScheme16": "Paper",
"PE.Views.Toolbar.txtScheme17": "Solstice",
"PE.Views.Toolbar.txtScheme18": "Technic",
"PE.Views.Toolbar.txtScheme19": "Trek",
"PE.Views.Toolbar.txtScheme2": "Grayscale",
"PE.Views.Toolbar.txtScheme20": "Urban",
"PE.Views.Toolbar.txtScheme21": "Verve",
"PE.Views.Toolbar.txtScheme22": "New Office",
"PE.Views.Toolbar.txtScheme3": "Apex",
"PE.Views.Toolbar.txtScheme4": "Aspect",
"PE.Views.Toolbar.txtScheme5": "Civic",
"PE.Views.Toolbar.txtScheme6": "Concourse",
"PE.Views.Toolbar.txtScheme7": "Equity",
"PE.Views.Toolbar.txtScheme8": "Flow",
"PE.Views.Toolbar.txtScheme9": "Foundry",
"PE.Views.Toolbar.txtSlideAlign": "Align to Slide",
"PE.Views.Toolbar.txtUngroup": "Ungroup",
"PE.Views.Transitions.strDelay": "Advance Slide After",
"PE.Views.Transitions.strDuration": "Duration",
"PE.Views.Transitions.strStartOnClick": "On Mouse Click",
"PE.Views.Transitions.textBlack": "Black",
"PE.Views.Transitions.textBottom": "From Bottom",
"PE.Views.Transitions.textBottomLeft": "From Bottom Left",
"PE.Views.Transitions.textBottomRight": "From Bottom Right",
"PE.Views.Transitions.textClock": "Clock",
"PE.Views.Transitions.textClockwise": "Clockwise",
"PE.Views.Transitions.textCounterclockwise": "Counterclockwise",
"PE.Views.Transitions.textCover": "Cover",
"PE.Views.Transitions.textFade": "Fade",
"PE.Views.Transitions.textHorizontalIn": "Horizontal In",
"PE.Views.Transitions.textHorizontalOut": "Horizontal Out",
"PE.Views.Transitions.textLeft": "From Left",
"PE.Views.Transitions.textMorph": "Morph",
"PE.Views.Transitions.textMorphLetters": "Letters",
"PE.Views.Transitions.textMorphObjects": "Objects",
"PE.Views.Transitions.textMorphWord": "Words",
"PE.Views.Transitions.textNone": "None",
"PE.Views.Transitions.textPush": "Push",
"PE.Views.Transitions.textRight": "From Right",
"PE.Views.Transitions.textSmoothly": "Smoothly",
"PE.Views.Transitions.textSplit": "Split",
"PE.Views.Transitions.textTop": "From Top",
"PE.Views.Transitions.textTopLeft": "From Top Left",
"PE.Views.Transitions.textTopRight": "From Top Right",
"PE.Views.Transitions.textUnCover": "Uncover",
"PE.Views.Transitions.textVerticalIn": "Vertical In",
"PE.Views.Transitions.textVerticalOut": "Vertical Out",
"PE.Views.Transitions.textWedge": "Wedge",
"PE.Views.Transitions.textWipe": "Wipe",
"PE.Views.Transitions.textZoom": "Zoom",
"PE.Views.Transitions.textZoomIn": "Zoom In",
"PE.Views.Transitions.textZoomOut": "Zoom Out",
"PE.Views.Transitions.textZoomRotate": "Zoom and Rotate",
"PE.Views.Transitions.txtApplyToAll": "Apply to All Slides",
"PE.Views.Transitions.txtParameters": "Effect Options",
"PE.Views.Transitions.txtPreview": "Preview",
"PE.Views.Transitions.txtSec": "s",
"PE.Views.ViewTab.textAddHGuides": "Add Horizontal Guide",
"PE.Views.ViewTab.textAddVGuides": "Add Vertical Guide",
"PE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
"PE.Views.ViewTab.textClearGuides": "Clear Guides",
"PE.Views.ViewTab.textCm": "cm",
"PE.Views.ViewTab.textCustom": "Custom",
"PE.Views.ViewTab.textFitToSlide": "Fit to Page",
"PE.Views.ViewTab.textFitToWidth": "Fit to Width",
"PE.Views.ViewTab.textGridlines": "Gridlines",
"PE.Views.ViewTab.textGuides": "Guides",
"PE.Views.ViewTab.textInterfaceTheme": "Interface Theme",
"PE.Views.ViewTab.textLeftMenu": "Left Panel",
"PE.Views.ViewTab.textNotes": "Notes",
"PE.Views.ViewTab.textRightMenu": "Right Panel",
"PE.Views.ViewTab.textRulers": "Rulers",
"PE.Views.ViewTab.textShowGridlines": "Show Gridlines",
"PE.Views.ViewTab.textShowGuides": "Show Guides",
"PE.Views.ViewTab.textSmartGuides": "Smart Guides",
"PE.Views.ViewTab.textSnapObjects": "Snap Objects to Grid",
"PE.Views.ViewTab.textStatusBar": "Status Bar",
"PE.Views.ViewTab.textZoom": "Zoom",
"PE.Views.ViewTab.tipFitToSlide": "Fit to Page",
"PE.Views.ViewTab.tipFitToWidth": "Fit to Width",
"PE.Views.ViewTab.tipGridlines": "Show Gridlines",
"PE.Views.ViewTab.tipGuides": "Show Guides",
"PE.Views.ViewTab.tipInterfaceTheme": "Interface Theme"
}