forked from OpenTM2/opentm2-source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EQFB.MRI
executable file
·1517 lines (1393 loc) · 72.5 KB
/
EQFB.MRI
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
//+----------------------------------------------------------------------------+
//|EQFB.MRI |
//+----------------------------------------------------------------------------+
//|Copyright Notice: |
//| |
//| Copyright (C) 1990-2016, International Business Machines |
//| Corporation and others. All rights reserved |
//+----------------------------------------------------------------------------+
// Text of AAB items
///// Mnemonics will be set dynamically through the program
///// Actionbar Item File
#define STR_TB_AAB_FILE "&File"
///// File Pulldown Item Next file in ring
#define STR_TB_AAB_LOADDOC "&Translation Environment"
///// File Pulldown Item Next file in ring
#define STR_TB_AAB_NEXT "&Next"
///// File Pulldown Item Open new file
#define STR_TB_AAB_OPEN "&Open..."
///// File Pulldown Item Save file
#define STR_TB_AAB_SAVE "&Save"
///// File Pulldown Item Save As dialog
#define STR_TB_AAB_SAVEAS "Save &As..."
///// File Pulldown Item Print file
#define STR_TB_AAB_PRINT "&Print..."
///// File Pulldown Item Quit file
#define STR_TB_AAB_QUIT "&Quit"
///// File Pulldown Item Save and Quit file
#define STR_TB_AAB_END "&End-Save"
///// Actionbar Item Edit
#define STR_TB_AAB_EDIT "&Edit"
///// Edit Pulldown Item Activate Find dialog
#define STR_TB_AAB_FIND "&Find and Replace..."
///// Edit Pulldown Item Activate Concordance Search dialog
#define STR_TB_AAB_CONFIND "&Concordance search..."
///// Edit Pulldown Item Clipboard operation Cut
#define STR_TB_AAB_CUT "Cu&t"
///// Edit Pulldown Item Clipboard operation Copy
#define STR_TB_AAB_COPY "&Copy"
///// Edit Pulldown Item Clipboard operation Paste
#define STR_TB_AAB_PASTE "&Paste"
///// Edit Pulldown Item Delete marked area
#define STR_TB_AAB_CLEAR "C&lear"
///// Edit Pulldown Item Undo Changes in Current segment
#define STR_TB_AAB_UNDO "&Undo"
///// Edit Pulldown Item Redo UNDOne changes
#define STR_TB_AAB_REDO "&Redo"
///// Edit Pulldown Item Unmark marked block
#define STR_TB_AAB_UNMARK "Un&mark Block"
///// Edit Pulldown Item Split line
#define STR_TB_AAB_SPLIT "&Split Line"
///// Edit Pulldown Item Join line
#define STR_TB_AAB_JOIN "&Join Line"
///// Edit Pulldown Item Activate line wrap
#define STR_TB_AAB_WRAP "Line &Wrap"
///// Edit Pulldown Item reflow segment
#define STR_TB_AAB_REFLOW "&Reflow Segment"
///// Edit Pulldown Item copy proposal block
#define STR_TB_AAB_COPYPROPBLOCK "C&opy Proposal Block"
///// Actionbar Item Options
#define STR_TB_AAB_OPTIONS "&Options"
///// Option Pulldown Item Activate Colors dialog
#define STR_TB_AAB_COLORS "&Colors..."
///// Option Pulldown Item Activate Font Size dialog
#define STR_TB_AAB_FONTS "&Fonts..."
///// Option Pulldown Item Activate Key Assignments dialog
#define STR_TB_AAB_KEYS "&Keys..."
///// Option Pulldown Item Activate Margins dialog
#define STR_TB_AAB_MARGINS "&Margin..."
///// Option Pulldown Item Activate Test Sentence dialog
#define STR_TB_AAB_TEST "&Sentence Lookup..."
///// Option Pulldown Item Activate Exec. Command dialog
#define STR_TB_AAB_COMMAND "C&ommands..."
///// Option Pulldown Item Activate Exec. Command dialog
#define STR_TB_AAB_SETTINGS "&Profile Settings..."
///// Option Pulldown Item Activate Exec. Command dialog
#define STR_TB_AAB_PROFINIT "Profile &Initials..."
///// Option extended Font dialog
#define STR_TB_AAB_FONTEXT "&Fonts..."
/* dalia (start) */
///// Option Pulldown Item Arabic DCF
#ifndef _WINDOWS
#define STR_TB_AAB_ARABICDCF "&Arabic DCF..."
#endif
/* dalia (end) */
///// Actionbar Item Cursor
#define STR_TB_AAB_CURSOR "Cu&rsor"
///// Cursor Pulldown Item Find mark
#define STR_TB_AAB_CFIND "&Find block"
///// Cursor Pulldown Item Top of document
#define STR_TB_AAB_CTOP "&Top"
///// Cursor Pulldown Item Bottom of document
#define STR_TB_AAB_CBOTTOM "&Bottom"
///// Cursor Pulldown Item Start of line
#define STR_TB_AAB_CSTARTLINE "&Start of Line"
///// Cursor Pulldown Item End of line
#define STR_TB_AAB_CENDLINE "&End of Line"
///// Cursor Pulldown Item Start of segment
#define STR_TB_AAB_CSTARTSEG "St&art of Segment"
///// Cursor Pulldown Item End of segment
#define STR_TB_AAB_CENDSEG "E&nd of Segment"
///// Cursor Pulldown Goto line
#define STR_TB_AAB_GOTOLINE "&Go To Line..."
///// Cursor Pulldown Goto segment
#define STR_TB_AAB_GOTOSEG "Go To Segment..."
///// Cursor Pulldown Query line
#define STR_TB_AAB_QUERYLINE "&Query Line"
///// Cursor Pulldown table of contents Goto
#define STR_TB_AAB_TOCGOTO "S&pecial Go To ..."
///// Actionbar Item Translate
#define STR_TB_AAB_TRANSLATE "&Translate"
///// Translate Pulldown Item Translate Segment
#define STR_TB_AAB_TTSEG "&Translate Segment"
///// Translate Pulldown Item Next Untranslated Segment
#define STR_TB_AAB_TTNEXTSEG "&Next Untranslated Segment"
#define STR_TB_AAB_TTNEXTSEG_ANY "&Any"
#define STR_TB_AAB_TTNEXTSEG_EXACT "With &EXACT match"
#define STR_TB_AAB_TTNEXTSEG_FUZZY "With &FUZZY match"
#define STR_TB_AAB_TTNEXTSEG_NONE "With &NO match"
#define STR_TB_AAB_TTNEXTSEG_MT "With &MT match"
#define STR_TB_AAB_TTNEXTSEG_GLOBAL "With &GLOBAL MEMORY match"
///// Translate Pulldown Item Untranslate Segment
#define STR_TB_AAB_TTUNSEG "&Untranslate Segment"
///// Translate Pulldown Item Dictionary Lookup
#define STR_TB_AAB_TLOOKUP "&Look Up a Term..."
///// Translate Pulldown Item Activate Dictionary Window
#define STR_TB_AAB_TDICT "&3) Dictionary Window"
///// Translate Pulldown Item Activate Translation Memory window
#define STR_TB_AAB_TMEM "&2) Translation Memory Window"
///// Translate Pulldown Item Display original
#define STR_TB_AAB_TORG "&4) Original Window"
///// Translate Pulldown Item Goto Active Segment
#define STR_TB_AAB_TACTIVE "&Go To Active Segment"
///// Translate Pulldown Item Join Segments
#define STR_TB_AAB_TJOIN "&Join Segments"
///// Translate Pulldown Item Split Joined Segments
#define STR_TB_AAB_TSPLIT "&Split Joined Segments"
///// Translate Pulldown Item Mark Segment for later review
#define STR_TB_AAB_TMARK "Set &Bookmark"
///// Translate Pulldown Item goto Marked Segment
#define STR_TB_AAB_TGOMARK "Go To Boo&kmark"
///// Translate Pulldown Item clear Segment mark
#define STR_TB_AAB_TCLEARMARK "&Clear Bookmark"
///// Translate Pulldown Item Post Edit
#define STR_TB_AAB_TPOSTEDIT "&Postediting"
///// Translate Pulldown Item Automatic Translation
#define STR_TB_AAB_TAUTOMATIC "&Automatic Substitution"
///// Translate Pulldown Item Edit a Term in Dictionary
#define STR_TB_AAB_EDITTERM "&Edit a Term..."
///// Translate Pulldown Item Add an Abbreviation
#define STR_TB_AAB_ADDABBREV "Add an User Abbreviation"
///// Translate Pulldown Item Edit Abbreviations
#define STR_TB_AAB_EDITABBREV "Edit User Abbreviations..."
///// Translate Pulldown Item Edit Addenda terms
#define STR_TB_AAB_EDITADD "Edit Addendum Terms..."
///// Translate Pulldown Item Show translation
#define STR_TB_AAB_SHOWTRANS "Show Translation"
// settings for 'Tailor' popup...
#define STR_TB_TAILOR "Tailor"
#define STR_TB_SC_HORZ "Horizontal"
#define STR_TB_SC_VERT "Vertical"
#define STR_TB_SC_TITLE "Titlebar"
#define STR_TB_SC_CLOSE "Close"
#define STR_TB_SC_SIZE "Size"
#define STR_TB_SC_MOVE "Move"
#define STR_TB_SC_STATUS "Statusbar"
#define STR_TB_SC_RULER "Ruler"
#define STR_TB_AAB_SPELL "S&pellcheck"
#define STR_TB_AAB_PROOFSEG "&Segment..."
#define STR_TB_AAB_PROOFALL "&File..."
#define STR_TB_AAB_SYNONYM "S&ynonyms"
#define STR_TB_AAB_AUTOSPELL "&Auto Spellcheck"
#define STR_TB_AAB_NEXTMISSPELL "&Next Misspelled"
#define STR_TB_AAB_IGNORE "Ignore All"
#define STR_TB_AAB_ADDENDA "Add Addenda"
#define STR_TB_SPELL_NO_PROP "No Aid Available"
#define STR_TB_AAB_GOUPDSEGMENT "Next Updated"
// statusbar settings
// Column indication (limited to 7 chars)
#define STR_TB_STB_COL "Col"
// Line indication (limited to 7 chars)
#define STR_TB_STB_LINE "Ln"
// segment indication (limited to 7 chars)
#define STR_TB_STB_SEGMENT "Seg"
// Cursor in insert mode (limited to 7 chars)
#define STR_TB_STB_INSERT "Ins"
// File loading statusbar message -- don't translate %d%%
#define STR_TB_STB_LOADING "Loading ... %d%%"
///// Actionbar Item Style
#define STR_TB_AAB_STYLE "Sty&le"
///// Style Pulldown Item Protect tags
#define STR_TB_AAB_SPROTECT "&Protect"
///// Style Pulldown Item unProtect tags
#define STR_TB_AAB_SUNPROTECT "&Unprotect"
///// Style Pulldown Item hide tags
#define STR_TB_AAB_SHIDE "&Hide"
///// Style Pulldown Item shrink tags
#define STR_TB_AAB_SSHRINK "&Shrink"
///// Style Pulldown Item hide tags
#define STR_TB_AAB_SCOMPACT "&Compact"
///// Style Pulldown Item shorten tags
#define STR_TB_AAB_SSHORTEN "C&ompact+1"
//// Style WYSIWYG
#define STR_TB_AAB_SWYSIWYG "W&ysiwyg"
///// Window Pulldown
#define STR_TB_AAB_WINDOW "&Window"
#define STR_TB_AAB_TTRANS "&1) Translation Window"
#define STR_TB_AAB_TSRCPROP "&5) Source of Proposal Window"
#define STR_TB_AAB_TSEGPROP "&6) Segment Properties Window"
///// Actionbar Item Help
#define STR_TB_AAB_HELP "&Help"
#ifdef TOP97_A52
///// Titlebar for Translation window
#define STR_TB_TRANS_WINDOW "Translation: %1"
///// Titlebar for Original window
#define STR_TB_ORIGINAL_WINDOW "Original: %1"
#else
///// Titlebar for Translation window
#define STR_TB_TRANS_WINDOW "Translation"
///// Titlebar for Original window
#define STR_TB_ORIGINAL_WINDOW "Original"
#endif
//////////////////////////////////////////////////////////////
///// dialogs for Translation Processor
/////////////////////////////////////////////////////////////
//// Pushbuttons used through out the system
/////////////////////////////////////////////////////////////
/// Change pushbutton
#define STR_TB_PB_CHANGE "&Change"
/// Defaults pushbutton
#define STR_TB_PB_DEFAULTS "&Defaults"
#define STR_TB_PB_DEFAULT "&Default"
/// Cancel pushbutton
#define STR_TB_PB_CANCEL "Cancel"
/// Cancel pushbutton
#define STR_TB_PB_GOTO "&Go to"
/// Help pushbutton
#define STR_TB_PB_HELP "Help"
/// Set pushbutton
#define STR_TB_PB_SET "&Set"
/// Assign pushbutton
#define STR_TB_PB_ASSIGN "&Assign"
/// Find pushbutton
#define STR_TB_PB_FIND "&Find"
/// Open pushbutton
#define STR_TB_PB_OPEN "&Open"
/// Push button for Look Up the translation memory and dictionary
#define STR_TB_PB_LOOKUP "&Lookup"
/// Push button for Execute command
#define STR_TB_PB_EXECUTE "&Run"
/// Print pushbutton
#define STR_TB_PB_PRINT "P&rint..."
/////////////////////////////////////////////////////////////
// Set color dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_COLFONT_COLORFONT "Set Colors"
/// different type of available text units
#define STR_TB_COLFONT_TYPEOFTEXT "Type of text"
/// available colors - static text
#define STR_TB_COLFONT_COLOR "Color"
/// different available foreground colors -- static text
#define STR_TB_COLFONT_FOREGROUND "Foreground"
/// different available background colors -- static text
#define STR_TB_COLFONT_BACKGROUND "Background"
/// different available font attributes - Underscored, Reverse
#define STR_TB_COLFONT_ATTRIBUTE "Attribute"
/// different available font
#define STR_TB_COLFONT_FONT "Font"
/// different display types ( underscored, reverse) -- radio button
#define STR_TB_COLFONT_UNDERSCORE "Underscore"
/// different display types ( underscored, reverse) -- radio button
#define STR_TB_COLFONT_REVERSE "Reverse"
/// sample text title
#define STR_TB_COLFONT_TEXT "Sample text"
/// sample text - displayed in the selected font and colors
// restricted length : 40 characters
/* dalia (start) */
#define STR_TB_AR_COLFONT_SAMPLETEXT " ¥µõõ ¹+ Õ - Sample Text - ¥µõõ ¹+ Õ"
#define STR_TB_COLFONT_SAMPLETEXT "Sample Text - Sample Text - Sample Text"
/* dalia (end) */
/////////////////////////////////////////////////////////////
// Assign keys dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_ASSKEYS_ASSIGNKEYS "Assign Keys"
/// descriptive text
#define STR_TB_ASSKEYS_FUNCANDKEYS "Functions and assigned key"
/// Pushbutton for clearing a key setting
#define STR_TB_ASSKEYS_CLEARKEYS "C&lear key"
/// Pushbutton for assigning a new key
#define STR_TB_ASSKEYS_ASSIGNKEY "Assign &new key"
// Add for R012027 start
#define STR_TB_ASSKEYS_ADDNEWCHAR "Add New &Character"
#define STR_TB_ASSKEYS_EDITCHAR "&Edit Character"
#define STR_TB_ASSKEYS_REMOVECHAR "&Remove Character"
#define STR_TITLE_INSERT_CHAR "Insert character:"
#define STR_SPEC_CHAR_DLG_TITLE "Add New Character"
#define STR_SPEC_CHAR_DLG_TITLE_E "Edit Character"
#define STR_SPEC_CHAR_DLG_TITLE_D "Remove Character"
#define STR_BTN_IDOK_ADD "Add Character"
#define STR_BTN_IDOK_EDIT "Update"
#define STR_TITLE_INSERT_CHAR_W L"Insert char:"
#define STR_INSERT_CHAR "Insert char:"
#define STR_ERR_DUP_CHAR "The new added character is duplicated, please check."
#define STR_ERR_EMPTY_STR "Character or unicode is not allowed empty, please check."
#define STR_TB_VK_NONE_W L"* none *"
#define STR_WARN_REMOVE_CONFIRM "Do you really want to remove the character?"
// Add end
/// Text displayed when user is asked to press the key for
/// the selected function
#define STR_TB_ASSKEYS_KEYTEXT "Press the new key to be assigned to the function"
/// Static text for header of Key Setting print out
/// (length 40 chars)
#define STR_TB_ASSKEYS_HEADER " OpenTM2 Key Assignments"
/// Title of print job for printing of key settings
#define STR_TB_ASSKEYS_PRTJOB "Key Settings"
/// Title for print job for printing file
#define STR_TB_PRINTFILE_PRTJOB "Folder: %s Document: %s"
/////////////////////////////////////////////////////////////
// Spellcheck dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_SPELL_TITLE "Spellcheck"
/// do nothing with the current misspelled word
/// if it occurs again, display it to user as usual
#define STR_TB_SPELL_SKIP "&Skip"
/// Pushbutton to add the detected misspelled word
/// in a temporary addenda and do no changes to this word
#define STR_TB_SPELL_TEMPADD "&Temp add"
/// add to addenda
#define STR_TB_SPELL_ADDENDA "&Addendum"
/// misspelled word:
#define STR_TB_SPELL_MISSPELL "Misspelled word"
/// changed word
#define STR_TB_SPELL_CHANGE "Change to"
/// list of similar words
#define STR_TB_SPELL_SIMILAR "Similar words"
/////////////////////////////////////////////////////////////
// Find dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_FIND_TITLE "Find and Replace"
/// text preceding the entry field for entering the search term
#define STR_TB_FIND_FIND "Find:"
/// text preceding the entry field for entering the change into term
#define STR_TB_FIND_CHANGE "Change to:"
/// mode of search (Case sensitive or not) -- title text
#define STR_TB_FIND_CASE "Case"
/// mode of search (Case sensitive ) -- radio button
#define STR_TB_FIND_RESPECT "Respect"
/// mode of search (Case insensitive ) -- radio button
#define STR_TB_FIND_IGNORE "Ignore"
/// direction of search (forward/backward) -- title text
#define STR_TB_FIND_DIRSEARCH "Direction"
/// direction of search (forward ) -- radio button
#define STR_TB_FIND_FORWARD "Forward"
/// direction of search (backward ) -- radio button
#define STR_TB_FIND_BACKWARD "Backward"
/// change range -- title text
#define STR_TB_FIND_RANGE "Change range"
/// range of change (until end ) -- radio button
#ifdef TOP97_A53
#define STR_TB_FIND_CURPOSTOEND "File"
#else
#define STR_TB_FIND_CURPOSTOEND "Current position to end"
#endif
/// range of change (in segment only) -- radio button
#define STR_TB_FIND_SEGONLY "Within segment only"
/// confirm on change -- check box
#define STR_TB_FIND_CONFIRM "Confirm on changes"
/////////////////////////////////////////////////////////////
// Open dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_OPEN_TITLE "Open"
/// file type either normal text file or Troja document
#define STR_TB_OPEN_FILETYPE "File type"
/// Troja document
#define STR_TB_OPEN_TROJADOC "TM document"
/// text file
#define STR_TB_OPEN_TEXTDOC "Text file"
/// if Troja document then Source or Target is possible -- radio button
/// Source document
#define STR_TB_OPEN_TROJASOURCE "Original"
/// Target document
#define STR_TB_OPEN_TROJATARGET "Translation"
/// Select the drive of the document -- title text (length 40 chars)
#define STR_TB_OPEN_DRIVES "Disk drive"
/// Static text for name of normal text files -- title text for listbox
/// (length 40 chars)
#define STR_TB_OPEN_NAME "Name:"
/// Static text for Troja documents -- title text for listbox contents
/// (length 40 chars)
#define STR_TB_OPEN_DOCNAME "Document name"
/// Static text for Troja Folders -- title text for listbox contents
/// (length 40 chars)
#define STR_TB_OPEN_FOLDERS "Folders"
/// Static text for Troja Documents -- title text for listbox contents
/// (length 40 chars)
#define STR_TB_OPEN_DOCUMENTS "Documents"
/// Static text for file directories -- title text for listbox contents
/// (length 40 chars)
#define STR_TB_OPEN_DIRECTORIES "Directories"
/// Static text for files -- title text for listbox contents
/// (length 40 chars)
#define STR_TB_OPEN_FILES "Files"
/////////////////////////////////////////////////////////////
// Entry dialog for test sentences
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_ENTRY_TITLE "Sentence Lookup"
/// Text displayed to inform user what he has to enter
#define STR_TB_ENTRY_STATIC "Enter the sentence to be looked up"
/////////////////////////////////////////////////////////////
// Set Right margin dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_MARGIN_TITLE "Set Margin"
/// Text in front of the entry field where to enter right margin
#define STR_TB_MARGIN_STATIC "Right margin:"
/// Text afteer the entry field where to enter right margin
#define STR_TB_CHARACTER_STATIC "characters"
/////////////////////////////////////////////////////////////
// Select font size
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_FONTSIZE_TITLE "Set Fonts"
/// Listbox containing all different window types - title text
#define STR_TB_FONTSIZE_WINDOW "Window"
/// Listbox containing the different fonts - title text
#define STR_TB_FONTSIZE_FONT "Font"
/// Listbox containing all different font sizes - title text
#define STR_TB_FONTSIZE_SIZE "Font size"
/// sample text - displayed as title
#define STR_TB_FONTSIZE_TEXT "Sample text"
/////////////////////////////////////////////////////////////
// Goto Line dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_GOTO_TITLE "Go to Line"
/// Text in front of the entry field where to enter the line
#define STR_TB_GOTO_STATIC "Line number:"
/////////////////////////////////////////////////////////////
// Profile 1 dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_PROFONE_TITLE "Customize Translation Functions"
/// text for what to do in dialog
#define STR_TB_PROFONE_TODO_STATIC "Select the functions to be active:"
/// text for group of style abbreviations
#define STR_TB_PROFONE_STYLEABBR "Style abbreviations"
#ifdef TOP97_A50
/// text for shrink abbreviation
#define STR_TB_PROFONE_SHRINK_STATIC "Shrink style abbreviation"
/// text for compact abbreviation
#define STR_TB_PROFONE_COMPACT_STATIC "Compact style abbreviation"
#else
/// text for shrink abbreviation
#define STR_TB_PROFONE_SHRINK_STATIC "Shrink"
/// text for compact abbreviation
#define STR_TB_PROFONE_COMPACT_STATIC "Compact"
#endif
#define STR_TB_PROFONE_TRNOTE_STATIC "Note"
/// text for listbox: automatic replace in fuzzy matches
#define STR_TB_PROFONE_AUTOREPL "Automatic replace in fuzzy matches"
/// text for listbox: backspace goes across lines
#define STR_TB_PROFONE_CUABACK "Backspace across line boundaries"
/// text for listbox: abbreviate source in translation memory wnd
#define STR_TB_PROFONE_DISPSRC "Abbreviate Translation Memory proposal"
/// text for listbox: toggle to insert mode when activating a segment
#define STR_TB_PROFONE_AUTOINSMODE "Set insert mode for activate segment"
/// text for listbox: Insert proposal if insert mode active
#define STR_TB_PROFONE_INSPROP "Insert proposal if insert mode is active"
/// text for listbox: Automatic insert of SO/SI
#define STR_TB_PROFONE_INSSOSI "Automatic insert of SO/SI characters"
/// text for listbox: Interrupt automatic translation at a none-match
#define STR_TB_PROFONE_AUTOSTOP "Interrupt automatic substitution"
/// text for listbox: Check for changed tags if saving a segment
#define STR_TB_PROFONE_CHECKTAGS "Check for changes of inline tags"
/// text for listbox: Display the message 'fuzzy proposal unchanged'
#define STR_TB_PROFONE_MSGPROPEQ "Suppress messages 'Fuzzy proposal unchanged' and 'MT proposal unchanged'"
/// text for listbox: Display the message 'Source unchanged'
#define STR_TB_PROFONE_MSGSRCEQ "Suppress message 'Source unchanged'"
/// text for listbox: ignore CRLF for exact matches
// #define STR_TB_PROFONE_IGNCRLF "Ignore CRLF for exact matches"
/// text for listbox: display source of proposals window always
#define STR_TB_PROFONE_SRCPROPWND "Display 'Source of Proposal' window"
/// text for listbox: display number of existing proposals
#define STR_TB_PROFONE_NUMPROPS "Number of Proposals"
/// text for listbox: display filename of which the proposal is
#define STR_TB_PROFONE_ORIGINPROP "Document of Proposal"
/// text for listbox: display date when proposal was translated
#define STR_TB_PROFONE_DATEOFPROP "Date of Proposal"
/// text for listbox: display additional information for dictionary terms
#define STR_TB_PROFONE_ADDINFODIC "Information for dictionary terms"
/// text for listbox: use latest exact match
#define STR_TB_PROFONE_USELATESTMATCH "Use latest exact match when more than one found"
/// text for listbox: Use NO CUA selection
#define STR_TB_PROFONE_USENOCUASEL "Use no CUA selection"
/// text for listbox: display all dictionary matches of all dictionaries
#define STR_TB_PROFONE_ALLDICTTERMS "Dictionary terms of all dictionaries"
/// text for listbox: use exact context memory matches during auto subst
#define STR_TB_PROFONE_EXACTCONTEXTMATCH "Use exact context match when more than one found"
/// text for listbox: segment boundary sign in postedit
#define STR_TB_PROFONE_SEGBOUNDSIGN "Segment boundary sign in post edit"
/// text for listbox: dictionary name indicator near dictionary entry
#define STR_TB_PROFONE_DISPDICTNAME "Dictionary indicator"
/// text for combobox for style of memory window
#define STR_TB_PROFONE_DISPMTALWAYS "Display MT match always"
/// text for combobox for style of memory window
#define STR_TB_PROFONE_TMWND_STATIC "Translation Memory window"
/// text for active line number
#define STR_TB_PROFONE_ACTLINE_STATIC "Line number for active segment"
/// text for right margin
#define STR_TB_PROFONE_RMARGIN_STATIC "Right margin"
/// text for proposal window style protect
#define STR_TB_PROFONE_PROTECTED "Protect"
/// text for proposal window style hide
#define STR_TB_PROFONE_HIDE "Hide"
/// text for proposal window style - compact
#define STR_TB_PROFONE_COMPACT "Compact"
/// text for proposal window style - shorten
#define STR_TB_PROFONE_SHORTEN "Compact+1"
/// text for automatic linewrap margin
#define STR_TB_PROFONE_AUTO "Auto"
/// text for save file each xxx minutes
#define STR_TB_PROFONE_AUTOSAVE "Save translated file every"
#define STR_TB_PROFONE_MINUTE "minutes"
#define STR_TB_PROFONE_AUTOSUBST "Substitution of exact matches"
#define STR_TB_PROFONE_VISIBLESPACE "Visible white spaces"
/// text for listbox: display additional information for dictionary terms
#define STR_TB_PROFONE_LKUPSINGLEOFCOMPOUNDS "Show single words of compound terms in auto-lookup"
/////////////////////////////////////////////////////////////
// Profile 2 dialog
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_PROFTWO_TITLE "Set Initial Values"
/// text for what to do in dialog
#define STR_TB_PROFTWO_TODO_STATIC "Select the values to be initially active:"
/// Text for style group
#define STR_TB_PROFTWO_INITSTYLE "Style"
/// text for spin button for style of translation window
#define STR_TB_PROFTWO_TRANSWND_STATIC "Translation window"
/// text for spin button for style of memory window
#define STR_TB_PROFTWO_TMWND_STATIC "Translation Memory window"
/// text for linewrap on/off
#define STR_TB_PROFTWO_LINEWRAP "Line wrap"
/// text for cursor insert on/off
#define STR_TB_PROFTWO_CRSINSERT "Cursor insert mode"
/// text for active line number
#define STR_TB_PROFTWO_ACTLINE_STATIC "Line number for active segment"
/// text for right margin
#define STR_TB_PROFTWO_RMARGIN_STATIC "Right margin"
/// text for spinbutton - protected
#define STR_TB_PROFTWO_PROTECTED "Protect"
/// text for spinbutton - unprotected
#define STR_TB_PROFTWO_UNPROTECTED "Unprotect"
/// text for spinbutton - hide
#define STR_TB_PROFTWO_HIDE "Hide"
/// text for spinbutton - shrink
#define STR_TB_PROFTWO_SHRINK "Shrink"
/// text for spinbutton - compact
#define STR_TB_PROFTWO_COMPACT "Compact"
/////////////////////////////////////////////////////////////
// Command dialog for execute commands
/////////////////////////////////////////////////////////////
/// title bar text
#define STR_TB_COMMAND_TITLE "Run Command"
/// Text displayed to inform user what he has to enter
#define STR_TB_COMMAND_STATIC "Functions available"
/////////////////////////////////////////////////////////////
// available fonts
/////////////////////////////////////////////////////////////
/// default font -- length 40 chars
#define STR_TB_FONT_DEFAULT "Default"
/// italic font -- length 40 chars
#define STR_TB_FONT_ITALIC "Italic"
/// bold font -- length 40 chars
#define STR_TB_FONT_BOLD "Bold"
/// small caps font -- length 40 chars
#define STR_TB_FONT_SMALLCAPS "Small caps"
/////////////////////////////////////////////////////////////
// available colors
/////////////////////////////////////////////////////////////
/// color black -- length 40 chars
#define STR_TB_COL_BLACK "Black"
/// color blue -- length 40 chars
#define STR_TB_COL_BLUE "Blue"
/// color green -- length 40 chars
#define STR_TB_COL_GREEN "Green"
/// color cyan -- length 40 chars
#define STR_TB_COL_CYAN "Cyan"
/// color red -- length 40 chars
#define STR_TB_COL_RED "Red"
/// color pink -- length 40 chars
#define STR_TB_COL_PINK "Pink"
/// color brown -- length 40 chars
#define STR_TB_COL_BROWN "Brown"
/// color light grey -- length 40 chars
#define STR_TB_COL_LGREY "Light grey"
/// color grey -- length 40 chars
#define STR_TB_COL_GREY "Dark grey"
/// color light blue -- length 40 chars
#define STR_TB_COL_LBLUE "Light blue"
/// color light green -- length 40 chars
#define STR_TB_COL_LGREEN "Light green"
/// color light cyan -- length 40 chars
#define STR_TB_COL_LCYAN "Light cyan"
/// color light red -- length 40 chars
#define STR_TB_COL_LRED "Light red"
/// color light pink -- length 40 chars
#define STR_TB_COL_LPINK "Light pink"
/// color yellow -- length 40 chars
#define STR_TB_COL_YELLOW "Yellow"
/// color white -- length 40 chars
#define STR_TB_COL_WHITE "White"
/////////////////////////////////////////////////////////////
// available objects to be colored
// like color of active segment, already translated segment, etc.
/////////////////////////////////////////////////////////////
/// not used at the moment -- length 40 chars
#define STR_TB_COL_EXIT ""
/// translated segment -- length 40 chars
#define STR_TB_COL_XLATED "(TM) - Translated segment"
/// active segment -- length 40 chars
#define STR_TB_COL_ACTIVE "(T) - Active segment"
/// not translated segment -- length 40 chars
#define STR_TB_COL_TOBE "(TMO) - Not translated segment"
/// protected segment -- length 40 chars
#define STR_TB_COL_NOP "(TOI) - Protected segment"
/// protected in translated segment -- length 40 chars
#define STR_TB_COL_P_XLATED "(TM) - Protected in translated segment"
/// protected in active segment -- length 40 chars
#define STR_TB_COL_P_ACTIVE "(T) - Protected in active segment"
/// protected in not translated segment -- length 40 chars
#define STR_TB_COL_P_TOBE "(TMOI) - Protected in not translated text"
/// protected in protected segment -- length 40 chars
#define STR_TB_COL_P_NOP "(TOI) - Protected in protected segment"
/// source of proposal -- NOT USED ANY MORE
#define STR_TB_COL_SRV_PROPSRCINS "(MS) - Source inserted"
/// source of proposal prefix -- length 40 chars
#define STR_TB_COL_SRV_PROP0PREFIX "(MS) - Source prefix 0"
/// proposal text -- NOT USED ANY MORE
#define STR_TB_COL_SRV_PROPSRCDEL "(MS) - Source deleted"
/// proposal text prefix -- length 40 chars
#define STR_TB_COL_SRV_PROPNPREFIX "(MS) - Translation prefix n"
/// dictionary head word -- length 40 chars
#define STR_TB_COL_SRV_DICTHEAD "(D) - Headword"
/// dictionary translation -- length 40 chars
#define STR_TB_COL_SRV_DICTTRANS "(D) - Translation"
/// dictionary prefix -- length 40 chars
#define STR_TB_COL_SRV_DICTPREFIX "(D) - Prefix"
/// color if source equal -- length 40 chars
#define STR_TB_COL_SRV_PROPSRCEQU "(MS) - Source equal"
/// color for source unequal -- length 40 chars
#define STR_TB_COL_SRV_PROPSRCUNEQU "(MS) - Source modified"
/// color for unprotected tag -- length 40 chars
#define STR_TB_COL_ACTIVE_TAG "(T) - Unprotected in active segment"
/// color for anchor, toggle col 1 -- length 40 chars
#define STR_TB_COL_ITM_ANCHOR_1 "(I) - Connected segment 1 "
/// color for anchor, toggle col 2 -- length 40 chars
#define STR_TB_COL_ITM_ANCHOR_2 "(I) - Connected segment 2 "
/// color for anchor toggle col 3 -- length 40 chars
#define STR_TB_COL_ITM_ANCHOR_3 "(I) - Connected segment 3 "
/// color for unaligned target -- length 40 chars
#define STR_TB_COL_ITM_VALID_01 "(I) - Unaligned target segment"
/// color for unaligned source -- length 40 chars
#define STR_TB_COL_ITM_VALID_10 "(I) - Unaligned source segment"
/// color for aligned, toggle col 1 -- length 40 chars
#define STR_TB_COL_ITM_VALID_11_1 "(I) - Aligned segment 1"
/// color for aligned, toggle col 2 -- length 40 chars
#define STR_TB_COL_ITM_VALID_11_2 "(I) - Aligned segment 2"
/// color for aligned, toggle col 3 -- length 40 chars
#define STR_TB_COL_ITM_VALID_11_3 "(I) - Aligned segment 3"
/// color for crossed out segment -- length 40 chars
#define STR_TB_COL_ITM_CROSSED_OUT "(I) - Ignored segment "
/// color for nop anchor, toggle col 1 -- length 40 chars
#define STR_TB_COL_ITM_NOP_ANCHOR_1 "(I) - Synchronized markup 1"
/// color for nop anchor, toggle col 2 -- length 40 chars
#define STR_TB_COL_ITM_NOP_ANCHOR_2 "(I) - Synchronized markup 2"
/// color for nop anchor, toggle col 3 -- length 40 chars
#define STR_TB_COL_ITM_NOP_ANCHOR_3 "(I) - Synchronized markup 3"
/// color for visual active -- length 40 chars
#define STR_TB_COL_ITM_VISACT "(I) - Active segment"
/// color for overcrosssing user anchor-- length 40 chars
#define STR_TB_COL_ITM_OVERCROSS "(I) - Overcrossed connection"
/// additional dictionary info -- length 40 chars
#define STR_TB_COL_ADDINFO "(D) - Additional information"
/// TRNOtes level one, 1st color -- length 40 chars
#define STR_TB_COL_TRNOTE_11 "(N) - Translators note 1st level 1"
/// TRNOtes level one, 2nd color -- length 40 chars
#define STR_TB_COL_TRNOTE_12 "(N) - Translators note 1st level 2"
/// TRNOtes level two -- length 40 chars
#define STR_TB_COL_TRNOTE_2 "(N) - Translators note 2nd level "
/// Dictionary indicator -- length 40 chars
#define STR_TB_COL_DICTINDIC "(D) - Dictionary indicator "
/// color for highlighting unmatching tag- length 40 chars
#define STR_TB_COL_UNMATCHTAG "(T) - Unmatched tag"
/// color for segment translated from scratch -- length 40 chars
#define STR_TB_COL_TFROMSCRATCH "(T) - Translated from scratch"
/// color for segment translated as modified proposal --length 40 chars
#define STR_TB_COL_TMODPROPOSAL "(T) - Translated as modified proposal"
/// color for segment translated as unmodified proposal- length 40 chars
#define STR_TB_COL_TCOPYPROPOSAL "(T) - Translated as proposal copy"
/// color for TRNOTE indicator/abbreviation in standard editor
#define STR_TB_COL_STANDARD_TRNOTE "(T) - Tag for Translators note"
#define STR_TB_COL_DICTSTYLEPREF "(D) - Dictionary style preferred"
#define STR_TB_COL_DICTSTYLENOT "(D) - Dictionary style not allowed"
/// color for machine match proposal
#define STR_TB_COL_MACH_NORMAL "(M) - Machine proposal"
/// color for protected in machine match proposal
#define STR_TB_COL_MACH_PROT "(M) - Protected in machine proposal"
/// color for fuzzy match proposal
#define STR_TB_COL_FUZZY_NORMAL "(M) - Fuzzy proposal"
/// color for protected in fuzzy match proposal
#define STR_TB_COL_FUZZY_PROT "(M) - Protected in fuzzy proposal"
/////////////////////////////////////////////////////////////
// available windows to be set font
/////////////////////////////////////////////////////////////
/// other document window -- length 40 chars
#define STR_TB_FONT_OTHER "Other documents"
/// source document window -- length 40 chars
#define STR_TB_FONT_SSOURCE "Original"
/// target document window -- length 40 chars
#define STR_TB_FONT_STARGET "Translation"
/// proposal window -- length 40 chars
#define STR_TB_FONT_SERVPROP "Translation Memory"
/// dictionary window -- length 40 chars
#define STR_TB_FONT_SERVDICT "Dictionary"
/// proposal source window -- length 40 chars
#define STR_TB_FONT_SERVSOURCE "Source of Translation Memory proposal"
/// ITM visualization source doc -- length 40 chars
#define STR_TB_FONT_VISSRC "ITM Source"
/// ITM visualization target doc -- length 40 chars
#define STR_TB_FONT_VISTGT "ITM Target"
/////////////////////////////////////////////////////////////
// available function names
// functions with empty strings will not be shown as selectable
// for keyboard assignement
//
/////////////////////////////////////////////////////////////
/// Activate translation memory window -- length 40 chars
#define STR_TB_FUNC_ACTPROP "Translation Memory window"
/// Scroll dictionary window down -- length 40 chars
#define STR_TB_FUNC_DICTDOWN "Scroll dictionary down"
/// Scroll dictionary window up -- length 40 chars
#define STR_TB_FUNC_DICTUP "Scroll dictionary up"
/// Scroll dictionary prefixes down -- length 40 chars
#define STR_TB_FUNC_DICTPFXDOWN "Scroll dictionary prefix down"
/// Scroll dictionary prefixes up -- length 40 chars
#define STR_TB_FUNC_DICTPFXUP "Scroll dictionary prefix up"
/// Backspace -- length 40 chars
#define STR_TB_FUNC_BACKSPACE "Backspace"
/// Back Tab -- length 40 chars
#define STR_TB_FUNC_BACKTAB "Tab backward"
/// Bottom of document -- length 40 chars
#define STR_TB_FUNC_BOTTOMDOC "Bottom"
/// Delete character -- length 40 chars
#define STR_TB_FUNC_DELETECHAR "Delete character"
/// Cursor down -- length 40 chars
#define STR_TB_FUNC_DOWN "Cursor down"
/// Cursor to end of line -- length 40 chars
#define STR_TB_FUNC_ENDLINE "End of line"
/// Cursor to end of segment -- length 40 chars
#define STR_TB_FUNC_ENDSEG "End of segment"
/// Nop for the moment -- length 40 chars
#define STR_TB_FUNC_ESCAPE ""
/// Save and end a file -- length 40 chars
#define STR_TB_FUNC_FILE "File"
/// Toggle cursor status -- length 40 chars
#define STR_TB_FUNC_INSTOGGLE "Insert toggle"
/// Insert a line -- length 40 chars
#define STR_TB_FUNC_INSERTLINE "Insert line"
/// Join a line -- length 40 chars
#define STR_TB_FUNC_JOINLINE "Join line"
/// Cursor movement left -- length 40 chars
#define STR_TB_FUNC_LEFT "Cursor left"
/// Toggle to next document -- length 40 chars
#ifdef TOP97_A52
#define STR_TB_FUNC_NEXTDOC ""
#else
#define STR_TB_FUNC_NEXTDOC "Next document"
#endif
/// Move cursor to next word -- length 40 chars
#define STR_TB_FUNC_NEXTWORD "Next word"
/// Nop function for the moment -- length 40 chars
#define STR_TB_FUNC_NOTHING ""
/// Scroll screen a page down -- length 40 chars
#define STR_TB_FUNC_PAGEDOWN "Scroll page down"
/// Scroll screen a page up -- length 40 chars
#define STR_TB_FUNC_PAGEUP "Scroll page up"
/// Activate previous document -- length 40 chars
#define STR_TB_FUNC_PREVDOC "Previous document"
/// Move to previous word with the cursor -- length 40 chars
#define STR_TB_FUNC_PREVWORD "Previous word"
/// Quit a document -- length 40 chars
#define STR_TB_FUNC_QUIT "Quit"
/// Move cursor to the right -- length 40 chars
#define STR_TB_FUNC_RIGHT "Cursor right"
/// Save a document -- length 40 chars
#define STR_TB_FUNC_SAVE "Save"
/// Scroll screen one line down -- length 40 chars
#define STR_TB_FUNC_SCROLLDOWN "Scroll down"
/// Scroll screen one line left -- length 40 chars
#define STR_TB_FUNC_SCROLLLEFT "Scroll left"
/// Scroll screen one line right -- length 40 chars
#define STR_TB_FUNC_SCROLLRIGHT "Scroll right"
/// Scroll screen one line up -- length 40 chars
#define STR_TB_FUNC_SCROLLUP "Scroll up"
/// Split line at cursor position -- length 40 chars
#define STR_TB_FUNC_SPLITLINE "Split line"
/// Move cursor to begin of line -- length 40 chars
#define STR_TB_FUNC_STARTLINE "Start of line"
/// Move cursor to start of segment -- length 40 chars
#define STR_TB_FUNC_STARTSEG "Start of segment"
/// Tab with cursor to next tabstop -- length 40 chars
#define STR_TB_FUNC_TAB "Tab forward"
/// Move cursor to begin of document -- length 40 chars
#define STR_TB_FUNC_TOPDOC "Top"
/// Truncate a segment at cursor position -- length 40 chars
#define STR_TB_FUNC_TRUNCSEG "Truncate segment"
/// Truncate a line at cursor position -- length 40 chars
#define STR_TB_FUNC_TRUNCATE "Truncate line"
/// Undo last changes -- length 40 chars
#define STR_TB_FUNC_UNDO "Undo"
/// Move cursor one line up -- length 40 chars
#define STR_TB_FUNC_UP "Cursor up"
/// Copy dictionary match -- key 'hard assigned'
/// therefore no string to be added here -- length 40 chars
#define STR_TB_FUNC_GETDICTMATCH ""
/// Copy proposal match -- key 'hard assigned'
/// therefore no string to be added here -- length 40 chars
#define STR_TB_FUNC_GETPROPMATCH ""
/// Scroll proposal down -- length 40 chars
#define STR_TB_FUNC_PROPDOWN "Scroll proposal down"
/// Scroll proposal up -- length 40 chars
#define STR_TB_FUNC_PROPUP "Scroll proposal up"
/// Save current segment and activate next -- length 40 chars
#define STR_TB_FUNC_TSEG "Translate segment"
/// Save current segment and activate next untranslated -- length 40 chars
#define STR_TB_FUNC_TSEGNEXT "Next untranslated segment "
#define STR_TB_FUNC_TSEGNEXT_EXACT "Next untranslated segment (EXACT match)"
#define STR_TB_FUNC_TSEGNEXT_FUZZY "Next untranslated segment (FUZZY match)"
#define STR_TB_FUNC_TSEGNEXT_NONE "Next untranslated segment (NO match)"
#define STR_TB_FUNC_TSEGNEXT_MT "Next untranslated segment (MT match)"
#define STR_TB_FUNC_TSEGNEXT_GLOBAL "Next untranslated segment (GLOBAL match)"
/// Start dictionary lookup -- length 40 chars
#define STR_TB_FUNC_DICTLOOK "Dictionary lookup"
/// Activate dictionary window -- length 40 chars
#define STR_TB_FUNC_ACTDIC "Dictionary window"
/// Join segments -- length 40 chars
#define STR_TB_FUNC_JOINSEG "Join segments"
/// split previously joined segments -- length 40 chars
#define STR_TB_FUNC_SPLITSEG "Split joined segments"
/// mark a segment for later revision -- length 40 chars
#define STR_TB_FUNC_MARKSEG "Set bookmark"
/// goto active segment -- length 40 chars
#define STR_TB_FUNC_GOTOSEG "Go to active segment"
/// goto next marked segment -- length 40 chars
#define STR_TB_FUNC_GOTOMARK "Go to bookmark"
/// clear a segment mark -- length 40 chars
#define STR_TB_FUNC_CLEARSEGMARK "Clear bookmark"
/// activate postedit mode -- length 40 chars
#define STR_TB_FUNC_POSTEDIT "Post editing"
/// activate automatic translation -- length 40 chars
#define STR_TB_FUNC_AUTOTRANS "Automatic substitution"
/// display the find dialog -- length 40 chars
#define STR_TB_FUNC_FIND "Find"
/// display the concordance search dialog -- length 40 chars
#define STR_TB_FUNC_CFIND "Concordance Search"
/// display the segment property dialog
#define STR_TB_FUNC_SEGPROP "Segment properties"
/// nop for the moment -- length 40 chars
#define STR_TB_FUNC_RFIND ""
/// nop for the moment -- length 40 chars
#define STR_TB_FUNC_RING ""
/// display the open dialog -- length 40 chars
#define STR_TB_FUNC_OPEN "Open"
/// cut marked text to clipboard -- length 40 chars
#define STR_TB_FUNC_CUT "Cut to clipboard"
/// copy marked text to clipboard -- length 40 chars
#define STR_TB_FUNC_COPY "Copy to clipboard"
/// paste text from clipboard -- length 40 chars
#define STR_TB_FUNC_PASTE "Paste from clipboard"
/// dummy functions for later use -- DO NOT CHANGE -- length 40 chars
#define STR_TB_FUNC_MARKNEXT ""
/// dummy functions for later use -- DO NOT CHANGE -- length 40 chars
#define STR_TB_FUNC_MARKPREV ""
/// display the Color dialog -- length 40 chars
#define STR_TB_FUNC_FONTS "Color and fonts dialog"
/// display the Keys dialog -- length 40 chars
#define STR_TB_FUNC_KEYS "Keys dialog"
/// display fuzzy matches even if an exact match wasfound
#define STR_TB_FUNC_ADDFUZZY "Display fuzzy matches "
/// Activate the original document -- length 40 chars
#define STR_TB_FUNC_DISPORG "Original window"
/// Hide the recognized tags -- length 40 chars
#define STR_TB_FUNC_HIDE "Hide tags"
/// Protect the recognized tags -- length 40 chars
#define STR_TB_FUNC_PROTECT "Protect tags"
/// UnProtect the recognized tags -- length 40 chars
#define STR_TB_FUNC_UNPROTECT "Unprotect tags"
/// Move cursor to begin of next line -- length 40 chars
#define STR_TB_FUNC_NEXTLINE "Next line"
/// Nop for the moment -- DO NOT CHANGE -- length 40 chars
#define STR_TB_FUNC_CHARACTER ""
/// Mark a block -- length 40 chars
#define STR_TB_FUNC_MARKBLOCK "Mark block"
/// Clear the marked area -- length 40 chars
#define STR_TB_FUNC_MARKCLEAR "Unmark block"
/// Delete the marked area -- length 40 chars
#define STR_TB_FUNC_MARKDELETE "Delete block"
/// Copy the marked area to the cursor pos -- length 40 chars
#define STR_TB_FUNC_MARKCOPY "Copy block"
/// Move the marked area to the cursor pos -- length 40 chars
#define STR_TB_FUNC_MARKMOVE "Move block"
/// Find the marked area -- length 40 chars
#define STR_TB_FUNC_MARKFIND "Find block"
/// Print a document -- length 40 chars
#define STR_TB_FUNC_PRINT "Print document"
/// Mark a segment -- length 40 chars
#define STR_TB_FUNC_MARKBLOCKSEG "Mark segment"
/// Nop for the moment -- DO NOT CHANGE -- length 40 chars
#define STR_TB_FUNC_MARKLEFT ""
/// Nop for the moment -- DO NOT CHANGE -- length 40 chars
#define STR_TB_FUNC_MARKRIGHT ""