-
Notifications
You must be signed in to change notification settings - Fork 0
/
ignition_strings.h
4447 lines (4384 loc) · 187 KB
/
ignition_strings.h
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
#ifndef LK_LOCALE_H
#define LK_LOCALE_H 1
/* Locale Catalog Source File
*
* Automatically created by SimpleCat V3
* Do NOT edit by hand!
*
* SimpleCat ©1992-2013 Guido Mersmann
*
*/
/****************************************************************************/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifdef CATCOMP_ARRAY
#undef CATCOMP_NUMBERS
#undef CATCOMP_STRINGS
#define CATCOMP_NUMBERS
#define CATCOMP_STRINGS
#endif
#ifdef CATCOMP_BLOCK
#undef CATCOMP_STRINGS
#define CATCOMP_STRINGS
#endif
/****************************************************************************/
#ifdef CATCOMP_NUMBERS
#define MSG_GL_CONTEXT_ERR 0
#define MSG_DIAGRAM_PREFS_GAD 1
#define MSG_DIAGRAM_TYPE_UNDO 2
#define MSG_NO_BLOCK_ERR 3
#define MSG_CREATE_DIAGRAM_OBJ 4
#define MSG_EMPTY_FORMAT 5
#define MSG_INVALID_NAME_ERR 6
#define MSG_NAME_IN_USE_ERR 7
#define MSG_NO_MEMORY_FOR_NESTING_ERR 8
#define MSG_WRONG_TYPE_CALCERR 9
#define MSG_DIVISION_BY_ZERO_CALCERR 10
#define MSG_UNKNOWN_FUNCTION_CALCERR 11
#define MSG_WRONG_ARGS_COUNT_CALCERR 12
#define MSG_UNDEFINED_NAME_CALCERR 13
#define MSG_BAD_SYNTAX_CALCERR 14
#define MSG_LOOP_CALCERR 15
#define MSG_UNKNOWN_CALCERR 16
#define MSG_ALLOC_CELL_FAILED_ERR 17
#define MSG_COPY_OBJECT_TO_PAGE_ERR 18
#define MSG_COPY_TO_CLIPBOARD_ERR 19
#define MSG_CUT_UNDO 20
#define MSG_DELETE_UNDO 21
#define MSG_CUT_DELETE_UNDO_ERR 22
#define MSG_GROUP 23
#define MSG_NO_CELLS_SELECTED_ERR 24
#define MSG_NO_OBJECT_SELECTED_ERR 25
#define MSG_INSERT_OBJECTS_UNDO 26
#define MSG_INSERT_UNDO 27
#define MSG_LOAD_FROM_CLIPBOARD_ERR 28
#define MSG_NO_PROJECT_CONTEXT_ERR 29
#define MSG_COMMAND_IN_SCRIPT_ONLY_ERR 30
#define MSG_UNKNOWN_ERR 31
#define MSG_CANNOT_EXECUTE_COMMAND_ERR 32
#define MSG_PROTECTED_CELL 33
#define MSG_UNKNOWN_FUNCTION_NAME_ERR 34
#define MSG_CHANGE_CELL_TEXT_UNDO 35
#define MSG_CELL_TEXT_INPUT_UNDO 36
#define MSG_DELETE_CELL_TEXT_UNDO 37
#define MSG_PASSWORD_GAD 38
#define MSG_CANCEL_GAD 39
#define MSG_OK_GAD 40
#define MSG_SECURITY_CHECK_TITLE 41
#define MSG_WRONG_PASSWORD_ERR 42
#define MSG_FUNCTABLE_FUNCTION_NOT_FOUND_ERR 43
#define MSG_FUNCTABLE_FUNCTIONS_MISSING_ERR 44
#define MSG_NO_FUNCTABLE_ERR 45
#define MSG_FUNCTABLE_ERR 46
#define MSG_COLOR 47
#define MSG_CHOOSE_PAGE_HELP 48
#define MSG_INPUT_FORMULA_HELP 49
#define MSG_FAST_FUNCTION_CHOOSER_HELP 50
#define MSG_FUNCTION_CHOOSER_HELP 51
#define MSG_CHOOSE_FONT_HELP 52
#define MSG_SET_FONT_SIZE_HELP 53
#define MSG_CHOOSE_FONT_SIZE_HELP 54
#define MSG_SET_ZOOM_HELP 55
#define MSG_CHOOSE_ZOOM_HELP 56
#define MSG_SET_TEXTPEN_HELP 57
#define MSG_SET_BACKPEN_HELP 58
#define MSG_PLAIN_FONT_HELP 59
#define MSG_BOLD_FONT_HELP 60
#define MSG_ITALICS_FONT_HELP 61
#define MSG_UNDERLINED_FONT_HELP 62
#define MSG_ALIGN_LEFT_HELP 63
#define MSG_ALIGN_CENTER_HELP 64
#define MSG_ALIGN_RIGHT_HELP 65
#define MSG_VALIGN_TOP_HELP 66
#define MSG_VALIGN_MIDDLE_HELP 67
#define MSG_VALIGN_BOTTOM_HELP 68
#define MSG_FORMULA_GAD 69
#define MSG_CHOOSE_GAD 70
#define MSG_CREATE_PROJECT_ERR 71
#define MSG_UNSAVED_PREFERENCES_REQ 72
#define MSG_PRINT_IN_PROGRESS_REQ 73
#define MSG_OPEN_CLASSES_PROGRESS 74
#define MSG_SEARCH_FONTS_PROGRESS 75
#define MSG_OPEN_MOUSE_POINTER_PROGRESS 76
#define MSG_LOAD_PREFERENCES_PROGRESS 77
#define MSG_LOAD_SESSION_PROGRESS 78
#define MSG_NO_OUTLINE_FONTS_ERR 79
#define MSG_LOAD_ICONS_PROGRESS 80
#define MSG_AUTOSAVE_REQ 81
#define MSG_CELL_TEXT_COLOR_HELP 82
#define MSG_CELL_BACK_COLOR_HELP 83
#define MSG_STATUS_MODE_HELP 84
#define MSG_BLOCK_POSITION_HELP 85
#define MSG_CLOSE_WINDOW_QUIT_REQ 86
#define MSG_LOAD_PROJECT_ERR 87
#define MSG_COLOR_CHANGE_UNDO 88
#define MSG_SET_PATTERN_UNDO 89
#define MSG_REMOVE_PATTERN_UNDO 90
#define MSG_CHANGE_SECURITY_ATTRIBUTES_REQ 91
#define MSG_SET_SECURITY_ATTRIBUTES_UNDO 92
#define MSG_ALIGNMENT_UNDO 93
#define MSG_ALIGN_CENTER_UNDO 94
#define MSG_ALIGN_LEFT_UNDO 95
#define MSG_ALIGN_RIGHT_UNDO 96
#define MSG_VALIGN_MIDDLE_UNDO 97
#define MSG_VALIGN_TOP_UNDO 98
#define MSG_VALIGN_BOTTOM_UNDO 99
#define MSG_FONT_UNDO 100
#define MSG_FONT_DOUBLE_UNDERLINED_UNDO 101
#define MSG_FONT_STRIKE_THROUGH_UNDO 102
#define MSG_FONT_ROTATION_UNDO 103
#define MSG_FONT_SHEAR_UNDO 104
#define MSG_SAVE_CHANGED_PROJECT_REQ 105
#define MSG_YES_NO_REQ 106
#define MSG_YES_NO_CANCEL_REQ 107
#define MSG_UNNAMED 108
#define MSG_PAGE 109
#define MSG_COPY_CELL_UNDO 110
#define MSG_MOVE_CELL_UNDO 111
#define MSG_SWAP_CELLS_UNDO 112
#define MSG_CELL_SIZE_UNDO 113
#define MSG_NEW_PAGE 114
#define MSG_MOVE_CELL_HELP 115
#define MSG_SWAP_CELLS_HELP 116
#define MSG_COPY_CELL_HELP 117
#define MSG_SINGLE_COPY_CELL_HELP 118
#define MSG_OPEN_LIBRARY_PACKAGE_ERR 119
#define MSG_OPEN_LIBRARY_ERR 120
#define MSG_OPEN_FROM_PACKAGE_ERR 121
#define MSG_AUTO_VALUE_GAD 122
#define MSG_VERSION_INFO 123
#define MSG_ALL_RIGHTS_RESERVED_INFO 124
#define MSG_SCREEN_BORDER 125
#define MSG_MONITOR_BORDER 126
#define MSG_BACKGROUND_BORDER 127
#define MSG_SHEET_BORDER 128
#define MSG_BARS_BORDER 129
#define MSG_PROPERTIES_BORDER 130
#define MSG_MARKED_BORDER 131
#define MSG_PATHS_BORDER 132
#define MSG_SAVE_BORDER 133
#define MSG_ERROR_MESSAGES_BORDER 134
#define MSG_DRAGGABLE_CORNER_BORDER 135
#define MSG_MISC_BORDER 136
#define MSG_COLOR_BORDER 137
#define MSG_PALETTE_BORDER 138
#define MSG_COMMANDS_BORDER 139
#define MSG_OUTPUT_BORDER 140
#define MSG_NAME_GAD 141
#define MSG_ICON_LABEL 142
#define MSG_POSITION_BORDER 143
#define MSG_PRESETS_BORDER 144
#define MSG_INSERT_EXISTING_NOTE_GAD 145
#define MSG_PAGE_FORMAT_BORDER 146
#define MSG_PAGE_MARGINS_BORDER 147
#define MSG_COMMENTS_LABEL 148
#define MSG_COMMENTS_ULABEL 149
#define MSG_SECURITY_BORDER 150
#define MSG_EVENT_DEFINITION_BORDER 151
#define MSG_RANGE_BORDER 152
#define MSG_OPTIONS_BORDER 153
#define MSG_CURRENT_SHEET_PROGRESS 154
#define MSG_CURRENT_PAGE_PROGRESS 155
#define MSG_FORE_BACKGROUND_COLOR_GAD 156
#define MSG_PRESS_A_KEY_REQ 157
#define MSG_SEARCH_FOR_BORDER 158
#define MSG_REPLACE_WITH_BORDER 159
#define MSG_MASK_BORDER 160
#define MSG_FIELDS_BORDER 161
#define MSG_NO_PROJECT_ERR 162
#define MSG_NO_DATABASE_ERR 163
#define MSG_IGNITION_REQUEST_TITLE 164
#define MSG_ADD_GAD 165
#define MSG_REMOVE_GAD 166
#define MSG_INSERT_OBJECT_GAD 167
#define MSG_KEEP_WINDOWS_OPEN_GAD 168
#define MSG_NOTE_GAD 169
#define MSG_DELETE_GAD 170
#define MSG_DESCRIPTION_GAD 171
#define MSG_CHANGE_DIAGRAM_TITLE 172
#define MSG_CLIPBOARD_ENV_TITLE 173
#define MSG_GLOBAL_ENV_TITLE 174
#define MSG_PREFERENCES_ENV_TITLE 175
#define MSG_PREFS_PART_EXISTS_REQ 176
#define MSG_APPEND_REPLACE_BACK_GAD 177
#define MSG_PREFS_PART_LOST_REQ 178
#define MSG_CONTINUE_BACK_GAD 179
#define MSG_GLOBAL_PREFS 180
#define MSG_CLIPBOARD_PREFS 181
#define MSG_COMMANDS_PREFS 182
#define MSG_SCREEN_PREFS 183
#define MSG_DISPLAY_PREFS 184
#define MSG_FILE_PREFS 185
#define MSG_FORMATS_PREFS 186
#define MSG_CONTEXT_MENU_PREFS 187
#define MSG_MENU_PREFS 188
#define MSG_NAMES_PREFS 189
#define MSG_PALETTE_PREFS 190
#define MSG_ICONBAR_PREFS 191
#define MSG_SYSTEM_PREFS 192
#define MSG_SHEET_PREFS 193
#define MSG_KEYS_PREFS 194
#define MSG_TRUE_NAME 195
#define MSG_FALSE_NAME 196
#define MSG_ADD_PREFS_TITLE 197
#define MSG_PREFS_TITLE 198
#define MSG_CHANGE_FRAME_UNDO 199
#define MSG_CHANGE_CELL_SIZE_UNDO 200
#define MSG_NO_SEARCH_CRITERIA_ERR 201
#define MSG_NO_REPLACE_PROPERTIES_ERR 202
#define MSG_REPLACE_UNDO 203
#define MSG_REPLACE_CELL_PROPERTIES_REQ 204
#define MSG_NO_CELL_FOUND_ERR 205
#define MSG_WITH_SEARCH_PATTERN_GAD 206
#define MSG_IGNORE_CASE_GAD 207
#define MSG_ONLY_WHOLE_WORDS_GAD 208
#define MSG_ACKNOWLEDGE_GAD 209
#define MSG_SEARCH_RELATION_GAD 210
#define MSG_START_AT_CELL_UGAD 211
#define MSG_WITHIN_BLOCK_UGAD 212
#define MSG_INVALID_PAPER_SIZE_ERR 213
#define MSG_PASSWORDS_DONT_MATCH_ERR 214
#define MSG_PAGE_COLOR 215
#define MSG_ATTACH_NOTE_UNDO 216
#define MSG_DELETE_NOTE_UNDO 217
#define MSG_SELECT_FILE_NAME_TITLE 218
#define MSG_MOVE_OBJECT_UNDO 219
#define MSG_SET_FORMAT_UNDO 220
#define MSG_DATABASE_NOT_FOUND_ERR 221
#define MSG_CREATE_INDEX_ERR 222
#define MSG_CREATE_FILTER_ERR 223
#define MSG_FIELD_NOT_FOUND_IN_DBASE_ERR 224
#define MSG_NEW_GAD 225
#define MSG_REFERENCE_DBASE_GAD 226
#define MSG_DATABASE_GAD 227
#define MSG_REFERENCE_LABEL 228
#define MSG_FROM_BLOCK_GAD 229
#define MSG_FIELDS_GAD 230
#define MSG_TYPE_LABEL 231
#define MSG_DATABASE_LABEL 232
#define MSG_TO_EXISTING_PAGE_LABEL 233
#define MSG_AUTO_GENERATE_GAD 234
#define MSG_FIELD_LABEL 235
#define MSG_CELL_LABEL 236
#define MSG_GENERATE_FIELDS_GAD 237
#define MSG_INDEX_LABEL 238
#define MSG_NAME_LABEL 239
#define MSG_FILTER_LABEL 240
#define MSG_NEW_DBASE_NAME 241
#define MSG_NEW_FIELD_NAME 242
#define MSG_MASK_NAME 243
#define MSG_NEW_INDEX_NAME 244
#define MSG_NEW_FILTER_NAME 245
#define MSG_BAD_FILTER_ERR 246
#define MSG_OPEN_SCREEN_ERR 247
#define MSG_INTERACTIVE_STATUS 248
#define MSG_GLOBAL_PREFS_HAVE_ALL_MODULES_ERR 249
#define MSG_REMOVE_GLOBAL_PREFS_REQ 250
#define MSG_MOVE_PREFS_FOLDER_ERR 251
#define MSG_MOVE_FROM_GLOBAL_PREFS_ERR 252
#define MSG_MOVE_PREFS_IN_FOLDER_ERR 253
#define MSG_PREFS_ALREADY_EXIST_IN_FOLDER_ERR 254
#define MSG_INVALID_TIME_ERR 255
#define MSG_UNNAMED_IN_PARENTHESIS 256
#define MSG_INTERNAL_COMMAND_NOT_FOUND_ERR 257
#define MSG_BAD_COMMAND_ARGUMENTS_ERR 258
#define MSG_LOAD_AREXX_SCRIPT_TITLE 259
#define MSG_LOAD_COMMAND_TITLE 260
#define MSG_LOAD_ICON_TITLE 261
#define MSG_NEW_NAME 262
#define MSG_COLOR_LABEL 263
#define MSG_FILL_COLOR_LABEL 264
#define MSG_BORDER_COLOR_LABEL 265
#define MSG_WEIGHT_LABEL 266
#define MSG_CONTINUAL_COMMAND_GAD 267
#define MSG_DISPLAY_FRAME_GAD 268
#define MSG_HELP_TEXT_LABEL 269
#define MSG_COMMAND_LABEL 270
#define MSG_TEXT_LABEL 271
#define MSG_REFERENCE_OBJECT_GAD 272
#define MSG_FONT_LABEL 273
#define MSG_OK_UGAD 274
#define MSG_FRAME_BLOCK_GAD 275
#define MSG_ADD_ONLY_GAD 276
#define MSG_ADOPT_CHANGES_GAD 277
#define MSG_ADOPT_FRAME_FROM_CELL_UGAD 278
#define MSG_FRAME_WHOLE_BLOCK_UGAD 279
#define MSG_ASSIGN_UGAD 280
#define MSG_CANCEL_UGAD 281
#define MSG_COLORS_BORDER 282
#define MSG_PATTERN_BORDER 283
#define MSG_ALIGNMENT_BORDER 284
#define MSG_FONT_BORDER 285
#define MSG_STYLE_BORDER 286
#define MSG_DOUBLE_UNDERLINED_GAD 287
#define MSG_SPECIAL_BORDER 288
#define MSG_TYPOGRAPHY_BORDER 289
#define MSG_CELL_SECURITY_BORDER 290
#define MSG_ADOPT_FONT_STYLE_FROM_CELL_GAD 291
#define MSG_DEFINED_FORMATS_GAD 292
#define MSG_DECIMAL_PLACES_LABEL 293
#define MSG_ADOPT_FORMAT_FROM_CELL_GAD 294
#define MSG_FOREGROUND_LABEL 295
#define MSG_BACKGROUND_LABEL 296
#define MSG_PATTERN_LABEL 297
#define MSG_HORIZONTAL_LABEL 298
#define MSG_VERTICAL_LABEL 299
#define MSG_ADOPT_ATTRIBUTES_FROM_CELLS_GAD 300
#define MSG_FONT_SIZE_LABEL 301
#define MSG_BOLD_GAD 302
#define MSG_ITALICS_GAD 303
#define MSG_UNDERLINED_GAD 304
#define MSG_STRIKE_THROUGH_GAD 305
#define MSG_ROTATION_LABEL 306
#define MSG_SHEAR_LABEL 307
#define MSG_WIDTH_LABEL 308
#define MSG_FONT_TRACKING_LABEL 309
#define MSG_KERNING_LABEL 310
#define MSG_PROPERTIES_LABEL 311
#define MSG_ASSIGN_GAD 312
#define MSG_NORMAL_GAD 313
#define MSG_DIAGRAM_HAS_NO_DISPLAY_OPTIONS_ERR 314
#define MSG_NO_DIAGRAM_TYPE_SELECTED_ERR 315
#define MSG_ROW_GAD 316
#define MSG_COLOR_GAD 317
#define MSG_MARK_GAD 318
#define MSG_LABELS_BORDER 319
#define MSG_BACKGROUND_COLOR_LABEL 320
#define MSG_RANGE_LABEL 321
#define MSG_NEW_DIAGRAM_NAME 322
#define MSG_VALUES_LABEL 323
#define MSG_HORIZONTAL_GAD 324
#define MSG_PAGE_LABEL 325
#define MSG_DIAGRAM_TYPES_GAD 326
#define MSG_MARK_LABEL 327
#define MSG_DISPLAY_LABELS_GAD 328
#define MSG_GRID_LABEL 329
#define MSG_TRANSPARENT_GAD 330
#define MSG_PREVIEW_GAD 331
#define MSG_MATHEMATICS_GAD 332
#define MSG_FUNCTION_CATEGORY_GAD 333
#define MSG_FUNCTIONS_GAD 334
#define MSG_DESCRIPTION_LABEL 335
#define MSG_PAGE_FORMAT_GAD 336
#define MSG_MARKED_GAD 337
#define MSG_PAGE_SIZE_LABEL 338
#define MSG_PAGE_WIDTH_LABEL 339
#define MSG_PAGE_HEIGHT_LABEL 340
#define MSG_LIMITS_LABEL 341
#define MSG_LEFT_MARGIN_LABEL 342
#define MSG_BOTTOM_MARGIN_LABEL 343
#define MSG_RIGHT_MARGIN_LABEL 344
#define MSG_TOP_MARGIN_LABEL 345
#define MSG_KEYWORDS_ULABEL 346
#define MSG_AUTHOR_ULABEL 347
#define MSG_VERSION_ULABEL 348
#define MSG_PROTECT_DOCUMENT_LABEL 349
#define MSG_SHOW_NOTES_GAD 350
#define MSG_INTERACTIVE_MODE_GAD 351
#define MSG_IMMUTABLE_GAD 352
#define MSG_SHOW_HIDDEN_CELLS_GAD 353
#define MSG_SAVE_WINDOW_SIZE_GAD 354
#define MSG_RETYPE_PASSWORD_LABEL 355
#define MSG_PROTECT_SECURITY_WITH_PASSWORD_LABEL 356
#define MSG_INPUT_ENDED_EVENT 357
#define MSG_INTERVAL_LABEL 358
#define MSG_PROTECTION_PROPERTIES_LABEL 359
#define MSG_SCREEN_WIDTH_ULABEL 360
#define MSG_WIDTH_ULABEL 361
#define MSG_HEIGHT_ULABEL 362
#define MSG_ADOPT_SIZE_FROM_CELL_UGAD 363
#define MSG_DELETE_UGAD 364
#define MSG_ZOOM_LABEL 365
#define MSG_ZOOM_ULABEL 366
#define MSG_BEGIN_FROM_LEFT_LABEL 367
#define MSG_FROM_LEFT_LABEL 368
#define MSG_FROM_TOP_LABEL 369
#define MSG_END_FROM_LEFT_LABEL 370
#define MSG_HEIGHT_LABEL 371
#define MSG_AVAILABLE_LOAD_MODULES_GAD 372
#define MSG_AVAILABLE_SAVE_MODULES_GAD 373
#define MSG_NOTES_GAD 374
#define MSG_PREFERENCES_GAD 375
#define MSG_OPEN_IN_EDITOR_GAD 376
#define MSG_FONT_PLAIN_CHAR 377
#define MSG_FONT_BOLD_CHAR 378
#define MSG_FONT_ITALICS_CHAR 379
#define MSG_FONT_UNDERLINED_CHAR 380
#define MSG_VALIGN_TOP_CHAR 381
#define MSG_VALIGN_MIDDLE_CHAR 382
#define MSG_VALIGN_BOTTOM_CHAR 383
#define MSG_LOAD_MOUSE_POINTER_ERR 384
#define MSG_REFERENCES_FATAL_ERR 385
#define MSG_EMPTY_LIST_GAD 386
#define MSG_DARK_COLOR_TINT_NAME 387
#define MSG_LOAD_OBJECT_ERR 388
#define MSG_REFERENCE_TO_GROUP_ERR 389
#define MSG_INIT_CLASS_ERR 390
#define MSG_CLASS_NOT_FOUND_ERR 391
#define MSG_NEW_DOCUMENT_NAME 392
#define MSG_MINUTE_UNIT 393
#define MSG_SECOND_UNIT 394
#define MSG_UNIQUE_NAME_ERR 395
#define MSG_INVALID_RESIZING_ERR 396
#define MSG_RESIZE_OBJECT_UNDO 397
#define MSG_EMBEDDED_CLASS_NOT_FOUND_ERR 398
#define MSG_REFERENCE_SUFFIX_NAME 399
#define MSG_REFERENCE_OBJECT_NAME 400
#define MSG_CREATE_REFERENCE_OBJECT_UNDO 401
#define MSG_UNKNOWN_TAG_TYPE_ERR 402
#define MSG_OBJECT_ATTRIBUTES_UNDO 403
#define MSG_OBJECT_DEPTH_UNDO 404
#define MSG_CREATE_OBJECT_UNDO 405
#define MSG_SWITCH_TO_NORMAL_MODE_STATUS 406
#define MSG_INIT_OBJECT_ERR 407
#define MSG_MOVE_OBJECTS_UNDO 408
#define MSG_PERFORM_ACTION_UNDO_FAILED_ERR 409
#define MSG_OBJECT_SIZE_UNDO 410
#define MSG_DEFAULT_PRINTER_GAD 411
#define MSG_EMPTY_FIELD_GAD 412
#define MSG_PREFERENCES_VERSION_ERR 413
#define MSG_WRONG_SCOPUS_IFFERR 414
#define MSG_NO_MEMORY_IFFERR 415
#define MSG_READ_IFFERR 416
#define MSG_WRITE_IFFERR 417
#define MSG_SEEK_IFFERR 418
#define MSG_CORRUPTED_IFFERR 419
#define MSG_BAD_SYNTAX_IFFERR 420
#define MSG_NO_IFF_IFFERR 421
#define MSG_UNKNOWN_IFFERR 422
#define MSG_LOAD_CLASS_ERR 423
#define MSG_REFERENCE_CELL_NOT_FOUND_ERR 424
#define MSG_FONT_NOT_FOUND_ERR 425
#define MSG_UNKNOWN_CELL_TAGS_ERR 426
#define MSG_UNKNOWN_CHUNKS_ERR 427
#define MSG_LOAD_DOCUMENT_ERR 428
#define MSG_SAVE_DOCUMENT_ERR 429
#define MSG_ADD_ON_NOT_FOUND_ERR 430
#define MSG_FILE_EXISTS_ERR 431
#define MSG_DEFAULT_FILE_FORMAT_NAME 432
#define MSG_INIT_SCRIPT_NOTIFICATION_ERR 433
#define MSG_LOAD_BLOCK_ERR 434
#define MSG_SAVE_BLOCK_ERR 435
#define MSG_LOAD_BLOCK_TITLE 436
#define MSG_SAVE_BLOCK_TITLE 437
#define MSG_INVALID_ALIGNMENT_ERR 438
#define MSG_DECIMAL_PLACES_UNDO 439
#define MSG_UNSAVED_DOCUMENTS_REQ 440
#define MSG_QUIT_SAVE_CANCEL_REQ 441
#define MSG_CELL_WIDTH_UNDO 442
#define MSG_ROW_UNDO 443
#define MSG_COLUMN_UNDO 444
#define MSG_CELLS_UNDO 445
#define MSG_INSERT_CELLS_UNDO 446
#define MSG_REMOVE_CELLS_UNDO 447
#define MSG_CELL_TEXT_UNDO 448
#define MSG_NEG_VALUES_UNDO 449
#define MSG_NUM_SEPARATOR_UNDO 450
#define MSG_SET_FILTER_ERR 451
#define MSG_NO_NAME_ERR 452
#define MSG_NAME_TYPE_MISSING_ERR 453
#define MSG_BAD_ARGUMENTS_ERR 454
#define MSG_NO_SEARCH_PATTERN_YET_ERR 455
#define MSG_LOAD_PICTURE_TITLE 456
#define MSG_DUPLICATE_OBJECTS_UNDO 457
#define MSG_NAMED_OBJECT_NOT_FOUND_ERR 458
#define MSG_REFERENCE_CLASS_NOT_FOUND_ERR 459
#define MSG_LOAD_DOCUMENT_TITLE 460
#define MSG_SAVE_DOCUMENT_TITLE 461
#define MSG_SAVE_PROJECT_ERR 462
#define MSG_LOAD_PREFERENCES_TITLE 463
#define MSG_SAVE_PREFERENCES_TITLE 464
#define MSG_SORT_UNDO 465
#define MSG_EMPTY_COMPARE_ROW_COL_ERR 466
#define MSG_COMPARE_ROW_ERR 467
#define MSG_COMPARE_COLUMN_ERR 468
#define MSG_INTERNAL_SCRIPT_NOT_FOUND_ERR 469
#define MSG_CREATE_SCRIPT_ENVIRONMENT_ERR 470
#define MSG_REXX_PORT_NOT_FOUND_ERR 471
#define MSG_DEFAULT_PRINTER_UNIT_NAME 472
#define MSG_PAGE_X_OF_Y_PROGRESS 473
#define MSG_NO_VALID_RANGE_ERR 474
#define MSG_PRINTING_FAILED_ERR 475
#define MSG_OPEN_PRINTER_UNIT_ERR 476
#define MSG_PRINT_PROGRESS_TITLE 477
#define MSG_CREATE_TASK_ERR 478
#define MSG_COPY_PROJECT_ERR 479
#define MSG_ASYNC_PRINT_FAILED_ERR 480
#define MSG_INVERT_GAD 481
#define MSG_ALL_GAD 482
#define MSG_PREFS_FOR_ALL_SHEETS_GAD 483
#define MSG_PRINT_TO_LABEL 484
#define MSG_NUMBER_OF_COPIES_LABEL 485
#define MSG_PAGE_NUMBERS_GAD 486
#define MSG_FILE_NAME_GAD 487
#define MSG_PRINT_ASYNC_GAD 488
#define MSG_PRINT_UGAD 489
#define MSG_OPTIONS_UGAD 490
#define MSG_INVALID_CELL_RANGE_ERR 491
#define MSG_ADD_UGAD 492
#define MSG_REMOVE_UGAD 493
#define MSG_ADD_PREFERENCES_GAD 494
#define MSG_FONT_GAD 495
#define MSG_ICON_BAR_GAD 496
#define MSG_GRID_CELL_WIDTH_GAD 497
#define MSG_SHOW_HEADINGS_GAD 498
#define MSG_HELP_BAR_GAD 499
#define MSG_TOOL_BAR_GAD 500
#define MSG_BAR_BOTTOM_GAD 501
#define MSG_FORMULA_BAR_LABEL 502
#define MSG_ICON_BAR_LABEL 503
#define MSG_TEST_GAD 504
#define MSG_OPEN_SCREEN_LABEL 505
#define MSG_SCREEN_MODE_GAD 506
#define MSG_FONT_ELLIPSIS_GAD 507
#define MSG_ON_PUBLIC_LABEL 508
#define MSG_SCREEN_MODE_UGAD 509
#define MSG_FONT_ELLIPSIS_UGAD 510
#define MSG_PATTERN_UGAD 511
#define MSG_PATTERN_GAD 512
#define MSG_MENU_TITLE_GAD 513
#define MSG_MENU_ITEMS_GAD 514
#define MSG_MENU_SUBITEMS_GAD 515
#define MSG_SHORT_CUT_LABEL 516
#define MSG_CREATE_ICONS_GAD 517
#define MSG_ICONS_LABEL 518
#define MSG_GRAPHICS_LABEL 519
#define MSG_NO_FILE_NAME_SUFFIX_GAD 520
#define MSG_SECURITY_BACKUPS_GAD 521
#define MSG_SESSIONS_GAD 522
#define MSG_AUTO_SAVE_LABEL 523
#define MSG_AS_REMEMBER_GAD 524
#define MSG_SHOW_FORMULAS_GAD 525
#define MSG_AUTO_COMPLETE_CENTURY_GAD 526
#define MSG_OPEN_ERROR_REQUESTER_GAD 527
#define MSG_ZERO_FOR_UNKNOWN_NAMES_GAD 528
#define MSG_QUALIFIER_LABEL 529
#define MSG_FUNCTION_LABEL 530
#define MSG_SHOW_DRAGGABLE_CORNER_GAD 531
#define MSG_ONLY_CELL_TEXT_GAD 532
#define MSG_SHOW_ZEROS_GAD 533
#define MSG_AUTO_CHANGE_CELL_SIZE_GAD 534
#define MSG_BLOCK_DISPLAY_LABEL 535
#define MSG_RECORD_GAD 536
#define MSG_SHORT_CUT_GAD 537
#define MSG_COMMANDS_WITH_ICONS_GAD 538
#define MSG_COPY_GAD 539
#define MSG_NEW_UGAD 540
#define MSG_COPY_UGAD 541
#define MSG_INTERNAL_COMMAND_GAD 542
#define MSG_CHOOSE_ICON_UGAD 543
#define MSG_OUTPUT_LABEL 544
#define MSG_OUTPUT_ULABEL 545
#define MSG_HELP_TEXT_ULABEL 546
#define MSG_HYPER_TEXT_LABEL 547
#define MSG_HYPER_TEXT_ULABEL 548
#define MSG_NAME_ULABEL 549
#define MSG_CONTENTS_LABEL 550
#define MSG_CONTENTS_ULABEL 551
#define MSG_TYPE_ULABEL 552
#define MSG_REFERENCE_ULABEL 553
#define MSG_PRIORITY_SLIDER_GAD 554
#define MSG_FORMAT_LABEL 555
#define MSG_ALIGNMENT_LABEL 556
#define MSG_NEG_VALUES_LABEL 557
#define MSG_NEG_VALUES_GAD 558
#define MSG_THOUSANDS_SEPARATOR_GAD 559
#define MSG_HUE_LABEL 560
#define MSG_BRIGHTNESS_LABEL 561
#define MSG_ICON_ON_WORKBENCH_GAD 562
#define MSG_USE_SESSIONS_GAD 563
#define MSG_CHECK_SECURITY_GAD 564
#define MSG_CONTEXT_MENUS_GAD 565
#define MSG_WINDOW_REFRESH_GAD 566
#define MSG_CLIMB_LIST_GAD 567
#define MSG_CLIPBOARD_UNIT_LABEL 568
#define MSG_CONTEXT_LABEL 569
#define MSG_TITLE_LABEL 570
#define MSG_INFO_TITLE 571
#define MSG_CLIPBOARD_TITLE 572
#define MSG_FIND_TITLE 573
#define MSG_SEARCH_REPLACE_TITLE 574
#define MSG_PRINT_TITLE 575
#define MSG_PRINT_STATUS_TITLE 576
#define MSG_FILE_TYPE_TITLE 577
#define MSG_EXECUTE_COMMAND_TITLE 578
#define MSG_PREFS_DISPLAY_TITLE 579
#define MSG_PREFS_SCREEN_TITLE 580
#define MSG_PREFS_PALETTE_TITLE 581
#define MSG_PREFS_ICONBAR_TITLE 582
#define MSG_PREFS_SHEET_TITLE 583
#define MSG_PREFS_FILE_TITLE 584
#define MSG_PREFS_COMMANDS_TITLE 585
#define MSG_PREFS_FORMATS_TITLE 586
#define MSG_PREFS_DEFINE_COMMAND_TITLE 587
#define MSG_PREFS_RECORD_KEY_TITLE 588
#define MSG_PREFS_MENU_TITLE 589
#define MSG_PREFS_KEYBOARD_TITLE 590
#define MSG_PREFS_SYSTEM_TITLE 591
#define MSG_PREFS_NAMES_TITLE 592
#define MSG_PREFS_CONTEXT_MENUS_TITLE 593
#define MSG_PAGE_TITLE 594
#define MSG_DOCUMENT_TITLE 595
#define MSG_PAGE_SETUP_TITLE 596
#define MSG_DOCUMENT_INFO_TITLE 597
#define MSG_ZOOM_TITLE 598
#define MSG_SCRIPTS_TITLE 599
#define MSG_CELL_TITLE_TITLE 600
#define MSG_INSERT_OBJECT_TITLE 601
#define MSG_OBJECT_TITLE 602
#define MSG_DIAGRAM_TITLE 603
#define MSG_DIAGRAM_PREVIEW_TITLE 604
#define MSG_OBJECT_LIST_TITLE 605
#define MSG_CELL_TITLE 606
#define MSG_FRAME_TITLE 607
#define MSG_CELL_SIZE_TITLE 608
#define MSG_NOTES_TITLE 609
#define MSG_DBASE_INDEX_TITLE 610
#define MSG_DBASE_TITLE 611
#define MSG_DBASE_MASK_TITLE 612
#define MSG_DBASE_FILTER_TITLE 613
#define MSG_FORMULA_TITLE 614
#define MSG_SET_NAME_TITLE 615
#define MSG_COMMAND_ULABEL 616
#define MSG_NOTE_UGAD 617
#define MSG_ON_PUBLIC_ULABEL 618
#define MSG_LIKE_WORKBENCH_UGAD 619
#define MSG_OPEN_SCREEN_ULABEL 620
#define MSG_INTERNAL_COMMAND_UGAD 621
#define MSG_AREXX_COMMAND_UGAD 622
#define MSG_DOS_COMMAND_UGAD 623
#define MSG_PRINT_ALL_PAGES_GAD 624
#define MSG_PRINT_VERTICALLY_THROUGH_GAD 625
#define MSG_PRINT_HORIZONTALLY_THROUGH_GAD 626
#define MSG_PRINT_FIRST_PAGE_GAD 627
#define MSG_PRINT_RANGE_LABEL 628
#define MSG_DOCUMENTS_LABEL 629
#define MSG_COLOR_SPACE_RGB_GAD 630
#define MSG_GRID_OFF_GAD 631
#define MSG_GRID_POINTS_GAD 632
#define MSG_GRID_LINE_GAD 633
#define MSG_BAR_OFF_GAD 634
#define MSG_BAR_TOP_GAD 635
#define MSG_BAR_LEFT_GAD 636
#define MSG_AUTO_SAVE_OFF_GAD 637
#define MSG_AUTO_SAVE_REMEMBER_GAD 638
#define MSG_AUTO_SAVE_ON_GAD 639
#define MSG_BD_POSITION_ONLY_GAD 640
#define MSG_BD_WITH_SUM_GAD 641
#define MSG_BD_WITH_AVERAGE_GAD 642
#define MSG_WITHOUT_QUALIFIER_GAD 643
#define MSG_QUAL_SHIFT_GAD 644
#define MSG_QUAL_ALT_GAD 645
#define MSG_QUAL_SHIFT_ALT_GAD 646
#define MSG_QUAL_CONTROL_GAD 647
#define MSG_KEY_ALWAYS_GAD 648
#define MSG_KEY_NOT_WHILE_EDITING_GAD 649
#define MSG_KEY_ONLY_WHILE_EDITING_GAD 650
#define MSG_NAME_TYPE_STANDARD_GAD 651
#define MSG_NAME_TYPE_REFERENCE_GAD 652
#define MSG_NAME_TYPE_SEARCH_GAD 653
#define MSG_FORMAT_VALUE_GAD 654
#define MSG_FORMAT_PERCENT_GAD 655
#define MSG_FORMAT_DATE_GAD 656
#define MSG_FORMAT_TIME_GAD 657
#define MSG_FORMAT_UNIT_GAD 658
#define MSG_ALIGN_LEFT_GAD 659
#define MSG_ALIGN_RIGHT_GAD 660
#define MSG_ALIGN_CENTER_GAD 661
#define MSG_COLOR_PALETTE_GAD 662
#define MSG_COLOR_SCREEN_GAD 663
#define MSG_COLOR_SPACE_HSB_GAD 664
#define MSG_SYSTEM_MISC_BORDER 665
#define MSG_SYSTEM_CLIPBOARD_BORDER 666
#define MSG_REFRESH_FAST_GAD 667
#define MSG_REFRESH_SAVE_MEMORY_GAD 668
#define MSG_REFRESH_LOW_MEMORY_GAD 669
#define MSG_CONTEXT_CELLS_GAD 670
#define MSG_CONTEXT_HORIZONTAL_TITLE_GAD 671
#define MSG_CONTEXT_VERTICAL_TITLE_GAD 672
#define MSG_CONTEXT_OBJECTS_GAD 673
#define MSG_CONTEXT_CELL_SELECTION_GAD 674
#define MSG_NORMAL_COMMAND_GAD 675
#define MSG_FRAME_LEFT_GAD 676
#define MSG_FRAME_RIGHT_GAD 677
#define MSG_FRAME_BOTTOM_GAD 678
#define MSG_FRAME_TOP_GAD 679
#define MSG_KEEP_GAD 680
#define MSG_ALIGN_REMOVE_GAD 681
#define MSG_VALIGN_TOP_GAD 682
#define MSG_VALIGN_MIDDLE_GAD 683
#define MSG_VALIGN_BOTTOM_GAD 684
#define MSG_NO_KERNING_GAD 685
#define MSG_TEXT_KERNING_GAD 686
#define MSG_DESIGN_KERNING_GAD 687
#define MSG_NO_SECURITY_GAD 688
#define MSG_NOT_EDITABLE_GAD 689
#define MSG_HIDE_FORMULA_GAD 690
#define MSG_HIDE_CONTENTS_GAD 691
#define MSG_CELL_FORMAT_BORDER 692
#define MSG_CELL_COLOR_ALIGNMENT_BORDER 693
#define MSG_CELL_FONT_BORDER 694
#define MSG_ORDER_VERTICAL_GAD 695
#define MSG_ORDER_HORIZONTAL_GAD 696
#define MSG_DIAGRAM_CONTENTS_BORDER 697
#define MSG_DIAGRAM_TYPE_BORDER 698
#define MSG_DIAGRAM_DISPLAY_BORDER 699
#define MSG_DIAGRAM_VALUES_BORDER 700
#define MSG_DIAGRAM_AXES_BORDER 701
#define MSG_NO_AXES_GRID_GAD 702
#define MSG_POINTS_AXES_GRID_GAD 703
#define MSG_LINE_AXES_GRID 704
#define MSG_NO_PAGE_LIMITS_GAD 705
#define MSG_MARKED_PAGE_LIMITS_GAD 706
#define MSG_FIXED_PAGE_LIMITS_GAD 707
#define MSG_OTHER_PAGE_SIZE_GAD 708
#define MSG_NO_PAGE_PROTECTION_GAD 709
#define MSG_PAGE_IMMUTABLE_GAD 710
#define MSG_PAGE_HIDDEN_GAD 711
#define MSG_KEEP_CELL_SIZE_GAD 712
#define MSG_EXACT_CELL_SIZE_GAD 713
#define MSG_MINIMAL_CELL_SIZE_GAD 714
#define MSG_OPTIMAL_CELL_SIZE_GAD 715
#define MSG_CELL_SET_NAME_CONTEXT 716
#define MSG_CUT_CONTEXT 717
#define MSG_COPY_CONTEXT 718
#define MSG_PASTE_CONTEXT 719
#define MSG_TITLE_INSERT_COLUMN_CONTEXT 720
#define MSG_TITLE_OPTIMAL_WIDTH_CONTEXT 721
#define MSG_TITLE_CELL_SIZE_CONTEXT 722
#define MSG_TITLE_SET_CONTEXT 723
#define MSG_TITLE_REMOVE_CONTEXT 724
#define MSG_TITLE_INSERT_ROW_CONTEXT 725
#define MSG_TITLE_OPTIMAL_HEIGHT_CONTEXT 726
#define MSG_FONT_PLAIN_NAME 727
#define MSG_FONT_BOLD_NAME 728
#define MSG_FONT_ITALICS_NAME 729
#define MSG_FONT_UNDERLINED_NAME 730
#define MSG_ALIGN_LEFT_NAME 731
#define MSG_ALIGN_CENTER_NAME 732
#define MSG_ALIGN_RIGHT_NAME 733
#define MSG_VALIGN_TOP_NAME 734
#define MSG_VALIGN_MIDDLE_NAME 735
#define MSG_VALIGN_BOTTOM_NAME 736
#define MSG_CORNER_MODE_NONE_GAD 737
#define MSG_CORNER_MODE_COPY_CELLS_GAD 738
#define MSG_CORNER_MODE_COPY_GAD 739
#define MSG_CORNER_MODE_MOVE_GAD 740
#define MSG_CORNER_MODE_SWAP_GAD 741
#define MSG_TIME_H_FORMAT 742
#define MSG_TIME_HH_FORMAT 743
#define MSG_TIME_M_FORMAT 744
#define MSG_TIME_MM_FORMAT 745
#define MSG_TIME_S_FORMAT 746
#define MSG_TIME_SS_FORMAT 747
#define MSG_DATE_Y_FORMAT 748
#define MSG_DATE_YY_FORMAT 749
#define MSG_DATE_MNAME_FORMAT 750
#define MSG_DATE_MMNAME_FORMAT 751
#define MSG_DATE_M_FORMAT 752
#define MSG_DATE_MM_FORMAT 753
#define MSG_DATE_W_FORMAT 754
#define MSG_DATE_WW_FORMAT 755
#define MSG_DATE_D_FORMAT 756
#define MSG_DATE_DD_FORMAT 757
#define MSG_HAIR_LINE_GAD 758
#define MSG_RECENTLY_USED_FUNCCAT 759
#define MSG_ALL_FUNCCAT 760
#define MSG_MATH_FUNCCAT 761
#define MSG_ALGEBRA_FUNCCAT 762
#define MSG_FINANCE_FUNCCAT 763
#define MSG_LOGIC_FUNCCAT 764
#define MSG_MATRICES_FUNCCAT 765
#define MSG_TRIGO_FUNCCAT 766
#define MSG_STATISTICS_FUNCCAT 767
#define MSG_DATE_TIME_FUNCCAT 768
#define MSG_DBASE_FUNCCAT 769
#define MSG_TEXT_FUNCCAT 770
#define MSG_LOOK_FUNCCAT 771
#define MSG_SHEET_FUNCCAT 772
#define MSG_MISC_FUNCCAT 773
#define MSG_IO_STANDARD_FORMAT_1_DESCR 774
#define MSG_IO_STANDARD_FORMAT_2_DESCR 775
#define MSG_ZOOM_OVERVIEW_GAD 776
#define MSG_OPEN_DOCUMENT_EVENT 777
#define MSG_CLOSE_DOCUMENT_EVENT 778
#define MSG_CELL_SELECTION_EVENT 779
#define MSG_INPUT_DONE_EVENT 780
#define MSG_TIME_EVENT 781
#define MSG_RECALC_EVENT 782
#define MSG_LEFT_MOUSE_BUTTON_EVENT 783
#define MSG_RIGHT_MOUSE_BUTTON_EVENT 784
#define MSG_SAVE_BACK_REQ 785
#define MSG_INTERACTIVE_MODE_HELP 786
#define MSG_EDIT_MODE_HELP 787
#define MSG_QUIT_BACK_REQ 788
#define MSG_PICTURE_CLASS_NAME 789
#define MSG_OBJECT_PROPERTIES_GAD 790
#define MSG_ADOPT_SIZE_OF_ORIGINAL_OBJECT_GAD 791
#define MSG_FILE_NAME_LABEL 792
#define MSG_ADOPT_SIZE_IN_PIXEL_GAD 793
#define MSG_KEEP_ASPECT_RATIO_GAD 794
#define MSG_CENTER_GAD 795
#define MSG_COLOR_RED_LABEL 796
#define MSG_COLOR_GREEN_LABEL 797
#define MSG_COLOR_BLUE_LABEL 798
#define MSG_COLOR_HUE_LABEL 799
#define MSG_COLOR_SATURATION_LABEL 800
#define MSG_COLOR_BRIGHTNESS_LABEL 801
#define MSG_DBASE_FIELD_STANDARD_GAD 802
#define MSG_DBASE_FIELD_REFERENCE_GAD 803
#define MSG_DBASE_FIELD_ENUM_GAD 804
#define MSG_DBASE_FIELD_COUNTER_GAD 805
#define MSG_TEXT_SEARCH 806
#define MSG_FOREGROUND_COLOR_SEARCH 807
#define MSG_BACKGROUND_COLOR_SEARCH 808
#define MSG_FORMAT_SEARCH 809
#define MSG_FONT_SEARCH 810
#define MSG_FONT_HEIGHT_SEARCH 811
#define MSG_FONT_STYLE_SEARCH 812
#define MSG_ALIGNMENT_SEARCH 813
#define MSG_VALIGNMENT_SEARCH 814
#define MSG_NOTE_SEARCH 815
#define MSG_INTERACTIVE_MODE_IN_NEW_DOCUMENT_REQ 816
#define MSG_RED_COLOR 817
#define MSG_ORANGE_COLOR 818
#define MSG_YELLOW_COLOR 819
#define MSG_GREEN_COLOR 820
#define MSG_TURQUOISE_COLOR 821
#define MSG_BLUE_COLOR 822
#define MSG_PURPLE_COLOR 823
#define MSG_WHITE_COLOR 824
#define MSG_BRIGHT_GRAY_COLOR 825
#define MSG_GRAY_COLOR 826
#define MSG_DARK_GRAY_COLOR 827
#define MSG_BLACK_COLOR 828
#define MSG_PIGGY_PINK_COLOR 829
#define MSG_BROWN_COLOR 830
#define MSG_QUIT_SAVE_AND_QUIT_REQ 831
#define MSG_QUIT_SAVE_AND_QUIT_CANCEL_REQ 832
#define MSG_TEXT_COLOR_LABEL 833
#define MSG_BRIGHT_EDGES_LABEL 834
#define MSG_DARK_EDGES_LABEL 835
#define MSG_CHECKED_COLOR_LABEL 836
#define MSG_CHECKED_GAD 837
#define MSG_TEXT_PLACEMENT_LABEL 838
#define MSG_PLACE_RIGHT_GAD 839
#define MSG_PLACE_LEFT_GAD 840
#define MSG_AREA_OUTLINE_GAD 841
#define MSG_PSEUDO_3D_GAD 842
#define MSG_FIRST_COLOR_LABEL 843
#define MSG_SECOND_COLOR_LABEL 844
#define MSG_DIRECTION_LABEL 845
#define MSG_RECESSED_LABEL 846
#define MSG_DOUBLE_FRAME_LABEL 847
#define MSG_SAVE_SERIAL_NUMBER_ERR 848
#define MSG_SUPER_BUNDLE 849
#define MSG_SERIAL_NUMBER_LABEL 850
#define MSG_SERIAL_NUMBER_TITLE 851
#define MSG_SUPER_BUNDLE_WELCOME 852
#define MSG_INVALID_SERIAL_NUMBER_ERR 853
#define MSG_INVALID_SERIAL_NUMBER_TRY_AGAIN_ERR 854
#define MSG_INVALID_SERIAL_NUMBER_QUIT_ERR 855
#define MSG_UNREGISTERED 856
#define MSG_LITE_EDITION_CELL_LIMIT 857
#define MSG_INSERT_UGAD 858
#define MSG_IOTYPE_NO_DEFAULT_REQ 859
#define MSG_WARN_IOTYPE_NO_DEFAULT_GAD 860
#define CATCOMP_LASTID 860
#endif /* CATCOMP_NUMBERS */
/****************************************************************************/
#ifdef CATCOMP_STRINGS
#define MSG_GL_CONTEXT_ERR_STR "Could not create GL context."
#define MSG_DIAGRAM_PREFS_GAD_STR "Chart properties..."
#define MSG_DIAGRAM_TYPE_UNDO_STR "Change of chart type"
#define MSG_NO_BLOCK_ERR_STR "No block selected!"
#define MSG_CREATE_DIAGRAM_OBJ_STR "Create Chart"
#define MSG_EMPTY_FORMAT_STR "(none)"
#define MSG_INVALID_NAME_ERR_STR "Invalid name."
#define MSG_NAME_IN_USE_ERR_STR "Name already in use."
#define MSG_NO_MEMORY_FOR_NESTING_ERR_STR "No memory for this nesting level."
#define MSG_WRONG_TYPE_CALCERR_STR "Wrong type."
#define MSG_DIVISION_BY_ZERO_CALCERR_STR "Division by zero."
#define MSG_UNKNOWN_FUNCTION_CALCERR_STR "Unknown function."
#define MSG_WRONG_ARGS_COUNT_CALCERR_STR "Wrong number of arguments for function."
#define MSG_UNDEFINED_NAME_CALCERR_STR "Undefined name."
#define MSG_BAD_SYNTAX_CALCERR_STR "Bad syntax."
#define MSG_LOOP_CALCERR_STR "Bad reference in %s."
#define MSG_UNKNOWN_CALCERR_STR "Unknown error."
#define MSG_ALLOC_CELL_FAILED_ERR_STR "Could not allocate cell %s."
#define MSG_COPY_OBJECT_TO_PAGE_ERR_STR "The object in the clipboard could not be copied\nto this page because it references another document."
#define MSG_COPY_TO_CLIPBOARD_ERR_STR "Copy to clipboard failed:\n %s"
#define MSG_CUT_UNDO_STR "Cut"
#define MSG_DELETE_UNDO_STR "Delete"
#define MSG_CUT_DELETE_UNDO_ERR_STR "Cut/Delete"
#define MSG_GROUP_STR "Group"
#define MSG_NO_CELLS_SELECTED_ERR_STR "No cells selected."
#define MSG_NO_OBJECT_SELECTED_ERR_STR "No object selected."
#define MSG_INSERT_OBJECTS_UNDO_STR "Insert object(s)"
#define MSG_INSERT_UNDO_STR "Insert"
#define MSG_LOAD_FROM_CLIPBOARD_ERR_STR "Load from clipboard failed:\n %s"
#define MSG_NO_PROJECT_CONTEXT_ERR_STR "%s:\nno project context."
#define MSG_COMMAND_IN_SCRIPT_ONLY_ERR_STR "%s:\nThis command can only be called within a script."
#define MSG_UNKNOWN_ERR_STR "unknown error"
#define MSG_CANNOT_EXECUTE_COMMAND_ERR_STR "Could not exectute command:\n %s\n\n%s"
#define MSG_PROTECTED_CELL_STR "This cell is protected against changes!"
#define MSG_UNKNOWN_FUNCTION_NAME_ERR_STR "Did not find function name!"
#define MSG_CHANGE_CELL_TEXT_UNDO_STR "Change cell text to "
#define MSG_CELL_TEXT_INPUT_UNDO_STR "Set cell text to "
#define MSG_DELETE_CELL_TEXT_UNDO_STR "Delete cell text"
#define MSG_PASSWORD_GAD_STR "Password:"
#define MSG_CANCEL_GAD_STR "Cancel"
#define MSG_OK_GAD_STR "Ok"
#define MSG_SECURITY_CHECK_TITLE_STR "Security Check"
#define MSG_WRONG_PASSWORD_ERR_STR "The password is not correct!"
#define MSG_FUNCTABLE_FUNCTION_NOT_FOUND_ERR_STR "Function table %s:\nCannot find function %s."
#define MSG_FUNCTABLE_FUNCTIONS_MISSING_ERR_STR "Function table %s:\nThe function set is not complete."
#define MSG_NO_FUNCTABLE_ERR_STR "Could not find a function table."
#define MSG_FUNCTABLE_ERR_STR "Could not create function table."
#define MSG_COLOR_STR "Color %ld"
#define MSG_CHOOSE_PAGE_HELP_STR "choose current page"
#define MSG_INPUT_FORMULA_HELP_STR "input formula"
#define MSG_FAST_FUNCTION_CHOOSER_HELP_STR "fast function choice"
#define MSG_FUNCTION_CHOOSER_HELP_STR "choose function"
#define MSG_CHOOSE_FONT_HELP_STR "choose font"
#define MSG_SET_FONT_SIZE_HELP_STR "set font size"
#define MSG_CHOOSE_FONT_SIZE_HELP_STR "choose font height"
#define MSG_SET_ZOOM_HELP_STR "set zoom level"
#define MSG_CHOOSE_ZOOM_HELP_STR "choose zoom level"
#define MSG_SET_TEXTPEN_HELP_STR "set text color of current cell(s)"
#define MSG_SET_BACKPEN_HELP_STR "set background color of current cell(s)"
#define MSG_PLAIN_FONT_HELP_STR "plain font style"
#define MSG_BOLD_FONT_HELP_STR "bold font style"
#define MSG_ITALICS_FONT_HELP_STR "italics font style"
#define MSG_UNDERLINED_FONT_HELP_STR "underline font"
#define MSG_ALIGN_LEFT_HELP_STR "align cell contents left"
#define MSG_ALIGN_CENTER_HELP_STR "center cell contents"
#define MSG_ALIGN_RIGHT_HELP_STR "align cell contents right"
#define MSG_VALIGN_TOP_HELP_STR "cell contents on top"
#define MSG_VALIGN_MIDDLE_HELP_STR "cell contents in the middle"
#define MSG_VALIGN_BOTTOM_HELP_STR "cell contents at the bottom"
#define MSG_FORMULA_GAD_STR "Formula:"
#define MSG_CHOOSE_GAD_STR "Choose..."
#define MSG_CREATE_PROJECT_ERR_STR "Could not create project"
#define MSG_UNSAVED_PREFERENCES_REQ_STR "The following preferences were not yet saved:%s"
#define MSG_PRINT_IN_PROGRESS_REQ_STR "There is a print process in progress.\nThe application cannot be quit now."
#define MSG_OPEN_CLASSES_PROGRESS_STR "Open classes"
#define MSG_SEARCH_FONTS_PROGRESS_STR "Search for fonts"
#define MSG_OPEN_MOUSE_POINTER_PROGRESS_STR "Open mouse cursor"
#define MSG_LOAD_PREFERENCES_PROGRESS_STR "Load preferences"
#define MSG_LOAD_SESSION_PROGRESS_STR "Load session"
#define MSG_NO_OUTLINE_FONTS_ERR_STR "Could not find any outline fonts."
#define MSG_LOAD_ICONS_PROGRESS_STR "Load icons"
#define MSG_AUTOSAVE_REQ_STR "The document \"%s\" has been changed during the last\n%ld minute(s), but it has not been saved yet."
#define MSG_CELL_TEXT_COLOR_HELP_STR "Text color of the current cell"
#define MSG_CELL_BACK_COLOR_HELP_STR "Background color of the current cell"
#define MSG_STATUS_MODE_HELP_STR "Status: %s mode"
#define MSG_BLOCK_POSITION_HELP_STR "Position of the current cell or the currently selected block"
#define MSG_CLOSE_WINDOW_QUIT_REQ_STR "The application will quit if you close this window."
#define MSG_LOAD_PROJECT_ERR_STR "Could not load project %s."