forked from OpenTM2/opentm2-source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EQFLIST.MRI
executable file
·314 lines (213 loc) · 11.6 KB
/
EQFLIST.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
//+----------------------------------------------------------------------------+
//|EQFLIST.MRI |
//+----------------------------------------------------------------------------+
//|Copyright Notice: |
//| |
//| Copyright (C) 1990-2016, International Business Machines |
//| Corporation and others. All rights reserved |
//+----------------------------------------------------------------------------+
//|Author: Gerhard Queck (QSoft) |
//| |
//+----------------------------------------------------------------------------+
//|Description: |
//| MRI of list handler and list handler dialogs. |
//+----------------------------------------------------------------------------+
//|To be done / known limitations / caveats: |
//| |
//+----------------------------------------------------------------------------+
////////////////////////////////////////////////////////////////////////////////
// String used in list window //
////////////////////////////////////////////////////////////////////////////////
// Title of list window
#define STR_LST_TITLE "Terminology Lists"
// The following strings are used in the list type combo listbox
// Name for exclusion list type
#define STR_LST_EXCL_NAME "Exclusion List"
// Name for new terms list type
#define STR_LST_NTL_NAME "New Terms List"
// Name for noise word list type
#define STR_LST_NOISE_NAME "Noise List"
// Name for found terms list type
#define STR_LST_FTL_NAME "Found Terms List"
// Name for exclusion list title
#define STR_LST_EXCL_TITLE "Exclusion Lists"
// Name for new terms list title
#define STR_LST_NTL_TITLE "New Terms Lists"
// Name for noise word list title
#define STR_LST_NOISE_TITLE "Noise Lists"
// Name for found terms list title
#define STR_LST_FTL_TITLE "Found Terms Lists"
// The following strings are the column headings of the list listbox
// Heading for drive column
#define STR_LST_DRIVE_HDR "Drive"
// Heading for name column
#define STR_LST_NAME_HDR "Name"
// Heading for size column
#define STR_LST_SIZE_HDR "Size"
// Heading for last update in date format
// Note: The word(s) in brackets are not displayed in the column heading,
// but in the select details list only
#define STR_LST_UPD1_HDR "Updated [Date]"
// Heading for last update in date/time format
// Note: The word(s) in brackets are not displayed in the column heading,
// but in the select details list only
#define STR_LST_UPD2_HDR "Updated [Date+Time]"
////////////////////////////////////////////////////////////////////////////////
// Strings of list export dialog panel //
////////////////////////////////////////////////////////////////////////////////
// format group box
#define STR_LISTEXP_FORMAT_GB "Format"
//export into sgml format outside the system
#define STR_LISTEXP_EXTERNAL_RB "External"
//export list to another drive in the internal format
#define STR_LISTEXP_MAT_RB "OpenTM2"
//export list to another drive in the user format
#define STR_LISTEXP_USER_RB "User"
//label for entry field containing name of list for export
#define STR_LISTEXP_EXPORT_TEXT "Export:"
//destination group box label
#define STR_LISTEXP_TO_GB "To"
//label for the entry field containing name of sgml file into which the list
//is exported
#define STR_LISTEXP_NAME_TEXT "Name:"
//label of the current directory field
#define STR_LISTEXP_CURDIR_TEXT "Current directory:"
//label of the directories list box
#define STR_LISTEXP_DIR_TEXT "Directories"
//export pushbutton triggers the export list function
#define STR_LISTEXP_EXPORT_PB "&Export"
//export list cancel pushbutton
#define STR_LISTEXP_CANCEL_PB "Cancel"
//export list help pushbutton
#define STR_LISTEXP_HELP_PB "Help"
//name of the dialog which appears as titel of the dialog
#define STR_LISTEXP_DLG "Export List"
////////////////////////////////////////////////////////////////////////////////
// Strings of list Import dialog panel //
////////////////////////////////////////////////////////////////////////////////
//list import title bar
#define STR_LISTIMP_DLG "Import List"
//format group box text
#define STR_LISTIMP_FORMAT_GB "Format"
//external radio button
#define STR_LISTIMP_EXTERNAL_RB "External"
//internal radio button
#define STR_LISTIMP_MAT_RB "OpenTM2"
//import in user format radio button
#define STR_LISTIMP_USER_RB "User"
//import group box text for external format
#define STR_LISTIMP_IMPORTEXT_GB "From"
//import group box text for internal format
#define STR_LISTIMP_IMPORTINT_GB "From"
//import group box text for user format
#define STR_LISTIMP_IMPORTUSER_GB "From"
//name of file for import
#define STR_LISTIMP_FILENAME_TEXT "Name:"
//label of the current directory field
#define STR_LISTIMP_CURDIR_TEXT "Current directory:"
// heading of directory listbox in external or user format mode
#define STR_LISTIMP_DIR_LB_TITLE "Directories"
// heading of directory listbox in MAT format mode (listbox is used for lists)
#define STR_LISTIMP_LIST_LB_TITLE "Lists"
//text to indicate files
#define STR_LISTIMP_FILES_TEXT "Files"
//text adjacent to combo box with destination list
#define STR_LISTIMP_TO_TEXT "To list:"
//text on first pushbutton
#define STR_LISTIMP_OK_PB "&Import"
//text on second pushbutton
#define STR_LISTIMP_CANCEL_PB "Cancel"
//text on third pushbutton
#define STR_LISTIMP_HELP_PB "Help"
////////////////////////////////////////////////////////////////////////////////
// Strings of work with lists dialog panel //
////////////////////////////////////////////////////////////////////////////////
// title bar text of work with lists dialog for new term lists
// %1 is replaced with the name of the list
#define STR_LSTWORK_NTL_TITLE_TEXT "Work with New Terms List: %1"
// title bar text of work with lists dialog for found term lists
// %1 is replaced with the name of the list
#define STR_LSTWORK_FTL_TITLE_TEXT "Work with Found Terms List: %1"
// Text in front of view icons/buttons
#define STR_LISTMARK_VIEW "View:"
#define STR_LISTWORK_MKALL_PB "All"
#define STR_LISTWORK_MKNOT_PB ""
#define STR_LISTWORK_UNMARK_PB "&Unmark"
#define STR_LISTWORK_DELMARK_PB "Mark for &delete"
#define STR_LISTWORK_DICTMARK_PB "&Mark for dictionary..."
#define STR_LISTWORK_EXCLMARK_PB "Mark for e&xclusion list"
#define STR_LISTWORK_SAVE_PB "&Save"
#define STR_LISTWORK_PROCMARK_PB "&Process"
#define STR_LISTWORK_CANCEL_PB "Cancel"
#define STR_LISTWORK_HELP_PB "Help"
////////////////////////////////////////////////////////////////////////////////
// Strings of mark for dictionary dialog //
////////////////////////////////////////////////////////////////////////////////
#define STR_LISTMARK_DLG "Mark Term for Dictionary"
#define STR_LISTMARK_TERM "Term:"
#define STR_LISTMARK_TRANS_TEXT "Translation:"
#define STR_LISTMARK_CONTEXT_CHK "Add context to dictionary entry"
#define STR_LISTMARK_DICT_TEXT "Dictionary"
#define STR_LISTMARK_MARK_PB "&Mark"
#define STR_LISTMARK_SKIP_PB "&Skip"
#define STR_LISTMARK_CANCEL_PB "Cancel"
#define STR_LISTMARK_HELP_PB "Help"
////////////////////////////////////////////////////////////////////////////////
// Strings of list edit dialog //
////////////////////////////////////////////////////////////////////////////////
// dialog title text for open of exclusion lists; %1 = list name
#define STR_LSTEDIT_EXCLTITLE_TEXT "Edit Exclusion List: %1"
// dialog title text for open of noise lists; %1 = list name
#define STR_LSTEDIT_NOISETITLE_TEXT "Edit Noise List: %1"
// dialog title text for create of exclusion lists
#define STR_LSTNEW_EXCLTITLE_TEXT "New Exclusion List"
// dialog title text for create of noise lists
#define STR_LSTNEW_NOISETITLE_TEXT "New Noise List"
// edit box titles
#define STR_LISTEDIT_TEXT_ABBREV1 "User abbreviations"
#define STR_LISTEDIT_TEXT_ABBREV2 "System abbreviations"
// label for save-to combobox
#define STR_LISTEDIT_SAVETO_TEXT "Save to:"
// label for save-to combobox
#define STR_LISTEDIT_NAME_TEXT "Name:"
// label of save pushbutton
#define STR_LISTEDIT_SAVE_PB "&Save"
// label of save pushbutton
#define STR_LISTEDIT_CREATE_PB "&Create"
// label of cancel pushbutton
#define STR_LISTEDIT_CANCEL_PB "Cancel"
// label of help pushbutton
#define STR_LISTEDIT_HELP_PB "Help"
////////////////////////////////////////////////////////////////////////////////
// Strings for list print function //
////////////////////////////////////////////////////////////////////////////////
// title of exclusion list printout; %1 = name of list
#define STR_LISTPRINT_EXCL_TITLE "Exclusion List: %1"
// title of noise list printout; %1 = name of list
#define STR_LISTPRINT_NOISE_TITLE "Noise List: %1"
// title of new terms list printout; %1 = name of list
#define STR_LISTPRINT_NTL_TITLE "New Terms List: %1"
// title of found terms list printout; %1 = name of list
#define STR_LISTPRINT_FTL_TITLE "Found Terms List: %1"
////////////////////////////////////////////////////////////////////////////////
// Strings for list export dialog //
////////////////////////////////////////////////////////////////////////////////
// title of exclusion list export
#define STR_LSTEXP_EXCL_TITLE_TEXT "Export Exclusion List"
// title of noise list export
#define STR_LSTEXP_NOISE_TITLE_TEXT "Export Noise List"
// title of new terms list export
#define STR_LSTEXP_NTL_TITLE_TEXT "Export New Terms List"
// title of found terms list export
#define STR_LSTEXP_FTL_TITLE_TEXT "Export Found Terms List"
////////////////////////////////////////////////////////////////////////////////
// Strings for list import dialog //
////////////////////////////////////////////////////////////////////////////////
// title of exclusion list import
#define STR_LSTIMP_EXCL_TITLE_TEXT "Import Exclusion List"
// title of noise list import
#define STR_LSTIMP_NOISE_TITLE_TEXT "Import Noise List"
// title of new terms list import
#define STR_LSTIMP_NTL_TITLE_TEXT "Import New Terms List"
// title of found terms list import
#define STR_LSTIMP_FTL_TITLE_TEXT "Import Found Terms List"