en.json
278 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
{
"Common.Controllers.Chat.notcriticalErrorTitle": "Warning",
"Common.Controllers.Chat.textEnterMessage": "Enter your message here",
"Common.Controllers.History.notcriticalErrorTitle": "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": "3-D Clustered Column Chart",
"Common.define.chartData.textBarNormal3dPerspective": "3-D Column Chart",
"Common.define.chartData.textBarStacked": "Stacked Column Chart",
"Common.define.chartData.textBarStacked3d": "3-D Stacked Column Chart",
"Common.define.chartData.textBarStackedPer": "100% Stacked Column Chart",
"Common.define.chartData.textBarStackedPer3d": "3-D 100% Stacked Column Chart",
"Common.define.chartData.textCharts": "Chart",
"Common.define.chartData.textColumn": "Column Chart",
"Common.define.chartData.textColumnSpark": "Column Sparkline",
"Common.define.chartData.textCombo": "Combo Chart",
"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 on Secondary Axis",
"Common.define.chartData.textComboCustom": "Custom Combination",
"Common.define.chartData.textDoughnut": "Doughnut Chart",
"Common.define.chartData.textHBarNormal": "Clustered Bar Chart",
"Common.define.chartData.textHBarNormal3d": "3-D Clustered Bar Chart",
"Common.define.chartData.textHBarStacked": "Stacked Bar Chart",
"Common.define.chartData.textHBarStacked3d": "3-D Stacked Bar Chart",
"Common.define.chartData.textHBarStackedPer": "100% Stacked Bar Chart",
"Common.define.chartData.textHBarStackedPer3d": "3-D 100% Stacked Bar Chart",
"Common.define.chartData.textLine": "Line Chart",
"Common.define.chartData.textLine3d": "3-D Line Chart",
"Common.define.chartData.textLineMarker": "Line Chart with Markers",
"Common.define.chartData.textLineSpark": "Line Sparkline",
"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": "3-D Pie Chart",
"Common.define.chartData.textPoint": "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": "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.textSparks": "Sparklines",
"Common.define.chartData.textStock": "Stock Chart",
"Common.define.chartData.textSurface": "Surface Chart",
"Common.define.chartData.textWinLossSpark": "Win/Loss Sparkline",
"Common.define.conditionalData.exampleText": "AaBbCcYyZz",
"Common.define.conditionalData.noFormatText": "No Format Set",
"Common.define.conditionalData.text1Above": "1 Standard Deviation Above",
"Common.define.conditionalData.text1Below": "1 Standard Deviation Below",
"Common.define.conditionalData.text2Above": "2 Standard Deviations Above",
"Common.define.conditionalData.text2Below": "2 Standard Deviations Below",
"Common.define.conditionalData.text3Above": "3 Standard Deviations Above",
"Common.define.conditionalData.text3Below": "3 Standard Deviations Below",
"Common.define.conditionalData.textAbove": "Above",
"Common.define.conditionalData.textAverage": "Average",
"Common.define.conditionalData.textBegins": "Begins With",
"Common.define.conditionalData.textBelow": "Below",
"Common.define.conditionalData.textBetween": "Between",
"Common.define.conditionalData.textBlank": "Blank",
"Common.define.conditionalData.textBlanks": "Contains Blanks",
"Common.define.conditionalData.textBottom": "Bottom",
"Common.define.conditionalData.textContains": "Contains",
"Common.define.conditionalData.textDataBar": "Data Bar",
"Common.define.conditionalData.textDate": "Date",
"Common.define.conditionalData.textDuplicate": "Duplicate",
"Common.define.conditionalData.textEnds": "Ends With",
"Common.define.conditionalData.textEqAbove": "Equal to or Above",
"Common.define.conditionalData.textEqBelow": "Equal to or Below",
"Common.define.conditionalData.textEqual": "Equal",
"Common.define.conditionalData.textError": "Error",
"Common.define.conditionalData.textErrors": "Contains Errors",
"Common.define.conditionalData.textFormula": "Formula",
"Common.define.conditionalData.textGreater": "Greater Than",
"Common.define.conditionalData.textGreaterEq": "Greater Than or Equal",
"Common.define.conditionalData.textIconSets": "Icon Sets",
"Common.define.conditionalData.textLast7days": "Last 7 Days",
"Common.define.conditionalData.textLastMonth": "Last Month",
"Common.define.conditionalData.textLastWeek": "Last Week",
"Common.define.conditionalData.textLess": "Less Than",
"Common.define.conditionalData.textLessEq": "Less Than or Equal",
"Common.define.conditionalData.textNextMonth": "Next Month",
"Common.define.conditionalData.textNextWeek": "Next Week",
"Common.define.conditionalData.textNotBetween": "Not Between",
"Common.define.conditionalData.textNotBlanks": "Does Not Contain Blanks",
"Common.define.conditionalData.textNotContains": "Does Not Contain",
"Common.define.conditionalData.textNotEqual": "Not Equal",
"Common.define.conditionalData.textNotErrors": "Does Not Contain Errors",
"Common.define.conditionalData.textText": "Text",
"Common.define.conditionalData.textThisMonth": "This Month",
"Common.define.conditionalData.textThisWeek": "This Week",
"Common.define.conditionalData.textToday": "Today",
"Common.define.conditionalData.textTomorrow": "Tomorrow",
"Common.define.conditionalData.textTop": "Top",
"Common.define.conditionalData.textUnique": "Unique",
"Common.define.conditionalData.textValue": "Value",
"Common.define.conditionalData.textYesterday": "Yesterday",
"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": "Organization Chart",
"Common.define.smartArt.textArrowRibbon": "Ribbon Arrow",
"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": "Circular 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": "Radial Hexagon",
"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 it 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": "Dark Contrast",
"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": "License",
"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.textApplyAsWork": "Apply as You Work",
"Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect",
"Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type",
"Common.Views.AutoCorrectDialog.textBy": "By",
"Common.Views.AutoCorrectDialog.textDelete": "Delete",
"Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks",
"Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect",
"Common.Views.AutoCorrectDialog.textNewRowCol": "Tables with new rows and columns",
"Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions",
"Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized as math functions. They will not be automatically set to italic.",
"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.textWarnAddRec": "Recognized functions can only contain letters A to Z, uppercase or lowercase.",
"Common.Views.AutoCorrectDialog.textWarnResetRec": "Expressions added by you will be removed, and those removed by you will be restored. Continue?",
"Common.Views.AutoCorrectDialog.warnReplace": "AutoCorrect entry for %1 already exists. Do you want to replace it?",
"Common.Views.AutoCorrectDialog.warnReset": "This will remove all custom AutoCorrect settings and restore defaults. Continue?",
"Common.Views.AutoCorrectDialog.warnRestore": "AutoCorrect entry for %1 will be reset to its original value. Do you want to continue?",
"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": "From Top",
"Common.Views.Comments.mniPositionDesc": "From Bottom",
"Common.Views.Comments.textAdd": "Add",
"Common.Views.Comments.textAddComment": "Add Comment",
"Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document",
"Common.Views.Comments.textAddReply": "Add Reply",
"Common.Views.Comments.textAll": "All",
"Common.Views.Comments.textAnonym": "Guest",
"Common.Views.Comments.textCancel": "Cancel",
"Common.Views.Comments.textClose": "Close",
"Common.Views.Comments.textClosePanel": "Close Comments",
"Common.Views.Comments.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 worksheet.",
"Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again",
"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.EditNameDialog.textLabel": "Label:",
"Common.Views.EditNameDialog.textLabelError": "Label cannot be empty",
"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.textHideStatusBar": "Merge Worksheet and 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": "Required field",
"Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"Common.Views.ListSettingsDialog.textBulleted": "Bulleted",
"Common.Views.ListSettingsDialog.textFromFile": "Import 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.textInvalidRange": "Invalid cell range",
"Common.Views.OpenDialog.textSelectData": "Select Data",
"Common.Views.OpenDialog.txtAdvanced": "Advanced",
"Common.Views.OpenDialog.txtColon": "Colon",
"Common.Views.OpenDialog.txtComma": "Comma",
"Common.Views.OpenDialog.txtDelimiter": "Field Delimiter",
"Common.Views.OpenDialog.txtDestData": "Select where to place this data",
"Common.Views.OpenDialog.txtEmpty": "This field is required",
"Common.Views.OpenDialog.txtEncoding": "Encoding",
"Common.Views.OpenDialog.txtIncorrectPwd": "Incorrect password",
"Common.Views.OpenDialog.txtOpenFile": "Enter password to open file",
"Common.Views.OpenDialog.txtOther": "Other",
"Common.Views.OpenDialog.txtPassword": "Password",
"Common.Views.OpenDialog.txtPreview": "Preview",
"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.txtSemicolon": "Semicolon",
"Common.Views.OpenDialog.txtSpace": "Space",
"Common.Views.OpenDialog.txtTab": "Tab",
"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": "Passwords do 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": "Modify 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 with 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 current 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 Current 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": "+ User will be notified 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.textByColumns": "By Columns",
"Common.Views.SearchPanel.textByRows": "By Rows",
"Common.Views.SearchPanel.textCaseSensitive": "Match Case",
"Common.Views.SearchPanel.textCell": "Cell",
"Common.Views.SearchPanel.textCloseSearch": "Close Search",
"Common.Views.SearchPanel.textContentChanged": "File has been changed.",
"Common.Views.SearchPanel.textFind": "Find",
"Common.Views.SearchPanel.textFindAndReplace": "Find and Replace",
"Common.Views.SearchPanel.textFormula": "Formula",
"Common.Views.SearchPanel.textFormulas": "Formulas",
"Common.Views.SearchPanel.textItemEntireCell": "Match Entire Cell",
"Common.Views.SearchPanel.textItemsSuccessfullyReplaced": "{0} items replaced successfully.",
"Common.Views.SearchPanel.textLookIn": "Look In",
"Common.Views.SearchPanel.textMatchUsingRegExp": "Use Regular Expressions",
"Common.Views.SearchPanel.textName": "Name",
"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.textSearch": "Search",
"Common.Views.SearchPanel.textSearchAgain": "{0}Perform a new search{1} to get accurate results.",
"Common.Views.SearchPanel.textSearchHasStopped": "Search has stopped",
"Common.Views.SearchPanel.textSearchOptions": "Search Options",
"Common.Views.SearchPanel.textSearchResults": "Search Results: {0}/{1}",
"Common.Views.SearchPanel.textSelectDataRange": "Select Data Range",
"Common.Views.SearchPanel.textSheet": "Sheet",
"Common.Views.SearchPanel.textSpecificRange": "Specific Range",
"Common.Views.SearchPanel.textTooManyResults": "Too many results to display here",
"Common.Views.SearchPanel.textValue": "Value",
"Common.Views.SearchPanel.textValues": "Values",
"Common.Views.SearchPanel.textWholeWords": "Match Whole Words",
"Common.Views.SearchPanel.textWithin": "Within",
"Common.Views.SearchPanel.textWorkbook": "Workbook",
"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",
"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 the 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": "Required field",
"Common.Views.SymbolTableDialog.textCharacter": "Character",
"Common.Views.SymbolTableDialog.textCode": "Unicode hex value",
"Common.Views.SymbolTableDialog.textCopyright": "Copyright",
"Common.Views.SymbolTableDialog.textDCQuote": "Double closing quote",
"Common.Views.SymbolTableDialog.textDOQuote": "Double opening 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": "Paragraph mark",
"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": "Single closing quote",
"Common.Views.SymbolTableDialog.textSection": "Section mark",
"Common.Views.SymbolTableDialog.textShortcut": "Shortcut",
"Common.Views.SymbolTableDialog.textSHyphen": "Soft hyphen",
"Common.Views.SymbolTableDialog.textSOQuote": "Single opening quote",
"Common.Views.SymbolTableDialog.textSpecial": "Special Characters",
"Common.Views.SymbolTableDialog.textSymbols": "Symbols",
"Common.Views.SymbolTableDialog.textTitle": "Symbol",
"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",
"SSE.Controllers.DataTab.strSheet": "Sheet",
"SSE.Controllers.DataTab.textAddExternalData": "Add External Data",
"SSE.Controllers.DataTab.textColumns": "Columns",
"SSE.Controllers.DataTab.textDontUpdate": "Don't Update",
"SSE.Controllers.DataTab.textEmptyUrl": "You must specify a URL.",
"SSE.Controllers.DataTab.textRows": "Rows",
"SSE.Controllers.DataTab.textUpdate": "Update",
"SSE.Controllers.DataTab.textWizard": "Text to Columns Wizard",
"SSE.Controllers.DataTab.txtDataValidation": "Data Validation",
"SSE.Controllers.DataTab.txtErrorExternalLink": "Error: Update failed",
"SSE.Controllers.DataTab.txtExpand": "Expand Selection",
"SSE.Controllers.DataTab.txtExpandRemDuplicates": "Expand Selection and Remove Duplicates",
"SSE.Controllers.DataTab.txtExtendDataValidation": "Extend Data Validation",
"SSE.Controllers.DataTab.txtImportWizard": "Text Import Wizard",
"SSE.Controllers.DataTab.txtRemDuplicates": "Remove Duplicates",
"SSE.Controllers.DataTab.txtRemoveDataValidation": "The selected range contains multiple types of data validation.<br> Clear current settings and continue?",
"SSE.Controllers.DataTab.txtRemSelected": "Current Selection",
"SSE.Controllers.DataTab.txtUrlTitle": "Paste URL Data",
"SSE.Controllers.DataTab.warnUpdateExternalData": "",
"SSE.Controllers.DocumentHolder.alignmentText": "Alignment",
"SSE.Controllers.DocumentHolder.centerText": "Center",
"SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column",
"SSE.Controllers.DocumentHolder.deleteRowText": "Delete Row",
"SSE.Controllers.DocumentHolder.deleteText": "Delete",
"SSE.Controllers.DocumentHolder.errorInvalidLink": "The link reference does not exist. Please modify or delete the link.",
"SSE.Controllers.DocumentHolder.guestText": "Guest",
"SSE.Controllers.DocumentHolder.insertColumnLeftText": "Insert Column Left",
"SSE.Controllers.DocumentHolder.insertColumnRightText": "Insert Column Right",
"SSE.Controllers.DocumentHolder.insertRowAboveText": "Insert Row Above",
"SSE.Controllers.DocumentHolder.insertRowBelowText": "Insert Row Below",
"SSE.Controllers.DocumentHolder.insertText": "Insert",
"SSE.Controllers.DocumentHolder.leftText": "Left",
"SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Warning",
"SSE.Controllers.DocumentHolder.rightText": "Right",
"SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "AutoCorrect Options",
"SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column width {0} characters ({1} pixels)",
"SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row height {0} points ({1} pixels)",
"SSE.Controllers.DocumentHolder.textCtrlClick": "Click link to open, or click and hold to select cell.",
"SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Column Left",
"SSE.Controllers.DocumentHolder.textInsertTop": "Insert Row Above",
"SSE.Controllers.DocumentHolder.textPasteSpecial": "Paste Special",
"SSE.Controllers.DocumentHolder.textStopExpand": "Stop Auto-Expanding Table",
"SSE.Controllers.DocumentHolder.textSym": "characters",
"SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.",
"SSE.Controllers.DocumentHolder.txtAboveAve": "Above Average",
"SSE.Controllers.DocumentHolder.txtAddBottom": "Add Bottom Border",
"SSE.Controllers.DocumentHolder.txtAddFractionBar": "Add Fraction Bar",
"SSE.Controllers.DocumentHolder.txtAddHor": "Add spacing between paragraphs of the same style",
"SSE.Controllers.DocumentHolder.txtAddLB": "Add Left Bottom Border",
"SSE.Controllers.DocumentHolder.txtAddLeft": "Add Left Border",
"SSE.Controllers.DocumentHolder.txtAddLT": "Add Left Top Border",
"SSE.Controllers.DocumentHolder.txtAddRight": "Add Right Border",
"SSE.Controllers.DocumentHolder.txtAddTop": "Add Top Border",
"SSE.Controllers.DocumentHolder.txtAddVer": "Add Vertical Line",
"SSE.Controllers.DocumentHolder.txtAlignToChar": "Align to Character",
"SSE.Controllers.DocumentHolder.txtAll": "(All)",
"SSE.Controllers.DocumentHolder.txtAllTableHint": "Returns all content of a table or specified table column, including column headers, data, and totals row",
"SSE.Controllers.DocumentHolder.txtAnd": "And",
"SSE.Controllers.DocumentHolder.txtBegins": "Begins With",
"SSE.Controllers.DocumentHolder.txtBelowAve": "Below Average",
"SSE.Controllers.DocumentHolder.txtBlanks": "(Blanks)",
"SSE.Controllers.DocumentHolder.txtBorderProps": "Border Properties",
"SSE.Controllers.DocumentHolder.txtBottom": "Bottom",
"SSE.Controllers.DocumentHolder.txtByField": "%1/%2",
"SSE.Controllers.DocumentHolder.txtColumn": "Column",
"SSE.Controllers.DocumentHolder.txtColumnAlign": "Column Alignment",
"SSE.Controllers.DocumentHolder.txtContains": "Contains",
"SSE.Controllers.DocumentHolder.txtCopySuccess": "Link copied to clipboard",
"SSE.Controllers.DocumentHolder.txtDataTableHint": "Returns data cells of a table or specified table column",
"SSE.Controllers.DocumentHolder.txtDecreaseArg": "Decrease argument size",
"SSE.Controllers.DocumentHolder.txtDeleteArg": "Delete argument",
"SSE.Controllers.DocumentHolder.txtDeleteBreak": "Delete manual break",
"SSE.Controllers.DocumentHolder.txtDeleteChars": "Delete enclosing characters",
"SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators",
"SSE.Controllers.DocumentHolder.txtDeleteEq": "Delete equation",
"SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Delete character",
"SSE.Controllers.DocumentHolder.txtDeleteRadical": "Delete radical",
"SSE.Controllers.DocumentHolder.txtEnds": "Ends With",
"SSE.Controllers.DocumentHolder.txtEquals": "Equals",
"SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Equals to Cell Color",
"SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Equals to Font Color",
"SSE.Controllers.DocumentHolder.txtExpand": "Expand and Sort",
"SSE.Controllers.DocumentHolder.txtExpandSort": "",
"SSE.Controllers.DocumentHolder.txtFilterBottom": "Bottom",
"SSE.Controllers.DocumentHolder.txtFilterTop": "Top",
"SSE.Controllers.DocumentHolder.txtFractionLinear": "Change to Linear Fraction",
"SSE.Controllers.DocumentHolder.txtFractionSkewed": "Change to Skewed Fraction",
"SSE.Controllers.DocumentHolder.txtFractionStacked": "Change to Stacked Fraction",
"SSE.Controllers.DocumentHolder.txtGreater": "Greater Than",
"SSE.Controllers.DocumentHolder.txtGreaterEquals": "Greater Than or Equal",
"SSE.Controllers.DocumentHolder.txtGroupCharOver": "Character over text",
"SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Character under text",
"SSE.Controllers.DocumentHolder.txtHeadersTableHint": "Returns column headers of a table or specified table column",
"SSE.Controllers.DocumentHolder.txtHeight": "Height",
"SSE.Controllers.DocumentHolder.txtHideBottom": "Hide Bottom Border",
"SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Hide Bottom Limit",
"SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Hide Closing Bracket",
"SSE.Controllers.DocumentHolder.txtHideDegree": "Hide Degree",
"SSE.Controllers.DocumentHolder.txtHideHor": "Hide Horizontal Line",
"SSE.Controllers.DocumentHolder.txtHideLB": "Hide Left Bottom Border",
"SSE.Controllers.DocumentHolder.txtHideLeft": "Hide Left Border",
"SSE.Controllers.DocumentHolder.txtHideLT": "Hide Left Top Border",
"SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Hide Opening Bracket",
"SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Hide Placeholder",
"SSE.Controllers.DocumentHolder.txtHideRight": "Hide Right Border",
"SSE.Controllers.DocumentHolder.txtHideTop": "Hide Top Border",
"SSE.Controllers.DocumentHolder.txtHideTopLimit": "Hide Top Limit",
"SSE.Controllers.DocumentHolder.txtHideVer": "Hide Vertical Line",
"SSE.Controllers.DocumentHolder.txtImportWizard": "Text Import Wizard",
"SSE.Controllers.DocumentHolder.txtIncreaseArg": "Increase argument size",
"SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Insert argument after",
"SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Insert argument before",
"SSE.Controllers.DocumentHolder.txtInsertBreak": "Insert manual break",
"SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Insert equation after",
"SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Insert equation before",
"SSE.Controllers.DocumentHolder.txtItems": "Items",
"SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Keep Text Only",
"SSE.Controllers.DocumentHolder.txtLess": "Less Than",
"SSE.Controllers.DocumentHolder.txtLessEquals": "Less Than or Equal",
"SSE.Controllers.DocumentHolder.txtLimitChange": "Change limit position",
"SSE.Controllers.DocumentHolder.txtLimitOver": "Limit over text",
"SSE.Controllers.DocumentHolder.txtLimitUnder": "Limit under text",
"SSE.Controllers.DocumentHolder.txtLockSort": "",
"SSE.Controllers.DocumentHolder.txtMatchBrackets": "Match brackets to argument height",
"SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrix Alignment",
"SSE.Controllers.DocumentHolder.txtNoChoices": "No choices selected for fill cells.<br>You can only select text values in a column for replacement.",
"SSE.Controllers.DocumentHolder.txtNotBegins": "Does Not Begin With",
"SSE.Controllers.DocumentHolder.txtNotContains": "Does Not Contain",
"SSE.Controllers.DocumentHolder.txtNotEnds": "Does Not End With",
"SSE.Controllers.DocumentHolder.txtNotEquals": "Not Equal",
"SSE.Controllers.DocumentHolder.txtOr": "Or",
"SSE.Controllers.DocumentHolder.txtOverbar": "Overbar over text",
"SSE.Controllers.DocumentHolder.txtPaste": "Paste",
"SSE.Controllers.DocumentHolder.txtPasteBorders": "No Borders",
"SSE.Controllers.DocumentHolder.txtPasteColWidths": "Keep Source Column Widths",
"SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Match Destination Format",
"SSE.Controllers.DocumentHolder.txtPasteFormat": "Paste Format Only",
"SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formulas + Number Format",
"SSE.Controllers.DocumentHolder.txtPasteFormulas": "Paste Formulas Only",
"SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Keep Source Format",
"SSE.Controllers.DocumentHolder.txtPasteLink": "Paste Link",
"SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Linked Picture",
"SSE.Controllers.DocumentHolder.txtPasteMerge": "Merge Conditional Formatting",
"SSE.Controllers.DocumentHolder.txtPastePicture": "Picture",
"SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Keep Source Format",
"SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpose",
"SSE.Controllers.DocumentHolder.txtPasteValFormat": "Values + All Formatting",
"SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Values + Number Format",
"SSE.Controllers.DocumentHolder.txtPasteValues": "Paste Values Only",
"SSE.Controllers.DocumentHolder.txtPercent": "Percent",
"SSE.Controllers.DocumentHolder.txtRedoExpansion": "Redo Table Auto-Expansion",
"SSE.Controllers.DocumentHolder.txtRemFractionBar": "Remove Fraction Bar",
"SSE.Controllers.DocumentHolder.txtRemLimit": "Remove Limit",
"SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Remove Accent Character",
"SSE.Controllers.DocumentHolder.txtRemoveBar": "Remove Bar",
"SSE.Controllers.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?<br>This action cannot be undone.",
"SSE.Controllers.DocumentHolder.txtRemScripts": "Remove Subscripts and Superscripts",
"SSE.Controllers.DocumentHolder.txtRemSubscript": "Remove Subscript",
"SSE.Controllers.DocumentHolder.txtRemSuperscript": "Remove Superscript",
"SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height",
"SSE.Controllers.DocumentHolder.txtScriptsAfter": "Subscripts and superscripts after text",
"SSE.Controllers.DocumentHolder.txtScriptsBefore": "Subscripts and superscripts before text",
"SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Show Bottom Limit",
"SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Show Closing Bracket",
"SSE.Controllers.DocumentHolder.txtShowDegree": "Show Degree",
"SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Show Opening Bracket",
"SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Show Placeholder",
"SSE.Controllers.DocumentHolder.txtShowTopLimit": "Show Top Limit",
"SSE.Controllers.DocumentHolder.txtSorting": "Sorting",
"SSE.Controllers.DocumentHolder.txtSortSelected": "Sort Selection",
"SSE.Controllers.DocumentHolder.txtStretchBrackets": "Stretch Brackets",
"SSE.Controllers.DocumentHolder.txtThisRowHint": "Select only this row of the specified column",
"SSE.Controllers.DocumentHolder.txtTop": "Top",
"SSE.Controllers.DocumentHolder.txtTotalsTableHint": "Returns totals row of a table or specified table column",
"SSE.Controllers.DocumentHolder.txtUnderbar": "Underbar under text",
"SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo Table Auto-Expansion",
"SSE.Controllers.DocumentHolder.txtUseTextImport": "Use Text Import Wizard",
"SSE.Controllers.DocumentHolder.txtWarnUrl": "Clicking this link may harm your device or data.<br>Are you sure you want to continue?",
"SSE.Controllers.DocumentHolder.txtWidth": "Width",
"SSE.Controllers.DocumentHolder.warnFilterError": "To make the filter work, you need at least one value in the values area.",
"SSE.Controllers.FormulaDialog.sCategoryAll": "All",
"SSE.Controllers.FormulaDialog.sCategoryCube": "Cube",
"SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database",
"SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Date & Time",
"SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engineering",
"SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financial",
"SSE.Controllers.FormulaDialog.sCategoryInformation": "Information",
"SSE.Controllers.FormulaDialog.sCategoryLast10": "Most Recently Used",
"SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical",
"SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Lookup & Reference",
"SSE.Controllers.FormulaDialog.sCategoryMathematic": "Math & Trig",
"SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistical",
"SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text & Data",
"SSE.Controllers.LeftMenu.newDocumentTitle": "Untitled Spreadsheet",
"SSE.Controllers.LeftMenu.textByColumns": "By Columns",
"SSE.Controllers.LeftMenu.textByRows": "By Rows",
"SSE.Controllers.LeftMenu.textFormulas": "Formulas",
"SSE.Controllers.LeftMenu.textItemEntireCell": "Match Entire Cell Contents",
"SSE.Controllers.LeftMenu.textLoadHistory": "Loading version history...",
"SSE.Controllers.LeftMenu.textLookin": "Look In",
"SSE.Controllers.LeftMenu.textNoTextFound": "The data you searched for could not be found. Please adjust your search options.",
"SSE.Controllers.LeftMenu.textReplaceSkipped": "Replaced. {0} skipped.",
"SSE.Controllers.LeftMenu.textReplaceSuccess": "Search completed. Occurrences: {0}",
"SSE.Controllers.LeftMenu.textSave": "Save",
"SSE.Controllers.LeftMenu.textSearch": "Search",
"SSE.Controllers.LeftMenu.textSheet": "Sheet",
"SSE.Controllers.LeftMenu.textValues": "Values",
"SSE.Controllers.LeftMenu.textWarning": "Warning",
"SSE.Controllers.LeftMenu.textWithin": "Within",
"SSE.Controllers.LeftMenu.textWorkbook": "Workbook",
"SSE.Controllers.LeftMenu.txtUntitled": "Untitled",
"SSE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format, all features except text will be lost.<br>Are you sure you want to continue?",
"SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "",
"SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.<br>Continue?",
"SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will only add {0} cell watches to save memory.<br>Continue?",
"SSE.Controllers.Main.confirmMaxChangesSize": "",
"SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range may contain data. Continue?",
"SSE.Controllers.Main.confirmPutMergeRange": "Source data contains merged cells.<br>They have been unmerged before pasting into the table.",
"SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formulas in table headers will be removed and converted to plain text.<br>Continue?",
"SSE.Controllers.Main.confirmReplaceHFPicture": "",
"SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout",
"SSE.Controllers.Main.criticalErrorExtText": "Click OK to return to the file list.",
"SSE.Controllers.Main.criticalErrorTitle": "Error",
"SSE.Controllers.Main.downloadErrorText": "Download failed",
"SSE.Controllers.Main.downloadTextText": "Downloading spreadsheet...",
"SSE.Controllers.Main.downloadTitleText": "Download Spreadsheet",
"SSE.Controllers.Main.errNoDuplicates": "No duplicate values found.",
"SSE.Controllers.Main.errorAccessDeny": "You are trying to perform an operation for which you do not have permission.<br>Please contact your document server administrator.",
"SSE.Controllers.Main.errorArgsRange": "There is a problem with this formula.<br>Incorrect parameter range used.",
"SSE.Controllers.Main.errorAutoFilterChange": "Operation not allowed because it is trying to move cells in a table on the worksheet.",
"SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "",
"SSE.Controllers.Main.errorAutoFilterDataRange": "",
"SSE.Controllers.Main.errorAutoFilterHiddenRange": "",
"SSE.Controllers.Main.errorBadImageUrl": "Incorrect image URL",
"SSE.Controllers.Main.errorCannotPasteImg": "",
"SSE.Controllers.Main.errorCannotUngroup": "Cannot ungroup. To start an outline, select detail rows or columns and group them.",
"SSE.Controllers.Main.errorCannotUseCommandProtectedSheet": "",
"SSE.Controllers.Main.errorChangeArray": "You cannot change part of an array.",
"SSE.Controllers.Main.errorChangeFilteredRange": "This will change the original filter range on the worksheet.<br>To complete this operation, remove AutoFilter.",
"SSE.Controllers.Main.errorChangeOnProtectedSheet": "",
"SSE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited now",
"SSE.Controllers.Main.errorConnectToServer": "",
"SSE.Controllers.Main.errorConvertXml": "This file has an unsupported format.<br>Only XML Spreadsheet 2003 format can be used.",
"SSE.Controllers.Main.errorCopyMultiselectArea": "This command cannot be used with multiple selections.<br>Select a single range and try again.",
"SSE.Controllers.Main.errorCountArg": "There is a problem with this formula.<br><br>Please enter the correct parameters.",
"SSE.Controllers.Main.errorCountArgExceed": "Too many arguments entered for this function.",
"SSE.Controllers.Main.errorCreateDefName": "Cannot edit existing named range, so new range cannot be created within it.",
"SSE.Controllers.Main.errorCreateRange": "Existing range cannot be edited, and new range cannot be created<br>because some ranges in the table are being edited.",
"SSE.Controllers.Main.errorDatabaseConnection": "External error.<br>Database connection error. If the error persists, please contact support.",
"SSE.Controllers.Main.errorDataEncrypted": "Encrypted changes received, cannot decrypt them.",
"SSE.Controllers.Main.errorDataRange": "Incorrect data range",
"SSE.Controllers.Main.errorDataValidate": "The value you entered is invalid.<br>The user has restricted values that can be entered into this cell.",
"SSE.Controllers.Main.errorDefaultMessage": "Error code: %1",
"SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "",
"SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "",
"SSE.Controllers.Main.errorDependentsNoFormulas": "The Trace Dependents command found no formulas that refer to the active cell.",
"SSE.Controllers.Main.errorDirectUrl": "Please verify the link to the document.<br>This link must be a direct link to the file to be downloaded.",
"SSE.Controllers.Main.errorEditingDownloadas": "",
"SSE.Controllers.Main.errorEditingSaveas": "",
"SSE.Controllers.Main.errorEditView": "",
"SSE.Controllers.Main.errorEmailClient": "Email client not found.",
"SSE.Controllers.Main.errorFilePassProtect": "This document is password protected and cannot be opened.",
"SSE.Controllers.Main.errorFileRequest": "External error.<br>File request error. If the error persists, please contact support.",
"SSE.Controllers.Main.errorFileSizeExceed": "",
"SSE.Controllers.Main.errorFileVKey": "External error.<br>Security key error. If the error persists, please contact support.",
"SSE.Controllers.Main.errorFillRange": "Cannot fill the cells in the selected range.<br>All merged cells must be the same size.",
"SSE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Use the Save As option to save the file to your computer's hard drive or try again later.",
"SSE.Controllers.Main.errorFormulaName": "There is a problem with this formula.<br>Use the formula name correctly.",
"SSE.Controllers.Main.errorFormulaParsing": "Internal error occurred while parsing the formula.",
"SSE.Controllers.Main.errorFrmlMaxLength": "Formula cannot exceed 8192 characters.<br>Please edit and try again.",
"SSE.Controllers.Main.errorFrmlMaxReference": "Cannot enter this formula because it contains too many values,<br>cell references, and/or names.",
"SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.<br>Use the CONCATENATE function or concatenation operator (&).",
"SSE.Controllers.Main.errorFrmlWrongReferences": "This function refers to a worksheet that does not exist.<br>Please check the data and try again.",
"SSE.Controllers.Main.errorFTChangeTableRangeError": "",
"SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "The selected cell range cannot complete the operation.<br>Select a range that does not include other tables.",
"SSE.Controllers.Main.errorInconsistentExt": "An error occurred while opening the file.<br>The file extension is inconsistent: %1.",
"SSE.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.",
"SSE.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.",
"SSE.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.",
"SSE.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.",
"SSE.Controllers.Main.errorInvalidRef": "Enter a valid name or reference for the selection.",
"SSE.Controllers.Main.errorKeyEncrypt": "Unknown key description",
"SSE.Controllers.Main.errorKeyExpire": "Key expired",
"SSE.Controllers.Main.errorLabledColumnsPivot": "When creating a pivot table, you must use data combined as a list with labeled columns.",
"SSE.Controllers.Main.errorLoadingFont": "Font not loaded.<br>Please contact the document server administrator.",
"SSE.Controllers.Main.errorLocationOrDataRangeError": "The referenced location or data range is invalid.",
"SSE.Controllers.Main.errorLockedAll": "Operation cannot be performed because the worksheet is locked by another user.",
"SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data in a pivot table.",
"SSE.Controllers.Main.errorLockedWorksheetRename": "Cannot rename the sheet at this time because another user is renaming it",
"SSE.Controllers.Main.errorMaxPoints": "Maximum number of points per chart series is 4096.",
"SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell",
"SSE.Controllers.Main.errorMoveSlicerError": "",
"SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.",
"SSE.Controllers.Main.errorNoDataToParse": "No data selected to parse.",
"SSE.Controllers.Main.errorOpenWarning": "One of the file formulas exceeds the 8192 character limit.<br>The formula has been removed.",
"SSE.Controllers.Main.errorOperandExpected": "This formula is missing a left or right parenthesis.",
"SSE.Controllers.Main.errorPasswordIsNotCorrect": "",
"SSE.Controllers.Main.errorPasteMaxRange": "",
"SSE.Controllers.Main.errorPasteMultiSelect": "Cannot complete this operation on multiple range selections.<br>Please select a single range and try again.",
"SSE.Controllers.Main.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another.",
"SSE.Controllers.Main.errorPivotGroup": "The selected range cannot be grouped.",
"SSE.Controllers.Main.errorPivotOverlap": "Pivot table report cannot overlap with a table",
"SSE.Controllers.Main.errorPivotWithoutUnderlying": "",
"SSE.Controllers.Main.errorPrecedentsNoValidRef": "The Trace Precedents command requires the active cell to contain a formula that uses valid references.",
"SSE.Controllers.Main.errorPrintMaxPagesCount": "Printing more than 100 pages is not supported.",
"SSE.Controllers.Main.errorProcessSaveResult": "Save failed",
"SSE.Controllers.Main.errorProtectedRange": "This range cannot be edited.",
"SSE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply changes.",
"SSE.Controllers.Main.errorSessionAbsolute": "Document editing session has expired. Please reload the page.",
"SSE.Controllers.Main.errorSessionIdle": "The file has not been edited for quite some time. Please reload the page.",
"SSE.Controllers.Main.errorSessionToken": "Connection to server has been interrupted. Please reload the page.",
"SSE.Controllers.Main.errorSetPassword": "Cannot set password",
"SSE.Controllers.Main.errorSingleColumnOrRowError": "",
"SSE.Controllers.Main.errorStockChart": "",
"SSE.Controllers.Main.errorToken": "Document security token is not properly formed.<br>Please contact your file server administrator.",
"SSE.Controllers.Main.errorTokenExpire": "Document security token has expired.<br>Please contact your document server administrator.",
"SSE.Controllers.Main.errorUnexpectedGuid": "External error.<br>Unexpected GUID. If the error persists, please contact support.",
"SSE.Controllers.Main.errorUpdateVersion": "The file version has changed. The page will be reloaded.",
"SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "",
"SSE.Controllers.Main.errorUserDrop": "The file is not accessible now.",
"SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan has been exceeded",
"SSE.Controllers.Main.errorViewerDisconnect": "",
"SSE.Controllers.Main.errorWrongBracketsCount": "There is a problem with this formula.<br>Incorrect use of parentheses.",
"SSE.Controllers.Main.errorWrongOperator": "An error occurred while entering the formula. Incorrect operator, please correct!",
"SSE.Controllers.Main.errorWrongPassword": "The password you provided is incorrect.",
"SSE.Controllers.Main.errRemDuplicates": "Duplicate values found: {0}, removed. Only unique values remain: {1}.",
"SSE.Controllers.Main.leavePageText": "",
"SSE.Controllers.Main.leavePageTextOnClose": "",
"SSE.Controllers.Main.loadFontsTextText": "Loading data...",
"SSE.Controllers.Main.loadFontsTitleText": "Loading Data",
"SSE.Controllers.Main.loadFontTextText": "Loading data...",
"SSE.Controllers.Main.loadFontTitleText": "Loading Data",
"SSE.Controllers.Main.loadImagesTextText": "Loading images...",
"SSE.Controllers.Main.loadImagesTitleText": "Loading Images",
"SSE.Controllers.Main.loadImageTextText": "Loading image...",
"SSE.Controllers.Main.loadImageTitleText": "Loading Image",
"SSE.Controllers.Main.loadingDocumentTitleText": "Opening document...",
"SSE.Controllers.Main.notcriticalErrorTitle": "Warning",
"SSE.Controllers.Main.openErrorText": "Error opening file",
"SSE.Controllers.Main.openTextText": "Opening spreadsheet...",
"SSE.Controllers.Main.openTitleText": "Open Spreadsheet",
"SSE.Controllers.Main.pastInMergeAreaError": "Cannot change part of a merged cell",
"SSE.Controllers.Main.printTextText": "Printing spreadsheet...",
"SSE.Controllers.Main.printTitleText": "Print Spreadsheet",
"SSE.Controllers.Main.reloadButtonText": "Reload Page",
"SSE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this document. Please try again later.",
"SSE.Controllers.Main.requestEditFailedTitleText": "Access Denied",
"SSE.Controllers.Main.saveErrorText": "Error saving file",
"SSE.Controllers.Main.saveErrorTextDesktop": "",
"SSE.Controllers.Main.saveTextText": "Saving spreadsheet...",
"SSE.Controllers.Main.saveTitleText": "Save Spreadsheet",
"SSE.Controllers.Main.scriptLoadError": "Connection speed is too slow, some components could not be loaded. Please reload the page.",
"SSE.Controllers.Main.textAnonymous": "Anonymous",
"SSE.Controllers.Main.textApplyAll": "Apply to All Formulas",
"SSE.Controllers.Main.textBuyNow": "Visit Website",
"SSE.Controllers.Main.textChangesSaved": "All changes saved",
"SSE.Controllers.Main.textClose": "Close",
"SSE.Controllers.Main.textCloseTip": "Click to close tip",
"SSE.Controllers.Main.textConfirm": "Confirm",
"SSE.Controllers.Main.textContactUs": "Contact Sales",
"SSE.Controllers.Main.textContinue": "Send",
"SSE.Controllers.Main.textConvertEquation": "",
"SSE.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.",
"SSE.Controllers.Main.textDisconnect": "Network connection lost.",
"SSE.Controllers.Main.textFillOtherRows": "Fill Other Rows",
"SSE.Controllers.Main.textFormulaFilledAllRows": "Formula filled {0} rows have data. Filling other empty rows may take several minutes.",
"SSE.Controllers.Main.textFormulaFilledAllRowsWithEmpty": "Formula filled the first {0} rows. Filling other empty rows may take several minutes.",
"SSE.Controllers.Main.textFormulaFilledFirstRowsOtherHaveData": "",
"SSE.Controllers.Main.textFormulaFilledFirstRowsOtherIsEmpty": "",
"SSE.Controllers.Main.textGuest": "Guest",
"SSE.Controllers.Main.textHasMacros": "This file contains auto macros.<br>Do you want to run the macros?",
"SSE.Controllers.Main.textKeep": "Keep",
"SSE.Controllers.Main.textLearnMore": "Learn More",
"SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet",
"SSE.Controllers.Main.textLongName": "Please type a name with fewer than 128 characters.",
"SSE.Controllers.Main.textNeedSynchronize": "You have updates",
"SSE.Controllers.Main.textNo": "No",
"SSE.Controllers.Main.textNoLicenseTitle": "License limit reached.",
"SSE.Controllers.Main.textPaidFeature": "Paid Feature",
"SSE.Controllers.Main.textPleaseWait": "This operation may take longer than expected. Please wait...",
"SSE.Controllers.Main.textReconnect": "Connection restored",
"SSE.Controllers.Main.textRemember": "Remember my choice for all files",
"SSE.Controllers.Main.textRememberMacros": "Remember my choice for all macros",
"SSE.Controllers.Main.textRenameError": "User name cannot be empty.",
"SSE.Controllers.Main.textRenameLabel": "Enter a name that can be used for collaboration.",
"SSE.Controllers.Main.textReplace": "Replace",
"SSE.Controllers.Main.textRequestMacros": "A macro is making a request to URL. Do you allow the request to %1?",
"SSE.Controllers.Main.textShape": "Shape",
"SSE.Controllers.Main.textStrict": "Manual Mode",
"SSE.Controllers.Main.textText": "Text",
"SSE.Controllers.Main.textTryQuickPrint": "",
"SSE.Controllers.Main.textTryUndoRedo": "",
"SSE.Controllers.Main.textTryUndoRedoWarn": "Undo/Redo is disabled in automatic co-editing mode.",
"SSE.Controllers.Main.textUndo": "Undo",
"SSE.Controllers.Main.textYes": "Yes",
"SSE.Controllers.Main.titleLicenseExp": "License Expired",
"SSE.Controllers.Main.titleLicenseNotActive": "License Not Active",
"SSE.Controllers.Main.titleServerVersion": "Editor Updated",
"SSE.Controllers.Main.txtAccent": "Accent",
"SSE.Controllers.Main.txtAll": "All",
"SSE.Controllers.Main.txtMultipleItems": "Multiple Items",
"SSE.Controllers.Main.txtSum": "Sum",
"SSE.Controllers.Main.txtCount": "Count",
"SSE.Controllers.Main.txtAverage": "Average",
"SSE.Controllers.Main.txtMax": "Max",
"SSE.Controllers.Main.txtMin": "Min",
"SSE.Controllers.Main.txtProduct": "Product",
"SSE.Controllers.Main.txtCountNums": "Count Numbers",
"SSE.Controllers.Main.txtStdDev": "StdDev",
"SSE.Controllers.Main.txtStdDevp": "StdDevp",
"SSE.Controllers.Main.txtVar": "Var",
"SSE.Controllers.Main.txtVarp": "Varp",
"SSE.Controllers.Main.txtArt": "Your text here",
"SSE.Controllers.Main.txtBasicShapes": "Basic Shapes",
"SSE.Controllers.Main.txtBlank": "(Blank)",
"SSE.Controllers.Main.txtButtons": "Buttons",
"SSE.Controllers.Main.txtByField": "%1/%2",
"SSE.Controllers.Main.txtCallouts": "Callouts",
"SSE.Controllers.Main.txtCharts": "Flowcharts",
"SSE.Controllers.Main.txtClearFilter": "Clear Filter",
"SSE.Controllers.Main.txtColLbls": "Column Labels",
"SSE.Controllers.Main.txtColumn": "Column",
"SSE.Controllers.Main.txtConfidential": "Confidential",
"SSE.Controllers.Main.txtDate": "Date",
"SSE.Controllers.Main.txtDays": "Days",
"SSE.Controllers.Main.txtDiagramTitle": "Chart Title",
"SSE.Controllers.Main.txtEditingMode": "Setting editing mode..",
"SSE.Controllers.Main.txtErrorLoadHistory": "Failed to load history",
"SSE.Controllers.Main.txtFiguredArrows": "Block Arrows",
"SSE.Controllers.Main.txtFile": "File",
"SSE.Controllers.Main.txtGrandTotal": "Grand Total",
"SSE.Controllers.Main.txtGroup": "Group",
"SSE.Controllers.Main.txtHours": "Hours",
"SSE.Controllers.Main.txtInfo": "Info",
"SSE.Controllers.Main.txtLines": "Lines",
"SSE.Controllers.Main.txtMath": "Equation Shapes",
"SSE.Controllers.Main.txtMinutes": "Minutes",
"SSE.Controllers.Main.txtMonths": "Months",
"SSE.Controllers.Main.txtMultiSelect": "Multi-Select Mode",
"SSE.Controllers.Main.txtNone": "None",
"SSE.Controllers.Main.txtOr": "%1 or %2",
"SSE.Controllers.Main.txtPage": "Page",
"SSE.Controllers.Main.txtPageOf": "Page %1 of %2",
"SSE.Controllers.Main.txtPages": "Pages",
"SSE.Controllers.Main.txtPicture": "Picture",
"SSE.Controllers.Main.txtPreparedBy": "Prepared By",
"SSE.Controllers.Main.txtPrintArea": "Print_Area",
"SSE.Controllers.Main.txtQuarter": "Quarter",
"SSE.Controllers.Main.txtQuarters": "Quarters",
"SSE.Controllers.Main.txtRectangles": "Rectangles",
"SSE.Controllers.Main.txtRow": "Row",
"SSE.Controllers.Main.txtRowLbls": "Row Labels",
"SSE.Controllers.Main.txtSeconds": "Seconds",
"SSE.Controllers.Main.txtSeries": "Series",
"SSE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)",
"SSE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)",
"SSE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)",
"SSE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)",
"SSE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)",
"SSE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)",
"SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or Previous Button",
"SSE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning Button",
"SSE.Controllers.Main.txtShape_actionButtonBlank": "Blank Button",
"SSE.Controllers.Main.txtShape_actionButtonDocument": "Document Button",
"SSE.Controllers.Main.txtShape_actionButtonEnd": "End Button",
"SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or Next Button",
"SSE.Controllers.Main.txtShape_actionButtonHelp": "Help Button",
"SSE.Controllers.Main.txtShape_actionButtonHome": "Home Button",
"SSE.Controllers.Main.txtShape_actionButtonInformation": "Information Button",
"SSE.Controllers.Main.txtShape_actionButtonMovie": "Movie Button",
"SSE.Controllers.Main.txtShape_actionButtonReturn": "Return Button",
"SSE.Controllers.Main.txtShape_actionButtonSound": "Sound Button",
"SSE.Controllers.Main.txtShape_arc": "Arc",
"SSE.Controllers.Main.txtShape_bentArrow": "Bent Right Arrow",
"SSE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector",
"SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector",
"SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector",
"SSE.Controllers.Main.txtShape_bentUpArrow": "Bent Up Arrow",
"SSE.Controllers.Main.txtShape_bevel": "Bevel",
"SSE.Controllers.Main.txtShape_blockArc": "Block Arc",
"SSE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1",
"SSE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2",
"SSE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3",
"SSE.Controllers.Main.txtShape_bracePair": "Double Brace",
"SSE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)",
"SSE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)",
"SSE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)",
"SSE.Controllers.Main.txtShape_can": "Can",
"SSE.Controllers.Main.txtShape_chevron": "Chevron",
"SSE.Controllers.Main.txtShape_chord": "Chord",
"SSE.Controllers.Main.txtShape_circularArrow": "Circular Arrow",
"SSE.Controllers.Main.txtShape_cloud": "Cloud",
"SSE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout",
"SSE.Controllers.Main.txtShape_corner": "Corner",
"SSE.Controllers.Main.txtShape_cube": "Cube",
"SSE.Controllers.Main.txtShape_curvedConnector3": "Curved Connector",
"SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved Arrow Connector",
"SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved Double-Arrow Connector",
"SSE.Controllers.Main.txtShape_curvedDownArrow": "Curved Down Arrow",
"SSE.Controllers.Main.txtShape_curvedLeftArrow": "Curved Left Arrow",
"SSE.Controllers.Main.txtShape_curvedRightArrow": "Curved Right Arrow",
"SSE.Controllers.Main.txtShape_curvedUpArrow": "Curved Up Arrow",
"SSE.Controllers.Main.txtShape_decagon": "Decagon",
"SSE.Controllers.Main.txtShape_diagStripe": "Diagonal Stripe",
"SSE.Controllers.Main.txtShape_diamond": "Diamond",
"SSE.Controllers.Main.txtShape_dodecagon": "Dodecagon",
"SSE.Controllers.Main.txtShape_donut": "Donut",
"SSE.Controllers.Main.txtShape_doubleWave": "Double Wave",
"SSE.Controllers.Main.txtShape_downArrow": "Down Arrow",
"SSE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout",
"SSE.Controllers.Main.txtShape_ellipse": "Ellipse",
"SSE.Controllers.Main.txtShape_ellipseRibbon": "Ellipse Ribbon",
"SSE.Controllers.Main.txtShape_ellipseRibbon2": "Ellipse Ribbon 2",
"SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate Process",
"SSE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate",
"SSE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector",
"SSE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision",
"SSE.Controllers.Main.txtShape_flowChartDelay": "Flowchart: Delay",
"SSE.Controllers.Main.txtShape_flowChartDisplay": "Flowchart: Display",
"SSE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document",
"SSE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract",
"SSE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Input/Output",
"SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal Storage",
"SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic Disk",
"SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct Access Storage",
"SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential Access Storage",
"SSE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual Input",
"SSE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual Operation",
"SSE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge",
"SSE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multi-Document",
"SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page Connector",
"SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored Data",
"SSE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or",
"SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined Process",
"SSE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation",
"SSE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process",
"SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Punched Card",
"SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched Tape",
"SSE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort",
"SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing Junction",
"SSE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator",
"SSE.Controllers.Main.txtShape_foldedCorner": "Folded Corner",
"SSE.Controllers.Main.txtShape_frame": "Frame",
"SSE.Controllers.Main.txtShape_halfFrame": "Half Frame",
"SSE.Controllers.Main.txtShape_heart": "Heart",
"SSE.Controllers.Main.txtShape_heptagon": "Heptagon",
"SSE.Controllers.Main.txtShape_hexagon": "Hexagon",
"SSE.Controllers.Main.txtShape_homePlate": "Home Plate",
"SSE.Controllers.Main.txtShape_horizontalScroll": "Horizontal Scroll",
"SSE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1",
"SSE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2",
"SSE.Controllers.Main.txtShape_leftArrow": "Left Arrow",
"SSE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout",
"SSE.Controllers.Main.txtShape_leftBrace": "Left Brace",
"SSE.Controllers.Main.txtShape_leftBracket": "Left Bracket",
"SSE.Controllers.Main.txtShape_leftRightArrow": "Left-Right Arrow",
"SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Left-Right Arrow Callout",
"SSE.Controllers.Main.txtShape_leftRightUpArrow": "Left-Right-Up Arrow",
"SSE.Controllers.Main.txtShape_leftUpArrow": "Left-Up Arrow",
"SSE.Controllers.Main.txtShape_lightningBolt": "Lightning Bolt",
"SSE.Controllers.Main.txtShape_line": "Line",
"SSE.Controllers.Main.txtShape_lineWithArrow": "Arrow",
"SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Double Arrow",
"SSE.Controllers.Main.txtShape_mathDivide": "Divide",
"SSE.Controllers.Main.txtShape_mathEqual": "Equal",
"SSE.Controllers.Main.txtShape_mathMinus": "Minus",
"SSE.Controllers.Main.txtShape_mathMultiply": "Multiply",
"SSE.Controllers.Main.txtShape_mathNotEqual": "Not Equal",
"SSE.Controllers.Main.txtShape_mathPlus": "Plus",
"SSE.Controllers.Main.txtShape_moon": "Moon",
"SSE.Controllers.Main.txtShape_noSmoking": "No Symbol",
"SSE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow",
"SSE.Controllers.Main.txtShape_octagon": "Octagon",
"SSE.Controllers.Main.txtShape_parallelogram": "Parallelogram",
"SSE.Controllers.Main.txtShape_pentagon": "Pentagon",
"SSE.Controllers.Main.txtShape_pie": "Pie",
"SSE.Controllers.Main.txtShape_plaque": "Plaque",
"SSE.Controllers.Main.txtShape_plus": "Plus",
"SSE.Controllers.Main.txtShape_polyline1": "Freeform",
"SSE.Controllers.Main.txtShape_polyline2": "Freeform",
"SSE.Controllers.Main.txtShape_quadArrow": "Quad Arrow",
"SSE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout",
"SSE.Controllers.Main.txtShape_rect": "Rectangle",
"SSE.Controllers.Main.txtShape_ribbon": "Ribbon",
"SSE.Controllers.Main.txtShape_ribbon2": "Ribbon 2",
"SSE.Controllers.Main.txtShape_rightArrow": "Right Arrow",
"SSE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout",
"SSE.Controllers.Main.txtShape_rightBrace": "Right Brace",
"SSE.Controllers.Main.txtShape_rightBracket": "Right Bracket",
"SSE.Controllers.Main.txtShape_round1Rect": "Rounded Rectangle",
"SSE.Controllers.Main.txtShape_round2DiagRect": "Rounded Diagonal Corner Rectangle",
"SSE.Controllers.Main.txtShape_round2SameRect": "Rounded Same Side Corner Rectangle",
"SSE.Controllers.Main.txtShape_roundRect": "Rounded Rectangle",
"SSE.Controllers.Main.txtShape_rtTriangle": "Right Triangle",
"SSE.Controllers.Main.txtShape_smileyFace": "Smiley Face",
"SSE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle",
"SSE.Controllers.Main.txtShape_snip2DiagRect": "Snip Diagonal Corner Rectangle",
"SSE.Controllers.Main.txtShape_snip2SameRect": "Snip Same Side Corner Rectangle",
"SSE.Controllers.Main.txtShape_snipRoundRect": "Snip and Round Single Corner Rectangle",
"SSE.Controllers.Main.txtShape_spline": "Curve",
"SSE.Controllers.Main.txtShape_star10": "10-Point Star",
"SSE.Controllers.Main.txtShape_star12": "12-Point Star",
"SSE.Controllers.Main.txtShape_star16": "16-Point Star",
"SSE.Controllers.Main.txtShape_star24": "24-Point Star",
"SSE.Controllers.Main.txtShape_star32": "32-Point Star",
"SSE.Controllers.Main.txtShape_star4": "4-Point Star",
"SSE.Controllers.Main.txtShape_star5": "5-Point Star",
"SSE.Controllers.Main.txtShape_star6": "6-Point Star",
"SSE.Controllers.Main.txtShape_star7": "7-Point Star",
"SSE.Controllers.Main.txtShape_star8": "8-Point Star",
"SSE.Controllers.Main.txtShape_stripedRightArrow": "Striped Right Arrow",
"SSE.Controllers.Main.txtShape_sun": "Sun",
"SSE.Controllers.Main.txtShape_teardrop": "Teardrop",
"SSE.Controllers.Main.txtShape_textRect": "Text Box",
"SSE.Controllers.Main.txtShape_trapezoid": "Trapezoid",
"SSE.Controllers.Main.txtShape_triangle": "Triangle",
"SSE.Controllers.Main.txtShape_upArrow": "Up Arrow",
"SSE.Controllers.Main.txtShape_upArrowCallout": "Up Arrow Callout",
"SSE.Controllers.Main.txtShape_upDownArrow": "Up-Down Arrow",
"SSE.Controllers.Main.txtShape_uturnArrow": "U-Turn Arrow",
"SSE.Controllers.Main.txtShape_verticalScroll": "Vertical Scroll",
"SSE.Controllers.Main.txtShape_wave": "Wave",
"SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Wedge Ellipse Callout",
"SSE.Controllers.Main.txtShape_wedgeRectCallout": "Wedge Rectangle Callout",
"SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Wedge Rounded Rectangle Callout",
"SSE.Controllers.Main.txtSheet": "Sheet",
"SSE.Controllers.Main.txtSlicer": "Slicer",
"SSE.Controllers.Main.txtStarsRibbons": "Stars and Banners",
"SSE.Controllers.Main.txtStyle_Bad": "Bad",
"SSE.Controllers.Main.txtStyle_Calculation": "Calculation",
"SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell",
"SSE.Controllers.Main.txtStyle_Comma": "Comma",
"SSE.Controllers.Main.txtStyle_Currency": "Currency",
"SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text",
"SSE.Controllers.Main.txtStyle_Good": "Good",
"SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1",
"SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2",
"SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3",
"SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4",
"SSE.Controllers.Main.txtStyle_Input": "Input",
"SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell",
"SSE.Controllers.Main.txtStyle_Neutral": "Neutral",
"SSE.Controllers.Main.txtStyle_Normal": "Normal",
"SSE.Controllers.Main.txtStyle_Note": "Note",
"SSE.Controllers.Main.txtStyle_Output": "Output",
"SSE.Controllers.Main.txtStyle_Percent": "Percent",
"SSE.Controllers.Main.txtStyle_Title": "Title",
"SSE.Controllers.Main.txtStyle_Total": "Total",
"SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text",
"SSE.Controllers.Main.txtTab": "Tab",
"SSE.Controllers.Main.txtTable": "Table",
"SSE.Controllers.Main.txtTime": "Time",
"SSE.Controllers.Main.txtUnlock": "Unlock",
"SSE.Controllers.Main.txtUnlockRange": "Unlock Range",
"SSE.Controllers.Main.txtUnlockRangeDescription": "Enter password to change this range:",
"SSE.Controllers.Main.txtUnlockRangeWarning": "The range you are trying to change is password protected.",
"SSE.Controllers.Main.txtValues": "Values",
"SSE.Controllers.Main.txtXAxis": "X-Axis",
"SSE.Controllers.Main.txtYAxis": "Y-Axis",
"SSE.Controllers.Main.txtYears": "Years",
"SSE.Controllers.Main.unknownErrorText": "Unknown error",
"SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported",
"SSE.Controllers.Main.uploadDocExtMessage": "Unknown document format.",
"SSE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded",
"SSE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.",
"SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format",
"SSE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded",
"SSE.Controllers.Main.uploadImageSizeMessage": "Image is too large. Maximum size is 25MB.",
"SSE.Controllers.Main.uploadImageTextText": "Uploading image...",
"SSE.Controllers.Main.uploadImageTitleText": "Uploading Image",
"SSE.Controllers.Main.waitText": "Please wait...",
"SSE.Controllers.Main.warnBrowserIE9": "This application has poor functionality on IE9. Use IE10 or higher",
"SSE.Controllers.Main.warnBrowserZoom": "Your browser's current zoom setting is not fully supported. Press Ctrl + 0 to reset to default zoom.",
"SSE.Controllers.Main.warnLicenseAnonymous": "Access denied for anonymous users.<br>This document will be opened in view-only mode.",
"SSE.Controllers.Main.warnLicenseBefore": "License is not activated.<br>Please contact the administrator.",
"SSE.Controllers.Main.warnLicenseExceeded": "",
"SSE.Controllers.Main.warnLicenseExp": "Your license has expired.<br>Please update your license and refresh the page.",
"SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired<br>You do not have authorization for file editing features<br>Please contact the administrator.",
"SSE.Controllers.Main.warnLicenseLimitedRenewed": "",
"SSE.Controllers.Main.warnLicenseUsersExceeded": "You have reached the user limit for %1 editors. Please contact your administrator for more information.",
"SSE.Controllers.Main.warnNoLicense": "",
"SSE.Controllers.Main.warnNoLicenseUsers": "You have reached the user limit for %1 editors. Please contact the %1 sales team to learn about individual upgrade terms.",
"SSE.Controllers.Main.warnProcessRightsChange": "You have been denied permission to edit the file.",
"SSE.Controllers.PivotTable.strSheet": "Sheet",
"SSE.Controllers.Print.strAllSheets": "All Sheets",
"SSE.Controllers.Print.textFirstCol": "First Column",
"SSE.Controllers.Print.textFirstRow": "First Row",
"SSE.Controllers.Print.textFrozenCols": "Frozen Columns",
"SSE.Controllers.Print.textFrozenRows": "Frozen Rows",
"SSE.Controllers.Print.textInvalidRange": "Failed! Invalid cell range",
"SSE.Controllers.Print.textNoRepeat": "Don't Repeat",
"SSE.Controllers.Print.textRepeat": "Repeat...",
"SSE.Controllers.Print.textSelectRange": "Select Range",
"SSE.Controllers.Print.textWarning": "Warning",
"SSE.Controllers.Print.txtCustom": "Custom",
"SSE.Controllers.Print.warnCheckMargings": "Incorrect margins",
"SSE.Controllers.Search.textInvalidRange": "Error! Invalid cell range",
"SSE.Controllers.Search.textNoTextFound": "The data you searched for could not be found. Please adjust your search options.",
"SSE.Controllers.Search.textReplaceSkipped": "Replace completed. {0} skipped.",
"SSE.Controllers.Search.textReplaceSuccess": "Search completed. {0} replaced",
"SSE.Controllers.Statusbar.errorLastSheet": "A workbook must have at least one visible worksheet",
"SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete worksheet",
"SSE.Controllers.Statusbar.strSheet": "Sheet",
"SSE.Controllers.Statusbar.textDisconnect": "<b>Connection Failed</b><br>Trying to connect. Please check connection settings.",
"SSE.Controllers.Statusbar.textSheetViewTip": "You are in \"Sheet View\" mode. Filters and sorting are only visible to you and users still in this view.",
"SSE.Controllers.Statusbar.textSheetViewTipFilters": "You are in \"Sheet View\" mode. Filters are only visible to you and users still in this view.",
"SSE.Controllers.Statusbar.warnDeleteSheet": "The selected worksheet may contain data. Are you sure you want to continue?",
"SSE.Controllers.Statusbar.zoomText": "Zoom {0}%",
"SSE.Controllers.Toolbar.confirmAddFontName": "",
"SSE.Controllers.Toolbar.errorComboSeries": "To create a combo chart, select at least two data series.",
"SSE.Controllers.Toolbar.errorMaxPoints": "Maximum number of points per chart series is 4096.",
"SSE.Controllers.Toolbar.errorMaxRows": "Error! Maximum number of data series per chart is 255",
"SSE.Controllers.Toolbar.errorStockChart": "",
"SSE.Controllers.Toolbar.textAccent": "Accent",
"SSE.Controllers.Toolbar.textBracket": "Bracket",
"SSE.Controllers.Toolbar.textDirectional": "Directional",
"SSE.Controllers.Toolbar.textFontSizeErr": "The value entered is incorrect.<br>Please enter a value between 1 and 409",
"SSE.Controllers.Toolbar.textFraction": "Fraction",
"SSE.Controllers.Toolbar.textFunction": "Trigonometric Functions",
"SSE.Controllers.Toolbar.textIndicator": "Indicator",
"SSE.Controllers.Toolbar.textInsert": "Insert",
"SSE.Controllers.Toolbar.textIntegral": "Integral",
"SSE.Controllers.Toolbar.textLargeOperator": "Large Operator",
"SSE.Controllers.Toolbar.textLimitAndLog": "Limit and Logarithm",
"SSE.Controllers.Toolbar.textLongOperation": "Long Operation",
"SSE.Controllers.Toolbar.textMatrix": "Matrix",
"SSE.Controllers.Toolbar.textOperator": "Operator",
"SSE.Controllers.Toolbar.textPivot": "Pivot Table",
"SSE.Controllers.Toolbar.textRadical": "Radical",
"SSE.Controllers.Toolbar.textRating": "Rating",
"SSE.Controllers.Toolbar.textRecentlyUsed": "Recently Used",
"SSE.Controllers.Toolbar.textScript": "Subscript and Superscript",
"SSE.Controllers.Toolbar.textShapes": "Shapes",
"SSE.Controllers.Toolbar.textSymbols": "Symbols",
"SSE.Controllers.Toolbar.textWarning": "Warning",
"SSE.Controllers.Toolbar.txtAccent_Accent": "Acute",
"SSE.Controllers.Toolbar.txtAccent_ArrowD": "Arrow Above Right",
"SSE.Controllers.Toolbar.txtAccent_ArrowL": "Arrow Left",
"SSE.Controllers.Toolbar.txtAccent_ArrowR": "Arrow Right Above",
"SSE.Controllers.Toolbar.txtAccent_Bar": "Bar",
"SSE.Controllers.Toolbar.txtAccent_BarBot": "Underbar",
"SSE.Controllers.Toolbar.txtAccent_BarTop": "Overbar",
"SSE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed Formula (with placeholder)",
"SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed Formula (example)",
"SSE.Controllers.Toolbar.txtAccent_Check": "Check",
"SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace",
"SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace",
"SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vector of A",
"SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with Overbar",
"SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y With Overbar",
"SSE.Controllers.Toolbar.txtAccent_DDDot": "Three Dots",
"SSE.Controllers.Toolbar.txtAccent_DDot": "Double Dot",
"SSE.Controllers.Toolbar.txtAccent_Dot": "Dot",
"SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Double Bar",
"SSE.Controllers.Toolbar.txtAccent_Grave": "Grave",
"SSE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping Character Below",
"SSE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping Character Above",
"SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Harpoon Left Above",
"SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Harpoon Right Above",
"SSE.Controllers.Toolbar.txtAccent_Hat": "Hat",
"SSE.Controllers.Toolbar.txtAccent_Smile": "Breve",
"SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde",
"SSE.Controllers.Toolbar.txtBracket_Angle": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with Delimiter",
"SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with Delimiter",
"SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Curve": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with Delimiter",
"SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Custom_1": "Case (two conditions)",
"SSE.Controllers.Toolbar.txtBracket_Custom_2": "Case (three conditions)",
"SSE.Controllers.Toolbar.txtBracket_Custom_3": "Stack Object",
"SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stack Object",
"SSE.Controllers.Toolbar.txtBracket_Custom_5": "Case Example",
"SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial Coefficient",
"SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial Coefficient",
"SSE.Controllers.Toolbar.txtBracket_Line": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_LowLim": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Round": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with Delimiter",
"SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Square": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_UppLim": "Brackets",
"SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single Bracket",
"SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single Bracket",
"SSE.Controllers.Toolbar.txtDeleteCells": "Delete Cells",
"SSE.Controllers.Toolbar.txtExpand": "Expand Selection",
"SSE.Controllers.Toolbar.txtExpandSort": "There is data next to the selected range. This data is not selected and will not be included in the sort.",
"SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed Fraction",
"SSE.Controllers.Toolbar.txtFractionDifferential_1": "Differential",
"SSE.Controllers.Toolbar.txtFractionDifferential_2": "Differential",
"SSE.Controllers.Toolbar.txtFractionDifferential_3": "Differential",
"SSE.Controllers.Toolbar.txtFractionDifferential_4": "Differential",
"SSE.Controllers.Toolbar.txtFractionHorizontal": "Linear Fraction",
"SSE.Controllers.Toolbar.txtFractionPi_2": "π/2",
"SSE.Controllers.Toolbar.txtFractionSmall": "Small Fraction",
"SSE.Controllers.Toolbar.txtFractionVertical": "Stacked Fraction",
"SSE.Controllers.Toolbar.txtFunction_1_Cos": "Arccosine",
"SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Inverse Hyperbolic Cosine",
"SSE.Controllers.Toolbar.txtFunction_1_Cot": "Arccotangent",
"SSE.Controllers.Toolbar.txtFunction_1_Coth": "Inverse Hyperbolic Cotangent",
"SSE.Controllers.Toolbar.txtFunction_1_Csc": "Arccosecant",
"SSE.Controllers.Toolbar.txtFunction_1_Csch": "Inverse Hyperbolic Cosecant",
"SSE.Controllers.Toolbar.txtFunction_1_Sec": "Arcsecant",
"SSE.Controllers.Toolbar.txtFunction_1_Sech": "Inverse Hyperbolic Secant",
"SSE.Controllers.Toolbar.txtFunction_1_Sin": "Arcsine",
"SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Inverse Hyperbolic Sine",
"SSE.Controllers.Toolbar.txtFunction_1_Tan": "Arctangent",
"SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Inverse Hyperbolic Tangent",
"SSE.Controllers.Toolbar.txtFunction_Cos": "Cosine",
"SSE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic Cosine",
"SSE.Controllers.Toolbar.txtFunction_Cot": "Cotangent",
"SSE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic Cotangent",
"SSE.Controllers.Toolbar.txtFunction_Csc": "Cosecant",
"SSE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic Cosecant",
"SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sine θ",
"SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x",
"SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent Formula",
"SSE.Controllers.Toolbar.txtFunction_Sec": "Secant",
"SSE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic Secant",
"SSE.Controllers.Toolbar.txtFunction_Sin": "Sine",
"SSE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic Sine",
"SSE.Controllers.Toolbar.txtFunction_Tan": "Tangent",
"SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic Tangent",
"SSE.Controllers.Toolbar.txtGroupCell_Custom": "Custom",
"SSE.Controllers.Toolbar.txtGroupCell_DataAndModel": "Data and Model",
"SSE.Controllers.Toolbar.txtGroupCell_GoodBadAndNeutral": "Good, Bad and Neutral",
"SSE.Controllers.Toolbar.txtGroupCell_NoName": "No Name",
"SSE.Controllers.Toolbar.txtGroupCell_NumberFormat": "Number Format",
"SSE.Controllers.Toolbar.txtGroupCell_ThemedCallStyles": "Themed Cell Styles",
"SSE.Controllers.Toolbar.txtGroupCell_TitlesAndHeadings": "Titles and Headings",
"SSE.Controllers.Toolbar.txtGroupTable_Custom": "Custom",
"SSE.Controllers.Toolbar.txtGroupTable_Dark": "Dark",
"SSE.Controllers.Toolbar.txtGroupTable_Light": "Light",
"SSE.Controllers.Toolbar.txtGroupTable_Medium": "Medium",
"SSE.Controllers.Toolbar.txtInsertCells": "Insert Cells",
"SSE.Controllers.Toolbar.txtIntegral": "Integral",
"SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential θ",
"SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x",
"SSE.Controllers.Toolbar.txtIntegral_dy": "Differential y",
"SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral",
"SSE.Controllers.Toolbar.txtIntegralDouble": "Double Integral",
"SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double Integral",
"SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double Integral",
"SSE.Controllers.Toolbar.txtIntegralOriented": "Contour Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume Integral",
"SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume Integral",
"SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral",
"SSE.Controllers.Toolbar.txtIntegralTriple": "Triple Integral",
"SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple Integral",
"SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple Integral",
"SSE.Controllers.Toolbar.txtInvalidRange": "Error! Invalid cell range",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge",
"SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge",
"SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Coproduct",
"SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Coproduct",
"SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproduct",
"SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproduct",
"SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproduct",
"SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product",
"SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union",
"SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee",
"SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee",
"SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee",
"SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee",
"SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee",
"SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection",
"SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection",
"SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection",
"SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection",
"SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection",
"SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Product",
"SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product",
"SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product",
"SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product",
"SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product",
"SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sum",
"SSE.Controllers.Toolbar.txtLargeOperator_Union": "Union",
"SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union",
"SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union",
"SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union",
"SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union",
"SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Example",
"SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Max Example",
"SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit",
"SSE.Controllers.Toolbar.txtLimitLog_Ln": "Natural Logarithm",
"SSE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm",
"SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm",
"SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum",
"SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum",
"SSE.Controllers.Toolbar.txtLockSort": "",
"SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty Matrix with Brackets",
"SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty Matrix with Brackets",
"SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty Matrix with Brackets",
"SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty Matrix with Brackets",
"SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Empty Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline Dots",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Center Dots",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal Dots",
"SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical Dots",
"SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Identity Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Identity Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Identity Matrix",
"SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Identity Matrix",
"SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Arrow Right-Left Below",
"SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Arrow Right Above",
"SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Arrow Left",
"SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Arrow Left",
"SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Arrow Right Below",
"SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Arrow Right Above",
"SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon Equals",
"SSE.Controllers.Toolbar.txtOperator_Custom_1": "Unified",
"SSE.Controllers.Toolbar.txtOperator_Custom_2": "Triangle Area",
"SSE.Controllers.Toolbar.txtOperator_Definition": "Equals by Definition",
"SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Equals",
"SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Double Arrow Right-Left Below",
"SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Double Arrow Right Above",
"SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Double Arrow Left",
"SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Double Arrow Left",
"SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Double Arrow Right Below",
"SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Double Arrow Right Above",
"SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equals Equals",
"SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus Equals",
"SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Equals",
"SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Unit of Measure",
"SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical",
"SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical",
"SSE.Controllers.Toolbar.txtRadicalRoot_2": "Square Root",
"SSE.Controllers.Toolbar.txtRadicalRoot_3": "Cube Root",
"SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with Degree",
"SSE.Controllers.Toolbar.txtRadicalSqrt": "Square Root",
"SSE.Controllers.Toolbar.txtScriptCustom_1": "Script",
"SSE.Controllers.Toolbar.txtScriptCustom_2": "Script",
"SSE.Controllers.Toolbar.txtScriptCustom_3": "Script",
"SSE.Controllers.Toolbar.txtScriptCustom_4": "Script",
"SSE.Controllers.Toolbar.txtScriptSub": "Subscript",
"SSE.Controllers.Toolbar.txtScriptSubSup": "Subscript and Superscript",
"SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Left Subscript - Annotation",
"SSE.Controllers.Toolbar.txtScriptSup": "Superscript",
"SSE.Controllers.Toolbar.txtSorting": "Sorting",
"SSE.Controllers.Toolbar.txtSortSelected": "Sort Selection",
"SSE.Controllers.Toolbar.txtSymbol_about": "Approximately",
"SSE.Controllers.Toolbar.txtSymbol_additional": "Complement",
"SSE.Controllers.Toolbar.txtSymbol_aleph": "Aleph",
"SSE.Controllers.Toolbar.txtSymbol_alpha": "Alpha",
"SSE.Controllers.Toolbar.txtSymbol_approx": "Almost Equal",
"SSE.Controllers.Toolbar.txtSymbol_ast": "Asterisk Operator",
"SSE.Controllers.Toolbar.txtSymbol_beta": "Beta",
"SSE.Controllers.Toolbar.txtSymbol_beth": "Beth",
"SSE.Controllers.Toolbar.txtSymbol_bullet": "Bullet Operator",
"SSE.Controllers.Toolbar.txtSymbol_cap": "Intersection",
"SSE.Controllers.Toolbar.txtSymbol_cbrt": "Cube Root",
"SSE.Controllers.Toolbar.txtSymbol_cdots": "Center Horizontal Ellipsis",
"SSE.Controllers.Toolbar.txtSymbol_celsius": "Celsius",
"SSE.Controllers.Toolbar.txtSymbol_chi": "Chi",
"SSE.Controllers.Toolbar.txtSymbol_cong": "Approximately Equal",
"SSE.Controllers.Toolbar.txtSymbol_cup": "Union",
"SSE.Controllers.Toolbar.txtSymbol_ddots": "Right Diagonal Ellipsis",
"SSE.Controllers.Toolbar.txtSymbol_degree": "Degree",
"SSE.Controllers.Toolbar.txtSymbol_delta": "Delta",
"SSE.Controllers.Toolbar.txtSymbol_div": "Division Sign",
"SSE.Controllers.Toolbar.txtSymbol_downarrow": "Down Arrow",
"SSE.Controllers.Toolbar.txtSymbol_emptyset": "Empty Set",
"SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon",
"SSE.Controllers.Toolbar.txtSymbol_equals": "Equals",
"SSE.Controllers.Toolbar.txtSymbol_equiv": "Identical",
"SSE.Controllers.Toolbar.txtSymbol_eta": "Eta",
"SSE.Controllers.Toolbar.txtSymbol_exists": "There Exists",
"SSE.Controllers.Toolbar.txtSymbol_factorial": "Factorial",
"SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Fahrenheit",
"SSE.Controllers.Toolbar.txtSymbol_forall": "For All",
"SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma",
"SSE.Controllers.Toolbar.txtSymbol_geq": "Greater Than or Equal",
"SSE.Controllers.Toolbar.txtSymbol_gg": "Much Greater Than",
"SSE.Controllers.Toolbar.txtSymbol_greater": "Greater Than",
"SSE.Controllers.Toolbar.txtSymbol_in": "Element Of",
"SSE.Controllers.Toolbar.txtSymbol_inc": "Increment",
"SSE.Controllers.Toolbar.txtSymbol_infinity": "Infinity",
"SSE.Controllers.Toolbar.txtSymbol_iota": "Iota",
"SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa",
"SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda",
"SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Left Arrow",
"SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-Right Arrow",
"SSE.Controllers.Toolbar.txtSymbol_leq": "Less Than or Equal",
"SSE.Controllers.Toolbar.txtSymbol_less": "Less Than",
"SSE.Controllers.Toolbar.txtSymbol_ll": "Much Less Than",
"SSE.Controllers.Toolbar.txtSymbol_minus": "Minus",
"SSE.Controllers.Toolbar.txtSymbol_mp": "Minus-Plus",
"SSE.Controllers.Toolbar.txtSymbol_mu": "Mu",
"SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla",
"SSE.Controllers.Toolbar.txtSymbol_neq": "Not Equal",
"SSE.Controllers.Toolbar.txtSymbol_ni": "Contains As Member",
"SSE.Controllers.Toolbar.txtSymbol_not": "Not",
"SSE.Controllers.Toolbar.txtSymbol_notexists": "There Does Not Exist",
"SSE.Controllers.Toolbar.txtSymbol_nu": "Nu",
"SSE.Controllers.Toolbar.txtSymbol_o": "O",
"SSE.Controllers.Toolbar.txtSymbol_omega": "Omega",
"SSE.Controllers.Toolbar.txtSymbol_partial": "Partial",
"SSE.Controllers.Toolbar.txtSymbol_percent": "Percent",
"SSE.Controllers.Toolbar.txtSymbol_phi": "Phi",
"SSE.Controllers.Toolbar.txtSymbol_pi": "Pi",
"SSE.Controllers.Toolbar.txtSymbol_plus": "Plus",
"SSE.Controllers.Toolbar.txtSymbol_pm": "Plus-Minus",
"SSE.Controllers.Toolbar.txtSymbol_propto": "Proportional To",
"SSE.Controllers.Toolbar.txtSymbol_psi": "Psi",
"SSE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth Root",
"SSE.Controllers.Toolbar.txtSymbol_qed": "Q.E.D.",
"SSE.Controllers.Toolbar.txtSymbol_rddots": "Left Diagonal Ellipsis",
"SSE.Controllers.Toolbar.txtSymbol_rho": "Rho",
"SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Right Arrow",
"SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma",
"SSE.Controllers.Toolbar.txtSymbol_sqrt": "Square Root",
"SSE.Controllers.Toolbar.txtSymbol_tau": "Tau",
"SSE.Controllers.Toolbar.txtSymbol_therefore": "Therefore",
"SSE.Controllers.Toolbar.txtSymbol_theta": "Theta",
"SSE.Controllers.Toolbar.txtSymbol_times": "Times",
"SSE.Controllers.Toolbar.txtSymbol_uparrow": "Up Arrow",
"SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon",
"SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon (variant)",
"SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi (variant)",
"SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi (variant)",
"SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho (variant)",
"SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma (variant)",
"SSE.Controllers.Toolbar.txtSymbol_vartheta": "Theta (variant)",
"SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertical Ellipsis",
"SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi",
"SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta",
"SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Dark",
"SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Light",
"SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Medium",
"SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform may take a considerable amount of time to complete.<br>Are you sure you want to continue?",
"SSE.Controllers.Toolbar.warnMergeLostData": "Only data from the upper-left cell will be kept in the merged cell.<br>Are you sure you want to continue?",
"SSE.Controllers.Toolbar.warnNoRecommended": "",
"SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes",
"SSE.Controllers.Viewport.textFreezePanesShadow": "Show freeze panes shadow",
"SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar",
"SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines",
"SSE.Controllers.Viewport.textHideHeadings": "Hide Headings",
"SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimal Separator",
"SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Thousands Separator",
"SSE.Views.AdvancedSeparatorDialog.textLabel": "Settings for identifying numeric data",
"SSE.Views.AdvancedSeparatorDialog.textQualifier": "Text Qualifier",
"SSE.Views.AdvancedSeparatorDialog.textTitle": "Advanced Settings",
"SSE.Views.AdvancedSeparatorDialog.txtNone": "(None)",
"SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter",
"SSE.Views.AutoFilterDialog.textAddSelection": "Add current selection to filter",
"SSE.Views.AutoFilterDialog.textEmptyItem": "Blanks",
"SSE.Views.AutoFilterDialog.textSelectAll": "Select All",
"SSE.Views.AutoFilterDialog.textSelectAllResults": "Select All Search Results",
"SSE.Views.AutoFilterDialog.textWarning": "Warning",
"SSE.Views.AutoFilterDialog.txtAboveAve": "Above Average",
"SSE.Views.AutoFilterDialog.txtAfter": "After...",
"SSE.Views.AutoFilterDialog.txtAllDatesInThePeriod": "All Dates in the Period",
"SSE.Views.AutoFilterDialog.txtApril": "April",
"SSE.Views.AutoFilterDialog.txtAugust": "August",
"SSE.Views.AutoFilterDialog.txtBefore": "Before...",
"SSE.Views.AutoFilterDialog.txtBegins": "Begins with...",
"SSE.Views.AutoFilterDialog.txtBelowAve": "Below Average",
"SSE.Views.AutoFilterDialog.txtBetween": "Between...",
"SSE.Views.AutoFilterDialog.txtClear": "Clear",
"SSE.Views.AutoFilterDialog.txtContains": "Contains...",
"SSE.Views.AutoFilterDialog.txtDateFilter": "Date Filter",
"SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter",
"SSE.Views.AutoFilterDialog.txtEnds": "Ends with...",
"SSE.Views.AutoFilterDialog.txtEquals": "Equals...",
"SSE.Views.AutoFilterDialog.txtFebruary": "February",
"SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filter by Cell Color",
"SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filter by Font Color",
"SSE.Views.AutoFilterDialog.txtGreater": "Greater than...",
"SSE.Views.AutoFilterDialog.txtGreaterEquals": "Greater than or equal to...",
"SSE.Views.AutoFilterDialog.txtJanuary": "January",
"SSE.Views.AutoFilterDialog.txtJuly": "July",
"SSE.Views.AutoFilterDialog.txtJune": "June",
"SSE.Views.AutoFilterDialog.txtLabelFilter": "Label Filter",
"SSE.Views.AutoFilterDialog.txtLastMonth": "Last Month",
"SSE.Views.AutoFilterDialog.txtLastQuarter": "Last Quarter",
"SSE.Views.AutoFilterDialog.txtLastWeek": "Last Week",
"SSE.Views.AutoFilterDialog.txtLastYear": "Last Year",
"SSE.Views.AutoFilterDialog.txtLess": "Less than...",
"SSE.Views.AutoFilterDialog.txtLessEquals": "Less than or equal to...",
"SSE.Views.AutoFilterDialog.txtMarch": "March",
"SSE.Views.AutoFilterDialog.txtMay": "May",
"SSE.Views.AutoFilterDialog.txtNextMonth": "Next Month",
"SSE.Views.AutoFilterDialog.txtNextQuarter": "Next Quarter",
"SSE.Views.AutoFilterDialog.txtNextWeek": "Next Week",
"SSE.Views.AutoFilterDialog.txtNextYear": "Next Year",
"SSE.Views.AutoFilterDialog.txtNotBegins": "Does not begin with...",
"SSE.Views.AutoFilterDialog.txtNotBetween": "Not between...",
"SSE.Views.AutoFilterDialog.txtNotContains": "Does not contain...",
"SSE.Views.AutoFilterDialog.txtNotEnds": "Does not end with...",
"SSE.Views.AutoFilterDialog.txtNotEquals": "Not equal to...",
"SSE.Views.AutoFilterDialog.txtNovember": "November",
"SSE.Views.AutoFilterDialog.txtNumFilter": "Number Filter",
"SSE.Views.AutoFilterDialog.txtOctober": "October",
"SSE.Views.AutoFilterDialog.txtQuarter1": "Q1",
"SSE.Views.AutoFilterDialog.txtQuarter2": "Q2",
"SSE.Views.AutoFilterDialog.txtQuarter3": "Q3",
"SSE.Views.AutoFilterDialog.txtQuarter4": "Q4",
"SSE.Views.AutoFilterDialog.txtReapply": "Reapply",
"SSE.Views.AutoFilterDialog.txtSeptember": "September",
"SSE.Views.AutoFilterDialog.txtSortCellColor": "Sort by Cell Color",
"SSE.Views.AutoFilterDialog.txtSortFontColor": "Sort by Font Color",
"SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sort Z to A",
"SSE.Views.AutoFilterDialog.txtSortLow2High": "Sort A to Z",
"SSE.Views.AutoFilterDialog.txtSortOption": "Other Sort Options...",
"SSE.Views.AutoFilterDialog.txtTextFilter": "Text Filter",
"SSE.Views.AutoFilterDialog.txtThisMonth": "This Month",
"SSE.Views.AutoFilterDialog.txtThisQuarter": "This Quarter",
"SSE.Views.AutoFilterDialog.txtThisWeek": "This Week",
"SSE.Views.AutoFilterDialog.txtThisYear": "This Year",
"SSE.Views.AutoFilterDialog.txtTitle": "Filter",
"SSE.Views.AutoFilterDialog.txtToday": "Today",
"SSE.Views.AutoFilterDialog.txtTomorrow": "Tomorrow",
"SSE.Views.AutoFilterDialog.txtTop10": "Top 10",
"SSE.Views.AutoFilterDialog.txtValueFilter": "Filter by Value",
"SSE.Views.AutoFilterDialog.txtYearToDate": "Year to Date",
"SSE.Views.AutoFilterDialog.txtYesterday": "Yesterday",
"SSE.Views.AutoFilterDialog.warnFilterError": "To make the filter work, you need at least one value in the value area.",
"SSE.Views.AutoFilterDialog.warnNoSelected": "You must select at least one value",
"SSE.Views.CellEditor.textManager": "Name Manager",
"SSE.Views.CellEditor.tipFormula": "Insert Function",
"SSE.Views.CellRangeDialog.errorMaxRows": "Error! Maximum number of data series per chart is 255",
"SSE.Views.CellRangeDialog.errorStockChart": "",
"SSE.Views.CellRangeDialog.txtEmpty": "Required field",
"SSE.Views.CellRangeDialog.txtInvalidRange": "Error! Invalid cell range",
"SSE.Views.CellRangeDialog.txtTitle": "Select Data Range",
"SSE.Views.CellSettings.strShrink": "Shrink to Fit",
"SSE.Views.CellSettings.strWrap": "Wrap Text",
"SSE.Views.CellSettings.textAngle": "Angle",
"SSE.Views.CellSettings.textBackColor": "Background Color",
"SSE.Views.CellSettings.textBackground": "Background Color",
"SSE.Views.CellSettings.textBorderColor": "Color",
"SSE.Views.CellSettings.textBorders": "Borders",
"SSE.Views.CellSettings.textClearRule": "Clear Rules",
"SSE.Views.CellSettings.textColor": "Solid Fill",
"SSE.Views.CellSettings.textColorScales": "Color Scales",
"SSE.Views.CellSettings.textCondFormat": "Conditional Formatting",
"SSE.Views.CellSettings.textControl": "Text Control",
"SSE.Views.CellSettings.textDataBars": "Data Bars",
"SSE.Views.CellSettings.textDirection": "Direction",
"SSE.Views.CellSettings.textFill": "Fill",
"SSE.Views.CellSettings.textForeground": "Foreground Color",
"SSE.Views.CellSettings.textGradient": "Gradient Stop",
"SSE.Views.CellSettings.textGradientColor": "Color",
"SSE.Views.CellSettings.textGradientFill": "Gradient Fill",
"SSE.Views.CellSettings.textIndent": "Indent",
"SSE.Views.CellSettings.textItems": "Items",
"SSE.Views.CellSettings.textLinear": "Linear",
"SSE.Views.CellSettings.textManageRule": "Manage Rules",
"SSE.Views.CellSettings.textNewRule": "New Rule",
"SSE.Views.CellSettings.textNoFill": "No Fill",
"SSE.Views.CellSettings.textOrientation": "Orientation",
"SSE.Views.CellSettings.textPattern": "Pattern",
"SSE.Views.CellSettings.textPatternFill": "Pattern Fill",
"SSE.Views.CellSettings.textPosition": "Position",
"SSE.Views.CellSettings.textRadial": "Radial",
"SSE.Views.CellSettings.textSelectBorders": "Select Borders",
"SSE.Views.CellSettings.textSelection": "Selection",
"SSE.Views.CellSettings.textThisPivot": "This PivotTable",
"SSE.Views.CellSettings.textThisSheet": "This Sheet",
"SSE.Views.CellSettings.textThisTable": "This Table",
"SSE.Views.CellSettings.tipAddGradientPoint": "Add Gradient Stop",
"SSE.Views.CellSettings.tipAll": "All",
"SSE.Views.CellSettings.tipBottom": "Bottom",
"SSE.Views.CellSettings.tipDiagD": "Diagonal Down",
"SSE.Views.CellSettings.tipDiagU": "Diagonal Up",
"SSE.Views.CellSettings.tipInner": "Inside",
"SSE.Views.CellSettings.tipInnerHor": "Inside Horizontal",
"SSE.Views.CellSettings.tipInnerVert": "Inside Vertical",
"SSE.Views.CellSettings.tipLeft": "Left",
"SSE.Views.CellSettings.tipNone": "None",
"SSE.Views.CellSettings.tipOuter": "Outside",
"SSE.Views.CellSettings.tipRemoveGradientPoint": "Remove Gradient Stop",
"SSE.Views.CellSettings.tipRight": "Right",
"SSE.Views.CellSettings.tipTop": "Top",
"SSE.Views.ChartDataDialog.errorInFormula": "There is an error in the formula you entered.",
"SSE.Views.ChartDataDialog.errorInvalidReference": "The reference is invalid. The reference must point to an open worksheet.",
"SSE.Views.ChartDataDialog.errorMaxPoints": "Each chart can contain a maximum of 4096 points.",
"SSE.Views.ChartDataDialog.errorMaxRows": "Each chart can contain a maximum of 255 data series.",
"SSE.Views.ChartDataDialog.errorNoSingleRowCol": "",
"SSE.Views.ChartDataDialog.errorNoValues": "To create a chart, the series must contain at least one value.",
"SSE.Views.ChartDataDialog.errorStockChart": "",
"SSE.Views.ChartDataDialog.textAdd": "Add",
"SSE.Views.ChartDataDialog.textCategory": "Category",
"SSE.Views.ChartDataDialog.textData": "Data",
"SSE.Views.ChartDataDialog.textDelete": "Delete",
"SSE.Views.ChartDataDialog.textDown": "Down",
"SSE.Views.ChartDataDialog.textEdit": "Edit",
"SSE.Views.ChartDataDialog.textInvalidRange": "Invalid cell range",
"SSE.Views.ChartDataDialog.textSelectData": "Select Data",
"SSE.Views.ChartDataDialog.textSeries": "Series",
"SSE.Views.ChartDataDialog.textSwitch": "Switch Row/Column",
"SSE.Views.ChartDataDialog.textTitle": "Select Data",
"SSE.Views.ChartDataDialog.textUp": "Up",
"SSE.Views.ChartDataRangeDialog.errorInFormula": "There is an error in the formula you entered.",
"SSE.Views.ChartDataRangeDialog.errorInvalidReference": "The reference is invalid. The reference must point to an open worksheet.",
"SSE.Views.ChartDataRangeDialog.errorMaxPoints": "Each chart can contain a maximum of 4096 points.",
"SSE.Views.ChartDataRangeDialog.errorMaxRows": "Each chart can contain a maximum of 255 data series.",
"SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "",
"SSE.Views.ChartDataRangeDialog.errorNoValues": "To create a chart, the series must contain at least one value.",
"SSE.Views.ChartDataRangeDialog.errorStockChart": "",
"SSE.Views.ChartDataRangeDialog.textInvalidRange": "Invalid cell range",
"SSE.Views.ChartDataRangeDialog.textSelectData": "Select Data",
"SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Axis Labels",
"SSE.Views.ChartDataRangeDialog.txtChoose": "Choose",
"SSE.Views.ChartDataRangeDialog.txtSeriesName": "Series Name",
"SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Category",
"SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Series",
"SSE.Views.ChartDataRangeDialog.txtValues": "Values",
"SSE.Views.ChartDataRangeDialog.txtXValues": "X Values",
"SSE.Views.ChartDataRangeDialog.txtYValues": "Y Values",
"SSE.Views.ChartSettings.errorMaxRows": "Each chart can contain a maximum of 255 data series.",
"SSE.Views.ChartSettings.strLineWeight": "Line Weight",
"SSE.Views.ChartSettings.strSparkColor": "Color",
"SSE.Views.ChartSettings.strTemplate": "Style",
"SSE.Views.ChartSettings.text3dDepth": "3-D Depth",
"SSE.Views.ChartSettings.text3dHeight": "3-D Height",
"SSE.Views.ChartSettings.text3dRotation": "3-D Rotation",
"SSE.Views.ChartSettings.textAdvanced": "Advanced",
"SSE.Views.ChartSettings.textAutoscale": "Autoscale",
"SSE.Views.ChartSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"SSE.Views.ChartSettings.textChangeType": "Change Chart Type",
"SSE.Views.ChartSettings.textChartType": "Chart Type",
"SSE.Views.ChartSettings.textDefault": "Default",
"SSE.Views.ChartSettings.textDown": "Down",
"SSE.Views.ChartSettings.textEditData": "Edit Data",
"SSE.Views.ChartSettings.textFirstPoint": "First Point",
"SSE.Views.ChartSettings.textHeight": "Height",
"SSE.Views.ChartSettings.textHighPoint": "High Point",
"SSE.Views.ChartSettings.textKeepRatio": "Keep Aspect Ratio",
"SSE.Views.ChartSettings.textLastPoint": "Last Point",
"SSE.Views.ChartSettings.textLeft": "Left",
"SSE.Views.ChartSettings.textLowPoint": "Low Point",
"SSE.Views.ChartSettings.textMarkers": "Markers",
"SSE.Views.ChartSettings.textNarrow": "Narrow",
"SSE.Views.ChartSettings.textNegativePoint": "Negative Point",
"SSE.Views.ChartSettings.textPerspective": "Perspective",
"SSE.Views.ChartSettings.textRanges": "Data Ranges",
"SSE.Views.ChartSettings.textRight": "Right",
"SSE.Views.ChartSettings.textRightAngle": "Right Angle Axes",
"SSE.Views.ChartSettings.textSelectData": "Select Data",
"SSE.Views.ChartSettings.textShow": "Show",
"SSE.Views.ChartSettings.textSize": "Size",
"SSE.Views.ChartSettings.textStyle": "Style",
"SSE.Views.ChartSettings.textSwitch": "Switch Row/Column",
"SSE.Views.ChartSettings.textType": "Type",
"SSE.Views.ChartSettings.textUp": "Up",
"SSE.Views.ChartSettings.textWiden": "Widen",
"SSE.Views.ChartSettings.textWidth": "Width",
"SSE.Views.ChartSettings.textX": "X Rotation",
"SSE.Views.ChartSettings.textY": "Y Rotation",
"SSE.Views.ChartSettingsDlg.errorMaxPoints": "Error! Maximum number of points per chart series is 4096.",
"SSE.Views.ChartSettingsDlg.errorMaxRows": "Error! Maximum number of data series per chart is 255",
"SSE.Views.ChartSettingsDlg.errorStockChart": "",
"SSE.Views.ChartSettingsDlg.textAbsolute": "Size and Position are Fixed",
"SSE.Views.ChartSettingsDlg.textAlt": "Alternative Text",
"SSE.Views.ChartSettingsDlg.textAltDescription": "Description",
"SSE.Views.ChartSettingsDlg.textAltTip": "",
"SSE.Views.ChartSettingsDlg.textAltTitle": "Title",
"SSE.Views.ChartSettingsDlg.textAuto": "Automatic",
"SSE.Views.ChartSettingsDlg.textAutoEach": "Auto Adjust",
"SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses",
"SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options",
"SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position",
"SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings",
"SSE.Views.ChartSettingsDlg.textAxisTitle": "Title",
"SSE.Views.ChartSettingsDlg.textBase": "Base",
"SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks",
"SSE.Views.ChartSettingsDlg.textBillions": "Billions",
"SSE.Views.ChartSettingsDlg.textBottom": "Bottom",
"SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name",
"SSE.Views.ChartSettingsDlg.textCenter": "Center",
"SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements & Chart Legend",
"SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title",
"SSE.Views.ChartSettingsDlg.textCross": "Cross",
"SSE.Views.ChartSettingsDlg.textCustom": "Custom",
"SSE.Views.ChartSettingsDlg.textDataColumns": "In Columns",
"SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels",
"SSE.Views.ChartSettingsDlg.textDataRows": "In Rows",
"SSE.Views.ChartSettingsDlg.textDisplayLegend": "Show Legend",
"SSE.Views.ChartSettingsDlg.textEmptyCells": "Hidden and Empty Cells",
"SSE.Views.ChartSettingsDlg.textEmptyLine": "Connect Data Points with Line",
"SSE.Views.ChartSettingsDlg.textFit": "Best Fit",
"SSE.Views.ChartSettingsDlg.textFixed": "Fixed",
"SSE.Views.ChartSettingsDlg.textFormat": "Label Format",
"SSE.Views.ChartSettingsDlg.textGaps": "Gap",
"SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines",
"SSE.Views.ChartSettingsDlg.textGroup": "Group",
"SSE.Views.ChartSettingsDlg.textHide": "Hide",
"SSE.Views.ChartSettingsDlg.textHideAxis": "Hide Axis",
"SSE.Views.ChartSettingsDlg.textHigh": "High",
"SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal Axis",
"SSE.Views.ChartSettingsDlg.textHorAxisSec": "Horizontal Axis (Secondary)",
"SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal",
"SSE.Views.ChartSettingsDlg.textHundredMil": "Hundred Millions",
"SSE.Views.ChartSettingsDlg.textHundreds": "Hundreds",
"SSE.Views.ChartSettingsDlg.textHundredThousands": "Hundred Thousands",
"SSE.Views.ChartSettingsDlg.textIn": "In",
"SSE.Views.ChartSettingsDlg.textInnerBottom": "Inside Bottom",
"SSE.Views.ChartSettingsDlg.textInnerTop": "Inside Top",
"SSE.Views.ChartSettingsDlg.textInvalidRange": "Error! Invalid cell range",
"SSE.Views.ChartSettingsDlg.textLabelDist": "Label Distance",
"SSE.Views.ChartSettingsDlg.textLabelInterval": "Label Interval",
"SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options",
"SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position",
"SSE.Views.ChartSettingsDlg.textLayout": "Layout",
"SSE.Views.ChartSettingsDlg.textLeft": "Left",
"SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay",
"SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom",
"SSE.Views.ChartSettingsDlg.textLegendLeft": "Left",
"SSE.Views.ChartSettingsDlg.textLegendPos": "Legend Position",
"SSE.Views.ChartSettingsDlg.textLegendRight": "Right",
"SSE.Views.ChartSettingsDlg.textLegendTop": "Top",
"SSE.Views.ChartSettingsDlg.textLines": "Lines",
"SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range",
"SSE.Views.ChartSettingsDlg.textLogScale": "Logarithmic Scale",
"SSE.Views.ChartSettingsDlg.textLow": "Low",
"SSE.Views.ChartSettingsDlg.textMajor": "Major",
"SSE.Views.ChartSettingsDlg.textMajorMinor": "Major & Minor",
"SSE.Views.ChartSettingsDlg.textMajorType": "Major Type",
"SSE.Views.ChartSettingsDlg.textManual": "Manual",
"SSE.Views.ChartSettingsDlg.textMarkers": "Markers",
"SSE.Views.ChartSettingsDlg.textMarksInterval": "Marks Interval",
"SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum Value",
"SSE.Views.ChartSettingsDlg.textMillions": "Millions",
"SSE.Views.ChartSettingsDlg.textMinor": "Minor",
"SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type",
"SSE.Views.ChartSettingsDlg.textMinValue": "Minimum Value",
"SSE.Views.ChartSettingsDlg.textNextToAxis": "Next to Axis",
"SSE.Views.ChartSettingsDlg.textNone": "None",
"SSE.Views.ChartSettingsDlg.textNoOverlay": "No Overlay",
"SSE.Views.ChartSettingsDlg.textOneCell": "One Cell",
"SSE.Views.ChartSettingsDlg.textOnTickMarks": "On Tick Marks",
"SSE.Views.ChartSettingsDlg.textOut": "Out",
"SSE.Views.ChartSettingsDlg.textOuterTop": "Outside Top",
"SSE.Views.ChartSettingsDlg.textOverlay": "Overlay",
"SSE.Views.ChartSettingsDlg.textReverse": "Reverse",
"SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse Order",
"SSE.Views.ChartSettingsDlg.textRight": "Right",
"SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay",
"SSE.Views.ChartSettingsDlg.textRotated": "Rotated",
"SSE.Views.ChartSettingsDlg.textSameAll": "Same for All",
"SSE.Views.ChartSettingsDlg.textSelectData": "Select Data",
"SSE.Views.ChartSettingsDlg.textSeparator": "Separator",
"SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name",
"SSE.Views.ChartSettingsDlg.textShow": "Show",
"SSE.Views.ChartSettingsDlg.textShowBorders": "Show Borders",
"SSE.Views.ChartSettingsDlg.textShowData": "Show Data",
"SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Show Empty Cells",
"SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Show Sparkline Axis",
"SSE.Views.ChartSettingsDlg.textShowValues": "Show Values",
"SSE.Views.ChartSettingsDlg.textSingle": "Single",
"SSE.Views.ChartSettingsDlg.textSmooth": "Smooth",
"SSE.Views.ChartSettingsDlg.textSnap": "Snap",
"SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges",
"SSE.Views.ChartSettingsDlg.textStraight": "Straight",
"SSE.Views.ChartSettingsDlg.textStyle": "Style",
"SSE.Views.ChartSettingsDlg.textTenMillions": "Ten Millions",
"SSE.Views.ChartSettingsDlg.textTenThousands": "Ten Thousands",
"SSE.Views.ChartSettingsDlg.textThousands": "Thousands",
"SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options",
"SSE.Views.ChartSettingsDlg.textTitle": "Title",
"SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline",
"SSE.Views.ChartSettingsDlg.textTop": "Top",
"SSE.Views.ChartSettingsDlg.textTrillions": "Trillions",
"SSE.Views.ChartSettingsDlg.textTwoCell": "Two Cell",
"SSE.Views.ChartSettingsDlg.textType": "Type",
"SSE.Views.ChartSettingsDlg.textTypeData": "Type Data",
"SSE.Views.ChartSettingsDlg.textUnits": "Units",
"SSE.Views.ChartSettingsDlg.textValue": "Value",
"SSE.Views.ChartSettingsDlg.textPercent": "Percent",
"SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis",
"SSE.Views.ChartSettingsDlg.textVertAxisSec": "Vertical Axis (Secondary)",
"SSE.Views.ChartSettingsDlg.textXAxisTitle": "X-Axis Title",
"SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y-Axis Title",
"SSE.Views.ChartSettingsDlg.textZero": "Zero",
"SSE.Views.ChartSettingsDlg.txtEmpty": "Required field",
"SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two data series.",
"SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires a secondary axis that is already in use by the existing chart. Please select another chart type.",
"SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis",
"SSE.Views.ChartTypeDialog.textSeries": "Series",
"SSE.Views.ChartTypeDialog.textStyle": "Style",
"SSE.Views.ChartTypeDialog.textTitle": "Change Chart Type",
"SSE.Views.ChartTypeDialog.textType": "Type",
"SSE.Views.ChartWizardDialog.errorComboSeries": "To create a combination chart, select at least two data series.",
"SSE.Views.ChartWizardDialog.errorMaxPoints": "The maximum number of series points per chart is 4096.",
"SSE.Views.ChartWizardDialog.errorMaxRows": "The maximum number of data series per chart is 255.",
"SSE.Views.ChartWizardDialog.errorSecondaryAxis": "The selected chart type requires a secondary axis that is already in use by the existing chart. Select another chart type.",
"SSE.Views.ChartWizardDialog.errorStockChart": "",
"SSE.Views.ChartWizardDialog.textRecommended": "Recommended",
"SSE.Views.ChartWizardDialog.textSecondary": "Secondary Axis",
"SSE.Views.ChartWizardDialog.textSeries": "Series",
"SSE.Views.ChartWizardDialog.textTitle": "Insert Chart",
"SSE.Views.ChartWizardDialog.textTitleChange": "Change Chart Type",
"SSE.Views.ChartWizardDialog.textType": "Type",
"SSE.Views.ChartWizardDialog.txtSeriesDesc": "Select chart type and axis for data series",
"SSE.Views.CreatePivotDialog.textDataRange": "Source Data Range",
"SSE.Views.CreatePivotDialog.textDestination": "Choose where to place the pivot table",
"SSE.Views.CreatePivotDialog.textExist": "Existing Worksheet",
"SSE.Views.CreatePivotDialog.textInvalidRange": "Invalid cell range",
"SSE.Views.CreatePivotDialog.textNew": "New Worksheet",
"SSE.Views.CreatePivotDialog.textSelectData": "Select Data",
"SSE.Views.CreatePivotDialog.textTitle": "Create PivotTable",
"SSE.Views.CreatePivotDialog.txtEmpty": "Required field",
"SSE.Views.CreateSparklineDialog.textDataRange": "Source Data Range",
"SSE.Views.CreateSparklineDialog.textDestination": "Choose where to place the sparkline.",
"SSE.Views.CreateSparklineDialog.textInvalidRange": "Invalid cell range",
"SSE.Views.CreateSparklineDialog.textSelectData": "Select Data",
"SSE.Views.CreateSparklineDialog.textTitle": "Create Sparkline",
"SSE.Views.CreateSparklineDialog.txtEmpty": "This field is required",
"SSE.Views.DataTab.capBtnGroup": "Group",
"SSE.Views.DataTab.capBtnTextCustomSort": "Custom Sort",
"SSE.Views.DataTab.capBtnTextDataValidation": "Data Validation",
"SSE.Views.DataTab.capBtnTextRemDuplicates": "Remove Duplicates",
"SSE.Views.DataTab.capBtnTextToCol": "Text to Columns Wizard",
"SSE.Views.DataTab.capBtnUngroup": "Ungroup",
"SSE.Views.DataTab.capDataExternalLinks": "External Links",
"SSE.Views.DataTab.capDataFromText": "Get Data",
"SSE.Views.DataTab.mniFromFile": "From Local TXT/CSV",
"SSE.Views.DataTab.mniFromUrl": "Import TEXT/CSV from Web Address",
"SSE.Views.DataTab.mniFromXMLFile": "From Local XML File",
"SSE.Views.DataTab.textBelow": "Summary rows below detail",
"SSE.Views.DataTab.textClear": "Clear Outline",
"SSE.Views.DataTab.textColumns": "Ungroup Columns",
"SSE.Views.DataTab.textGroupColumns": "Group Columns",
"SSE.Views.DataTab.textGroupRows": "Group Rows",
"SSE.Views.DataTab.textRightOf": "Summary columns to the right of detail",
"SSE.Views.DataTab.textRows": "Ungroup Rows",
"SSE.Views.DataTab.tipCustomSort": "Custom Sort",
"SSE.Views.DataTab.tipDataFromText": "Get data from text/CSV files",
"SSE.Views.DataTab.tipDataValidation": "Data Validation",
"SSE.Views.DataTab.tipExternalLinks": "View other files linked to this spreadsheet",
"SSE.Views.DataTab.tipGroup": "Group cell ranges",
"SSE.Views.DataTab.tipRemDuplicates": "Remove duplicate rows from worksheet",
"SSE.Views.DataTab.tipToColumns": "Separate cell text into columns",
"SSE.Views.DataTab.tipUngroup": "Ungroup cell ranges",
"SSE.Views.DataValidationDialog.errorFormula": "This value currently contains an error. Do you want to continue?",
"SSE.Views.DataValidationDialog.errorInvalid": "",
"SSE.Views.DataValidationDialog.errorInvalidDate": "The date you entered for field \"{0}\" is invalid.",
"SSE.Views.DataValidationDialog.errorInvalidList": "List source must be a delimited list or a reference to a single row or column.",
"SSE.Views.DataValidationDialog.errorInvalidTime": "",
"SSE.Views.DataValidationDialog.errorMinGreaterMax": "Field \"{1}\" must be greater than or equal to field \"{0}\".",
"SSE.Views.DataValidationDialog.errorMustEnterBothValues": "You must enter a value in both field \"{0}\" and field \"{1}\".",
"SSE.Views.DataValidationDialog.errorMustEnterValue": "",
"SSE.Views.DataValidationDialog.errorNamedRange": "The specified named range cannot be found.",
"SSE.Views.DataValidationDialog.errorNegativeTextLength": "",
"SSE.Views.DataValidationDialog.errorNotNumeric": "Field \"{0}\" must be a number, numeric expression, or reference to a cell containing a number.",
"SSE.Views.DataValidationDialog.strError": "Error Alert",
"SSE.Views.DataValidationDialog.strInput": "Input Message",
"SSE.Views.DataValidationDialog.strSettings": "Settings",
"SSE.Views.DataValidationDialog.textAlert": "Alert",
"SSE.Views.DataValidationDialog.textAllow": "Allow",
"SSE.Views.DataValidationDialog.textApply": "Apply these changes to all other cells with the same settings",
"SSE.Views.DataValidationDialog.textCellSelected": "Show the following input message when cell is selected:",
"SSE.Views.DataValidationDialog.textCompare": "Compared to",
"SSE.Views.DataValidationDialog.textData": "Data",
"SSE.Views.DataValidationDialog.textEndDate": "End Date",
"SSE.Views.DataValidationDialog.textEndTime": "End Time",
"SSE.Views.DataValidationDialog.textError": "Error Message",
"SSE.Views.DataValidationDialog.textFormula": "Formula",
"SSE.Views.DataValidationDialog.textIgnore": "Ignore blank",
"SSE.Views.DataValidationDialog.textInput": "Input Message",
"SSE.Views.DataValidationDialog.textMax": "Maximum",
"SSE.Views.DataValidationDialog.textMessage": "Message",
"SSE.Views.DataValidationDialog.textMin": "Minimum",
"SSE.Views.DataValidationDialog.textSelectData": "Select Data",
"SSE.Views.DataValidationDialog.textShowDropDown": "Show dropdown list in cell",
"SSE.Views.DataValidationDialog.textShowError": "Show error alert when invalid data is entered",
"SSE.Views.DataValidationDialog.textShowInput": "Show input message when cell is selected",
"SSE.Views.DataValidationDialog.textSource": "Source",
"SSE.Views.DataValidationDialog.textStartDate": "Start Date",
"SSE.Views.DataValidationDialog.textStartTime": "Start Time",
"SSE.Views.DataValidationDialog.textStop": "Stop",
"SSE.Views.DataValidationDialog.textStyle": "Style",
"SSE.Views.DataValidationDialog.textTitle": "Title",
"SSE.Views.DataValidationDialog.textUserEnters": "Show the following error alert when user enters invalid data:",
"SSE.Views.DataValidationDialog.txtAny": "Any value",
"SSE.Views.DataValidationDialog.txtBetween": "Between",
"SSE.Views.DataValidationDialog.txtDate": "Date",
"SSE.Views.DataValidationDialog.txtDecimal": "Decimal",
"SSE.Views.DataValidationDialog.txtElTime": "Elapsed Time",
"SSE.Views.DataValidationDialog.txtEndDate": "End Date",
"SSE.Views.DataValidationDialog.txtEndTime": "End Time",
"SSE.Views.DataValidationDialog.txtEqual": "Equal to",
"SSE.Views.DataValidationDialog.txtGreaterThan": "Greater than",
"SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Greater than or equal to",
"SSE.Views.DataValidationDialog.txtLength": "Length",
"SSE.Views.DataValidationDialog.txtLessThan": "Less than",
"SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Less than or equal to",
"SSE.Views.DataValidationDialog.txtList": "List",
"SSE.Views.DataValidationDialog.txtNotBetween": "Not between",
"SSE.Views.DataValidationDialog.txtNotEqual": "Not equal to",
"SSE.Views.DataValidationDialog.txtOther": "Other",
"SSE.Views.DataValidationDialog.txtStartDate": "Start Date",
"SSE.Views.DataValidationDialog.txtStartTime": "Start Time",
"SSE.Views.DataValidationDialog.txtTextLength": "Text length",
"SSE.Views.DataValidationDialog.txtTime": "Time",
"SSE.Views.DataValidationDialog.txtWhole": "Whole number",
"SSE.Views.DigitalFilterDialog.capAnd": "And",
"SSE.Views.DigitalFilterDialog.capCondition1": "Equal to",
"SSE.Views.DigitalFilterDialog.capCondition10": "Does not end with",
"SSE.Views.DigitalFilterDialog.capCondition11": "Contains",
"SSE.Views.DigitalFilterDialog.capCondition12": "Does not contain",
"SSE.Views.DigitalFilterDialog.capCondition2": "Not equal to",
"SSE.Views.DigitalFilterDialog.capCondition3": "Greater than",
"SSE.Views.DigitalFilterDialog.capCondition30": "After",
"SSE.Views.DigitalFilterDialog.capCondition4": "Greater than or equal to",
"SSE.Views.DigitalFilterDialog.capCondition40": "After or equal to",
"SSE.Views.DigitalFilterDialog.capCondition5": "Less than",
"SSE.Views.DigitalFilterDialog.capCondition50": "Before",
"SSE.Views.DigitalFilterDialog.capCondition6": "Less than or equal to",
"SSE.Views.DigitalFilterDialog.capCondition60": "Before or equal to",
"SSE.Views.DigitalFilterDialog.capCondition7": "Begins with",
"SSE.Views.DigitalFilterDialog.capCondition8": "Does not begin with",
"SSE.Views.DigitalFilterDialog.capCondition9": "Ends with",
"SSE.Views.DigitalFilterDialog.capOr": "Or",
"SSE.Views.DigitalFilterDialog.textNoFilter": " ",
"SSE.Views.DigitalFilterDialog.textShowRows": "Show rows:",
"SSE.Views.DigitalFilterDialog.textUse1": "Use ? to represent any single character",
"SSE.Views.DigitalFilterDialog.textUse2": "Use * to represent any series of characters",
"SSE.Views.DigitalFilterDialog.txtSelectDate": "Select Date",
"SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter",
"SSE.Views.DocumentHolder.advancedEquationText": "Equation Settings",
"SSE.Views.DocumentHolder.advancedImgText": "Image Advanced Settings",
"SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings",
"SSE.Views.DocumentHolder.advancedSlicerText": "Slicer Advanced Settings",
"SSE.Views.DocumentHolder.allLinearText": "All - Linear",
"SSE.Views.DocumentHolder.allProfText": "All - Professional",
"SSE.Views.DocumentHolder.bottomCellText": "Bottom Align",
"SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering",
"SSE.Views.DocumentHolder.centerCellText": "Middle Align",
"SSE.Views.DocumentHolder.chartDataText": "Select Chart Data",
"SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings",
"SSE.Views.DocumentHolder.chartTypeText": "Change Chart Type",
"SSE.Views.DocumentHolder.currLinearText": "Current - Linear",
"SSE.Views.DocumentHolder.currProfText": "Current - Professional",
"SSE.Views.DocumentHolder.deleteColumnText": "Column",
"SSE.Views.DocumentHolder.deleteRowText": "Row",
"SSE.Views.DocumentHolder.deleteTableText": "Table",
"SSE.Views.DocumentHolder.direct270Text": "Rotate Text Up",
"SSE.Views.DocumentHolder.direct90Text": "Rotate Text Down",
"SSE.Views.DocumentHolder.directHText": "Horizontal",
"SSE.Views.DocumentHolder.directionText": "Text Direction",
"SSE.Views.DocumentHolder.editChartText": "Edit Data",
"SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink",
"SSE.Views.DocumentHolder.hideEqToolbar": "Hide Equation Toolbar",
"SSE.Views.DocumentHolder.insertColumnLeftText": "Insert Column Left",
"SSE.Views.DocumentHolder.insertColumnRightText": "Insert Column Right",
"SSE.Views.DocumentHolder.insertRowAboveText": "Insert Row Above",
"SSE.Views.DocumentHolder.insertRowBelowText": "Insert Row Below",
"SSE.Views.DocumentHolder.latexText": "LaTeX",
"SSE.Views.DocumentHolder.originalSizeText": "Actual Size",
"SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink",
"SSE.Views.DocumentHolder.selectColumnText": "Column",
"SSE.Views.DocumentHolder.selectDataText": "Column Data",
"SSE.Views.DocumentHolder.selectRowText": "Row",
"SSE.Views.DocumentHolder.selectTableText": "Table",
"SSE.Views.DocumentHolder.showEqToolbar": "Show Equation Toolbar",
"SSE.Views.DocumentHolder.strDelete": "Delete Signature",
"SSE.Views.DocumentHolder.strDetails": "Signature Details",
"SSE.Views.DocumentHolder.strSetup": "Signature Settings",
"SSE.Views.DocumentHolder.strSign": "Sign",
"SSE.Views.DocumentHolder.textAlign": "Alignment",
"SSE.Views.DocumentHolder.textArrange": "Arrange",
"SSE.Views.DocumentHolder.textArrangeBack": "Send to Back",
"SSE.Views.DocumentHolder.textArrangeBackward": "Send Backward",
"SSE.Views.DocumentHolder.textArrangeForward": "Bring Forward",
"SSE.Views.DocumentHolder.textArrangeFront": "Bring to Front",
"SSE.Views.DocumentHolder.textAverage": "Average",
"SSE.Views.DocumentHolder.textBullets": "Bullets",
"SSE.Views.DocumentHolder.textCount": "Count",
"SSE.Views.DocumentHolder.textCrop": "Crop",
"SSE.Views.DocumentHolder.textCropFill": "Fill",
"SSE.Views.DocumentHolder.textCropFit": "Fit",
"SSE.Views.DocumentHolder.textEditPoints": "Edit Points",
"SSE.Views.DocumentHolder.textEntriesList": "Select from dropdown list",
"SSE.Views.DocumentHolder.textFlipH": "Flip Horizontal",
"SSE.Views.DocumentHolder.textFlipV": "Flip Vertical",
"SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes",
"SSE.Views.DocumentHolder.textFromFile": "From File",
"SSE.Views.DocumentHolder.textFromStorage": "From Storage",
"SSE.Views.DocumentHolder.textFromUrl": "From URL",
"SSE.Views.DocumentHolder.textListSettings": "List Settings",
"SSE.Views.DocumentHolder.textMacro": "Assign Macro",
"SSE.Views.DocumentHolder.textMax": "Maximum",
"SSE.Views.DocumentHolder.textMin": "Minimum",
"SSE.Views.DocumentHolder.textMore": "More Functions",
"SSE.Views.DocumentHolder.textMoreFormats": "More Formats",
"SSE.Views.DocumentHolder.textNone": "None",
"SSE.Views.DocumentHolder.textNumbering": "Numbering",
"SSE.Views.DocumentHolder.textReplace": "Change Picture",
"SSE.Views.DocumentHolder.textRotate": "Rotate",
"SSE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise",
"SSE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise",
"SSE.Views.DocumentHolder.textSaveAsPicture": "Save as Picture",
"SSE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom",
"SSE.Views.DocumentHolder.textShapeAlignCenter": "Align Center",
"SSE.Views.DocumentHolder.textShapeAlignLeft": "Align Left",
"SSE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle",
"SSE.Views.DocumentHolder.textShapeAlignRight": "Align Right",
"SSE.Views.DocumentHolder.textShapeAlignTop": "Align Top",
"SSE.Views.DocumentHolder.textStdDev": "Standard Deviation",
"SSE.Views.DocumentHolder.textSum": "Sum",
"SSE.Views.DocumentHolder.textUndo": "Reset",
"SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes",
"SSE.Views.DocumentHolder.textVar": "Variance",
"SSE.Views.DocumentHolder.tipMarkersArrow": "Arrow Bullet",
"SSE.Views.DocumentHolder.tipMarkersCheckmark": "Checkmark Bullet",
"SSE.Views.DocumentHolder.tipMarkersDash": "Dash Bullet",
"SSE.Views.DocumentHolder.tipMarkersFRhombus": "Filled Rhombus Bullet",
"SSE.Views.DocumentHolder.tipMarkersFRound": "Filled Round Bullet",
"SSE.Views.DocumentHolder.tipMarkersFSquare": "Filled Square Bullet",
"SSE.Views.DocumentHolder.tipMarkersHRound": "Hollow Round Bullet",
"SSE.Views.DocumentHolder.tipMarkersStar": "Star Bullet",
"SSE.Views.DocumentHolder.topCellText": "Top Align",
"SSE.Views.DocumentHolder.txtAccounting": "Accounting",
"SSE.Views.DocumentHolder.txtAddComment": "Add Comment",
"SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name",
"SSE.Views.DocumentHolder.txtArrange": "Arrange",
"SSE.Views.DocumentHolder.txtAscending": "Ascending",
"SSE.Views.DocumentHolder.txtAutoColumnWidth": "AutoFit Column Width",
"SSE.Views.DocumentHolder.txtAutoRowHeight": "AutoFit Row Height",
"SSE.Views.DocumentHolder.txtAverage": "Average",
"SSE.Views.DocumentHolder.txtClear": "Clear",
"SSE.Views.DocumentHolder.txtClearAll": "Clear All",
"SSE.Views.DocumentHolder.txtClearComments": "Clear Comments",
"SSE.Views.DocumentHolder.txtClearFormat": "Clear Format",
"SSE.Views.DocumentHolder.txtClearHyper": "Clear Hyperlinks",
"SSE.Views.DocumentHolder.txtClearPivotField": "Clear filters from:",
"SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear Selected Sparkline Groups",
"SSE.Views.DocumentHolder.txtClearSparklines": "Clear Selected Sparklines",
"SSE.Views.DocumentHolder.txtClearText": "Clear Contents",
"SSE.Views.DocumentHolder.txtColumn": "Entire Column",
"SSE.Views.DocumentHolder.txtColumnWidth": "Column Width",
"SSE.Views.DocumentHolder.txtCondFormat": "Conditional Formatting",
"SSE.Views.DocumentHolder.txtCopy": "Copy",
"SSE.Views.DocumentHolder.txtCount": "Count",
"SSE.Views.DocumentHolder.txtCurrency": "Currency",
"SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom Column Width",
"SSE.Views.DocumentHolder.txtCustomRowHeight": "Custom Row Height",
"SSE.Views.DocumentHolder.txtCustomSort": "Custom Sort",
"SSE.Views.DocumentHolder.txtCut": "Cut",
"SSE.Views.DocumentHolder.txtDateLong": "Long Date",
"SSE.Views.DocumentHolder.txtDateShort": "Short Date",
"SSE.Views.DocumentHolder.txtDelete": "Delete",
"SSE.Views.DocumentHolder.txtDelField": "Delete",
"SSE.Views.DocumentHolder.txtDescending": "Descending",
"SSE.Views.DocumentHolder.txtDifference": "Difference",
"SSE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally",
"SSE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically",
"SSE.Views.DocumentHolder.txtEditComment": "Edit Comment",
"SSE.Views.DocumentHolder.txtFieldSettings": "Field Settings",
"SSE.Views.DocumentHolder.txtFilter": "Filter",
"SSE.Views.DocumentHolder.txtFilterCellColor": "Filter by Selected Cell Color",
"SSE.Views.DocumentHolder.txtFilterFontColor": "Filter by Selected Cell Font Color",
"SSE.Views.DocumentHolder.txtFilterValue": "Filter by Selected Cell Value",
"SSE.Views.DocumentHolder.txtFormula": "Insert Function",
"SSE.Views.DocumentHolder.txtFraction": "Fraction",
"SSE.Views.DocumentHolder.txtGeneral": "General",
"SSE.Views.DocumentHolder.txtGetLink": "Get Link to This Range",
"SSE.Views.DocumentHolder.txtGrandTotal": "Grand Total",
"SSE.Views.DocumentHolder.txtGroup": "Group",
"SSE.Views.DocumentHolder.txtHide": "Hide",
"SSE.Views.DocumentHolder.txtIndex": "Index",
"SSE.Views.DocumentHolder.txtInsert": "Insert",
"SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink",
"SSE.Views.DocumentHolder.txtInsImage": "Insert Picture",
"SSE.Views.DocumentHolder.txtInsImageUrl": "Insert Online Picture",
"SSE.Views.DocumentHolder.txtLabelFilter": "Label Filter",
"SSE.Views.DocumentHolder.txtMax": "Maximum",
"SSE.Views.DocumentHolder.txtMin": "Minimum",
"SSE.Views.DocumentHolder.txtMoreOptions": "More Options",
"SSE.Views.DocumentHolder.txtNormal": "No Calculation",
"SSE.Views.DocumentHolder.txtNumber": "Number",
"SSE.Views.DocumentHolder.txtNumFormat": "Format Cells",
"SSE.Views.DocumentHolder.txtPaste": "Paste",
"SSE.Views.DocumentHolder.txtPercent": "Percentage",
"SSE.Views.DocumentHolder.txtPercentage": "Percentage",
"SSE.Views.DocumentHolder.txtPercentDiff": "Percent Difference",
"SSE.Views.DocumentHolder.txtPercentOfCol": "Percent of Column Total",
"SSE.Views.DocumentHolder.txtPercentOfGrand": "Percent of Grand Total",
"SSE.Views.DocumentHolder.txtPercentOfParent": "Percent of Parent Row Total",
"SSE.Views.DocumentHolder.txtPercentOfParentCol": "Percent of Parent Column Total",
"SSE.Views.DocumentHolder.txtPercentOfParentRow": "Percent of Parent Row Total",
"SSE.Views.DocumentHolder.txtPercentOfRunTotal": "Percent of Running Total",
"SSE.Views.DocumentHolder.txtPercentOfTotal": "Percent of Row Total",
"SSE.Views.DocumentHolder.txtPivotSettings": "PivotTable Settings",
"SSE.Views.DocumentHolder.txtProduct": "Product",
"SSE.Views.DocumentHolder.txtRankAscending": "Rank Smallest to Largest",
"SSE.Views.DocumentHolder.txtRankDescending": "Rank Largest to Smallest",
"SSE.Views.DocumentHolder.txtReapply": "Reapply",
"SSE.Views.DocumentHolder.txtRefresh": "Refresh",
"SSE.Views.DocumentHolder.txtRow": "Entire Row",
"SSE.Views.DocumentHolder.txtRowHeight": "Row Height",
"SSE.Views.DocumentHolder.txtRunTotal": "Running Total",
"SSE.Views.DocumentHolder.txtScientific": "Scientific",
"SSE.Views.DocumentHolder.txtSelect": "Select",
"SSE.Views.DocumentHolder.txtShiftDown": "Shift Cells Down",
"SSE.Views.DocumentHolder.txtShiftLeft": "Shift Cells Left",
"SSE.Views.DocumentHolder.txtShiftRight": "Shift Cells Right",
"SSE.Views.DocumentHolder.txtShiftUp": "Shift Cells Up",
"SSE.Views.DocumentHolder.txtShow": "Show",
"SSE.Views.DocumentHolder.txtShowAs": "Show Values As",
"SSE.Views.DocumentHolder.txtShowComment": "Show Comment",
"SSE.Views.DocumentHolder.txtShowDetails": "Show Details",
"SSE.Views.DocumentHolder.txtSort": "Sort",
"SSE.Views.DocumentHolder.txtSortCellColor": "Put Selected Cell Color on Top",
"SSE.Views.DocumentHolder.txtSortFontColor": "Put Selected Font Color on Top",
"SSE.Views.DocumentHolder.txtSortOption": "More Sort Options",
"SSE.Views.DocumentHolder.txtSparklines": "Sparklines",
"SSE.Views.DocumentHolder.txtSubtotalField": "Subtotal",
"SSE.Views.DocumentHolder.txtSum": "Sum",
"SSE.Views.DocumentHolder.txtSummarize": "Summarize Values By:",
"SSE.Views.DocumentHolder.txtText": "Text",
"SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraph Advanced Settings",
"SSE.Views.DocumentHolder.txtTime": "Time",
"SSE.Views.DocumentHolder.txtTop10": "Top 10",
"SSE.Views.DocumentHolder.txtUngroup": "Ungroup",
"SSE.Views.DocumentHolder.txtValueFieldSettings": "Value Field Settings",
"SSE.Views.DocumentHolder.txtValueFilter": "Value Filter",
"SSE.Views.DocumentHolder.txtWidth": "Width",
"SSE.Views.DocumentHolder.unicodeText": "Unicode",
"SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment",
"SSE.Views.ExternalLinksDlg.closeButtonText": "Close",
"SSE.Views.ExternalLinksDlg.textChange": "Change Source",
"SSE.Views.ExternalLinksDlg.textDelete": "Break Link",
"SSE.Views.ExternalLinksDlg.textDeleteAll": "Break All Links",
"SSE.Views.ExternalLinksDlg.textOk": "OK",
"SSE.Views.ExternalLinksDlg.textOpen": "Open Source",
"SSE.Views.ExternalLinksDlg.textSource": "Source",
"SSE.Views.ExternalLinksDlg.textStatus": "Status",
"SSE.Views.ExternalLinksDlg.textUnknown": "Unknown",
"SSE.Views.ExternalLinksDlg.textUpdate": "Update Values",
"SSE.Views.ExternalLinksDlg.textUpdateAll": "Update All",
"SSE.Views.ExternalLinksDlg.textUpdating": "Updating...",
"SSE.Views.ExternalLinksDlg.txtTitle": "External Links",
"SSE.Views.FieldSettingsDialog.strLayout": "Layout",
"SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals",
"SSE.Views.FieldSettingsDialog.textNumFormat": "Number Format",
"SSE.Views.FieldSettingsDialog.textReport": "Report",
"SSE.Views.FieldSettingsDialog.textTitle": "Field Settings",
"SSE.Views.FieldSettingsDialog.txtAverage": "Average",
"SSE.Views.FieldSettingsDialog.txtBlank": "Insert blank line after each item",
"SSE.Views.FieldSettingsDialog.txtBottom": "Show at bottom of group",
"SSE.Views.FieldSettingsDialog.txtCompact": "Compact",
"SSE.Views.FieldSettingsDialog.txtCount": "Count",
"SSE.Views.FieldSettingsDialog.txtCountNums": "Count Numbers",
"SSE.Views.FieldSettingsDialog.txtCustomName": "Custom Name",
"SSE.Views.FieldSettingsDialog.txtEmpty": "Show items with no data",
"SSE.Views.FieldSettingsDialog.txtMax": "Maximum",
"SSE.Views.FieldSettingsDialog.txtMin": "Minimum",
"SSE.Views.FieldSettingsDialog.txtOutline": "Outline",
"SSE.Views.FieldSettingsDialog.txtProduct": "Product",
"SSE.Views.FieldSettingsDialog.txtRepeat": "Repeat item labels on each row",
"SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Show Subtotals",
"SSE.Views.FieldSettingsDialog.txtSourceName": "Source Name:",
"SSE.Views.FieldSettingsDialog.txtStdDev": "Standard Deviation",
"SSE.Views.FieldSettingsDialog.txtStdDevp": "Standard Deviation (Population)",
"SSE.Views.FieldSettingsDialog.txtSum": "Sum",
"SSE.Views.FieldSettingsDialog.txtSummarize": "Function for Subtotals",
"SSE.Views.FieldSettingsDialog.txtTabular": "Tabular",
"SSE.Views.FieldSettingsDialog.txtTop": "Show at top of group",
"SSE.Views.FieldSettingsDialog.txtVar": "Variance",
"SSE.Views.FieldSettingsDialog.txtVarp": "Variance (Population)",
"SSE.Views.FileMenu.btnBackCaption": "Open File Location",
"SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu",
"SSE.Views.FileMenu.btnCreateNewCaption": "New",
"SSE.Views.FileMenu.btnDownloadCaption": "Save As",
"SSE.Views.FileMenu.btnExitCaption": "Close",
"SSE.Views.FileMenu.btnExportToPDFCaption": "Export to PDF",
"SSE.Views.FileMenu.btnFileOpenCaption": "Open",
"SSE.Views.FileMenu.btnHelpCaption": "Help",
"SSE.Views.FileMenu.btnHistoryCaption": "Version History",
"SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info",
"SSE.Views.FileMenu.btnPrintCaption": "Print",
"SSE.Views.FileMenu.btnProtectCaption": "Protect",
"SSE.Views.FileMenu.btnRecentFilesCaption": "Recent",
"SSE.Views.FileMenu.btnRenameCaption": "Rename",
"SSE.Views.FileMenu.btnReturnCaption": "Back to Spreadsheet",
"SSE.Views.FileMenu.btnRightsCaption": "Access Rights",
"SSE.Views.FileMenu.btnSaveAsCaption": "Save As",
"SSE.Views.FileMenu.btnSaveCaption": "Save",
"SSE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy As",
"SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings",
"SSE.Views.FileMenu.btnSetDefaultCaption": "Set as Default App",
"SSE.Views.FileMenu.btnFeedbackCaption": "Feedback",
"SSE.Views.FileMenu.btnUnInstallCaption": "Uninstall",
"SSE.Views.FileMenu.btnEnableOnlineCaption": "Enable Online Spreadsheet Preview/Edit",
"SSE.Views.FileMenu.btnDisableOnlineCaption": "Disable Online Spreadsheet Preview/Edit",
"SSE.Views.FileMenu.btnDownloadOnlineCaption": "Download Document",
"SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet",
"SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank Spreadsheet",
"SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "New",
"SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application",
"SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author",
"SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change Access Rights",
"SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment",
"SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created",
"SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By",
"SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified",
"SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner",
"SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location",
"SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "People with Rights",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSpreadsheetInfo": "Spreadsheet Info",
"SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTags": "Tags",
"SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title",
"SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded",
"SSE.Views.FileMenuPanels.DocumentRights.txtAccessRights": "Access Rights",
"SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change Access Rights",
"SSE.Views.FileMenuPanels.DocumentRights.txtRights": "People with Rights",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing Mode",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "Use 1904 date system",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimal Separator",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Dictionary Language",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Automatic",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Font Rendering",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignore words with numbers",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macro Settings",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Show \"Paste Options\" button when pasting content",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "R1C1 Reference Style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Show comments in spreadsheet",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "Show other users' changes",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Show resolved comments",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Manual",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Interface Theme",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Thousands Separator",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Measurement Unit",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separators based on regional settings",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Default Zoom Ratio",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Every 10 minutes",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Every 30 minutes",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Every 5 minutes",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Every hour",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Auto Recover",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Auto Save",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disabled",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Save intermediate versions",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Every minute",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Reference Style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAdvancedSettings": "Advanced Settings",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "AutoCorrect Options...",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalan",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Default Cache Mode",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "Calculating",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeters",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Collaboration",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "German",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Editing and Saving",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Real-time collaborative editing. All changes are saved automatically",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finnish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "French",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungarian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHy": "Armenian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inches",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLastUsed": "Last Used",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "Like OS X",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native System",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norwegian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Dutch",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Proofing",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Points",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portuguese (Brazil)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese (Portugal)",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrint": "Show Quick Print button in editor header",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtQuickPrintTip": "The file will be printed using the last selected printer or the default printer.",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Region",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Enable All",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Enable all macros without notification",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovak",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Disable All",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Disable all macros without notification",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Swedish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turkish",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrainian",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Use Alt key on keyboard to navigate to user interface",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Use Option key on keyboard to navigate to user interface",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamese",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Show Notification",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disable all macros with notification",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Like Windows",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Workspace",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese",
"SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning",
"SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Encrypt with Password",
"SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Spreadsheet",
"SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Sign with Signature",
"SSE.Views.FileMenuPanels.ProtectDoc.txtAddedSignature": "",
"SSE.Views.FileMenuPanels.ProtectDoc.txtAddSignature": "<br>Adding an invisible digital signature ensures the integrity of the spreadsheet",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit Spreadsheet",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing will remove signatures from the spreadsheet.<br>Are you sure you want to continue?",
"SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "This spreadsheet is password protected",
"SSE.Views.FileMenuPanels.ProtectDoc.txtProtectSpreadsheet": "Encrypt this spreadsheet with a password",
"SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "This spreadsheet requires signatures.",
"SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Valid signature has been added to the spreadsheet. Editing is restricted for this spreadsheet.",
"SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "",
"SSE.Views.FileMenuPanels.ProtectDoc.txtView": "View Signatures",
"SSE.Views.FileMenuPanels.RecentFiles.txtOpenRecent": "Open Recent Files",
"SSE.Views.FileMenuPanels.ViewSaveAs.textDownloadAs": "Save As",
"SSE.Views.FileMenuPanels.ViewSaveCopy.textSaveCopyAs": "Save Copy As",
"SSE.Views.FillSeriesDialog.textAuto": "Auto Fill",
"SSE.Views.FillSeriesDialog.textCols": "Columns",
"SSE.Views.FillSeriesDialog.textDate": "Date",
"SSE.Views.FillSeriesDialog.textDateUnit": "Date Unit",
"SSE.Views.FillSeriesDialog.textDay": "Day",
"SSE.Views.FillSeriesDialog.textGrowth": "Growth",
"SSE.Views.FillSeriesDialog.textLinear": "Linear",
"SSE.Views.FillSeriesDialog.textMonth": "Month",
"SSE.Views.FillSeriesDialog.textRows": "Rows",
"SSE.Views.FillSeriesDialog.textSeries": "Series in",
"SSE.Views.FillSeriesDialog.textStep": "Step Value",
"SSE.Views.FillSeriesDialog.textStop": "Stop Value",
"SSE.Views.FillSeriesDialog.textTitle": "Series",
"SSE.Views.FillSeriesDialog.textTrend": "Trend",
"SSE.Views.FillSeriesDialog.textType": "Type",
"SSE.Views.FillSeriesDialog.textWeek": "Weekday",
"SSE.Views.FillSeriesDialog.textYear": "Year",
"SSE.Views.FillSeriesDialog.txtErrorNumber": "Your start value cannot be used. An integer or decimal number may be required.",
"SSE.Views.FormatRulesEditDlg.fillColor": "Fill Color",
"SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warning",
"SSE.Views.FormatRulesEditDlg.text2Scales": "2-Color Scale",
"SSE.Views.FormatRulesEditDlg.text3Scales": "3-Color Scale",
"SSE.Views.FormatRulesEditDlg.textAllBorders": "All Borders",
"SSE.Views.FormatRulesEditDlg.textAppearance": "Data Bar Appearance",
"SSE.Views.FormatRulesEditDlg.textApply": "Apply to Range",
"SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatic",
"SSE.Views.FormatRulesEditDlg.textAxis": "Axis",
"SSE.Views.FormatRulesEditDlg.textBarDirection": "Data Bar Direction",
"SSE.Views.FormatRulesEditDlg.textBold": "Bold",
"SSE.Views.FormatRulesEditDlg.textBorder": "Border",
"SSE.Views.FormatRulesEditDlg.textBordersColor": "Border Color",
"SSE.Views.FormatRulesEditDlg.textBordersStyle": "Border Style",
"SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bottom Border",
"SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Cannot add conditional formatting",
"SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cell Midpoint Value",
"SSE.Views.FormatRulesEditDlg.textCenterBorders": "Inside Vertical Border",
"SSE.Views.FormatRulesEditDlg.textClear": "Clear",
"SSE.Views.FormatRulesEditDlg.textColor": "Text Color",
"SSE.Views.FormatRulesEditDlg.textContext": "Context",
"SSE.Views.FormatRulesEditDlg.textCustom": "Custom",
"SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal Down Border",
"SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal Up Border",
"SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Please enter a valid formula.",
"SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "The formula you entered cannot evaluate to a number, date, time, or string.",
"SSE.Views.FormatRulesEditDlg.textEmptyText": "Enter a value.",
"SSE.Views.FormatRulesEditDlg.textEmptyValue": "The value entered is not a valid number, date, time, or string",
"SSE.Views.FormatRulesEditDlg.textErrorGreater": "{0} value must be greater than {1} value.",
"SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Enter a number between {0} and {1}.",
"SSE.Views.FormatRulesEditDlg.textFill": "Fill",
"SSE.Views.FormatRulesEditDlg.textFormat": "Format",
"SSE.Views.FormatRulesEditDlg.textFormula": "Formula",
"SSE.Views.FormatRulesEditDlg.textGradient": "Gradient",
"SSE.Views.FormatRulesEditDlg.textIconLabel": "When value is {0} {1} and",
"SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "When value is {0} {1}",
"SSE.Views.FormatRulesEditDlg.textIconLabelLast": "When value is",
"SSE.Views.FormatRulesEditDlg.textIconsOverlap": "",
"SSE.Views.FormatRulesEditDlg.textIconStyle": "Icon Style",
"SSE.Views.FormatRulesEditDlg.textInsideBorders": "Inside Borders",
"SSE.Views.FormatRulesEditDlg.textInvalid": "Invalid data range.",
"SSE.Views.FormatRulesEditDlg.textInvalidRange": "Error! Invalid cell range.",
"SSE.Views.FormatRulesEditDlg.textItalic": "Italic",
"SSE.Views.FormatRulesEditDlg.textItem": "Item",
"SSE.Views.FormatRulesEditDlg.textLeft2Right": "Left to Right",
"SSE.Views.FormatRulesEditDlg.textLeftBorders": "Left Border",
"SSE.Views.FormatRulesEditDlg.textLongBar": "Longest Data Bar",
"SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum",
"SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maximum Point",
"SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Inside Horizontal Border",
"SSE.Views.FormatRulesEditDlg.textMidpoint": "Midpoint",
"SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum",
"SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimum Point",
"SSE.Views.FormatRulesEditDlg.textNegative": "Negative",
"SSE.Views.FormatRulesEditDlg.textNewColor": "More Colors",
"SSE.Views.FormatRulesEditDlg.textNoBorders": "No Borders",
"SSE.Views.FormatRulesEditDlg.textNone": "None",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "One or more specified values are not valid percentages.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "The specified {0} value is not a valid percentage.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "One or more specified values are not valid percentiles.",
"SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "The specified {0} value is not a valid percentile value.",
"SSE.Views.FormatRulesEditDlg.textOutBorders": "Outside Borders",
"SSE.Views.FormatRulesEditDlg.textPercent": "Percentage",
"SSE.Views.FormatRulesEditDlg.textPercentile": "Percentile Value",
"SSE.Views.FormatRulesEditDlg.textPosition": "Position",
"SSE.Views.FormatRulesEditDlg.textPositive": "Positive",
"SSE.Views.FormatRulesEditDlg.textPresets": "Presets",
"SSE.Views.FormatRulesEditDlg.textPreview": "Preview",
"SSE.Views.FormatRulesEditDlg.textRelativeRef": "Relative references cannot be used in formatting conditions for color scales, data bars, and icon sets.",
"SSE.Views.FormatRulesEditDlg.textReverse": "Reverse Icon Order",
"SSE.Views.FormatRulesEditDlg.textRight2Left": "Right to Left",
"SSE.Views.FormatRulesEditDlg.textRightBorders": "Right Border",
"SSE.Views.FormatRulesEditDlg.textRule": "Rule",
"SSE.Views.FormatRulesEditDlg.textSameAs": "Same as Positive",
"SSE.Views.FormatRulesEditDlg.textSelectData": "Select Data",
"SSE.Views.FormatRulesEditDlg.textShortBar": "Shortest Data Bar",
"SSE.Views.FormatRulesEditDlg.textShowBar": "Show Bar Only",
"SSE.Views.FormatRulesEditDlg.textShowIcon": "Show Icon Only",
"SSE.Views.FormatRulesEditDlg.textSingleRef": "",
"SSE.Views.FormatRulesEditDlg.textSolid": "Solid",
"SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikethrough",
"SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript",
"SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript",
"SSE.Views.FormatRulesEditDlg.textTopBorders": "Top Border",
"SSE.Views.FormatRulesEditDlg.textUnderline": "Underline",
"SSE.Views.FormatRulesEditDlg.tipBorders": "Borders",
"SSE.Views.FormatRulesEditDlg.tipNumFormat": "Number Format",
"SSE.Views.FormatRulesEditDlg.txtAccounting": "Accounting",
"SSE.Views.FormatRulesEditDlg.txtCurrency": "Currency",
"SSE.Views.FormatRulesEditDlg.txtDate": "Date",
"SSE.Views.FormatRulesEditDlg.txtDateLong": "Long Date",
"SSE.Views.FormatRulesEditDlg.txtDateShort": "Short Date",
"SSE.Views.FormatRulesEditDlg.txtEmpty": "This field is required",
"SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction",
"SSE.Views.FormatRulesEditDlg.txtGeneral": "General",
"SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "No Cell Icon",
"SSE.Views.FormatRulesEditDlg.txtNumber": "Number",
"SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage",
"SSE.Views.FormatRulesEditDlg.txtScientific": "Scientific",
"SSE.Views.FormatRulesEditDlg.txtText": "Text",
"SSE.Views.FormatRulesEditDlg.txtTime": "Time",
"SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit Formatting Rule",
"SSE.Views.FormatRulesEditDlg.txtTitleNew": "New Formatting Rule",
"SSE.Views.FormatRulesManagerDlg.guestText": "Guest",
"SSE.Views.FormatRulesManagerDlg.lockText": "Locked",
"SSE.Views.FormatRulesManagerDlg.text1Above": "1 Standard Deviation Above Average",
"SSE.Views.FormatRulesManagerDlg.text1Below": "1 Standard Deviation Below Average",
"SSE.Views.FormatRulesManagerDlg.text2Above": "2 Standard Deviations Above Average",
"SSE.Views.FormatRulesManagerDlg.text2Below": "2 Standard Deviations Below Average",
"SSE.Views.FormatRulesManagerDlg.text3Above": "3 Standard Deviations Above Average",
"SSE.Views.FormatRulesManagerDlg.text3Below": "3 Standard Deviations Below Average",
"SSE.Views.FormatRulesManagerDlg.textAbove": "Above Average",
"SSE.Views.FormatRulesManagerDlg.textApply": "Apply to",
"SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cell Value Begins With",
"SSE.Views.FormatRulesManagerDlg.textBelow": "Below Average",
"SSE.Views.FormatRulesManagerDlg.textBetween": "Between {0} and {1}",
"SSE.Views.FormatRulesManagerDlg.textCellValue": "Cell Value",
"SSE.Views.FormatRulesManagerDlg.textColorScale": "Color Scale",
"SSE.Views.FormatRulesManagerDlg.textContains": "Cell Value Contains",
"SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Cell Contains Blank",
"SSE.Views.FormatRulesManagerDlg.textContainsError": "Cell Contains Error",
"SSE.Views.FormatRulesManagerDlg.textDelete": "Delete",
"SSE.Views.FormatRulesManagerDlg.textDown": "Move Rule Down",
"SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicate Values",
"SSE.Views.FormatRulesManagerDlg.textEdit": "Edit",
"SSE.Views.FormatRulesManagerDlg.textEnds": "Cell Value Ends With",
"SSE.Views.FormatRulesManagerDlg.textEqAbove": "Equal to or Above Average",
"SSE.Views.FormatRulesManagerDlg.textEqBelow": "Equal to or Below Average",
"SSE.Views.FormatRulesManagerDlg.textFormat": "Format",
"SSE.Views.FormatRulesManagerDlg.textIconSet": "Icon Set",
"SSE.Views.FormatRulesManagerDlg.textNew": "New",
"SSE.Views.FormatRulesManagerDlg.textNotBetween": "Not Between {0} and {1}",
"SSE.Views.FormatRulesManagerDlg.textNotContains": "Cell Value Does Not Contain",
"SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Cell Does Not Contain Blank",
"SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Cell Does Not Contain Error",
"SSE.Views.FormatRulesManagerDlg.textRules": "Rules",
"SSE.Views.FormatRulesManagerDlg.textScope": "Show Formatting Rules For",
"SSE.Views.FormatRulesManagerDlg.textSelectData": "Select Data",
"SSE.Views.FormatRulesManagerDlg.textSelection": "Current Selection",
"SSE.Views.FormatRulesManagerDlg.textThisPivot": "Current PivotTable",
"SSE.Views.FormatRulesManagerDlg.textThisSheet": "Current Worksheet",
"SSE.Views.FormatRulesManagerDlg.textThisTable": "Current Table",
"SSE.Views.FormatRulesManagerDlg.textUnique": "Unique Values",
"SSE.Views.FormatRulesManagerDlg.textUp": "Move Rule Up",
"SSE.Views.FormatRulesManagerDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditional Formatting Rules Manager",
"SSE.Views.FormatSettingsDialog.textCategory": "Category",
"SSE.Views.FormatSettingsDialog.textDecimal": "Decimal Places",
"SSE.Views.FormatSettingsDialog.textFormat": "Format",
"SSE.Views.FormatSettingsDialog.textLinked": "Link to Source",
"SSE.Views.FormatSettingsDialog.textSeparator": "Use Thousands Separator",
"SSE.Views.FormatSettingsDialog.textSymbols": "Symbol",
"SSE.Views.FormatSettingsDialog.textTitle": "Format Cells",
"SSE.Views.FormatSettingsDialog.txtAccounting": "Accounting",
"SSE.Views.FormatSettingsDialog.txtAs10": "As Tenths (1/10)",
"SSE.Views.FormatSettingsDialog.txtAs100": "As Hundredths (1/100)",
"SSE.Views.FormatSettingsDialog.txtAs16": "As Sixteenths (1/16)",
"SSE.Views.FormatSettingsDialog.txtAs2": "As Halves (1/2)",
"SSE.Views.FormatSettingsDialog.txtAs4": "As Quarters (2/4)",
"SSE.Views.FormatSettingsDialog.txtAs8": "As Eighths (1/8)",
"SSE.Views.FormatSettingsDialog.txtCurrency": "Currency",
"SSE.Views.FormatSettingsDialog.txtCustom": "Custom",
"SSE.Views.FormatSettingsDialog.txtCustomWarning": "",
"SSE.Views.FormatSettingsDialog.txtDate": "Date",
"SSE.Views.FormatSettingsDialog.txtFraction": "Fraction",
"SSE.Views.FormatSettingsDialog.txtGeneral": "General",
"SSE.Views.FormatSettingsDialog.txtNone": "None",
"SSE.Views.FormatSettingsDialog.txtNumber": "Number",
"SSE.Views.FormatSettingsDialog.txtPercentage": "Percentage",
"SSE.Views.FormatSettingsDialog.txtSample": "Sample:",
"SSE.Views.FormatSettingsDialog.txtScientific": "Scientific",
"SSE.Views.FormatSettingsDialog.txtText": "Text",
"SSE.Views.FormatSettingsDialog.txtTime": "Time",
"SSE.Views.FormatSettingsDialog.txtUpto1": "Up to One Digit (1/3)",
"SSE.Views.FormatSettingsDialog.txtUpto2": "Up to Two Digits (12/25)",
"SSE.Views.FormatSettingsDialog.txtUpto3": "Up to Three Digits (131/135)",
"SSE.Views.FormulaDialog.sDescription": "Description",
"SSE.Views.FormulaDialog.textGroupDescription": "Select a function category",
"SSE.Views.FormulaDialog.textListDescription": "Select a function",
"SSE.Views.FormulaDialog.txtRecommended": "Recommended",
"SSE.Views.FormulaDialog.txtSearch": "Search",
"SSE.Views.FormulaDialog.txtTitle": "Insert Function",
"SSE.Views.FormulaTab.capBtnRemoveArr": "Remove Arrows",
"SSE.Views.FormulaTab.capBtnTraceDep": "Trace Dependents",
"SSE.Views.FormulaTab.capBtnTracePrec": "Trace Precedents",
"SSE.Views.FormulaTab.textAutomatic": "Automatic",
"SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calculate Sheet",
"SSE.Views.FormulaTab.textCalculateWorkbook": "Calculate Workbook",
"SSE.Views.FormulaTab.textManual": "Manual",
"SSE.Views.FormulaTab.tipCalculate": "Calculate",
"SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calculate the entire workbook",
"SSE.Views.FormulaTab.tipRemoveArr": "Remove all arrows",
"SSE.Views.FormulaTab.tipShowFormulas": "Display formulas in each cell instead of their resulting values.",
"SSE.Views.FormulaTab.tipTraceDep": "Show arrows indicating which cells are affected by the value in the currently selected cell.",
"SSE.Views.FormulaTab.tipTracePrec": "Show arrows indicating which cells affect the value in the currently selected cell.",
"SSE.Views.FormulaTab.tipWatch": "Add cells to the Watch Window list",
"SSE.Views.FormulaTab.txtAdditional": "More",
"SSE.Views.FormulaTab.txtAutosum": "AutoSum",
"SSE.Views.FormulaTab.txtAutosumTip": "Sum",
"SSE.Views.FormulaTab.txtCalculation": "Calculation",
"SSE.Views.FormulaTab.txtFormula": "Insert Function",
"SSE.Views.FormulaTab.txtFormulaTip": "Insert Function",
"SSE.Views.FormulaTab.txtMore": "More Functions",
"SSE.Views.FormulaTab.txtRecent": "Recently Used",
"SSE.Views.FormulaTab.txtRemDep": "Remove Dependent Arrows",
"SSE.Views.FormulaTab.txtRemPrec": "Remove Precedent Arrows",
"SSE.Views.FormulaTab.txtShowFormulas": "Show Formulas",
"SSE.Views.FormulaTab.txtWatch": "Watch Window",
"SSE.Views.FormulaWizard.textAny": "Any",
"SSE.Views.FormulaWizard.textArgument": "Argument",
"SSE.Views.FormulaWizard.textFunction": "Function",
"SSE.Views.FormulaWizard.textFunctionRes": "Function Result",
"SSE.Views.FormulaWizard.textHelp": "Help on this function",
"SSE.Views.FormulaWizard.textLogical": "Logical Value",
"SSE.Views.FormulaWizard.textNoArgs": "This function takes no arguments",
"SSE.Views.FormulaWizard.textNumber": "Number",
"SSE.Views.FormulaWizard.textRef": "Reference",
"SSE.Views.FormulaWizard.textText": "Text",
"SSE.Views.FormulaWizard.textTitle": "Function Arguments",
"SSE.Views.FormulaWizard.textValue": "Formula Result",
"SSE.Views.HeaderFooterDialog.textAlign": "Align with Page Margins",
"SSE.Views.HeaderFooterDialog.textAll": "All Pages",
"SSE.Views.HeaderFooterDialog.textBold": "Bold",
"SSE.Views.HeaderFooterDialog.textCenter": "Center",
"SSE.Views.HeaderFooterDialog.textColor": "Text Color",
"SSE.Views.HeaderFooterDialog.textDate": "Date",
"SSE.Views.HeaderFooterDialog.textDiffFirst": "Different First Page",
"SSE.Views.HeaderFooterDialog.textDiffOdd": "Different Odd & Even Pages",
"SSE.Views.HeaderFooterDialog.textEven": "Even Pages",
"SSE.Views.HeaderFooterDialog.textFileName": "File Name",
"SSE.Views.HeaderFooterDialog.textFirst": "First Page",
"SSE.Views.HeaderFooterDialog.textFooter": "Footer",
"SSE.Views.HeaderFooterDialog.textHeader": "Header",
"SSE.Views.HeaderFooterDialog.textImage": "Picture",
"SSE.Views.HeaderFooterDialog.textInsert": "Insert",
"SSE.Views.HeaderFooterDialog.textItalic": "Italic",
"SSE.Views.HeaderFooterDialog.textLeft": "Left",
"SSE.Views.HeaderFooterDialog.textMaxError": "The text string you entered is too long. Reduce the number of characters used.",
"SSE.Views.HeaderFooterDialog.textNewColor": "More Colors",
"SSE.Views.HeaderFooterDialog.textOdd": "Odd Pages",
"SSE.Views.HeaderFooterDialog.textPageCount": "Number of Pages",
"SSE.Views.HeaderFooterDialog.textPageNum": "Page Number",
"SSE.Views.HeaderFooterDialog.textPresets": "Presets",
"SSE.Views.HeaderFooterDialog.textRight": "Right",
"SSE.Views.HeaderFooterDialog.textScale": "Scale with Document",
"SSE.Views.HeaderFooterDialog.textSheet": "Sheet Name",
"SSE.Views.HeaderFooterDialog.textStrikeout": "Strikethrough",
"SSE.Views.HeaderFooterDialog.textSubscript": "Subscript",
"SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript",
"SSE.Views.HeaderFooterDialog.textTime": "Time",
"SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings",
"SSE.Views.HeaderFooterDialog.textUnderline": "Underline",
"SSE.Views.HeaderFooterDialog.tipFontName": "Font Name",
"SSE.Views.HeaderFooterDialog.tipFontSize": "Font Size",
"SSE.Views.HyperlinkSettingsDialog.strDisplay": "Text to Display",
"SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to",
"SSE.Views.HyperlinkSettingsDialog.strRange": "Range",
"SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet",
"SSE.Views.HyperlinkSettingsDialog.textCopy": "Copy",
"SSE.Views.HyperlinkSettingsDialog.textDefault": "Select Range",
"SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter title here",
"SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here",
"SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here",
"SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link",
"SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get Link",
"SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Place in This Document",
"SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "Error! Invalid cell range",
"SSE.Views.HyperlinkSettingsDialog.textNames": "Defined Names",
"SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select Data",
"SSE.Views.HyperlinkSettingsDialog.textSheets": "Sheets",
"SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text",
"SSE.Views.HyperlinkSettingsDialog.textTitle": "Insert Hyperlink",
"SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Required field",
"SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"",
"SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters",
"SSE.Views.ImageSettings.textAdvanced": "Show Advanced Settings",
"SSE.Views.ImageSettings.textCrop": "Crop",
"SSE.Views.ImageSettings.textCropFill": "Fill",
"SSE.Views.ImageSettings.textCropFit": "Fit",
"SSE.Views.ImageSettings.textCropToShape": "Crop to Shape",
"SSE.Views.ImageSettings.textEdit": "Change",
"SSE.Views.ImageSettings.textEditObject": "Edit Object",
"SSE.Views.ImageSettings.textFlip": "Flip",
"SSE.Views.ImageSettings.textFromFile": "From File",
"SSE.Views.ImageSettings.textFromStorage": "From Storage",
"SSE.Views.ImageSettings.textFromUrl": "From URL",
"SSE.Views.ImageSettings.textHeight": "Height",
"SSE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise",
"SSE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise",
"SSE.Views.ImageSettings.textHintFlipH": "Flip Horizontal",
"SSE.Views.ImageSettings.textHintFlipV": "Flip Vertical",
"SSE.Views.ImageSettings.textInsert": "Change Picture",
"SSE.Views.ImageSettings.textKeepRatio": "Lock Aspect Ratio",
"SSE.Views.ImageSettings.textOriginalSize": "Actual Size",
"SSE.Views.ImageSettings.textRecentlyUsed": "Recently Used",
"SSE.Views.ImageSettings.textRotate90": "Rotate 90°",
"SSE.Views.ImageSettings.textRotation": "Rotation",
"SSE.Views.ImageSettings.textSize": "Size",
"SSE.Views.ImageSettings.textWidth": "Width",
"SSE.Views.ImageSettingsAdvanced.textAbsolute": "Size and Position Fixed",
"SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text",
"SSE.Views.ImageSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.ImageSettingsAdvanced.textAltTip": "",
"SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.ImageSettingsAdvanced.textAngle": "Angle",
"SSE.Views.ImageSettingsAdvanced.textFlipped": "Flipped",
"SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally",
"SSE.Views.ImageSettingsAdvanced.textOneCell": "Size Fixed, Position Moves with Cells",
"SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation",
"SSE.Views.ImageSettingsAdvanced.textSnap": "Size and Position",
"SSE.Views.ImageSettingsAdvanced.textTitle": "Picture - Advanced Settings",
"SSE.Views.ImageSettingsAdvanced.textTwoCell": "Size and Position Move with Cells",
"SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically",
"SSE.Views.ImportFromXmlDialog.textDestination": "Choose where to place the data",
"SSE.Views.ImportFromXmlDialog.textExist": "Existing Worksheet",
"SSE.Views.ImportFromXmlDialog.textInvalidRange": "Invalid cell range",
"SSE.Views.ImportFromXmlDialog.textNew": "New Worksheet",
"SSE.Views.ImportFromXmlDialog.textSelectData": "Select Data",
"SSE.Views.ImportFromXmlDialog.textTitle": "Import XML Data",
"SSE.Views.ImportFromXmlDialog.txtEmpty": "Required field",
"SSE.Views.LeftMenu.tipAbout": "About",
"SSE.Views.LeftMenu.tipChat": "Chat",
"SSE.Views.LeftMenu.tipComments": "Comments",
"SSE.Views.LeftMenu.tipFile": "File",
"SSE.Views.LeftMenu.tipPlugins": "Plugins",
"SSE.Views.LeftMenu.tipSearch": "Search",
"SSE.Views.LeftMenu.tipSpellcheck": "Spell Check",
"SSE.Views.LeftMenu.tipSupport": "Feedback and Support",
"SSE.Views.LeftMenu.txtDeveloper": "Developer Mode",
"SSE.Views.LeftMenu.txtEditor": "Spreadsheet Editor",
"SSE.Views.LeftMenu.txtLimit": "Limited Access",
"SSE.Views.LeftMenu.txtTrial": "Trial Mode",
"SSE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode",
"SSE.Views.MacroDialog.textMacro": "Macro Name",
"SSE.Views.MacroDialog.textTitle": "Assign Macro",
"SSE.Views.MainSettingsPrint.okButtonText": "Save",
"SSE.Views.MainSettingsPrint.strBottom": "Bottom",
"SSE.Views.MainSettingsPrint.strLandscape": "Landscape",
"SSE.Views.MainSettingsPrint.strLeft": "Left",
"SSE.Views.MainSettingsPrint.strMargins": "Margins",
"SSE.Views.MainSettingsPrint.strPortrait": "Portrait",
"SSE.Views.MainSettingsPrint.strPrint": "Print",
"SSE.Views.MainSettingsPrint.strPrintTitles": "Print Titles",
"SSE.Views.MainSettingsPrint.strRight": "Right",
"SSE.Views.MainSettingsPrint.strTop": "Top",
"SSE.Views.MainSettingsPrint.textActualSize": "Actual Size",
"SSE.Views.MainSettingsPrint.textCustom": "Custom",
"SSE.Views.MainSettingsPrint.textCustomOptions": "Custom Options",
"SSE.Views.MainSettingsPrint.textFitCols": "Fit All Columns on One Page",
"SSE.Views.MainSettingsPrint.textFitPage": "Fit Sheet on One Page",
"SSE.Views.MainSettingsPrint.textFitRows": "Fit All Rows on One Page",
"SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation",
"SSE.Views.MainSettingsPrint.textPageScaling": "Scaling",
"SSE.Views.MainSettingsPrint.textPageSize": "Page Size",
"SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines",
"SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Row and Column Headings",
"SSE.Views.MainSettingsPrint.textRepeat": "Repeat...",
"SSE.Views.MainSettingsPrint.textRepeatLeft": "Repeat Rows at Left",
"SSE.Views.MainSettingsPrint.textRepeatTop": "Repeat Columns at Top",
"SSE.Views.MainSettingsPrint.textSettings": "Settings",
"SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Cannot edit existing named range, so cannot edit new range within it.",
"SSE.Views.NamedRangeEditDlg.namePlaceholder": "Define Name",
"SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning",
"SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook",
"SSE.Views.NamedRangeEditDlg.textDataRange": "Refers to",
"SSE.Views.NamedRangeEditDlg.textExistName": "This name already exists",
"SSE.Views.NamedRangeEditDlg.textInvalidName": "Name must begin with a letter or underscore and cannot contain invalid characters.",
"SSE.Views.NamedRangeEditDlg.textInvalidRange": "Error! Invalid cell range",
"SSE.Views.NamedRangeEditDlg.textIsLocked": "Error! This element is being edited by another user.",
"SSE.Views.NamedRangeEditDlg.textName": "Name",
"SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in a cell formula. Please use a different name.",
"SSE.Views.NamedRangeEditDlg.textScope": "Scope",
"SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data",
"SSE.Views.NamedRangeEditDlg.txtEmpty": "Required field",
"SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name",
"SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name",
"SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges",
"SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name",
"SSE.Views.NameManagerDlg.closeButtonText": "Close",
"SSE.Views.NameManagerDlg.guestText": "Guest",
"SSE.Views.NameManagerDlg.lockText": "Locked",
"SSE.Views.NameManagerDlg.textDataRange": "Refers to",
"SSE.Views.NameManagerDlg.textDelete": "Delete",
"SSE.Views.NameManagerDlg.textEdit": "Edit",
"SSE.Views.NameManagerDlg.textEmpty": "No names have been created.<br>Create at least one name and it will appear in this field.",
"SSE.Views.NameManagerDlg.textFilter": "Filter",
"SSE.Views.NameManagerDlg.textFilterAll": "All",
"SSE.Views.NameManagerDlg.textFilterDefNames": "Defined Names",
"SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Worksheet",
"SSE.Views.NameManagerDlg.textFilterTableNames": "Table Names",
"SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook",
"SSE.Views.NameManagerDlg.textNew": "New",
"SSE.Views.NameManagerDlg.textnoNames": "No names found matching your filter",
"SSE.Views.NameManagerDlg.textRanges": "Name",
"SSE.Views.NameManagerDlg.textScope": "Scope",
"SSE.Views.NameManagerDlg.textWorkbook": "Workbook",
"SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.NameManagerDlg.txtTitle": "Name Manager",
"SSE.Views.NameManagerDlg.warnDelete": "Are you sure you want to delete the name {0}?",
"SSE.Views.PageMarginsDialog.textBottom": "Bottom",
"SSE.Views.PageMarginsDialog.textLeft": "Left",
"SSE.Views.PageMarginsDialog.textRight": "Right",
"SSE.Views.PageMarginsDialog.textTitle": "Page Margins",
"SSE.Views.PageMarginsDialog.textTop": "Top",
"SSE.Views.PageMarginsDialog.textWarning": "Warning",
"SSE.Views.PageMarginsDialog.warnCheckMargings": "Incorrect margins",
"SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing",
"SSE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing",
"SSE.Views.ParagraphSettings.strSpacingAfter": "After",
"SSE.Views.ParagraphSettings.strSpacingBefore": "Before",
"SSE.Views.ParagraphSettings.textAdvanced": "Show Advanced Settings",
"SSE.Views.ParagraphSettings.textAt": "At",
"SSE.Views.ParagraphSettings.textAtLeast": "At Least",
"SSE.Views.ParagraphSettings.textAuto": "Multiple",
"SSE.Views.ParagraphSettings.textExact": "Exactly",
"SSE.Views.ParagraphSettings.txtAutoText": "Auto",
"SSE.Views.ParagraphSettingsAdvanced.noTabs": "Specified tabs will appear in this field",
"SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All Caps",
"SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double Strikethrough",
"SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indentation",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special",
"SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "By",
"SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font",
"SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indentation and Spacing",
"SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small Caps",
"SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spacing",
"SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough",
"SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript",
"SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript",
"SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs",
"SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment",
"SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple",
"SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing",
"SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab Stops",
"SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects",
"SSE.Views.ParagraphSettingsAdvanced.textExact": "Exactly",
"SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "First Line",
"SSE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging",
"SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justified",
"SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(None)",
"SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove",
"SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All",
"SSE.Views.ParagraphSettingsAdvanced.textSet": "Set",
"SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center",
"SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left",
"SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Stop Position",
"SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right",
"SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings",
"SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto",
"SSE.Views.PivotDigitalFilterDialog.capCondition1": "Equals",
"SSE.Views.PivotDigitalFilterDialog.capCondition10": "Does Not End With",
"SSE.Views.PivotDigitalFilterDialog.capCondition11": "Contains",
"SSE.Views.PivotDigitalFilterDialog.capCondition12": "Does Not Contain",
"SSE.Views.PivotDigitalFilterDialog.capCondition13": "Between",
"SSE.Views.PivotDigitalFilterDialog.capCondition14": "Not Between",
"SSE.Views.PivotDigitalFilterDialog.capCondition2": "Does Not Equal",
"SSE.Views.PivotDigitalFilterDialog.capCondition3": "Greater Than",
"SSE.Views.PivotDigitalFilterDialog.capCondition4": "Greater Than or Equal To",
"SSE.Views.PivotDigitalFilterDialog.capCondition5": "Less Than",
"SSE.Views.PivotDigitalFilterDialog.capCondition6": "Less Than or Equal To",
"SSE.Views.PivotDigitalFilterDialog.capCondition7": "Begins With",
"SSE.Views.PivotDigitalFilterDialog.capCondition8": "Does Not Begin With",
"SSE.Views.PivotDigitalFilterDialog.capCondition9": "Ends With",
"SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Show items for which the label:",
"SSE.Views.PivotDigitalFilterDialog.textShowValue": "Show items for which the value:",
"SSE.Views.PivotDigitalFilterDialog.textUse1": "Use ? to represent any single character",
"SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * to represent any series of characters",
"SSE.Views.PivotDigitalFilterDialog.txtAnd": "And",
"SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Label Filter",
"SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Value Filter",
"SSE.Views.PivotGroupDialog.textAuto": "Automatic",
"SSE.Views.PivotGroupDialog.textBy": "By",
"SSE.Views.PivotGroupDialog.textDays": "Days",
"SSE.Views.PivotGroupDialog.textEnd": "Ending At",
"SSE.Views.PivotGroupDialog.textError": "This field must be a number.",
"SSE.Views.PivotGroupDialog.textGreaterError": "Ending number must be greater than starting number",
"SSE.Views.PivotGroupDialog.textHour": "Hours",
"SSE.Views.PivotGroupDialog.textMin": "Minutes",
"SSE.Views.PivotGroupDialog.textMonth": "Months",
"SSE.Views.PivotGroupDialog.textNumDays": "Number of Days",
"SSE.Views.PivotGroupDialog.textQuart": "Quarters",
"SSE.Views.PivotGroupDialog.textSec": "Seconds",
"SSE.Views.PivotGroupDialog.textStart": "Starting At",
"SSE.Views.PivotGroupDialog.textYear": "Years",
"SSE.Views.PivotGroupDialog.txtTitle": "Group",
"SSE.Views.PivotSettings.textAdvanced": "Show Advanced Settings",
"SSE.Views.PivotSettings.textColumns": "Columns",
"SSE.Views.PivotSettings.textFields": "Choose Fields",
"SSE.Views.PivotSettings.textFilters": "Filters",
"SSE.Views.PivotSettings.textRows": "Rows",
"SSE.Views.PivotSettings.textValues": "Values",
"SSE.Views.PivotSettings.txtAddColumn": "Add to Columns",
"SSE.Views.PivotSettings.txtAddFilter": "Add to Filters",
"SSE.Views.PivotSettings.txtAddRow": "Add to Rows",
"SSE.Views.PivotSettings.txtAddValues": "Add to Values",
"SSE.Views.PivotSettings.txtFieldSettings": "Value Field Settings",
"SSE.Views.PivotSettings.txtMoveBegin": "Move to Beginning",
"SSE.Views.PivotSettings.txtMoveColumn": "Move to Columns",
"SSE.Views.PivotSettings.txtMoveDown": "Move Down",
"SSE.Views.PivotSettings.txtMoveEnd": "Move to End",
"SSE.Views.PivotSettings.txtMoveFilter": "Move to Filters",
"SSE.Views.PivotSettings.txtMoveRow": "Move to Rows",
"SSE.Views.PivotSettings.txtMoveUp": "Move Up",
"SSE.Views.PivotSettings.txtMoveValues": "Move to Values",
"SSE.Views.PivotSettings.txtRemove": "Remove Field",
"SSE.Views.PivotSettingsAdvanced.strLayout": "Name and Layout",
"SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative Text",
"SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.PivotSettingsAdvanced.textAltTip": "",
"SSE.Views.PivotSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Autofit Column Widths on Update",
"SSE.Views.PivotSettingsAdvanced.textDataRange": "Data Range",
"SSE.Views.PivotSettingsAdvanced.textDataSource": "Data Source",
"SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Show Fields in Report Filter Area",
"SSE.Views.PivotSettingsAdvanced.textDown": "Down Then Over",
"SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand Totals",
"SSE.Views.PivotSettingsAdvanced.textHeaders": "Field Headers",
"SSE.Views.PivotSettingsAdvanced.textInvalidRange": "Error! Invalid cell range",
"SSE.Views.PivotSettingsAdvanced.textOver": "Over Then Down",
"SSE.Views.PivotSettingsAdvanced.textSelectData": "Select Data",
"SSE.Views.PivotSettingsAdvanced.textShowCols": "Show Column Grand Totals",
"SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Show Field Headers for Rows and Columns",
"SSE.Views.PivotSettingsAdvanced.textShowRows": "Show Row Grand Totals",
"SSE.Views.PivotSettingsAdvanced.textTitle": "PivotTable - Advanced Settings",
"SSE.Views.PivotSettingsAdvanced.textWrapCol": "Report Filter Fields Per Column",
"SSE.Views.PivotSettingsAdvanced.textWrapRow": "Report Filter Fields Per Row",
"SSE.Views.PivotSettingsAdvanced.txtEmpty": "Required field",
"SSE.Views.PivotSettingsAdvanced.txtName": "Name",
"SSE.Views.PivotTable.capBlankRows": "Blank Rows",
"SSE.Views.PivotTable.capGrandTotals": "Grand Totals",
"SSE.Views.PivotTable.capLayout": "Report Layout",
"SSE.Views.PivotTable.capSubtotals": "Subtotals",
"SSE.Views.PivotTable.mniBottomSubtotals": "Show All Subtotals at Bottom of Group",
"SSE.Views.PivotTable.mniInsertBlankLine": "Insert Blank Line After Each Item",
"SSE.Views.PivotTable.mniLayoutCompact": "Show in Compact Form",
"SSE.Views.PivotTable.mniLayoutNoRepeat": "Do Not Repeat Item Labels",
"SSE.Views.PivotTable.mniLayoutOutline": "Show in Outline Form",
"SSE.Views.PivotTable.mniLayoutRepeat": "Repeat All Item Labels",
"SSE.Views.PivotTable.mniLayoutTabular": "Show in Tabular Form",
"SSE.Views.PivotTable.mniNoSubtotals": "Do Not Show Subtotals",
"SSE.Views.PivotTable.mniOffTotals": "Off for Rows and Columns",
"SSE.Views.PivotTable.mniOnColumnsTotals": "On for Columns Only",
"SSE.Views.PivotTable.mniOnRowsTotals": "On for Rows Only",
"SSE.Views.PivotTable.mniOnTotals": "On for Rows and Columns",
"SSE.Views.PivotTable.mniRemoveBlankLine": "Remove Blank Line After Each Item",
"SSE.Views.PivotTable.mniTopSubtotals": "Show All Subtotals at Top of Group",
"SSE.Views.PivotTable.textColBanded": "Banded Columns",
"SSE.Views.PivotTable.textColHeader": "Column Headers",
"SSE.Views.PivotTable.textRowBanded": "Banded Rows",
"SSE.Views.PivotTable.textRowHeader": "Row Headers",
"SSE.Views.PivotTable.tipCreatePivot": "Insert PivotTable",
"SSE.Views.PivotTable.tipGrandTotals": "Show or Hide Grand Totals",
"SSE.Views.PivotTable.tipRefresh": "Refresh information from data source",
"SSE.Views.PivotTable.tipRefreshCurrent": "Refresh current table information from data source",
"SSE.Views.PivotTable.tipSelect": "Select Entire PivotTable",
"SSE.Views.PivotTable.tipSubtotals": "Show or Hide Subtotals",
"SSE.Views.PivotTable.txtCreate": "Insert Table",
"SSE.Views.PivotTable.txtGroupPivot_Custom": "Custom",
"SSE.Views.PivotTable.txtGroupPivot_Dark": "Dark",
"SSE.Views.PivotTable.txtGroupPivot_Light": "Light",
"SSE.Views.PivotTable.txtGroupPivot_Medium": "Medium",
"SSE.Views.PivotTable.txtPivotTable": "PivotTable",
"SSE.Views.PivotTable.txtRefresh": "Refresh",
"SSE.Views.PivotTable.txtRefreshAll": "Refresh All",
"SSE.Views.PivotTable.txtSelect": "Select",
"SSE.Views.PivotTable.txtTable_PivotStyleDark": "Pivot Style Dark",
"SSE.Views.PivotTable.txtTable_PivotStyleLight": "Pivot Style Light",
"SSE.Views.PivotTable.txtTable_PivotStyleMedium": "Pivot Style Medium",
"SSE.Views.PrintSettings.btnDownload": "Save and Download",
"SSE.Views.PrintSettings.btnExport": "Save and Export",
"SSE.Views.PrintSettings.btnPrint": "Save and Print",
"SSE.Views.PrintSettings.strBottom": "Bottom",
"SSE.Views.PrintSettings.strLandscape": "Landscape",
"SSE.Views.PrintSettings.strLeft": "Left",
"SSE.Views.PrintSettings.strMargins": "Margins",
"SSE.Views.PrintSettings.strPortrait": "Portrait",
"SSE.Views.PrintSettings.strPrint": "Print",
"SSE.Views.PrintSettings.strPrintTitles": "Print Titles",
"SSE.Views.PrintSettings.strRight": "Right",
"SSE.Views.PrintSettings.strShow": "Show",
"SSE.Views.PrintSettings.strTop": "Top",
"SSE.Views.PrintSettings.textActiveSheets": "Active Sheets",
"SSE.Views.PrintSettings.textActualSize": "Actual Size",
"SSE.Views.PrintSettings.textAllSheets": "All Sheets",
"SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet",
"SSE.Views.PrintSettings.textCustom": "Custom",
"SSE.Views.PrintSettings.textCustomOptions": "Custom Options",
"SSE.Views.PrintSettings.textFitCols": "Fit All Columns on One Page",
"SSE.Views.PrintSettings.textFitPage": "Fit Sheet on One Page",
"SSE.Views.PrintSettings.textFitRows": "Fit All Rows on One Page",
"SSE.Views.PrintSettings.textHideDetails": "Hide Details",
"SSE.Views.PrintSettings.textIgnore": "Ignore Print Area",
"SSE.Views.PrintSettings.textLayout": "Layout",
"SSE.Views.PrintSettings.textMarginsNarrow": "Narrow",
"SSE.Views.PrintSettings.textMarginsNormal": "Normal",
"SSE.Views.PrintSettings.textMarginsWide": "Wide",
"SSE.Views.PrintSettings.textPageOrientation": "Page Orientation",
"SSE.Views.PrintSettings.textPages": "Pages:",
"SSE.Views.PrintSettings.textPageScaling": "Scaling",
"SSE.Views.PrintSettings.textPageSize": "Page Size",
"SSE.Views.PrintSettings.textPrintGrid": "Print Gridlines",
"SSE.Views.PrintSettings.textPrintHeadings": "Print Row and Column Headings",
"SSE.Views.PrintSettings.textPrintRange": "Print Range",
"SSE.Views.PrintSettings.textRange": "Range",
"SSE.Views.PrintSettings.textRepeat": "Repeat...",
"SSE.Views.PrintSettings.textRepeatLeft": "Repeat Rows at Left",
"SSE.Views.PrintSettings.textRepeatTop": "Repeat Columns at Top",
"SSE.Views.PrintSettings.textSelection": "Selection",
"SSE.Views.PrintSettings.textSettings": "Sheet Settings",
"SSE.Views.PrintSettings.textShowDetails": "Show Details",
"SSE.Views.PrintSettings.textShowGrid": "Show Gridlines",
"SSE.Views.PrintSettings.textShowHeadings": "Show Row and Column Headings",
"SSE.Views.PrintSettings.textTitle": "Print Settings",
"SSE.Views.PrintSettings.textTitlePDF": "PDF Settings",
"SSE.Views.PrintSettings.textTo": "To",
"SSE.Views.PrintSettings.txtMarginsLast": "Last Custom",
"SSE.Views.PrintTitlesDialog.textFirstCol": "First Column",
"SSE.Views.PrintTitlesDialog.textFirstRow": "First Row",
"SSE.Views.PrintTitlesDialog.textFrozenCols": "Frozen Columns",
"SSE.Views.PrintTitlesDialog.textFrozenRows": "Frozen Rows",
"SSE.Views.PrintTitlesDialog.textInvalidRange": "Error! Invalid cell range",
"SSE.Views.PrintTitlesDialog.textLeft": "Repeat Rows at Left",
"SSE.Views.PrintTitlesDialog.textNoRepeat": "Do Not Repeat",
"SSE.Views.PrintTitlesDialog.textRepeat": "Repeat...",
"SSE.Views.PrintTitlesDialog.textSelectRange": "Select Range",
"SSE.Views.PrintTitlesDialog.textTitle": "Print Titles",
"SSE.Views.PrintTitlesDialog.textTop": "Repeat Columns at Top",
"SSE.Views.PrintWithPreview.txtActiveSheets": "Active Sheets",
"SSE.Views.PrintWithPreview.txtActualSize": "Actual Size",
"SSE.Views.PrintWithPreview.txtAllSheets": "All Sheets",
"SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Apply to All Sheets",
"SSE.Views.PrintWithPreview.txtBothSides": "Print on Both Sides",
"SSE.Views.PrintWithPreview.txtBothSidesLongDesc": "Flip pages on long edge",
"SSE.Views.PrintWithPreview.txtBothSidesShortDesc": "Flip pages on short edge",
"SSE.Views.PrintWithPreview.txtBottom": "Bottom",
"SSE.Views.PrintWithPreview.txtCopies": "Copies",
"SSE.Views.PrintWithPreview.txtCurrentSheet": "Current Sheet",
"SSE.Views.PrintWithPreview.txtCustom": "Custom",
"SSE.Views.PrintWithPreview.txtCustomOptions": "Custom Options",
"SSE.Views.PrintWithPreview.txtEmptyTable": "Nothing found to print.",
"SSE.Views.PrintWithPreview.txtFirstPageNumber": "First Page Number:",
"SSE.Views.PrintWithPreview.txtFitCols": "Fit All Columns to One Page",
"SSE.Views.PrintWithPreview.txtFitPage": "Fit Sheet to One Page",
"SSE.Views.PrintWithPreview.txtFitRows": "Fit All Rows to One Page",
"SSE.Views.PrintWithPreview.txtGridlinesAndHeadings": "Gridlines and Headings",
"SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Header/Footer Settings",
"SSE.Views.PrintWithPreview.txtIgnore": "Ignore Print Area",
"SSE.Views.PrintWithPreview.txtLandscape": "Landscape",
"SSE.Views.PrintWithPreview.txtLeft": "Left",
"SSE.Views.PrintWithPreview.txtMargins": "Margins",
"SSE.Views.PrintWithPreview.txtMarginsLast": "Last Custom",
"SSE.Views.PrintWithPreview.txtMarginsNarrow": "Narrow",
"SSE.Views.PrintWithPreview.txtMarginsNormal": "Normal",
"SSE.Views.PrintWithPreview.txtMarginsWide": "Wide",
"SSE.Views.PrintWithPreview.txtOf": "/ {0}",
"SSE.Views.PrintWithPreview.txtOneSide": "Print on One Side",
"SSE.Views.PrintWithPreview.txtOneSideDesc": "Print pages on one side only",
"SSE.Views.PrintWithPreview.txtPage": "Page",
"SSE.Views.PrintWithPreview.txtPageNumInvalid": "Invalid page number",
"SSE.Views.PrintWithPreview.txtPageOrientation": "Page Orientation",
"SSE.Views.PrintWithPreview.txtPages": "Pages:",
"SSE.Views.PrintWithPreview.txtPageSize": "Page Size",
"SSE.Views.PrintWithPreview.txtPortrait": "Portrait",
"SSE.Views.PrintWithPreview.txtPrint": "Print",
"SSE.Views.PrintWithPreview.txtPrintGrid": "Print Gridlines",
"SSE.Views.PrintWithPreview.txtPrintHeadings": "Print Row and Column Headings",
"SSE.Views.PrintWithPreview.txtPrintRange": "Print Range",
"SSE.Views.PrintWithPreview.txtPrintSides": "Print on Both Sides",
"SSE.Views.PrintWithPreview.txtPrintTitles": "Print Titles",
"SSE.Views.PrintWithPreview.txtPrintToPDF": "Print to PDF",
"SSE.Views.PrintWithPreview.txtRepeat": "Repeat...",
"SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Repeat Rows at Left",
"SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Repeat Columns at Top",
"SSE.Views.PrintWithPreview.txtRight": "Right",
"SSE.Views.PrintWithPreview.txtSave": "Save",
"SSE.Views.PrintWithPreview.txtScaling": "Scaling",
"SSE.Views.PrintWithPreview.txtSelection": "Selection",
"SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Sheet Settings",
"SSE.Views.PrintWithPreview.txtSheet": "Sheet: {0}",
"SSE.Views.PrintWithPreview.txtTo": "To",
"SSE.Views.PrintWithPreview.txtTop": "Top",
"SSE.Views.ProtectDialog.textExistName": "Error! A range with this title already exists",
"SSE.Views.ProtectDialog.textInvalidName": "Range name must begin with a letter and can only contain numbers, letters, and spaces.",
"SSE.Views.ProtectDialog.textInvalidRange": "Error! Invalid cell range.",
"SSE.Views.ProtectDialog.textSelectData": "Select Data",
"SSE.Views.ProtectDialog.txtAllow": "Allow all users of this sheet to",
"SSE.Views.ProtectDialog.txtAllowDescription": "You can unlock specific ranges for editing.",
"SSE.Views.ProtectDialog.txtAllowRanges": "Allow Edit Ranges",
"SSE.Views.ProtectDialog.txtAutofilter": "Use AutoFilter",
"SSE.Views.ProtectDialog.txtDelCols": "Delete Columns",
"SSE.Views.ProtectDialog.txtDelRows": "Delete Rows",
"SSE.Views.ProtectDialog.txtEmpty": "This field is required",
"SSE.Views.ProtectDialog.txtFormatCells": "Format Cells",
"SSE.Views.ProtectDialog.txtFormatCols": "Format Columns",
"SSE.Views.ProtectDialog.txtFormatRows": "Format Rows",
"SSE.Views.ProtectDialog.txtIncorrectPwd": "The confirmed password does not match the one previously entered.",
"SSE.Views.ProtectDialog.txtInsCols": "Insert Columns",
"SSE.Views.ProtectDialog.txtInsHyper": "Insert Hyperlinks",
"SSE.Views.ProtectDialog.txtInsRows": "Insert Rows",
"SSE.Views.ProtectDialog.txtObjs": "Edit Objects",
"SSE.Views.ProtectDialog.txtOptional": "Optional",
"SSE.Views.ProtectDialog.txtPassword": "Password",
"SSE.Views.ProtectDialog.txtPivot": "Use PivotTable and PivotChart",
"SSE.Views.ProtectDialog.txtProtect": "Protect",
"SSE.Views.ProtectDialog.txtRange": "Range",
"SSE.Views.ProtectDialog.txtRangeName": "Title",
"SSE.Views.ProtectDialog.txtRepeat": "Re-enter Password",
"SSE.Views.ProtectDialog.txtScen": "Edit Scenarios",
"SSE.Views.ProtectDialog.txtSelLocked": "Select Locked Cells",
"SSE.Views.ProtectDialog.txtSelUnLocked": "Select Unlocked Cells",
"SSE.Views.ProtectDialog.txtSheetDescription": "Prevent unwanted changes by restricting others' ability to edit.",
"SSE.Views.ProtectDialog.txtSheetTitle": "Protect Sheet",
"SSE.Views.ProtectDialog.txtSort": "Sort",
"SSE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.",
"SSE.Views.ProtectDialog.txtWBDescription": "",
"SSE.Views.ProtectDialog.txtWBTitle": "Protect Workbook Structure",
"SSE.Views.ProtectedRangesEditDlg.textAnonymous": "Anonymous Users",
"SSE.Views.ProtectedRangesEditDlg.textInvalidName": "Range name must begin with a letter and can only contain numbers, letters, and spaces.",
"SSE.Views.ProtectedRangesEditDlg.textInvalidRange": "Error! Invalid cell range",
"SSE.Views.ProtectedRangesEditDlg.textSelectData": "Select Data",
"SSE.Views.ProtectedRangesEditDlg.textTipAdd": "Add User",
"SSE.Views.ProtectedRangesEditDlg.textTipDelete": "Delete User",
"SSE.Views.ProtectedRangesEditDlg.textYou": "You",
"SSE.Views.ProtectedRangesEditDlg.txtEmpty": "Required field",
"SSE.Views.ProtectedRangesEditDlg.txtProtect": "Protect",
"SSE.Views.ProtectedRangesEditDlg.txtRange": "Range",
"SSE.Views.ProtectedRangesEditDlg.txtRangeName": "Name",
"SSE.Views.ProtectedRangesEditDlg.txtWhoCanEdit": "Who Can Edit",
"SSE.Views.ProtectedRangesEditDlg.txtYouCanEdit": "Only you can edit this range",
"SSE.Views.ProtectedRangesEditDlg.userPlaceholder": "Start typing name or email",
"SSE.Views.ProtectedRangesManagerDlg.guestText": "Guest",
"SSE.Views.ProtectedRangesManagerDlg.lockText": "Locked",
"SSE.Views.ProtectedRangesManagerDlg.textDelete": "Delete",
"SSE.Views.ProtectedRangesManagerDlg.textEdit": "Edit",
"SSE.Views.ProtectedRangesManagerDlg.textEmpty": "",
"SSE.Views.ProtectedRangesManagerDlg.textFilter": "Filter",
"SSE.Views.ProtectedRangesManagerDlg.textFilterAll": "All",
"SSE.Views.ProtectedRangesManagerDlg.textNew": "New",
"SSE.Views.ProtectedRangesManagerDlg.textProtect": "Protect Sheet",
"SSE.Views.ProtectedRangesManagerDlg.textRange": "Range",
"SSE.Views.ProtectedRangesManagerDlg.textRangesDesc": "You can restrict range editing for selected people",
"SSE.Views.ProtectedRangesManagerDlg.textTitle": "Name",
"SSE.Views.ProtectedRangesManagerDlg.textYouCan": "You Can",
"SSE.Views.ProtectedRangesManagerDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.ProtectedRangesManagerDlg.txtEdit": "Edit",
"SSE.Views.ProtectedRangesManagerDlg.txtEditRange": "Edit Range",
"SSE.Views.ProtectedRangesManagerDlg.txtNewRange": "New Range",
"SSE.Views.ProtectedRangesManagerDlg.txtTitle": "Protected Ranges",
"SSE.Views.ProtectedRangesManagerDlg.txtView": "View",
"SSE.Views.ProtectedRangesManagerDlg.warnDelete": "",
"SSE.Views.ProtectedRangesManagerDlg.warnDeleteRanges": "",
"SSE.Views.ProtectRangesDlg.guestText": "Guest",
"SSE.Views.ProtectRangesDlg.lockText": "Locked",
"SSE.Views.ProtectRangesDlg.textDelete": "Delete",
"SSE.Views.ProtectRangesDlg.textEdit": "Edit",
"SSE.Views.ProtectRangesDlg.textEmpty": "No editable ranges.",
"SSE.Views.ProtectRangesDlg.textNew": "New",
"SSE.Views.ProtectRangesDlg.textProtect": "Protect Sheet",
"SSE.Views.ProtectRangesDlg.textPwd": "Password",
"SSE.Views.ProtectRangesDlg.textRange": "Range",
"SSE.Views.ProtectRangesDlg.textRangesDesc": "When sheet is protected, ranges are password-unlocked (only for locked cells)",
"SSE.Views.ProtectRangesDlg.textTitle": "Title",
"SSE.Views.ProtectRangesDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.ProtectRangesDlg.txtEditRange": "Edit Range",
"SSE.Views.ProtectRangesDlg.txtNewRange": "New Range",
"SSE.Views.ProtectRangesDlg.txtNo": "No",
"SSE.Views.ProtectRangesDlg.txtTitle": "Allow Users to Edit Ranges",
"SSE.Views.ProtectRangesDlg.txtYes": "Yes",
"SSE.Views.ProtectRangesDlg.warnDelete": "Are you sure you want to delete the name {0}?",
"SSE.Views.RemoveDuplicatesDialog.textColumns": "Columns",
"SSE.Views.RemoveDuplicatesDialog.textDescription": "To remove duplicate values, select one or more columns that contain duplicate values.",
"SSE.Views.RemoveDuplicatesDialog.textHeaders": "My data has headers",
"SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Select All",
"SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remove Duplicates",
"SSE.Views.RightMenu.txtCellSettings": "Cell Settings",
"SSE.Views.RightMenu.txtChartSettings": "Chart Settings",
"SSE.Views.RightMenu.txtImageSettings": "Picture Settings",
"SSE.Views.RightMenu.txtParagraphSettings": "Paragraph Settings",
"SSE.Views.RightMenu.txtPivotSettings": "PivotTable Settings",
"SSE.Views.RightMenu.txtSettings": "General Settings",
"SSE.Views.RightMenu.txtShapeSettings": "Shape Settings",
"SSE.Views.RightMenu.txtSignatureSettings": "Signature Settings",
"SSE.Views.RightMenu.txtSlicerSettings": "Slicer Settings",
"SSE.Views.RightMenu.txtSparklineSettings": "Sparkline Settings",
"SSE.Views.RightMenu.txtTableSettings": "Table Settings",
"SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings",
"SSE.Views.ScaleDialog.textAuto": "Auto",
"SSE.Views.ScaleDialog.textError": "The entered value is incorrect.",
"SSE.Views.ScaleDialog.textFewPages": "pages",
"SSE.Views.ScaleDialog.textFitTo": "Fit to",
"SSE.Views.ScaleDialog.textHeight": "Height",
"SSE.Views.ScaleDialog.textManyPages": "pages",
"SSE.Views.ScaleDialog.textOnePage": "page",
"SSE.Views.ScaleDialog.textScaleTo": "Scale to",
"SSE.Views.ScaleDialog.textTitle": "Scaling Settings",
"SSE.Views.ScaleDialog.textWidth": "Width",
"SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}",
"SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}",
"SSE.Views.ShapeSettings.strBackground": "Background Color",
"SSE.Views.ShapeSettings.strChange": "Change AutoShape",
"SSE.Views.ShapeSettings.strColor": "Color",
"SSE.Views.ShapeSettings.strFill": "Fill",
"SSE.Views.ShapeSettings.strForeground": "Foreground Color",
"SSE.Views.ShapeSettings.strPattern": "Pattern",
"SSE.Views.ShapeSettings.strShadow": "Show Shadow",
"SSE.Views.ShapeSettings.strSize": "Size",
"SSE.Views.ShapeSettings.strStroke": "Line",
"SSE.Views.ShapeSettings.strTransparency": "Transparency",
"SSE.Views.ShapeSettings.strType": "Type",
"SSE.Views.ShapeSettings.textAdvanced": "Show Advanced Settings",
"SSE.Views.ShapeSettings.textAngle": "Angle",
"SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"SSE.Views.ShapeSettings.textColor": "Solid Fill",
"SSE.Views.ShapeSettings.textDirection": "Direction",
"SSE.Views.ShapeSettings.textEditPoints": "Edit Points",
"SSE.Views.ShapeSettings.textEditShape": "Edit Shape",
"SSE.Views.ShapeSettings.textEmptyPattern": "No Pattern",
"SSE.Views.ShapeSettings.textFlip": "Flip",
"SSE.Views.ShapeSettings.textFromFile": "From File",
"SSE.Views.ShapeSettings.textFromStorage": "From Storage",
"SSE.Views.ShapeSettings.textFromUrl": "From URL",
"SSE.Views.ShapeSettings.textGradient": "Gradient Points",
"SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill",
"SSE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise",
"SSE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise",
"SSE.Views.ShapeSettings.textHintFlipH": "Flip Horizontal",
"SSE.Views.ShapeSettings.textHintFlipV": "Flip Vertical",
"SSE.Views.ShapeSettings.textImageTexture": "Picture or Texture",
"SSE.Views.ShapeSettings.textLinear": "Linear",
"SSE.Views.ShapeSettings.textNoFill": "No Fill",
"SSE.Views.ShapeSettings.textOriginalSize": "Original Size",
"SSE.Views.ShapeSettings.textPatternFill": "Pattern Fill",
"SSE.Views.ShapeSettings.textPosition": "Position",
"SSE.Views.ShapeSettings.textRadial": "Radial",
"SSE.Views.ShapeSettings.textRecentlyUsed": "Recently Used",
"SSE.Views.ShapeSettings.textRotate90": "Rotate 90°",
"SSE.Views.ShapeSettings.textRotation": "Rotation",
"SSE.Views.ShapeSettings.textSelectImage": "Select Picture",
"SSE.Views.ShapeSettings.textSelectTexture": "Select",
"SSE.Views.ShapeSettings.textStretch": "Stretch",
"SSE.Views.ShapeSettings.textStyle": "Type",
"SSE.Views.ShapeSettings.textTexture": "From Texture",
"SSE.Views.ShapeSettings.textTile": "Tile",
"SSE.Views.ShapeSettings.tipAddGradientPoint": "Add Gradient Point",
"SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove Gradient Point",
"SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper",
"SSE.Views.ShapeSettings.txtCanvas": "Canvas",
"SSE.Views.ShapeSettings.txtCarton": "Carton",
"SSE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric",
"SSE.Views.ShapeSettings.txtGrain": "Grain",
"SSE.Views.ShapeSettings.txtGranite": "Granite",
"SSE.Views.ShapeSettings.txtGreyPaper": "Grey Paper",
"SSE.Views.ShapeSettings.txtKnit": "Knit",
"SSE.Views.ShapeSettings.txtLeather": "Leather",
"SSE.Views.ShapeSettings.txtNoBorders": "No Line",
"SSE.Views.ShapeSettings.txtPapyrus": "Papyrus",
"SSE.Views.ShapeSettings.txtWood": "Wood",
"SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns",
"SSE.Views.ShapeSettingsAdvanced.strMargins": "Margins",
"SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Size and position are fixed",
"SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text",
"SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.ShapeSettingsAdvanced.textAltTip": "Tip",
"SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle",
"SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows",
"SSE.Views.ShapeSettingsAdvanced.textAutofit": "Autofit",
"SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size",
"SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style",
"SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel",
"SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom",
"SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type",
"SSE.Views.ShapeSettingsAdvanced.textColNumber": "Number of Columns",
"SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size",
"SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style",
"SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat",
"SSE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped",
"SSE.Views.ShapeSettingsAdvanced.textHeight": "Height",
"SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally",
"SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type",
"SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Lock Aspect Ratio",
"SSE.Views.ShapeSettingsAdvanced.textLeft": "Left",
"SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line",
"SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter",
"SSE.Views.ShapeSettingsAdvanced.textOneCell": "Size is fixed, position moves with cells",
"SSE.Views.ShapeSettingsAdvanced.textOverflow": "Allow text to overflow shape",
"SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize shape to fit text",
"SSE.Views.ShapeSettingsAdvanced.textRight": "Right",
"SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation",
"SSE.Views.ShapeSettingsAdvanced.textRound": "Round",
"SSE.Views.ShapeSettingsAdvanced.textSize": "Size",
"SSE.Views.ShapeSettingsAdvanced.textSnap": "Size and Position",
"SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns",
"SSE.Views.ShapeSettingsAdvanced.textSquare": "Square",
"SSE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box",
"SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings",
"SSE.Views.ShapeSettingsAdvanced.textTop": "Top",
"SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Size and position move with cells",
"SSE.Views.ShapeSettingsAdvanced.textVertically": "Vertically",
"SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Line and Arrows",
"SSE.Views.ShapeSettingsAdvanced.textWidth": "Width",
"SSE.Views.SignatureSettings.notcriticalErrorTitle": "Warning",
"SSE.Views.SignatureSettings.strDelete": "Delete Signature",
"SSE.Views.SignatureSettings.strDetails": "Signature Details",
"SSE.Views.SignatureSettings.strInvalid": "Invalid Signature",
"SSE.Views.SignatureSettings.strRequested": "Requested Signature",
"SSE.Views.SignatureSettings.strSetup": "Signature Settings",
"SSE.Views.SignatureSettings.strSign": "Sign",
"SSE.Views.SignatureSettings.strSignature": "Signature",
"SSE.Views.SignatureSettings.strSigner": "Signer",
"SSE.Views.SignatureSettings.strValid": "Valid Signature",
"SSE.Views.SignatureSettings.txtContinueEditing": "Continue Editing",
"SSE.Views.SignatureSettings.txtEditWarning": "Editing will remove signatures from the spreadsheet.<br>Are you sure you want to continue?",
"SSE.Views.SignatureSettings.txtRemoveWarning": "Do you want to remove this signature?<br>This action cannot be undone.",
"SSE.Views.SignatureSettings.txtRequestedSignatures": "This spreadsheet requires signatures.",
"SSE.Views.SignatureSettings.txtSigned": "Valid signatures have been added to the spreadsheet. Editing of this spreadsheet is restricted.",
"SSE.Views.SignatureSettings.txtSignedInvalid": "Some digital signatures in the spreadsheet are invalid or cannot be verified. Editing of this spreadsheet is restricted.",
"SSE.Views.SlicerAddDialog.textColumns": "Columns",
"SSE.Views.SlicerAddDialog.txtTitle": "Insert Slicer",
"SSE.Views.SlicerSettings.strHideNoData": "Hide items with no data",
"SSE.Views.SlicerSettings.strIndNoData": "Visually indicate empty data items",
"SSE.Views.SlicerSettings.strShowDel": "Show items deleted from data source",
"SSE.Views.SlicerSettings.strShowNoData": "Show empty data items last",
"SSE.Views.SlicerSettings.strSorting": "Sorting and Filtering",
"SSE.Views.SlicerSettings.textAdvanced": "Show Advanced Settings",
"SSE.Views.SlicerSettings.textAsc": "Ascending",
"SSE.Views.SlicerSettings.textAZ": "A to Z",
"SSE.Views.SlicerSettings.textButtons": "Buttons",
"SSE.Views.SlicerSettings.textColumns": "Columns",
"SSE.Views.SlicerSettings.textDesc": "Descending",
"SSE.Views.SlicerSettings.textHeight": "Height",
"SSE.Views.SlicerSettings.textHor": "Horizontal",
"SSE.Views.SlicerSettings.textKeepRatio": "Lock Aspect Ratio",
"SSE.Views.SlicerSettings.textLargeSmall": "Large to Small",
"SSE.Views.SlicerSettings.textLock": "Disable moving or resizing",
"SSE.Views.SlicerSettings.textNewOld": "New to Old",
"SSE.Views.SlicerSettings.textOldNew": "Old to New",
"SSE.Views.SlicerSettings.textPosition": "Position",
"SSE.Views.SlicerSettings.textSize": "Size",
"SSE.Views.SlicerSettings.textSmallLarge": "Ascending",
"SSE.Views.SlicerSettings.textStyle": "Style",
"SSE.Views.SlicerSettings.textVert": "Vertical",
"SSE.Views.SlicerSettings.textWidth": "Width",
"SSE.Views.SlicerSettings.textZA": "Z to A",
"SSE.Views.SlicerSettingsAdvanced.strButtons": "Buttons",
"SSE.Views.SlicerSettingsAdvanced.strColumns": "Columns",
"SSE.Views.SlicerSettingsAdvanced.strHeight": "Height",
"SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Hide items with no data",
"SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Visually indicate empty data items",
"SSE.Views.SlicerSettingsAdvanced.strReferences": "References",
"SSE.Views.SlicerSettingsAdvanced.strShowDel": "Show items deleted from data source",
"SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Show Header",
"SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Show empty data items last",
"SSE.Views.SlicerSettingsAdvanced.strSize": "Size",
"SSE.Views.SlicerSettingsAdvanced.strSorting": "Sorting and Filtering",
"SSE.Views.SlicerSettingsAdvanced.strStyle": "Style",
"SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Style and Size",
"SSE.Views.SlicerSettingsAdvanced.strWidth": "Width",
"SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Size and position are fixed",
"SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternative Text",
"SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.SlicerSettingsAdvanced.textAltTip": "Tip",
"SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascending",
"SSE.Views.SlicerSettingsAdvanced.textAZ": "A to Z",
"SSE.Views.SlicerSettingsAdvanced.textDesc": "Descending",
"SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Name used in formulas",
"SSE.Views.SlicerSettingsAdvanced.textHeader": "Header",
"SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Lock Aspect Ratio",
"SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "Large to Small",
"SSE.Views.SlicerSettingsAdvanced.textName": "Name",
"SSE.Views.SlicerSettingsAdvanced.textNewOld": "New to Old",
"SSE.Views.SlicerSettingsAdvanced.textOldNew": "Old to New",
"SSE.Views.SlicerSettingsAdvanced.textOneCell": "Size is fixed, position moves with cells",
"SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "Ascending",
"SSE.Views.SlicerSettingsAdvanced.textSnap": "Size and Position",
"SSE.Views.SlicerSettingsAdvanced.textSort": "Sort",
"SSE.Views.SlicerSettingsAdvanced.textSourceName": "Source Name",
"SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Advanced Settings",
"SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Size and position move with cells",
"SSE.Views.SlicerSettingsAdvanced.textZA": "Z to A",
"SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Required field",
"SSE.Views.SortDialog.errorEmpty": "All sort criteria must specify a column or row.",
"SSE.Views.SortDialog.errorMoreOneCol": "Multiple columns are selected.",
"SSE.Views.SortDialog.errorMoreOneRow": "Multiple rows are selected.",
"SSE.Views.SortDialog.errorNotOriginalCol": "The selected column is not in the original selection range.",
"SSE.Views.SortDialog.errorNotOriginalRow": "The selected row is not in the original selection range.",
"SSE.Views.SortDialog.errorSameColumnColor": "%1 is sorted by the same color multiple times.<br>Remove duplicate sort criteria and try again.",
"SSE.Views.SortDialog.errorSameColumnValue": "%1 is sorted by value multiple times.<br>Remove duplicate sort criteria and try again.",
"SSE.Views.SortDialog.textAsc": "Ascending",
"SSE.Views.SortDialog.textAuto": "Auto",
"SSE.Views.SortDialog.textAZ": "Ascending",
"SSE.Views.SortDialog.textBelow": "Below",
"SSE.Views.SortDialog.textBtnCopy": "Copy Criteria",
"SSE.Views.SortDialog.textBtnDelete": "Delete Criteria",
"SSE.Views.SortDialog.textBtnNew": "Add Criteria",
"SSE.Views.SortDialog.textCellColor": "Cell Color",
"SSE.Views.SortDialog.textColumn": "Column",
"SSE.Views.SortDialog.textDesc": "Descending",
"SSE.Views.SortDialog.textDown": "Move Level Down",
"SSE.Views.SortDialog.textFontColor": "Font Color",
"SSE.Views.SortDialog.textLeft": "Left",
"SSE.Views.SortDialog.textLevels": " ",
"SSE.Views.SortDialog.textMoreCols": "(Other columns…)",
"SSE.Views.SortDialog.textMoreRows": "(Other rows…)",
"SSE.Views.SortDialog.textNone": "None",
"SSE.Views.SortDialog.textOptions": "Options",
"SSE.Views.SortDialog.textOrder": "Order",
"SSE.Views.SortDialog.textRight": "Right",
"SSE.Views.SortDialog.textRow": "Row",
"SSE.Views.SortDialog.textSort": "Sort by",
"SSE.Views.SortDialog.textSortBy": "Sort by",
"SSE.Views.SortDialog.textThenBy": "Then by",
"SSE.Views.SortDialog.textTop": "Top",
"SSE.Views.SortDialog.textUp": "Move Level Up",
"SSE.Views.SortDialog.textValues": "Cell Values",
"SSE.Views.SortDialog.textZA": "Descending",
"SSE.Views.SortDialog.txtInvalidRange": "Invalid cell range.",
"SSE.Views.SortDialog.txtTitle": "Sort",
"SSE.Views.SortFilterDialog.textAsc": "Ascending (A to Z) by",
"SSE.Views.SortFilterDialog.textDesc": "Descending (Z to A) by",
"SSE.Views.SortFilterDialog.txtTitle": "Sort",
"SSE.Views.SortFilterDialog.txtTitleValue": "Sort by Value",
"SSE.Views.SortOptionsDialog.textCase": "Case sensitive",
"SSE.Views.SortOptionsDialog.textHeaders": "Data has headers",
"SSE.Views.SortOptionsDialog.textLeftRight": "Sort by rows",
"SSE.Views.SortOptionsDialog.textOrientation": "Orientation",
"SSE.Views.SortOptionsDialog.textTitle": "Sort Options",
"SSE.Views.SortOptionsDialog.textTopBottom": "Sort by columns",
"SSE.Views.SpecialPasteDialog.textAdd": "Add",
"SSE.Views.SpecialPasteDialog.textAll": "All",
"SSE.Views.SpecialPasteDialog.textBlanks": "Skip blanks",
"SSE.Views.SpecialPasteDialog.textColWidth": "Column widths",
"SSE.Views.SpecialPasteDialog.textComments": "Comments",
"SSE.Views.SpecialPasteDialog.textDiv": "Divide",
"SSE.Views.SpecialPasteDialog.textFFormat": "Formulas & number formats",
"SSE.Views.SpecialPasteDialog.textFNFormat": "Formulas & number formats",
"SSE.Views.SpecialPasteDialog.textFormats": "Formats",
"SSE.Views.SpecialPasteDialog.textFormulas": "Formulas",
"SSE.Views.SpecialPasteDialog.textFWidth": "Formulas & column widths",
"SSE.Views.SpecialPasteDialog.textMult": "Multiply",
"SSE.Views.SpecialPasteDialog.textNone": "None",
"SSE.Views.SpecialPasteDialog.textOperation": "Operation",
"SSE.Views.SpecialPasteDialog.textPaste": "Paste",
"SSE.Views.SpecialPasteDialog.textSub": "Subtract",
"SSE.Views.SpecialPasteDialog.textTitle": "Paste Special",
"SSE.Views.SpecialPasteDialog.textTranspose": "Transpose",
"SSE.Views.SpecialPasteDialog.textValues": "Values",
"SSE.Views.SpecialPasteDialog.textVFormat": "Values & formats",
"SSE.Views.SpecialPasteDialog.textVNFormat": "Values & number formats",
"SSE.Views.SpecialPasteDialog.textWBorders": "All except borders",
"SSE.Views.Spellcheck.noSuggestions": "No spelling suggestions",
"SSE.Views.Spellcheck.textChange": "Change",
"SSE.Views.Spellcheck.textChangeAll": "Change All",
"SSE.Views.Spellcheck.textIgnore": "Ignore",
"SSE.Views.Spellcheck.textIgnoreAll": "Ignore All",
"SSE.Views.Spellcheck.txtAddToDictionary": "Add to Dictionary",
"SSE.Views.Spellcheck.txtClosePanel": "Close Spell Check",
"SSE.Views.Spellcheck.txtComplete": "Spell check complete",
"SSE.Views.Spellcheck.txtDictionaryLanguage": "Dictionary Language",
"SSE.Views.Spellcheck.txtNextTip": "Go to next word",
"SSE.Views.Spellcheck.txtSpelling": "Spelling",
"SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "Copy to end",
"SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "Move to end",
"SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Paste before sheet",
"SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Move before sheet",
"SSE.Views.Statusbar.filteredRecordsText": "{1} of {0} records filtered",
"SSE.Views.Statusbar.filteredText": "Filter mode",
"SSE.Views.Statusbar.itemAverage": "Average",
"SSE.Views.Statusbar.itemCopy": "Copy",
"SSE.Views.Statusbar.itemCount": "Count",
"SSE.Views.Statusbar.itemDelete": "Delete",
"SSE.Views.Statusbar.itemHidden": "Unhide",
"SSE.Views.Statusbar.itemHide": "Hide",
"SSE.Views.Statusbar.itemInsert": "Insert",
"SSE.Views.Statusbar.itemMaximum": "Maximum",
"SSE.Views.Statusbar.itemMinimum": "Minimum",
"SSE.Views.Statusbar.itemMove": "Move",
"SSE.Views.Statusbar.itemProtect": "Protect",
"SSE.Views.Statusbar.itemRename": "Rename",
"SSE.Views.Statusbar.itemStatus": "Saving",
"SSE.Views.Statusbar.itemSum": "Sum",
"SSE.Views.Statusbar.itemTabColor": "Tab Color",
"SSE.Views.Statusbar.itemUnProtect": "Unprotect",
"SSE.Views.Statusbar.RenameDialog.errNameExists": "A sheet with such a name already exists.",
"SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Sheet name cannot contain the following characters: \\/*?[]:",
"SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet Name",
"SSE.Views.Statusbar.selectAllSheets": "Select All Sheets",
"SSE.Views.Statusbar.sheetIndexText": "Sheet {0} of {1}",
"SSE.Views.Statusbar.textAverage": "Average",
"SSE.Views.Statusbar.textCount": "Count",
"SSE.Views.Statusbar.textMax": "Maximum",
"SSE.Views.Statusbar.textMin": "Minimum",
"SSE.Views.Statusbar.textNewColor": "More Colors",
"SSE.Views.Statusbar.textNoColor": "No Color",
"SSE.Views.Statusbar.textSum": "Sum",
"SSE.Views.Statusbar.tipAddTab": "Add Sheet",
"SSE.Views.Statusbar.tipFirst": "Scroll to first",
"SSE.Views.Statusbar.tipLast": "Scroll to last",
"SSE.Views.Statusbar.tipListOfSheets": "List of Sheets",
"SSE.Views.Statusbar.tipNext": "Scroll sheet list right",
"SSE.Views.Statusbar.tipPrev": "Scroll sheet list left",
"SSE.Views.Statusbar.tipZoomFactor": "Zoom",
"SSE.Views.Statusbar.tipZoomIn": "Zoom In",
"SSE.Views.Statusbar.tipZoomOut": "Zoom Out",
"SSE.Views.Statusbar.ungroupSheets": "Ungroup Sheets",
"SSE.Views.Statusbar.zoomText": "Zoom {0}%",
"SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "The data range for the autofilter cannot be changed.",
"SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "The table range cannot be changed.",
"SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "The selected range includes other tables.",
"SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.",
"SSE.Views.TableOptionsDialog.txtEmpty": "Required field",
"SSE.Views.TableOptionsDialog.txtFormat": "Create Table",
"SSE.Views.TableOptionsDialog.txtInvalidRange": "Error! Invalid cell range",
"SSE.Views.TableOptionsDialog.txtNote": "Headers must remain in the same row, and the resulting table range must overlap with the original table range.",
"SSE.Views.TableOptionsDialog.txtTitle": "My table has headers",
"SSE.Views.TableSettings.deleteColumnText": "Delete Column",
"SSE.Views.TableSettings.deleteRowText": "Delete Row",
"SSE.Views.TableSettings.deleteTableText": "Delete Table",
"SSE.Views.TableSettings.insertColumnLeftText": "Insert Column Left",
"SSE.Views.TableSettings.insertColumnRightText": "Insert Column Right",
"SSE.Views.TableSettings.insertRowAboveText": "Insert Row Above",
"SSE.Views.TableSettings.insertRowBelowText": "Insert Row Below",
"SSE.Views.TableSettings.notcriticalErrorTitle": "Warning",
"SSE.Views.TableSettings.selectColumnText": "Select Column",
"SSE.Views.TableSettings.selectDataText": "Select Column Data",
"SSE.Views.TableSettings.selectRowText": "Select Row",
"SSE.Views.TableSettings.selectTableText": "Select Table",
"SSE.Views.TableSettings.textActions": "Table Actions",
"SSE.Views.TableSettings.textAdvanced": "Show Advanced Settings",
"SSE.Views.TableSettings.textBanded": "Banded Rows",
"SSE.Views.TableSettings.textColBanded": "Banded Columns",
"SSE.Views.TableSettings.textColumns": "Columns",
"SSE.Views.TableSettings.textConvertRange": "Convert to Range",
"SSE.Views.TableSettings.textEdit": "Rows & Columns",
"SSE.Views.TableSettings.textEmptyTemplate": "No Template",
"SSE.Views.TableSettings.textExistName": "Error! A range with such a name already exists",
"SSE.Views.TableSettings.textFilter": "Filter Button",
"SSE.Views.TableSettings.textFirst": "First Column",
"SSE.Views.TableSettings.textHeader": "Header Row",
"SSE.Views.TableSettings.textInvalidName": "Error! Invalid table name",
"SSE.Views.TableSettings.textIsLocked": "This element is being edited by another user.",
"SSE.Views.TableSettings.textLast": "Last Column",
"SSE.Views.TableSettings.textLongOperation": "Long Operation",
"SSE.Views.TableSettings.textPivot": "Insert PivotTable",
"SSE.Views.TableSettings.textRemDuplicates": "Remove Duplicates",
"SSE.Views.TableSettings.textReservedName": "The name you are trying to use is already referenced in a cell formula. Please use a different name.",
"SSE.Views.TableSettings.textResize": "Resize Table",
"SSE.Views.TableSettings.textRows": "Rows",
"SSE.Views.TableSettings.textSelectData": "Select Data",
"SSE.Views.TableSettings.textSlicer": "Insert Slicer",
"SSE.Views.TableSettings.textTableName": "Table Name",
"SSE.Views.TableSettings.textTemplate": "Table Style",
"SSE.Views.TableSettings.textTotal": "Total Row",
"SSE.Views.TableSettings.txtGroupTable_Custom": "Custom",
"SSE.Views.TableSettings.txtGroupTable_Dark": "Dark",
"SSE.Views.TableSettings.txtGroupTable_Light": "Light",
"SSE.Views.TableSettings.txtGroupTable_Medium": "Medium",
"SSE.Views.TableSettings.txtTable_TableStyleDark": "Table Style Dark",
"SSE.Views.TableSettings.txtTable_TableStyleLight": "Table Style Light",
"SSE.Views.TableSettings.txtTable_TableStyleMedium": "Table Style Medium",
"SSE.Views.TableSettings.warnLongOperation": "The operation you are about to perform may take a considerable amount of time to complete.<br>Are you sure you want to continue?",
"SSE.Views.TableSettingsAdvanced.textAlt": "Alternative Text",
"SSE.Views.TableSettingsAdvanced.textAltDescription": "Description",
"SSE.Views.TableSettingsAdvanced.textAltTip": "Tip",
"SSE.Views.TableSettingsAdvanced.textAltTitle": "Title",
"SSE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings",
"SSE.Views.TextArtSettings.strBackground": "Background Color",
"SSE.Views.TextArtSettings.strColor": "Color",
"SSE.Views.TextArtSettings.strFill": "Text Fill",
"SSE.Views.TextArtSettings.strForeground": "Foreground Color",
"SSE.Views.TextArtSettings.strPattern": "Pattern",
"SSE.Views.TextArtSettings.strSize": "Width",
"SSE.Views.TextArtSettings.strStroke": "Text Outline",
"SSE.Views.TextArtSettings.strTransparency": "Transparency",
"SSE.Views.TextArtSettings.strType": "Type",
"SSE.Views.TextArtSettings.textAngle": "Angle",
"SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.<br>Please enter a value between 0 pt and 1584 pt.",
"SSE.Views.TextArtSettings.textColor": "Solid Fill",
"SSE.Views.TextArtSettings.textDirection": "Direction",
"SSE.Views.TextArtSettings.textEmptyPattern": "No Pattern",
"SSE.Views.TextArtSettings.textFromFile": "From File",
"SSE.Views.TextArtSettings.textFromUrl": "From URL",
"SSE.Views.TextArtSettings.textGradient": "Gradient Points",
"SSE.Views.TextArtSettings.textGradientFill": "Gradient Fill",
"SSE.Views.TextArtSettings.textImageTexture": "Picture or Texture",
"SSE.Views.TextArtSettings.textLinear": "Linear",
"SSE.Views.TextArtSettings.textNoFill": "No Fill",
"SSE.Views.TextArtSettings.textPatternFill": "Pattern Fill",
"SSE.Views.TextArtSettings.textPosition": "Position",
"SSE.Views.TextArtSettings.textRadial": "Radial",
"SSE.Views.TextArtSettings.textSelectTexture": "Select",
"SSE.Views.TextArtSettings.textStretch": "Stretch",
"SSE.Views.TextArtSettings.textStyle": "Type",
"SSE.Views.TextArtSettings.textTemplate": "Style",
"SSE.Views.TextArtSettings.textTexture": "From Texture",
"SSE.Views.TextArtSettings.textTile": "Tile",
"SSE.Views.TextArtSettings.textTransform": "Follow Path",
"SSE.Views.TextArtSettings.tipAddGradientPoint": "Add Gradient Point",
"SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove Gradient Point",
"SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper",
"SSE.Views.TextArtSettings.txtCanvas": "Canvas",
"SSE.Views.TextArtSettings.txtCarton": "Carton",
"SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric",
"SSE.Views.TextArtSettings.txtGrain": "Grain",
"SSE.Views.TextArtSettings.txtGranite": "Granite",
"SSE.Views.TextArtSettings.txtGreyPaper": "Grey Paper",
"SSE.Views.TextArtSettings.txtKnit": "Knit",
"SSE.Views.TextArtSettings.txtLeather": "Leather",
"SSE.Views.TextArtSettings.txtNoBorders": "No Line",
"SSE.Views.TextArtSettings.txtPapyrus": "Papyrus",
"SSE.Views.TextArtSettings.txtWood": "Wood",
"SSE.Views.Toolbar.capBtnAddComment": "Add Comment",
"SSE.Views.Toolbar.capBtnColorSchemas": "Color Schemes",
"SSE.Views.Toolbar.capBtnComment": "Comment",
"SSE.Views.Toolbar.capBtnInsHeader": "Header & Footer",
"SSE.Views.Toolbar.capBtnInsSlicer": "Slicer",
"SSE.Views.Toolbar.capBtnInsSmartArt": "SmartArt",
"SSE.Views.Toolbar.capBtnInsSymbol": "Symbol",
"SSE.Views.Toolbar.capBtnMargins": "Margins",
"SSE.Views.Toolbar.capBtnPageBreak": "Breaks",
"SSE.Views.Toolbar.capBtnPageOrient": "Orientation",
"SSE.Views.Toolbar.capBtnPageSize": "Size",
"SSE.Views.Toolbar.capBtnPrintArea": "Print Area",
"SSE.Views.Toolbar.capBtnPrintTitles": "Print Titles",
"SSE.Views.Toolbar.capBtnScale": "Scale to Fit",
"SSE.Views.Toolbar.capImgAlign": "Align",
"SSE.Views.Toolbar.capImgBackward": "Send Backward",
"SSE.Views.Toolbar.capImgForward": "Bring Forward",
"SSE.Views.Toolbar.capImgGroup": "Group",
"SSE.Views.Toolbar.capInsertChart": "Chart",
"SSE.Views.Toolbar.capInsertChartRecommend": "Recommended Charts",
"SSE.Views.Toolbar.capInsertEquation": "Equation",
"SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink",
"SSE.Views.Toolbar.capInsertImage": "Picture",
"SSE.Views.Toolbar.capInsertShape": "Shape",
"SSE.Views.Toolbar.capInsertSpark": "Sparkline",
"SSE.Views.Toolbar.capInsertTable": "Table",
"SSE.Views.Toolbar.capInsertText": "Text Box",
"SSE.Views.Toolbar.capInsertTextart": "Text Art",
"SSE.Views.Toolbar.mniCapitalizeWords": "Capitalize Each Word",
"SSE.Views.Toolbar.mniImageFromFile": "Picture from File",
"SSE.Views.Toolbar.mniImageFromStorage": "Picture from Storage",
"SSE.Views.Toolbar.mniImageFromUrl": "Picture from URL",
"SSE.Views.Toolbar.mniLowerCase": "lowercase",
"SSE.Views.Toolbar.mniSentenceCase": "Sentence case",
"SSE.Views.Toolbar.mniToggleCase": "tOGGLE cASE",
"SSE.Views.Toolbar.mniUpperCase": "UPPERCASE",
"SSE.Views.Toolbar.textAddPrintArea": "Add to Print Area",
"SSE.Views.Toolbar.textAlignBottom": "Align Bottom",
"SSE.Views.Toolbar.textAlignCenter": "Align Center",
"SSE.Views.Toolbar.textAlignJust": "Justify",
"SSE.Views.Toolbar.textAlignLeft": "Align Left",
"SSE.Views.Toolbar.textAlignMiddle": "Align Middle",
"SSE.Views.Toolbar.textAlignRight": "Align Right",
"SSE.Views.Toolbar.textAlignTop": "Align Top",
"SSE.Views.Toolbar.textAllBorders": "All Borders",
"SSE.Views.Toolbar.textAlpha": "Greek Small Letter Alpha",
"SSE.Views.Toolbar.textAuto": "Auto",
"SSE.Views.Toolbar.textAutoColor": "Auto",
"SSE.Views.Toolbar.textBetta": "Greek Small Letter Beta",
"SSE.Views.Toolbar.textBlackHeart": "Black Heart",
"SSE.Views.Toolbar.textBold": "Bold",
"SSE.Views.Toolbar.textBordersColor": "Border Color",
"SSE.Views.Toolbar.textBordersStyle": "Border Style",
"SSE.Views.Toolbar.textBottom": "Bottom: ",
"SSE.Views.Toolbar.textBottomBorders": "Bottom Border",
"SSE.Views.Toolbar.textBullet": "Bullet",
"SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Border",
"SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area",
"SSE.Views.Toolbar.textClearRule": "Clear Rules",
"SSE.Views.Toolbar.textClockwise": "Clockwise Angle",
"SSE.Views.Toolbar.textColorScales": "Color Scales",
"SSE.Views.Toolbar.textCopyright": "Copyright Sign",
"SSE.Views.Toolbar.textCounterCw": "Counterclockwise Angle",
"SSE.Views.Toolbar.textCustom": "Custom",
"SSE.Views.Toolbar.textDataBars": "Data Bars",
"SSE.Views.Toolbar.textDegree": "Degree Sign",
"SSE.Views.Toolbar.textDelLeft": "Shift Cells Left",
"SSE.Views.Toolbar.textDelPageBreak": "Remove Page Break",
"SSE.Views.Toolbar.textDelta": "Greek Small Letter Delta",
"SSE.Views.Toolbar.textDelUp": "Shift Cells Up",
"SSE.Views.Toolbar.textDiagDownBorder": "Diagonal Down Border",
"SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border",
"SSE.Views.Toolbar.textDivision": "Division Sign",
"SSE.Views.Toolbar.textDollar": "Dollar Sign",
"SSE.Views.Toolbar.textDone": "Done",
"SSE.Views.Toolbar.textDown": "Down",
"SSE.Views.Toolbar.textEditVA": "Edit Visible Area",
"SSE.Views.Toolbar.textEntireCol": "Entire Column",
"SSE.Views.Toolbar.textEntireRow": "Entire Row",
"SSE.Views.Toolbar.textEuro": "Euro Sign",
"SSE.Views.Toolbar.textFewPages": "pages",
"SSE.Views.Toolbar.textFillLeft": "Fill Left",
"SSE.Views.Toolbar.textFillRight": "Fill Right",
"SSE.Views.Toolbar.textGreaterEqual": "Greater Than or Equal To",
"SSE.Views.Toolbar.textHeight": "Height",
"SSE.Views.Toolbar.textHideVA": "Hide Visible Area",
"SSE.Views.Toolbar.textHorizontal": "Horizontal Text",
"SSE.Views.Toolbar.textInfinity": "Infinity",
"SSE.Views.Toolbar.textInsDown": "Shift Cells Down",
"SSE.Views.Toolbar.textInsideBorders": "Inside Borders",
"SSE.Views.Toolbar.textInsPageBreak": "Insert Page Break",
"SSE.Views.Toolbar.textInsRight": "Shift Cells Right",
"SSE.Views.Toolbar.textItalic": "Italic",
"SSE.Views.Toolbar.textItems": "items",
"SSE.Views.Toolbar.textLandscape": "Landscape",
"SSE.Views.Toolbar.textLeft": "Left: ",
"SSE.Views.Toolbar.textLeftBorders": "Left Border",
"SSE.Views.Toolbar.textLessEqual": "Less Than or Equal To",
"SSE.Views.Toolbar.textLetterPi": "Greek Small Letter Pi",
"SSE.Views.Toolbar.textManageRule": "Manage Rules",
"SSE.Views.Toolbar.textManyPages": "pages",
"SSE.Views.Toolbar.textMarginsLast": "Last Custom",
"SSE.Views.Toolbar.textMarginsNarrow": "Narrow",
"SSE.Views.Toolbar.textMarginsNormal": "Normal",
"SSE.Views.Toolbar.textMarginsWide": "Wide",
"SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Border",
"SSE.Views.Toolbar.textMoreFormats": "More Number Formats",
"SSE.Views.Toolbar.textMorePages": "More Pages",
"SSE.Views.Toolbar.textMoreSymbols": "More Symbols",
"SSE.Views.Toolbar.textNewColor": "More Colors",
"SSE.Views.Toolbar.textNewRule": "New Rule",
"SSE.Views.Toolbar.textNoBorders": "No Border",
"SSE.Views.Toolbar.textNotEqualTo": "Not Equal To",
"SSE.Views.Toolbar.textOneHalf": "Vulgar Fraction One Half",
"SSE.Views.Toolbar.textOnePage": "page",
"SSE.Views.Toolbar.textOneQuarter": "Vulgar Fraction One Quarter",
"SSE.Views.Toolbar.textOutBorders": "Outside Borders",
"SSE.Views.Toolbar.textPageMarginsCustom": "Custom Margins",
"SSE.Views.Toolbar.textPortrait": "Portrait",
"SSE.Views.Toolbar.textPrint": "Print",
"SSE.Views.Toolbar.textPrintGridlines": "Print Gridlines",
"SSE.Views.Toolbar.textPrintHeadings": "Print Headings",
"SSE.Views.Toolbar.textPrintOptions": "Print Settings",
"SSE.Views.Toolbar.textRegistered": "Registered Sign",
"SSE.Views.Toolbar.textResetPageBreak": "Reset All Page Breaks",
"SSE.Views.Toolbar.textRight": "Right: ",
"SSE.Views.Toolbar.textRightBorders": "Right Border",
"SSE.Views.Toolbar.textRotateDown": "Rotate Text Down",
"SSE.Views.Toolbar.textRotateUp": "Rotate Text Up",
"SSE.Views.Toolbar.textScale": "Scale",
"SSE.Views.Toolbar.textScaleCustom": "Custom",
"SSE.Views.Toolbar.textSection": "Section Sign",
"SSE.Views.Toolbar.textSelection": "Clear Rules from Selected Cells",
"SSE.Views.Toolbar.textSeries": "Series",
"SSE.Views.Toolbar.textSetPrintArea": "Set Print Area",
"SSE.Views.Toolbar.textShowVA": "Show Visible Area",
"SSE.Views.Toolbar.textSmile": "White Smiling Face",
"SSE.Views.Toolbar.textSquareRoot": "Square Root",
"SSE.Views.Toolbar.textStrikeout": "Strikethrough",
"SSE.Views.Toolbar.textSubscript": "Subscript",
"SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript",
"SSE.Views.Toolbar.textSuperscript": "Superscript",
"SSE.Views.Toolbar.textTabCollaboration": "Review",
"SSE.Views.Toolbar.textTabData": "Data",
"SSE.Views.Toolbar.textTabDraw": "Draw",
"SSE.Views.Toolbar.textTabFile": "File",
"SSE.Views.Toolbar.textTabFormula": "Formulas",
"SSE.Views.Toolbar.textTabHome": "Home",
"SSE.Views.Toolbar.textTabInsert": "Insert",
"SSE.Views.Toolbar.textTabLayout": "Page Layout",
"SSE.Views.Toolbar.textTabProtect": "Protect",
"SSE.Views.Toolbar.textTabView": "View",
"SSE.Views.Toolbar.textThisPivot": "Clear Rules from This PivotTable",
"SSE.Views.Toolbar.textThisSheet": "Clear Rules from Entire Sheet",
"SSE.Views.Toolbar.textThisTable": "Clear Rules from This Table",
"SSE.Views.Toolbar.textTop": "Top: ",
"SSE.Views.Toolbar.textTopBorders": "Top Border",
"SSE.Views.Toolbar.textTradeMark": "Trade Mark Sign",
"SSE.Views.Toolbar.textUnderline": "Underline",
"SSE.Views.Toolbar.textUp": "Up",
"SSE.Views.Toolbar.textVertical": "Vertical Text",
"SSE.Views.Toolbar.textWidth": "Width",
"SSE.Views.Toolbar.textYen": "Yen Sign",
"SSE.Views.Toolbar.textRmb": "Yuan Sign",
"SSE.Views.Toolbar.textZoom": "Zoom In",
"SSE.Views.Toolbar.tipAlignBottom": "Align Bottom",
"SSE.Views.Toolbar.tipAlignCenter": "Align Center",
"SSE.Views.Toolbar.tipAlignJust": "Justify",
"SSE.Views.Toolbar.tipAlignLeft": "Align Left",
"SSE.Views.Toolbar.tipAlignMiddle": "Align Middle",
"SSE.Views.Toolbar.tipAlignRight": "Align Right",
"SSE.Views.Toolbar.tipAlignTop": "Align Top",
"SSE.Views.Toolbar.tipAutofilter": "Sort & Filter",
"SSE.Views.Toolbar.tipBack": "Back",
"SSE.Views.Toolbar.tipBorders": "Borders",
"SSE.Views.Toolbar.tipCellStyle": "Cell Styles",
"SSE.Views.Toolbar.tipChangeCase": "Change Case",
"SSE.Views.Toolbar.tipChangeChart": "Change Chart Type",
"SSE.Views.Toolbar.tipClearStyle": "Clear",
"SSE.Views.Toolbar.tipColorSchemas": "Change Color Scheme",
"SSE.Views.Toolbar.tipCondFormat": "Conditional Formatting",
"SSE.Views.Toolbar.tipCopy": "Copy",
"SSE.Views.Toolbar.tipCopyStyle": "Format Painter",
"SSE.Views.Toolbar.tipCut": "Cut",
"SSE.Views.Toolbar.tipDecDecimal": "Decrease Decimal",
"SSE.Views.Toolbar.tipDecFont": "Decrease Font Size",
"SSE.Views.Toolbar.tipDeleteOpt": "Delete Cells",
"SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting Number Format",
"SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style",
"SSE.Views.Toolbar.tipDigStylePercent": "Percent Style",
"SSE.Views.Toolbar.tipEditChart": "Edit Chart",
"SSE.Views.Toolbar.tipEditChartData": "Select Data",
"SSE.Views.Toolbar.tipEditChartType": "Change Chart Type",
"SSE.Views.Toolbar.tipEditHeader": "Edit Header or Footer",
"SSE.Views.Toolbar.tipFontColor": "Font Color",
"SSE.Views.Toolbar.tipFontName": "Font",
"SSE.Views.Toolbar.tipFontSize": "Font Size",
"SSE.Views.Toolbar.tipHAlighOle": "Horizontal Align",
"SSE.Views.Toolbar.tipImgAlign": "Align Objects",
"SSE.Views.Toolbar.tipImgGroup": "Group Objects",
"SSE.Views.Toolbar.tipIncDecimal": "Increase Decimal",
"SSE.Views.Toolbar.tipIncFont": "Increase Font Size",
"SSE.Views.Toolbar.tipInsertChart": "Insert Chart",
"SSE.Views.Toolbar.tipInsertChartRecommend": "Insert Recommended Chart",
"SSE.Views.Toolbar.tipInsertChartSpark": "Insert Chart",
"SSE.Views.Toolbar.tipInsertEquation": "Insert Equation",
"SSE.Views.Toolbar.tipInsertHorizontalText": "Insert Horizontal Text Box",
"SSE.Views.Toolbar.tipInsertHyperlink": "Add Hyperlink",
"SSE.Views.Toolbar.tipInsertImage": "Insert Picture",
"SSE.Views.Toolbar.tipInsertOpt": "Insert Cells",
"SSE.Views.Toolbar.tipInsertShape": "Insert AutoShape",
"SSE.Views.Toolbar.tipInsertSlicer": "Insert Slicer",
"SSE.Views.Toolbar.tipInsertSmartArt": "Insert SmartArt",
"SSE.Views.Toolbar.tipInsertSpark": "Insert Sparkline",
"SSE.Views.Toolbar.tipInsertSymbol": "Insert Symbol",
"SSE.Views.Toolbar.tipInsertTable": "Insert Table",
"SSE.Views.Toolbar.tipInsertText": "Insert Text",
"SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art",
"SSE.Views.Toolbar.tipInsertVerticalText": "Insert Vertical Text Box",
"SSE.Views.Toolbar.tipMerge": "Merge & Center",
"SSE.Views.Toolbar.tipNone": "None",
"SSE.Views.Toolbar.tipNumFormat": "Number Format",
"SSE.Views.Toolbar.tipPageBreak": "Insert a page break at the beginning of a new page in the printout.",
"SSE.Views.Toolbar.tipPageMargins": "Adjust Margins",
"SSE.Views.Toolbar.tipPageOrient": "Change Page Orientation",
"SSE.Views.Toolbar.tipPageSize": "Select Page Size",
"SSE.Views.Toolbar.tipPaste": "Paste",
"SSE.Views.Toolbar.tipPrColor": "Fill Color",
"SSE.Views.Toolbar.tipPrint": "Print",
"SSE.Views.Toolbar.tipPrintArea": "Print Area",
"SSE.Views.Toolbar.tipPrintQuick": "Quick Print",
"SSE.Views.Toolbar.tipPrintTitles": "Print Titles",
"SSE.Views.Toolbar.tipRedo": "Redo",
"SSE.Views.Toolbar.tipSave": "Save",
"SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for other users to see",
"SSE.Views.Toolbar.tipScale": "Scale to Fit",
"SSE.Views.Toolbar.tipSelectAll": "Select All",
"SSE.Views.Toolbar.tipSendBackward": "Send Backward",
"SSE.Views.Toolbar.tipSendForward": "Bring Forward",
"SSE.Views.Toolbar.tipSynchronize": "This document has been changed by another user. Click to save your changes and reload updates.",
"SSE.Views.Toolbar.tipTextFormatting": "More Formatting Tools",
"SSE.Views.Toolbar.tipTextOrientation": "Orientation",
"SSE.Views.Toolbar.tipUndo": "Undo",
"SSE.Views.Toolbar.tipVAlighOle": "Vertical Align",
"SSE.Views.Toolbar.tipVisibleArea": "Visible Area",
"SSE.Views.Toolbar.tipWrap": "Wrap Text",
"SSE.Views.Toolbar.txtAccounting": "Accounting",
"SSE.Views.Toolbar.txtAdditional": "More Functions",
"SSE.Views.Toolbar.txtAscending": "Ascending",
"SSE.Views.Toolbar.txtAutosumTip": "Sum",
"SSE.Views.Toolbar.txtCellStyle": "Cell Styles",
"SSE.Views.Toolbar.txtClearAll": "Clear All",
"SSE.Views.Toolbar.txtClearComments": "Clear Comments",
"SSE.Views.Toolbar.txtClearFilter": "Clear Filter",
"SSE.Views.Toolbar.txtClearFormat": "Clear Formats",
"SSE.Views.Toolbar.txtClearFormula": "Formulas",
"SSE.Views.Toolbar.txtClearHyper": "Clear Hyperlinks",
"SSE.Views.Toolbar.txtClearText": "Clear Contents",
"SSE.Views.Toolbar.txtCurrency": "Currency",
"SSE.Views.Toolbar.txtCustom": "Custom",
"SSE.Views.Toolbar.txtDate": "Date",
"SSE.Views.Toolbar.txtDateLong": "Long Date",
"SSE.Views.Toolbar.txtDateShort": "Short Date",
"SSE.Views.Toolbar.txtDateTime": "Date & Time",
"SSE.Views.Toolbar.txtDescending": "Descending",
"SSE.Views.Toolbar.txtDollar": "Dollar",
"SSE.Views.Toolbar.txtEuro": "Euro",
"SSE.Views.Toolbar.txtExp": "Exponential",
"SSE.Views.Toolbar.txtFillNum": "Fill",
"SSE.Views.Toolbar.txtFilter": "Filter",
"SSE.Views.Toolbar.txtFormula": "Insert Function",
"SSE.Views.Toolbar.txtFraction": "Fraction",
"SSE.Views.Toolbar.txtFranc": "Swiss Franc",
"SSE.Views.Toolbar.txtGeneral": "General",
"SSE.Views.Toolbar.txtInteger": "Integer",
"SSE.Views.Toolbar.txtManageRange": "Name Manager",
"SSE.Views.Toolbar.txtMergeAcross": "Merge Across",
"SSE.Views.Toolbar.txtMergeCells": "Merge Cells",
"SSE.Views.Toolbar.txtMergeCenter": "Merge & Center",
"SSE.Views.Toolbar.txtNamedRange": "Name Manager",
"SSE.Views.Toolbar.txtNewRange": "Define Name",
"SSE.Views.Toolbar.txtNoBorders": "No Border",
"SSE.Views.Toolbar.txtNumber": "Number",
"SSE.Views.Toolbar.txtPasteRange": "Paste Name",
"SSE.Views.Toolbar.txtPercentage": "Percentage",
"SSE.Views.Toolbar.txtPound": "Pound Sterling",
"SSE.Views.Toolbar.txtRouble": "Russian Ruble",
"SSE.Views.Toolbar.txtScheme1": "Office",
"SSE.Views.Toolbar.txtScheme10": "Median",
"SSE.Views.Toolbar.txtScheme11": "Component",
"SSE.Views.Toolbar.txtScheme12": "Component",
"SSE.Views.Toolbar.txtScheme13": "Rich",
"SSE.Views.Toolbar.txtScheme14": "Aurora",
"SSE.Views.Toolbar.txtScheme15": "Original",
"SSE.Views.Toolbar.txtScheme16": "Paper",
"SSE.Views.Toolbar.txtScheme17": "Solstice",
"SSE.Views.Toolbar.txtScheme18": "Technic",
"SSE.Views.Toolbar.txtScheme19": "March",
"SSE.Views.Toolbar.txtScheme2": "Grayscale",
"SSE.Views.Toolbar.txtScheme20": "Urban",
"SSE.Views.Toolbar.txtScheme21": "Momentum",
"SSE.Views.Toolbar.txtScheme22": "New Office",
"SSE.Views.Toolbar.txtScheme3": "Apex",
"SSE.Views.Toolbar.txtScheme4": "Aspect",
"SSE.Views.Toolbar.txtScheme5": "Civic",
"SSE.Views.Toolbar.txtScheme6": "Concourse",
"SSE.Views.Toolbar.txtScheme7": "Equity",
"SSE.Views.Toolbar.txtScheme8": "Flow",
"SSE.Views.Toolbar.txtScheme9": "Foundry",
"SSE.Views.Toolbar.txtScientific": "Scientific",
"SSE.Views.Toolbar.txtSearch": "Search",
"SSE.Views.Toolbar.txtSort": "Sort",
"SSE.Views.Toolbar.txtSortAZ": "Sort A to Z",
"SSE.Views.Toolbar.txtSortZA": "Sort Z to A",
"SSE.Views.Toolbar.txtSpecial": "Special",
"SSE.Views.Toolbar.txtTableTemplate": "Table Styles",
"SSE.Views.Toolbar.txtText": "Text",
"SSE.Views.Toolbar.txtTime": "Time",
"SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells",
"SSE.Views.Toolbar.txtYuan": "Yuan",
"SSE.Views.Top10FilterDialog.textType": "Show",
"SSE.Views.Top10FilterDialog.txtBottom": "Bottom",
"SSE.Views.Top10FilterDialog.txtBy": "By",
"SSE.Views.Top10FilterDialog.txtItems": "Items",
"SSE.Views.Top10FilterDialog.txtPercent": "Percent",
"SSE.Views.Top10FilterDialog.txtSum": "Sum",
"SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter",
"SSE.Views.Top10FilterDialog.txtTop": "Top",
"SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filter",
"SSE.Views.ValueFieldSettingsDialog.textNext": "(Next)",
"SSE.Views.ValueFieldSettingsDialog.textNumFormat": "Number Format",
"SSE.Views.ValueFieldSettingsDialog.textPrev": "(Previous)",
"SSE.Views.ValueFieldSettingsDialog.textTitle": "Value Field Settings",
"SSE.Views.ValueFieldSettingsDialog.txtAverage": "Average",
"SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Base Field",
"SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Base Item",
"SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 Item: %2",
"SSE.Views.ValueFieldSettingsDialog.txtCount": "Count",
"SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Count Numbers",
"SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Custom Name",
"SSE.Views.ValueFieldSettingsDialog.txtDifference": "Difference From",
"SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index",
"SSE.Views.ValueFieldSettingsDialog.txtMax": "Max",
"SSE.Views.ValueFieldSettingsDialog.txtMin": "Min",
"SSE.Views.ValueFieldSettingsDialog.txtNormal": "No Calculation",
"SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percentage",
"SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percentage Difference",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percentage of Column Total",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfGrand": "Percentage of Grand Total",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfParent": "Percentage of Parent Total",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentCol": "Percentage of Parent Column Total",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfParentRow": "Percentage of Parent Row Total",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfRunTotal": "Percentage of Running Total",
"SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percentage of Row Total",
"SSE.Views.ValueFieldSettingsDialog.txtProduct": "Product",
"SSE.Views.ValueFieldSettingsDialog.txtRankAscending": "Rank Smallest to Largest",
"SSE.Views.ValueFieldSettingsDialog.txtRankDescending": "Rank Largest to Smallest",
"SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running Total",
"SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Show Values As",
"SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Source Name:",
"SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev",
"SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp",
"SSE.Views.ValueFieldSettingsDialog.txtSum": "Sum",
"SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Summarize Values By",
"SSE.Views.ValueFieldSettingsDialog.txtVar": "Var",
"SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp",
"SSE.Views.ViewManagerDlg.closeButtonText": "Close",
"SSE.Views.ViewManagerDlg.guestText": "Guest",
"SSE.Views.ViewManagerDlg.lockText": "This element is being edited by another user.",
"SSE.Views.ViewManagerDlg.textDelete": "Delete",
"SSE.Views.ViewManagerDlg.textDuplicate": "Duplicate",
"SSE.Views.ViewManagerDlg.textEmpty": "No views",
"SSE.Views.ViewManagerDlg.textGoTo": "Go To",
"SSE.Views.ViewManagerDlg.textLongName": "The view name is too long.",
"SSE.Views.ViewManagerDlg.textNew": "New",
"SSE.Views.ViewManagerDlg.textRename": "Rename",
"SSE.Views.ViewManagerDlg.textRenameError": "A view with such a name already exists.",
"SSE.Views.ViewManagerDlg.textRenameLabel": "View Name",
"SSE.Views.ViewManagerDlg.textViews": "Views",
"SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.",
"SSE.Views.ViewManagerDlg.txtTitle": "View Manager",
"SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes",
"SSE.Views.ViewTab.capBtnSheetView": "Sheet View",
"SSE.Views.ViewTab.textAlwaysShowToolbar": "Always Show Toolbar",
"SSE.Views.ViewTab.textClose": "Close",
"SSE.Views.ViewTab.textCombineSheetAndStatusBars": "Combine Sheet and Status Bars",
"SSE.Views.ViewTab.textCreate": "New",
"SSE.Views.ViewTab.textDefault": "Default",
"SSE.Views.ViewTab.textFormula": "Formula Bar",
"SSE.Views.ViewTab.textFreezeCol": "Freeze First Column",
"SSE.Views.ViewTab.textFreezeRow": "Freeze First Row",
"SSE.Views.ViewTab.textGridlines": "Gridlines",
"SSE.Views.ViewTab.textHeadings": "Headings",
"SSE.Views.ViewTab.textInterfaceTheme": "Interface Theme",
"SSE.Views.ViewTab.textLeftMenu": "Left Panel",
"SSE.Views.ViewTab.textManager": "View Manager",
"SSE.Views.ViewTab.textRightMenu": "Right Panel",
"SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show Frozen Panes Shadow",
"SSE.Views.ViewTab.textUnFreeze": "Unfreeze Panes",
"SSE.Views.ViewTab.textZeros": "Show Zeros",
"SSE.Views.ViewTab.textZoom": "Zoom",
"SSE.Views.ViewTab.tipClose": "Close Sheet View",
"SSE.Views.ViewTab.tipCreate": "Create Sheet View",
"SSE.Views.ViewTab.tipFreeze": "Freeze Panes",
"SSE.Views.ViewTab.tipInterfaceTheme": "Interface Theme",
"SSE.Views.ViewTab.tipSheetView": "Sheet View",
"SSE.Views.ViewTab.tipViewNormal": "View your document in Normal view",
"SSE.Views.ViewTab.tipViewPageBreak": "Preview page breaks before printing your document",
"SSE.Views.ViewTab.txtViewNormal": "Normal",
"SSE.Views.ViewTab.txtViewPageBreak": "Page Break Preview",
"SSE.Views.WatchDialog.closeButtonText": "Close",
"SSE.Views.WatchDialog.textAdd": "Add Watch",
"SSE.Views.WatchDialog.textBook": "Workbook",
"SSE.Views.WatchDialog.textCell": "Cell",
"SSE.Views.WatchDialog.textDelete": "Delete Watch",
"SSE.Views.WatchDialog.textDeleteAll": "Delete All",
"SSE.Views.WatchDialog.textFormula": "Formula",
"SSE.Views.WatchDialog.textName": "Name",
"SSE.Views.WatchDialog.textSheet": "Sheet",
"SSE.Views.WatchDialog.textValue": "Value",
"SSE.Views.WatchDialog.txtTitle": "Watch Window",
"SSE.Views.WBProtection.hintAllowRanges": "Allow Edit Ranges",
"SSE.Views.WBProtection.hintProtectRange": "Protect Range",
"SSE.Views.WBProtection.hintProtectSheet": "Protect Sheet",
"SSE.Views.WBProtection.hintProtectWB": "Protect Workbook",
"SSE.Views.WBProtection.txtAllowRanges": "Allow Edit Ranges",
"SSE.Views.WBProtection.txtHiddenFormula": "Hidden Formula",
"SSE.Views.WBProtection.txtLockedCell": "Locked Cell",
"SSE.Views.WBProtection.txtLockedShape": "Shape Locked",
"SSE.Views.WBProtection.txtLockedText": "Text Locked",
"SSE.Views.WBProtection.txtProtectRange": "Protect Range",
"SSE.Views.WBProtection.txtProtectSheet": "Protect Sheet",
"SSE.Views.WBProtection.txtProtectWB": "Protect Workbook",
"SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter password to unprotect",
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect Sheet",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Enter password to unprotect",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect Workbook"
}