summaryrefslogtreecommitdiff
path: root/sc/source/ui/src/globstr.src
blob: 2212b42f0bb6527e6a86a493e3ad904b2bfdf093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
/*************************************************************************
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * Copyright 2000, 2010 Oracle and/or its affiliates.
 *
 * OpenOffice.org - a multi-platform office productivity suite
 *
 * This file is part of OpenOffice.org.
 *
 * OpenOffice.org is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 3
 * only, as published by the Free Software Foundation.
 *
 * OpenOffice.org is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License version 3 for more details
 * (a copy is included in the LICENSE file that accompanied this code).
 *
 * You should have received a copy of the GNU Lesser General Public License
 * version 3 along with OpenOffice.org.  If not, see
 * <http://www.openoffice.org/license.html>
 * for a copy of the LGPLv3 License.
 *
 ************************************************************************/
#include "globstr.hrc"
#include "sc.hrc"

Resource RID_GLOBSTR
{
    String STR_UNDO_INSERTCELLS
    {
        Text [ en-US ] = "Insert" ;
    };
    String STR_UNDO_DELETECELLS
    {
        Text [ en-US ] = "Delete" ;
    };
    String STR_UNDO_CUT
    {
        Text [ en-US ] = "Cut" ;
    };
    String STR_UNDO_PASTE
    {
        Text [ en-US ] = "Insert" ;
    };
    String STR_UNDO_DRAGDROP
    {
        Text [ en-US ] = "Drag and Drop" ;
    };
    String STR_UNDO_MOVE
    {
        Text [ en-US ] = "Move" ;
    };
    String STR_UNDO_COPY
    {
        Text [ en-US ] = "Copy" ;
    };
    String STR_UNDO_DELETECONTENTS
    {
        Text [ en-US ] = "Delete" ;
    };
    String STR_UNDO_SELATTR
    {
        Text [ en-US ] = "Attributes" ;
    };
    String STR_UNDO_SELATTRLINES
    {
        Text [ en-US ] = "Attributes/Lines" ;
    };
    String STR_UNDO_COLWIDTH
    {
        Text [ en-US ] = "Column Width" ;
    };
    String STR_UNDO_OPTCOLWIDTH
    {
        Text [ en-US ] = "Optimal Column Width" ;
    };
    String STR_UNDO_ROWHEIGHT
    {
        Text [ en-US ] = "Row height" ;
    };
    String STR_UNDO_OPTROWHEIGHT
    {
        Text [ en-US ] = "Optimal Row Height" ;
    };
    String STR_UNDO_AUTOFILL
    {
        Text [ en-US ] = "Fill" ;
    };
    String STR_UNDO_MERGE
    {
        Text [ en-US ] = "Merge" ;
    };
    String STR_UNDO_REMERGE
    {
        Text [ en-US ] = "Split" ;
    };
    String STR_UNDO_AUTOFORMAT
    {
        Text [ en-US ] = "AutoFormat" ;
    };
    String STR_UNDO_REPLACE
    {
        Text [ en-US ] = "Replace" ;
    };
    String STR_UNDO_CURSORATTR
    {
        Text [ en-US ] = "Attributes" ;
    };
    String STR_UNDO_ENTERDATA
    {
        Text [ en-US ] = "Input" ;
    };
    String STR_UNDO_INSCOLBREAK
    {
        Text [ en-US ] = "Insert Column Break" ;
    };
    String STR_UNDO_DELCOLBREAK
    {
        Text [ en-US ] = "Delete column break" ;
    };
    String STR_UNDO_INSROWBREAK
    {
        Text [ en-US ] = "Insert Row Break" ;
    };
    String STR_UNDO_DELROWBREAK
    {
        Text [ en-US ] = "Delete row break" ;
    };
    String STR_UNDO_DOOUTLINE
    {
        Text [ en-US ] = "View Details" ;
    };
    String STR_UNDO_REDOOUTLINE
    {
        Text [ en-US ] = "Hide details" ;
    };
    String STR_UNDO_MAKEOUTLINE
    {
        Text [ en-US ] = "Group" ;
    };
    String STR_UNDO_REMAKEOUTLINE
    {
        Text [ en-US ] = "Ungroup" ;
    };
    String STR_UNDO_OUTLINELEVEL
    {
        Text [ en-US ] = "Select outline level" ;
    };
    String STR_UNDO_DOOUTLINEBLK
    {
        Text [ en-US ] = "View Details" ;
    };
    String STR_UNDO_REDOOUTLINEBLK
    {
        Text [ en-US ] = "Hide details" ;
    };
    String STR_UNDO_REMOVEALLOTLNS
    {
        Text [ en-US ] = "Clear Outline" ;
    };
    String STR_UNDO_AUTOOUTLINE
    {
        Text [ en-US ] = "AutoOutline" ;
    };
    String STR_UNDO_SUBTOTALS
    {
        Text [ en-US ] = "Subtotals" ;
    };
    String STR_UNDO_SORT
    {
        Text [ en-US ] = "Sort" ;
    };
    String STR_UNDO_QUERY
    {
        Text [ en-US ] = "Filter" ;
    };
    String STR_UNDO_DBDATA
    {
        Text [ en-US ] = "Change Database Range" ;
    };
    String STR_UNDO_IMPORTDATA
    {
        Text [ en-US ] = "Importing" ;
    };
    String STR_UNDO_REPEATDB
    {
        Text [ en-US ] = "Refresh range" ;
    };
    String STR_UNDO_GRAFEDIT
    {
        Text [ en-US ] = "Edit graphics" ;
    };
    String STR_UNDO_LISTNAMES
    {
        Text [ en-US ] = "List names" ;
    };
    String STR_UNDO_PIVOT_NEW
    {
        Text [ en-US ] = "Create pivot table" ;
    };
    String STR_UNDO_PIVOT_MODIFY
    {
        Text [ en-US ] = "Edit pivot table" ;
    };
    String STR_UNDO_PIVOT_DELETE
    {
        Text [ en-US ] = "Delete pivot table" ;
    };
    String STR_UNDO_CONSOLIDATE
    {
        Text [ en-US ] = "Consolidate" ;
    };
    String STR_UNDO_USESCENARIO
    {
        Text [ en-US ] = "Use scenario" ;
    };
    String STR_UNDO_MAKESCENARIO
    {
        Text [ en-US ] = "Create scenario" ;
    };
    String STR_UNDO_EDITSCENARIO
    {
        Text [ en-US ] = "Edit scenario" ;
    };
    String STR_UNDO_APPLYCELLSTYLE
    {
        Text [ en-US ] = "Apply Cell Style" ;
    };
    String STR_UNDO_EDITCELLSTYLE
    {
        Text [ en-US ] = "Edit Cell Style";
    };
    String STR_UNDO_APPLYPAGESTYLE
    {
        Text [ en-US ] = "Apply Page Style";
    };
    String STR_UNDO_EDITPAGESTYLE
    {
        Text [ en-US ] = "Edit Page Style";
    };
    String STR_UNDO_DETADDPRED
    {
        Text [ en-US ] = "Trace Precedents" ;
    };
    String STR_UNDO_DETDELPRED
    {
        Text [ en-US ] = "Remove Precedent" ;
    };
    String STR_UNDO_DETADDSUCC
    {
        Text [ en-US ] = "Trace Dependents" ;
    };
    String STR_UNDO_DETDELSUCC
    {
        Text [ en-US ] = "Remove Dependent" ;
    };
    String STR_UNDO_DETADDERROR
    {
        Text [ en-US ] = "Trace Error" ;
    };
    String STR_UNDO_DETDELALL
    {
        Text [ en-US ] = "Remove all Traces" ;
    };
    String STR_UNDO_DETINVALID
    {
        Text [ en-US ] = "Mark invalid data" ;
    };
    String STR_UNDO_DETREFRESH
    {
        Text [ en-US ] = "Refresh Traces" ;
    };
    String STR_UNDO_CHARTDATA
    {
        Text [ en-US ] = "Modify chart data range" ;
    };
    String STR_UNDO_ORIGINALSIZE
    {
        Text [ en-US ] = "Original Size" ;
    };
    String STR_UNDO_UPDATELINK
    {
        Text [ en-US ] = "Update Link" ;
    };
    String STR_UNDO_REMOVELINK
    {
        Text [ en-US ] = "Unlink" ;
    };
    String STR_UNDO_INSERTAREALINK
    {
        Text [ en-US ] = "Insert Link" ;
    };
    String STR_UNDO_ENTERMATRIX
    {
        Text [ en-US ] = "Insert Array Formula" ;
    };
    String STR_UNDO_INSERTNOTE
    {
        Text [ en-US ] = "Insert Comment" ;
    };
    String STR_UNDO_DELETENOTE
    {
        Text [ en-US ] = "Delete Comment" ;
    };
    String STR_UNDO_SHOWNOTE
    {
        Text [ en-US ] = "Show Comment" ;
    };
    String STR_UNDO_HIDENOTE
    {
        Text [ en-US ] = "Hide Comment" ;
    };
    String STR_UNDO_EDITNOTE
    {
        Text [ en-US ] = "Edit Comment" ;
    };
    String STR_UNDO_DEC_INDENT
    {
        Text [ en-US ] = "Decrease Indent" ;
    };
    String STR_UNDO_INC_INDENT
    {
        Text [ en-US ] = "Increase Indent" ;
    };
    String STR_UNDO_PROTECT_TAB
    {
        Text [ en-US ] = "Protect sheet" ;
    };
    String STR_UNDO_UNPROTECT_TAB
    {
        Text [ en-US ] = "Unprotect sheet" ;
    };
    String STR_UNDO_PROTECT_DOC
    {
        Text [ en-US ] = "Protect document" ;
    };
    String STR_UNDO_UNPROTECT_DOC
    {
        Text [ en-US ] = "Unprotect document" ;
    };
    String STR_UNDO_PRINTRANGES
    {
        Text [ en-US ] = "Print range" ;
    };
    String STR_UNDO_REMOVEBREAKS
    {
        Text [ en-US ] = "Delete Page Breaks" ;
    };
    String STR_UNDO_PRINTSCALE
    {
        Text [ en-US ] = "Change Scale" ;
    };
    String STR_UNDO_DRAG_BREAK
    {
        Text [ en-US ] = "Move Page Break" ;
    };
    String STR_UNDO_RANGENAMES
    {
        Text [ en-US ] = "Edit range names" ;
    };
    String STR_UNDO_TRANSLITERATE
    {
        Text [ en-US ] = "~Change Case";
    };
    String STR_DBNAME_IMPORT
    {
        Text [ en-US ] = "Import" ;
    };
    String STR_MSSG_DOSUBTOTALS_0
    {
        Text [ en-US ] = "%PRODUCTNAME Calc" ;
    };
    String STR_MSSG_DOSUBTOTALS_1
    {
        Text [ en-US ] = "Delete data?" ;
    };
    String STR_MSSG_DOSUBTOTALS_2
    {
        Text [ en-US ] = "Unable to insert rows" ;
    };
    String STR_MSSG_REPEATDB_0
    {
        Text [ en-US ] = "No operations to execute" ;
    };
    String STR_MSSG_MAKEAUTOFILTER_0
    {
        Text [ en-US ] = "The range does not contain column headers.\nDo you want the first line to be used as column header?" ;
    };
    String STR_MSSG_IMPORTDATA_0
    {
        Text [ en-US ] = "Error while importing data!" ;
    };
    String STR_DATABASE_NOTFOUND
    {
        Text [ en-US ] = "The database '#' could not be opened." ;
    };
    String STR_QUERY_NOTFOUND
    {
        Text [ en-US ] = "The query '#' could not be opened." ;
    };
    String STR_DATABASE_ABORTED
    {
        Text [ en-US ] = "Database import terminated." ;
    };
    String STR_PROGRESS_IMPORT
    {
        Text [ en-US ] = "# records imported..." ;
    };
    String STR_MSSG_MAKEOUTLINE_0
    {
        Text [ en-US ] = "Grouping not possible" ;
    };
    String STR_MSSG_REMOVEOUTLINE_0
    {
        Text [ en-US ] = "Ungrouping not possible" ;
    };
    String STR_MSSG_PASTEFROMCLIP_0
    {
        Text [ en-US ] = "Insert into multiple selection not possible" ;
    };
    String STR_MSSG_PASTEFROMCLIP_1
    {
        Text [ en-US ] = "Cell merge not possible if cells already merged!" ;
    };
    String STR_MSSG_MOVEBLOCKTO_0
    {
        Text [ en-US ] = "Cell merge not possible if cells already merged!" ;
    };
    String STR_MSSG_INSERTCELLS_0
    {
        Text [ en-US ] = "Inserting into merged ranges not possible" ;
    };
    String STR_MSSG_DELETECELLS_0
    {
        Text [ en-US ] = "Deleting in merged ranges not possible" ;
    };
    String STR_MSSG_MERGECELLS_0
    {
        Text [ en-US ] = "Cell merge not possible if cells already merged" ;
    };
    String STR_SORT_ERR_MERGED
    {
        Text [ en-US ] = "Ranges containing merged cells can only be sorted without formats." ;
    };
    String STR_MSSG_SEARCHANDREPLACE_0
    {
        Text [ en-US ] = "Search key not found." ;
    };
    String STR_MSSG_SOLVE_0
    {
        Text [ en-US ] = "Goal Seek successful.\n" ;
    };
    String STR_MSSG_SOLVE_1
    {
        Text [ en-US ] = "Insert result (" ;
    };
    String STR_MSSG_SOLVE_2
    {
        Text [ en-US ] = ") into current cell?" ;
    };
    String STR_MSSG_SOLVE_3
    {
        Text [ en-US ] = "Goal Seek not successful.\n" ;
    };
    String STR_MSSG_SOLVE_4
    {
        Text [ en-US ] = "No exact value found. \n" ;
    };
    String STR_MSSG_SOLVE_5
    {
        Text [ en-US ] = "Insert closest value (" ;
    };
    String STR_MSSG_SOLVE_6
    {
        Text [ en-US ] = ")?" ;
    };
    String STR_TABLE_GESAMTERGEBNIS
    {
        Text [ en-US ] = "Grand Total" ;
    };
    String STR_TABLE_ERGEBNIS
    {
        Text [ en-US ] = "Result" ;
    };
    String STR_UNDO_SPELLING
    {
        Text [ en-US ] = "Spellcheck" ;
    };
    String STR_TABLE_UND
    {
        Text [ en-US ] = "AND" ;
    };
    String STR_TABLE_ODER
    {
        Text [ en-US ] = "OR" ;
    };
    String STR_TABLE_DEF
    {
        Text [ en-US ] = "Sheet" ;
    };
    String STR_MOVE_TO_END
    {
        Text [ en-US ] = "- move to end position -" ;
    };
    String STR_BOX_YNI
    {
        Text [ en-US ] = "Not implemented in this build." ;
    };
    String STR_NO_REF_TABLE
    {
        Text [ en-US ] = "#REF!" ;
    };
    String STR_PIVOT_INVALID_DBAREA
    {
        Text [ en-US ] = "The data range must contain at least one row." ;
    };
    String STR_PIVOT_NODATA
    {
        Text [ en-US ] = "The pivot table must contain at least one entry." ;
    };
    String STR_PIVOT_MOVENOTALLOWED
    {
        Text [ en-US ] = "The data range can not be deleted." ;
    };
    String STR_PIVOT_ERROR
    {
        Text [ en-US ] = "Error creating the pivot table." ;
    };
    String STR_PIVOT_OVERLAP
    {
        Text [ en-US ] = "Pivot tables can not overlap." ;
    };
    String STR_PIVOT_NOTEMPTY
    {
        Text [ en-US ] = "The destination range is not empty. Overwrite existing contents?" ;
    };
    String STR_DATAPILOT_SUBTOTAL
    {
        Text [ en-US ] = "The source range contains subtotals which may distort the results. Use it anyway?";
    };
    String STR_PIVOT_PROGRESS
    {
        Text [ en-US ] = "Create Pivot Table" ;
    };
    String STR_PIVOT_TOTAL
    {
        Text [ en-US ] = "Total" ;
    };
    String STR_PIVOT_DATA
    {
        Text [ en-US ] = "Data" ;
    };
    String STR_PIVOT_GROUP
    {
        Text [ en-US ] = "Group" ;
    };
    String STR_PIVOTFUNC_SUM
    {
        Text [ en-US ] = "SUM" ;
    };
    String STR_PIVOTFUNC_COUNT
    {
        Text [ en-US ] = "COUNT" ;
    };
    String STR_PIVOTFUNC_AVG
    {
        Text [ en-US ] = "AVERAGE" ;
    };
    String STR_PIVOTFUNC_MAX
    {
        Text [ en-US ] = "MAX" ;
    };
    String STR_PIVOTFUNC_MIN
    {
        Text [ en-US ] = "MIN" ;
    };
    String STR_PIVOTFUNC_PROD
    {
        Text [ en-US ] = "PRODUCT" ;
    };
    String STR_PIVOTFUNC_COUNT2
    {
        Text [ en-US ] = "COUNTA" ;
    };
    String STR_PIVOTFUNC_STDDEV
    {
        Text [ en-US ] = "STDEV" ;
    };
    String STR_PIVOTFUNC_STDDEV2
    {
        Text [ en-US ] = "STDEVP" ;
    };
    String STR_PIVOTFUNC_VAR
    {
        Text [ en-US ] = "VAR" ;
    };
    String STR_PIVOTFUNC_VAR2
    {
        Text [ en-US ] = "VARP" ;
    };
    String STR_TABLE
    {
        Text [ en-US ] = "Sheet" ;
    };
    String STR_COLUMN
    {
        Text [ en-US ] = "Column" ;
    };
    String STR_ROW
    {
        Text [ en-US ] = "Row" ;
    };
    String STR_PAGE
    {
        Text [ en-US ] = "Page" ;
    };
    String STR_PGNUM
    {
        Text [ en-US ] = "Page %1" ;
    };
    String STR_LOAD_DOC
    {
        Text [ en-US ] = "Load document" ;
    };
    String STR_SAVE_DOC
    {
        Text [ en-US ] = "Save document" ;
    };
    String STR_ERR_INVALID_TABREF
    {
        Text [ en-US ] = "<unknown table reference>" ;
    };
    String STR_AREA_ALREADY_INSERTED
    {
        Text [ en-US ] = "This range has already been inserted." ;
    };
    String STR_INVALID_TABREF
    {
        Text [ en-US ] = "Invalid sheet reference." ;
    };
    String STR_INVALID_QUERYAREA
    {
        Text [ en-US ] = "This range does not contain a valid query." ;
    };
    String STR_REIMPORT_EMPTY
    {
        Text [ en-US ] = "This range does not contain imported data." ;
    };
    String STR_NOMULTISELECT
    {
        Text [ en-US ] = "This function cannot be used with multiple selections." ;
    };
    String STR_FILL_SERIES_PROGRESS
    {
        Text [ en-US ] = "Fill Row..." ;
    };
    String STR_UNKNOWN_FILTER
    {
        Text [ en-US ] = "Unknown filter: " ;
    };
    String STR_UNDO_THESAURUS
    {
        Text [ en-US ] = "Thesaurus" ;
    };
    String STR_FILL_TAB
    {
        Text [ en-US ] = "Fill Sheets" ;
    };
    String STR_UPDATE_SCENARIO
    {
        Text [ en-US ] = "Add selected ranges to current scenario?" ;
    };
    String STR_ERR_NEWSCENARIO
    {
        Text [ en-US ] = "The scenario ranges must be selected in order to be able to create a new scenario." ;
    };
    String STR_NOAREASELECTED
    {
        Text [ en-US ] = "A range has not been selected." ;
    };
    String STR_NEWTABNAMENOTUNIQUE
    {
        Text [ en-US ] = "This name already exists." ;
    };
    String STR_INVALIDTABNAME
    {
        Text [ en-US ] = "Invalid sheet name.\nThe sheet name must not be a duplicate of an existing name \nand may not contain the characters [ ] * ? : / \\" ;
    };
    String STR_SCENARIO
    {
        Text [ en-US ] = "Scenario" ;
    };
    String STR_PIVOT_TABLE
    {
        Text [ en-US ] = "Pivot Table" ;
    };
     // Text strings for captions of subtotal functions.
    String STR_FUN_TEXT_SUM
    {
        Text [ en-US ] = "Sum" ;
    };
    String STR_FUN_TEXT_COUNT
    {
        Text [ en-US ] = "Count" ;
    };
    String STR_FUN_TEXT_COUNT2
    {
        Text [ en-US ] = "CountA" ;
    };
    String STR_FUN_TEXT_AVG
    {
        Text [ en-US ] = "Average" ;
    };
    String STR_FUN_TEXT_MAX
    {
        Text [ en-US ] = "Max" ;
    };
    String STR_FUN_TEXT_MIN
    {
        Text [ en-US ] = "Min" ;
    };
    String STR_FUN_TEXT_PRODUCT
    {
        Text [ en-US ] = "Product" ;
    };
    String STR_FUN_TEXT_STDDEV
    {
        Text [ en-US ] = "StDev" ;
    };
    String STR_FUN_TEXT_VAR
    {
        Text [ en-US ] = "Var" ;
    };
    String STR_NOCHARTATCURSOR
    {
        Text [ en-US ] = "No chart found at this position." ;
    };
    String STR_PIVOT_NOTFOUND
    {
        Text [ en-US ] = "No pivot table found at this position." ;
    };
    String STR_EMPTYDATA
    {
        Text [ en-US ] = "(empty)" ;
    };
    String STR_PRINT_INVALID_AREA
    {
        Text [ en-US ] = "Invalid print range" ;
    };
    String STR_PAGESTYLE
    {
        Text [ en-US ] = "Page Style" ;
    };
    String STR_HEADER
    {
        Text [ en-US ] = "Header" ;
    };
    String STR_FOOTER
    {
        Text [ en-US ] = "Footer" ;
    };
    String STR_TEXTATTRS
    {
        Text [ en-US ] = "Text Attributes" ;
    };
    String STR_HFCMD_DELIMITER
    {
        Text [ en-US ] = "\\" ;
    };
    String STR_HFCMD_PAGE
    {
        Text [ en-US ] = "PAGE" ;
    };
    String STR_HFCMD_PAGES
    {
        Text [ en-US ] = "PAGES" ;
    };
    String STR_HFCMD_DATE
    {
        Text [ en-US ] = "DATE" ;
    };
    String STR_HFCMD_TIME
    {
        Text [ en-US ] = "TIME" ;
    };
    String STR_HFCMD_FILE
    {
        Text [ en-US ] = "FILE" ;
    };
    String STR_HFCMD_TABLE
    {
        Text [ en-US ] = "SHEET" ;
    };
    String STR_PROTECTIONERR
    {
        Text [ en-US ] = "Protected cells can not be modified." ;
    };
    String STR_READONLYERR
    {
        Text [ en-US ] = "Document opened in read-only mode.";
    };
    String STR_MATRIXFRAGMENTERR
    {
        Text [ en-US ] = "You cannot change only part of an array." ;
    };
    String STR_PAGEHEADER
    {
        Text [ en-US ] = "Header" ;
    };
    String STR_PAGEFOOTER
    {
        Text [ en-US ] = "Footer" ;
    };

    /* BEGIN error constants and error strings. */

    String STR_ERROR_STR
    {
        Text [ en-US ] = "Err:" ;
    };
    /* BEGIN defined ERROR.TYPE() values. */
    /* ERROR.TYPE( #NULL! ) == 1 */
    String STR_LONG_ERR_NULL
    {
        Text [ en-US ] = "Error: Ranges do not intersect" ;
    };
    /* ERROR.TYPE( #DIV/0! ) == 2 */
    String STR_LONG_ERR_DIV_ZERO
    {
        Text [ en-US ] = "Error: Division by zero" ;
    };
    /* ERROR.TYPE( #VALUE! ) == 3 */
    String STR_LONG_ERR_NO_VALUE
    {
        Text [ en-US ] = "Error: Wrong data type" ;
    };
    /* ERROR.TYPE( #REF! ) == 4 */
    String STR_LONG_ERR_NO_REF
    {
        Text [ en-US ] = "Error: Not a valid reference" ;
    };
    /* ERROR.TYPE( #NAME! ) == 5 */
    String STR_LONG_ERR_NO_NAME
    {
        Text [ en-US ] = "Error: Invalid name" ;
    };
    /* ERROR.TYPE( #NUM! ) == 6 */
    String STR_LONG_ERR_ILL_FPO
    {
        Text [ en-US ] = "Error: Invalid numeric value" ;
    };
    /* ERROR.TYPE( #N/A ) == 7 */
    String STR_LONG_ERR_NV
    {
        Text [ en-US ] = "Error: Value not available" ;
    };
    /* END defined ERROR.TYPE() values. */
    String STR_NO_ADDIN
    {
        Text [ en-US ] = "#ADDIN?" ;
    };
    String STR_LONG_ERR_NO_ADDIN
    {
        Text [ en-US ] = "Error: Add-in not found" ;
    };
    String STR_NO_MACRO
    {
        Text [ en-US ] = "#MACRO?" ;
    };
    String STR_LONG_ERR_NO_MACRO
    {
        Text [ en-US ] = "Error: Macro not found" ;
    };
    String STR_LONG_ERR_SYNTAX
    {
        Text [ en-US ] = "Internal syntactical error" ;
    };
    String STR_LONG_ERR_ILL_ARG
    {
        Text [ en-US ] = "Error: Invalid argument" ;
    };
    String STR_LONG_ERR_ILL_PAR
    {
        Text [ en-US ] = "Error in parameter list" ;
    };
    String STR_LONG_ERR_ILL_CHAR
    {
        Text [ en-US ] = "Error: Invalid character" ;
    };
    String STR_LONG_ERR_ILL_SEP
    {
        Text [ en-US ] = "Error: Invalid semicolon" ;
    };
    String STR_LONG_ERR_PAIR
    {
        Text [ en-US ] = "Error: in bracketing" ;
    };
    String STR_LONG_ERR_OP_EXP
    {
        Text [ en-US ] = "Error: Operator missing" ;
    };
    String STR_LONG_ERR_VAR_EXP
    {
        Text [ en-US ] = "Error: Variable missing" ;
    };
    String STR_LONG_ERR_CODE_OVF
    {
        Text [ en-US ] = "Error: Formula overflow" ;
    };
    String STR_LONG_ERR_STR_OVF
    {
        Text [ en-US ] = "Error: String overflow" ;
    };
    String STR_LONG_ERR_STACK_OVF
    {
        Text [ en-US ] = "Error: Internal overflow" ;
    };
    String STR_LONG_ERR_CIRC_REF
    {
        Text [ en-US ] = "Error: Circular reference" ;
    };
    String STR_LONG_ERR_NO_CONV
    {
        Text [ en-US ] = "Error: Calculation does not converge" ;
    };

    /* END error constants and error strings. */

    String STR_GRIDCOLOR
    {
        Text [ en-US ] = "Grid color" ;
    };
    String STR_MERGE_NOTEMPTY
    {
        Text [ en-US ] = "Should the contents of the hidden cells be moved into the first cell?" ;
    };
    String STR_CELL_FILTER
    {
        Text [ en-US ] = "Filter" ;
    };
    String STR_TARGETNOTFOUND
    {
        Text [ en-US ] = "The target database range does not exist." ;
    };
    String STR_INVALID_EPS
    {
        Text [ en-US ] = "Invalid increment" ;
    };
    String STR_TABLE_OP
    {
        Text [ en-US ] = "MULTIPLE.OPERATIONS" ;
    };
    String STR_UNDO_TABOP
    {
        Text [ en-US ] = "Multiple operations" ;
    };
    String STR_INVALID_AFNAME
    {
        Text [ en-US ] = "You have entered an invalid name.\nAutoFormat could not be created. \nTry again using a different name." ;
    };
    String STR_AREA
    {
        Text [ en-US ] = "Range" ;
    };
    String STR_YES
    {
        Text [ en-US ] = "Yes" ;
    };
    String STR_NO
    {
        Text [ en-US ] = "No" ;
    };
    String STR_PROTECTION
    {
        Text [ en-US ] = "Protection" ;
    };
    String STR_FORMULAS
    {
        Text [ en-US ] = "Formulas" ;
    };
    String STR_HIDE
    {
        Text [ en-US ] = "Hide" ;
    };
    String STR_PRINT
    {
        Text [ en-US ] = "Print" ;
    };
    String STR_INVALID_AFAREA
    {
        Text [ en-US ] = "To apply an AutoFormat,\na table range of at least\n3x3 cells must be selected." ;
    };
    String STR_CASCADE
    {
        Text [ en-US ] = "(nested)" ;
    };
    String STR_OPTIONAL
    {
        Text [ en-US ] = "(optional)" ;
    };
    String STR_REQUIRED
    {
        Text [ en-US ] = "(required)" ;
    };
    String STR_INVALID
    {
        Text [ en-US ] = "invalid" ;
    };
    String STR_EDITFUNCTION
    {
        Text [ en-US ] = "Edit Function" ;
    };
    String STR_NOTES
    {
        Text [ en-US ] = "Comments" ;
    };
    String STR_QUERY_DELTAB
    {
        Text [ en-US ] = "Are you sure you want to delete the selected sheet(s)?" ;
    };
    String STR_QUERY_DELSCENARIO
    {
        Text [ en-US ] = "Are you sure you want to delete the selected scenario?" ;
    };
    String STR_EXPORT_ASCII_WARNING
    {
        Text [ en-US ] = "Thesaurus is not available" ;
    };
    String STR_IMPORT_ERROR
    {
        Text [ en-US ] = "Spellcheck not available" ;
    };
    String STR_IMPORT_ASCII
    {
        Text [ en-US ] = "Import text files" ;
    };
    String STR_EXPORT_ASCII
    {
        Text [ en-US ] = "Export Text File" ;
    };
    String STR_IMPORT_LOTUS
    {
        Text [ en-US ] = "Import Lotus files" ;
    };
    String STR_IMPORT_DBF
    {
        Text [ en-US ] = "Import DBase files" ;
    };
    String STR_EXPORT_DBF
    {
        Text [ en-US ] = "DBase export";
    };
    String STR_EXPORT_DIF
    {
        Text [ en-US ] = "Dif Export" ;
    };
    String STR_IMPORT_DIF
    {
        Text [ en-US ] = "Dif Import" ;
    };
    String STR_STYLENAME_STANDARD
    {
        Text [ en-US ] = "Default" ;
    };
    String STR_STYLENAME_RESULT
    {
        Text [ en-US ] = "Result" ;
    };
    String STR_STYLENAME_RESULT1
    {
        Text [ en-US ] = "Result2" ;
    };
    String STR_STYLENAME_HEADLINE
    {
        Text [ en-US ] = "Heading" ;
    };
    String STR_STYLENAME_HEADLINE1
    {
        Text [ en-US ] = "Heading1" ;
    };
    String STR_STYLENAME_REPORT
    {
        Text [ en-US ] = "Report" ;
    };
    String STR_STYLENAME_REPORT1
    {
        Text [ en-US ] = "Report1" ;
    };
    String STR_IMPORT_EXCEL_WARNING
    {
        Text [ en-US ] = "is not available for spellchecking\nPlease check your installation and install \nthe desired language if necessary" ;
    };
    String STR_THESAURUS_NO_STRING
    {
        Text [ en-US ] = "Thesaurus can only be used in text cells!" ;
    };
    String STR_SPELLING_BEGIN_TAB
    {
        Text [ en-US ] = "Should the spellcheck be continued at the beginning of the current sheet?" ;
    };
    String STR_SPELLING_NO_LANG
    {
        Text [ en-US ] = "is not available for the thesaurus.\nPlease check your installation and install \nthe desired language if necessary" ;
    };
    String STR_SPELLING_STOP_OK
    {
        Text [ en-US ] = "The spellcheck of this sheet has been completed." ;
    };
    String STR_NOLANGERR
    {
        Text [ en-US ] = "No language set" ;
    };
    String STR_UNDO_INSERT_TAB
    {
        Text [ en-US ] = "Insert Sheet" ;
    };
    String STR_UNDO_DELETE_TAB
    {
        Text [ en-US ] = "Delete Sheets" ;
    };
    String STR_UNDO_RENAME_TAB
    {
        Text [ en-US ] = "Rename Sheet" ;
    };
    String STR_UNDO_SET_TAB_BG_COLOR
    {
        Text [ en-US ] = "Color Tab" ;
    };
    String STR_UNDO_SET_MULTI_TAB_BG_COLOR
    {
        Text [ en-US ] = "Color Tabs" ;
    };
    String STR_UNDO_MOVE_TAB
    {
        Text [ en-US ] = "Move Sheets" ;
    };
    String STR_UNDO_COPY_TAB
    {
        Text [ en-US ] = "Copy Sheet" ;
    };
    String STR_UNDO_APPEND_TAB
    {
        Text [ en-US ] = "Append sheet" ;
    };
    String STR_UNDO_SHOWTAB
    {
        Text [ en-US ] = "Show Sheet" ;
    };
    String STR_UNDO_HIDETAB
    {
        Text [ en-US ] = "Hide sheet" ;
    };
    String STR_UNDO_TAB_RTL
    {
        Text [ en-US ] = "Flip sheet" ;
    };
    String STR_UNDO_TAB_R1C1
    {
        Text [ en-US ] = "Toggle the use of R1C1 notation" ;
    };
    String STR_CHART_MAINTITLE
    {
        Text [ en-US ] = "Main Title" ;
    };
    String STR_CHART_SUBTITLE
    {
        Text [ en-US ] = "Subtitle" ;
    };
    String STR_CHART_XTITLE
    {
        Text [ en-US ] = "X axis title" ;
    };
    String STR_CHART_YTITLE
    {
        Text [ en-US ] = "Y axis title" ;
    };
    String STR_CHART_ZTITLE
    {
        Text [ en-US ] = "Z axis title" ;
    };
    String STR_ABSREFLOST
    {
        Text [ en-US ] = "The new table contains absolute references to other tables which may be incorrect!" ;
    };
    String STR_NAMECONFLICT
    {
        Text [ en-US ] = "Due to identical names, an existing range name in the destination document has been altered!" ;
    };
    String STR_ERR_AUTOFILTER
    {
        Text [ en-US ] = "AutoFilter not possible" ;
    };
    String STR_MSSG_SEARCHANDREPLACE_1
    {
        Text [ en-US ] = "%PRODUCTNAME Calc has searched to the beginning of the sheet. Do you want to continue at the end?" ;
    };
    String STR_MSSG_SEARCHANDREPLACE_2
    {
        Text [ en-US ] = "%PRODUCTNAME Calc has searched to the end of the sheet. Do you want to continue at the beginning?" ;
    };
    String STR_MSSG_SEARCHANDREPLACE_3
    {
        Text [ en-US ] = "Find & Replace" ;
    };
    String STR_MSSG_SEARCHANDREPLACE_4
    {
        Text [ en-US ] = "%PRODUCTNAME Calc has searched to the beginning of the document. Do you want to continue at the end?" ;
    };
    String STR_MSSG_SEARCHANDREPLACE_5
    {
        Text [ en-US ] = "%PRODUCTNAME Calc has searched to the end of the document. Do you want to continue at the beginning?" ;
    };
    String STR_CREATENAME_REPLACE
    {
        Text [ en-US ] = "Replace existing definition of #?" ;
    };
    String STR_CREATENAME_MARKERR
    {
        Text [ en-US ] = "Invalid selection for range names" ;
    };
    String STR_CONSOLIDATE_ERR1
    {
        Text [ en-US ] = "References can not be inserted above the source data." ;
    };
    String STR_SCENARIO_NOTFOUND
    {
        Text [ en-US ] = "Scenario not found" ;
    };
    String STR_QUERY_DELENTRY
    {
        Text [ en-US ] = "Do you really want to delete the entry #?" ;
    };
    String STR_VOBJ_OBJECT
    {
        Text [ en-US ] = "Objects/graphics" ;
    };
    String STR_VOBJ_CHART
    {
        Text [ en-US ] = "Charts" ;
    };
    String STR_VOBJ_DRAWINGS
    {
        Text [ en-US ] = "Drawing Objects" ;
    };
    String STR_VOBJ_MODE_SHOW
    {
        Text [ en-US ] = "Show" ;
    };
    String STR_VOBJ_MODE_HIDE
    {
        Text [ en-US ] = "Hide" ;
    };
    String STR_SCATTR_PAGE_TOPDOWN
    {
        Text [ en-US ] = "Top to bottom" ;
    };
    String STR_SCATTR_PAGE_LEFTRIGHT
    {
        Text [ en-US ] = "Left-to-right" ;
    };
    String STR_SCATTR_PAGE_NOTES
    {
        Text [ en-US ] = "Comments" ;
    };
    String STR_SCATTR_PAGE_GRID
    {
        Text [ en-US ] = "Grid" ;
    };
    String STR_SCATTR_PAGE_HEADERS
    {
        Text [ en-US ] = "Row & Column Headers" ;
    };
    String STR_SCATTR_PAGE_FORMULAS
    {
        Text [ en-US ] = "Formulas" ;
    };
    String STR_SCATTR_PAGE_NULLVALS
    {
        Text [ en-US ] = "Zero Values" ;
    };
    String STR_SCATTR_PAGE_PRINTDIR
    {
        Text [ en-US ] = "Print direction" ;
    };
    String STR_SCATTR_PAGE_FIRSTPAGENO
    {
        Text [ en-US ] = "First page number" ;
    };
    String STR_SCATTR_PAGE_SCALE
    {
        Text [ en-US ] = "Reduce/enlarge printout" ;
    };
    String STR_SCATTR_PAGE_SCALETOPAGES
    {
        Text [ en-US ] = "Fit print range(s) on number of pages" ;
    };
    String STR_SCATTR_PAGE_SCALETO
    {
        Text [ en-US ] = "Fit print range(s) to width/height" ;
    };
    String STR_SCATTR_PAGE_SCALE_WIDTH
    {
        Text [ en-US ] = "Width" ;
    };
    String STR_SCATTR_PAGE_SCALE_HEIGHT
    {
        Text [ en-US ] = "Height" ;
    };
    String STR_SCATTR_PAGE_SCALE_PAGES
    {
        Text [ en-US ] = "%1 page(s)" ;
    };
    String STR_SCATTR_PAGE_SCALE_AUTO
    {
        Text [ en-US ] = "automatic" ;
    };
    String STR_DOC_STAT
    {
        Text [ en-US ] = "Statistics" ;
    };
    String STR_LINKERROR
    {
        Text [ en-US ] = "The link could not be updated." ;
    };
    String STR_LINKERRORFILE
    {
        Text [ en-US ] = "File:" ;
    };
    String STR_LINKERRORTAB
    {
        Text [ en-US ] = "Sheet:" ;
    };
    String STR_OVERVIEW
    {
        Text [ en-US ] = "Overview" ;
    };
    String STR_DOC_INFO
    {
        Text [ en-US ] = "Doc.Information" ;
    };
    String STR_DOC_CREATED
    {
        Text [ en-US ] = "Created" ;
    };
    String STR_DOC_MODIFIED
    {
        Text [ en-US ] = "Modified" ;
    };
    String STR_DOC_PRINTED
    {
        Text [ en-US ] = "Printed" ;
    };
    String STR_DOC_THEME
    {
        Text [ en-US ] = "Subject" ;
    };
    String STR_DOC_KEYWORDS
    {
        Text [ en-US ] = "Key words" ;
    };
    String STR_DOC_COMMENT
    {
        Text [ en-US ] = "Comments" ;
    };
    String STR_BY
    {
        Text [ en-US ] = "by" ;
    };
    String STR_ON
    {
        Text [ en-US ] = "on" ;
    };
    String STR_RELOAD_TABLES
    {
        Text [ en-US ] = "This file contains links to other files.\nShould they be updated?" ;
    };
    String STR_REIMPORT_AFTER_LOAD
    {
        Text [ en-US ] = "This file contains queries. The results of these queries were not saved.\nDo you want these queries to be repeated?" ;
    };
    String STR_FILTER_TOOMANY
    {
        Text [ en-US ] = "Too many conditions" ;
    };
    String STR_INSERT_FULL
    {
        Text [ en-US ] = "Filled cells cannot be shifted\nbeyond the sheet." ;
    };
    String STR_TABINSERT_ERROR
    {
        Text [ en-US ] = "The table could not be inserted." ;
    };
    String STR_TABREMOVE_ERROR
    {
        Text [ en-US ] = "The sheets could not be deleted." ;
    };
    String STR_PASTE_ERROR
    {
        Text [ en-US ] = "The contents of the clipboard could not be pasted." ;
    };
    String STR_PASTE_FULL
    {
        Text [ en-US ] = "There is not enough space on the sheet to insert here." ;
    };
    String STR_PASTE_BIGGER
    {
        Text [ en-US ] = "The content of the clipboard is bigger than the range selected.\nDo you want to insert it anyway?";
    };
    String STR_ERR_NOREF
    {
        Text [ en-US ] = "No references found." ;
    };
    String STR_ERR_LINKOVERLAP
    {
        Text [ en-US ] = "Source and destination must not overlap." ;
    };
    String STR_GRAPHICNAME
    {
        Text [ en-US ] = "Graphics" ;
    };
    String STR_INVALIDNAME
    {
        Text [ en-US ] = "Invalid name." ;
    };
    String STR_VALID_MACRONOTFOUND
    {
        Text [ en-US ] = "Selected macro not found." ;
    };
    String STR_VALID_DEFERROR
    {
        Text [ en-US ] = "Invalid value." ;
    };
    String STR_PROGRESS_CALCULATING
    {
        Text [ en-US ] = "calculating" ;
    };
    String STR_PROGRESS_SORTING
    {
        Text [ en-US ] = "sorting" ;
    };
    String STR_PROGRESS_HEIGHTING
    {
        Text [ en-US ] = "Adapt row height" ;
    };
    String STR_PROGRESS_COMPARING
    {
        Text [ en-US ] = "Compare #" ;
    };
    String STR_DETINVALID_OVERFLOW
    {
        Text [ en-US ] = "The maximum number of invalid cells has been exceeded.\nNot all invalid cells have been marked." ;
    };
    String STR_QUICKHELP_DELETE
    {
        Text [ en-US ] = "Delete contents" ;
    };
    String STR_QUICKHELP_REF
    {
        Text [ en-US ] = "%1 R  x %2 C" ;
    };
    String STR_FUNCTIONLIST_MORE
    {
        Text [ en-US ] = "More..." ;
    };
    String STR_ERR_INVALID_AREA
    {
        Text [ en-US ] = "Invalid range" ;
    };
     // Templates for data pilot tables.
    String STR_PIVOT_STYLE_INNER
    {
        Text [ en-US ] = "Pivot Table Value" ;
    };
    String STR_PIVOT_STYLE_RESULT
    {
        Text [ en-US ] = "Pivot Table Result" ;
    };
    String STR_PIVOT_STYLE_CATEGORY
    {
        Text [ en-US ] = "Pivot Table Category" ;
    };
    String STR_PIVOT_STYLE_TITLE
    {
        Text [ en-US ] = "Pivot Table Title" ;
    };
    String STR_PIVOT_STYLE_FIELDNAME
    {
        Text [ en-US ] = "Pivot Table Field" ;
    };
    String STR_PIVOT_STYLE_TOP
    {
        Text [ en-US ] = "Pivot Table Corner" ;
    };
    String STR_OPERATION_FILTER
    {
        Text [ en-US ] = "Filter" ;
    };
    String STR_OPERATION_SORT
    {
        Text [ en-US ] = "Sort" ;
    };
    String STR_OPERATION_SUBTOTAL
    {
        Text [ en-US ] = "Subtotals" ;
    };
    String STR_OPERATION_NONE
    {
        Text [ en-US ] = "None" ;
    };
    String STR_IMPORT_REPLACE
    {
        Text [ en-US ] = "Do you want to replace the contents of #?" ;
    };
    String STR_TIP_WIDTH
    {
        Text [ en-US ] = "Width:" ;
    };
    String STR_TIP_HEIGHT
    {
        Text [ en-US ] = "Height:" ;
    };
    String STR_TIP_HIDE
    {
        Text [ en-US ] = "Hide" ;
    };
    String STR_ERR_INSERTOBJ
    {
        Text [ en-US ] = "The object could not be inserted." ;
    };
    String STR_CHANGED_BLANK
    {
        Text [ en-US ] = "<empty>" ;
    };
    String STR_CHANGED_CELL
    {
        Text [ en-US ] = "Cell #1 changed from '#2' to '#3'" ;
    };
    String STR_CHANGED_INSERT
    {
        Text [ en-US ] = "#1 inserted" ;
    };
    String STR_CHANGED_DELETE
    {
        Text [ en-US ] = "#1deleted" ;
    };
    String STR_CHANGED_MOVE
    {
        Text [ en-US ] = "Range moved from #1 to #2" ;
    };
    String STR_END_REDLINING_TITLE
    {
        Text [ en-US ] = "Exit Recording" ;
    };
    String STR_END_REDLINING
    {
        Text [ en-US ] = "This action will exit the change recording mode.\nAny information about changes will be lost.\n\nExit change recording mode?\n\n" ;
    };
    String STR_CLOSE_ERROR_LINK
    {
        Text [ en-US ] = "The document can not be closed while a link is being updated." ;
    };
    String STR_UNDO_RESIZEMATRIX
    {
        Text [ en-US ] = "Adapt array area";
    };
    String STR_TIP_RESIZEMATRIX
    {
        Text [ en-US ] = "Array formula  %1 R x %2 C";
    };
    String STR_MACRO_WARNING
    {
        Text [ en-US ] = "This document contains macro function calls.\nDo you want to run them?";
    };

    String STR_UNDO_HANGULHANJA
    {
        Text [ en-US ] = "Hangul/Hanja Conversion";
    };

    String STR_NAME_INPUT_CELL
    {
        Text [ en-US ] = "Select Cell";
    };
    String STR_NAME_INPUT_RANGE
    {
        Text [ en-US ] = "Select Range";
    };
    String STR_NAME_INPUT_DBRANGE
    {
        Text [ en-US ] = "Select Database Range";
    };
    String STR_NAME_INPUT_ROW
    {
        Text [ en-US ] = "Go To Row";
    };
    String STR_NAME_INPUT_SHEET
    {
        Text [ en-US ] = "Go To Sheet";
    };
    String STR_NAME_INPUT_DEFINE
    {
        Text [ en-US ] = "Define Name for Range";
    };
    String STR_NAME_ERROR_SELECTION
    {
        Text [ en-US ] = "The selection needs to be rectangular in order to name it.";
    };
    String STR_NAME_ERROR_NAME
    {
        Text [ en-US ] = "You must enter a valid reference or type a valid name for the selected range.";
    };

    String STR_CHANGED_MOVE_REJECTION_WARNING
    {
        Text[ en-US ] = "WARNING: This action may have resulted in unintended changes to cell references in formulas.";
    };

    String STR_CHANGED_DELETE_REJECTION_WARNING
    {
        Text[ en-US ] = "WARNING: This action may have resulted in references to the deleted area not being restored.";
    };

    String STR_HF_NONE_IN_BRACKETS
    {
        Text [ en-US ] = "(none)";
    };

    String STR_HF_OF
    {
        Text [ en-US ] = "of";
    };

    String STR_HF_OF_QUESTION
    {
        Text [ en-US ] = "of ?";
    };

    String STR_HF_CREATED_BY
    {
        Text [ en-US ] = "Created by";
    };

    String STR_HF_CONFIDENTIAL
    {
        Text [ en-US ] = "Confidential";
    };

    String STR_HF_CUSTOMIZED
    {
        Text [ en-US ] = "Customized";
    };

    String STR_HF_CUSTOM_FOOTER
    {
        Text [ en-US ] = "Custom footer";
    };

    String STR_UNDO_CHINESE_TRANSLATION
    {
        Text [ en-US ] = "Chinese conversion";
    };

    String STR_ERR_DATAPILOT_INPUT
    {
        Text[ en-US ] = "You cannot change this part of the pivot table.";
    };

    String STR_RECALC_MANUAL
    {
        Text [ en-US ] = "Manual";
    };
    String STR_RECALC_AUTO
    {
        Text [ en-US ] = "Automatic";
    };
    String STR_ERR_LONG_NESTED_ARRAY
    {
    Text [ en-US ] = "Nested arrays are not supported." ;
    };
    String STR_UNDO_TEXTTOCOLUMNS
    {
        Text [ en-US ] = "Text to Columns";
    };
    String STR_DOC_UPDATED
    {
        Text [ en-US ] = "Your spreadsheet has been updated with changes saved by other users.";
    };
    String STR_DOC_WILLBESAVED
    {
        Text [ en-US ] = "The spreadsheet must be saved now to activate sharing mode.\n\nDo you want to continue?";
    };
    String STR_DOC_WILLNOTBESAVED
    {
        Text [ en-US ] = "Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n\nDo you want to continue?";
    };
    String STR_DOC_DISABLESHARED
    {
        Text [ en-US ] = "Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n\nDo you want to continue?";
    };
    String STR_DOC_NOLONGERSHARED
    {
        Text [ en-US ] = "This spreadsheet is no longer in shared mode.\n\nSave your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually.";
    };
    String STR_SHARED_DOC_WARNING
    {
        Text [ en-US ] = "The spreadsheet is in shared mode. This allows multiple users to access and edit the spreadsheet at the same time.\n\nChanges to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities.";
    };
    String STR_FILE_LOCKED_TRY_LATER
    {
        Text [ en-US ] = "The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n\nSharing mode of a locked file cannot be disabled. Try again later.";
    };
    String STR_FILE_LOCKED_SAVE_LATER
    {
        Text [ en-US ] = "The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n\nTry again later to save your changes.";
    };
    String STR_UNKNOWN_USER
    {
        Text [ en-US ] = "Unknown User";
    };

    String STR_SHAPE_AUTOSHAPE
    {
        Text [ en-US ] = "AutoShape";
    };

    String STR_SHAPE_RECTANGLE
    {
        Text [ en-US ] = "Rectangle";
    };

    String STR_SHAPE_LINE
    {
        Text [ en-US ] = "Line";
    };

    String STR_SHAPE_OVAL
    {
        Text [ en-US ] = "Oval";
    };

    String STR_SHAPE_TEXTBOX
    {
        Text [ en-US ] = "Text Box";
    };

    String STR_FORM_BUTTON
    {
        Text [ en-US ] = "Button";
    };

    String STR_FORM_CHECKBOX
    {
        Text [ en-US ] = "Check Box";
    };

    String STR_FORM_OPTIONBUTTON
    {
        Text [ en-US ] = "Option Button";
    };

    String STR_FORM_LABEL
    {
        Text [ en-US ] = "Label";
    };

    String STR_FORM_LISTBOX
    {
        Text [ en-US ] = "List Box";
    };

    String STR_FORM_GROUPBOX
    {
        Text [ en-US ] = "Group Box";
    };

    String STR_FORM_DROPDOWN
    {
        Text [ en-US ] = "Drop Down";
    };

    String STR_FORM_SPINNER
    {
        Text [ en-US ] = "Spinner";
    };

    String STR_FORM_SCROLLBAR
    {
        Text [ en-US ] = "Scroll Bar";
    };

    String STR_STYLE_FAMILY_CELL
    {
        Text [ en-US ] = "Cell Styles";
    };
    String STR_STYLE_FAMILY_PAGE
    {
        Text [ en-US ] = "Page Styles";
    };
    String STR_ERR_DATAPILOTSOURCE
    {
        Text [ en-US ] = "Pivot table source data is invalid.";
    };
    String STR_PIVOT_FIRSTROWEMPTYERR
    {
        Text [ en-US ] = "One or more fields appear to have an empty name. Check the first row of the data source to ensure there are no empty cells." ;
    };
    String STR_PIVOT_ONLYONEROWERR
    {
        Text [ en-US ] = "Pivot table needs at least two rows of data to create or refresh." ;
    };
    String STR_OPTIONS_WARN_SEPARATORS
    {
        Text [ en-US ] = "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values.";
    };
    String STR_UNDO_INSERT_CURRENT_DATE
    {
        Text [ en-US ] = "Insert Current Date";
    };
    String STR_UNDO_INSERT_CURRENT_TIME
    {
        Text [ en-US ] = "Insert Current Time";
    };
    String STR_MANAGE_NAMES
    {
        Text [ en-US ] = "Manage Names...";
    };
    String STR_HEADER_NAME
    {
        Text [en-US] = "Name";
    };
    String STR_HEADER_RANGE
    {
        Text [en-US] = "Range";
    };
    String STR_HEADER_SCOPE
    {
        Text [en-US] = "Scope";
    };
    String STR_GLOBAL_SCOPE
    {
        Text [ en-US ] = "Document (Global)" ;
    };
    String STR_ERR_NAME_EXISTS
    {
        Text [ en-US ] = "Invalid name. Already in use for the selected scope.";
    };
    String STR_ERR_NAME_INVALID
    {
        Text [ en-US ] = "Invalid name. Only use letters, numbers and underscore.";
    };
    String STR_UNSAVED_EXT_REF
    {
        Text [ en-US ] = "This Document contains external references to unsaved documents.\n\nDo you want to continue?";
    };
    String STR_CLOSE_WITH_UNSAVED_REFS
    {
        Text [ en-US ] = "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss.";
    };
    String STR_HEADER_COND
    {
        Text [ en-US ] = "First Condition";
    };
    String STR_COND_CONDITION
    {
        Text [ en-US ] = "Cell value is";
    };
    String STR_COND_COLORSCALE
    {
        Text [ en-US ] = "ColorScale";
    };
    String STR_COND_DATABAR
    {
        Text [ en-US ] = "DataBar";
    };
    String STR_COND_ICONSET
    {
        Text [ en-US ] = "IconSet";
    };
    String STR_COND_BETWEEN
    {
        Text [ en-US ] = "between";
    };
    String STR_COND_NOTBETWEEN
    {
        Text [ en-US ] = "not between";
    };
    String STR_COND_UNIQUE
    {
        Text [ en-US ] = "unique";
    };
    String STR_COND_DUPLICATE
    {
        Text [ en-US ] = "duplicate";
    };
    String STR_COND_FORMULA
    {
        Text [ en-US ] = "Formula is";
    };
    String STR_COND_TOP10
    {
        Text [ en-US ] = "Top Elements";
    };
    String STR_COND_BOTTOM10
    {
        Text [ en-US ] = "Bottom Elements";
    };
    String STR_COND_TOP_PERCENT
    {
        Text [ en-US ] = "Top Percent";
    };
    String STR_COND_BOTTOM_PERCENT
    {
        Text [ en-US ] = "Bottom Percent";
    };
    String STR_COND_ABOVE_AVERAGE
    {
        Text [ en-US ] = "Above Average";
    };
    String STR_COND_BELOW_AVERAGE
    {
        Text [ en-US ] = "Below Average";
    };
    String STR_COND_ERROR
    {
        Text [ en-US ] = "an Error code";
    };
    String STR_COND_NOERROR
    {
        Text [ en-US ] = "not an Error code";
    };
    String STR_ERR_CONDFORMAT_PROTECTED
    {
        Text [ en-US ] = "Conditional Formats can not be created, deleted or changed in protected sheets!";
    };
};