-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlang1.lfm
520 lines (520 loc) · 10.9 KB
/
lang1.lfm
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
object Form1: TForm1
Left = 89
Height = 629
Top = 114
Width = 606
Caption = 'langtool by (c) 2022 by paule32'
ClientHeight = 604
ClientWidth = 606
Color = clSilver
DesignTimePPI = 120
Menu = MainMenu1
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '2.2.2.0'
object StatusBar1: TStatusBar
Left = 0
Height = 29
Top = 575
Width = 606
Color = clCream
Panels = <
item
Text = 'Ready'
Width = 100
end
item
Width = 50
end>
ParentColor = False
SimplePanel = False
end
object Panel2: TPanel
Left = 15
Height = 285
Top = 67
Width = 579
ClientHeight = 285
ClientWidth = 579
TabOrder = 1
object BitBtn1: TBitBtn
Left = 16
Height = 30
Top = 8
Width = 96
Caption = 'Add'
OnClick = BitBtn1Click
TabOrder = 0
end
object BitBtn3: TBitBtn
Left = 131
Height = 30
Top = 8
Width = 84
Caption = 'Post'
OnClick = BitBtn3Click
TabOrder = 1
end
object Edit1: TEdit
Left = 240
Height = 28
Hint = 'Working Directory (user path)'
Top = 8
Width = 284
Color = clInfoBk
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'Edit1'
end
object SpeedButton1: TSpeedButton
Left = 534
Height = 28
Top = 8
Width = 29
Caption = '...'
Color = clSilver
OnClick = SpeedButton1Click
end
object BitBtn2: TBitBtn
Left = 16
Height = 30
Top = 48
Width = 96
Caption = 'Delete'
OnClick = BitBtn2Click
TabOrder = 3
end
object Edit5: TEdit
Left = 240
Height = 28
Hint = 'current working data base file'
Top = 48
Width = 176
Color = clInfoBk
ParentShowHint = False
ShowHint = True
TabOrder = 4
Text = 'Edit5'
end
object SpeedButton2: TSpeedButton
Left = 534
Height = 28
Top = 48
Width = 29
Caption = '...'
Color = clSilver
OnClick = SpeedButton2Click
end
object StringGrid1: TStringGrid
Left = 16
Height = 184
Top = 88
Width = 547
Anchors = [akTop, akLeft, akRight, akBottom]
Color = clInfoBk
Columns = <
item
Title.Caption = 'MSGID'
Width = 100
end
item
Title.Caption = 'ENG'
Width = 219
end
item
Title.Caption = 'DEU'
Width = 210
end
item
Title.Caption = 'RUS'
Width = 210
end
item
Title.Caption = 'POL'
Width = 210
end>
FixedColor = clGradientActiveCaption
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goSmoothScroll]
RowCount = 1
TabOrder = 5
TitleFont.Style = [fsBold]
OnEditingDone = StringGrid1EditingDone
OnKeyDown = StringGrid1KeyDown
ColWidths = (
100
219
210
210
210
)
end
object BitBtn4: TBitBtn
Left = 440
Height = 30
Top = 46
Width = 84
Caption = 'Back-Up'
OnClick = BitBtn4Click
TabOrder = 6
end
end
object Panel3: TPanel
Left = 15
Height = 208
Top = 360
Width = 581
ClientHeight = 208
ClientWidth = 581
TabOrder = 2
object CheckGroup1: TCheckGroup
Left = 8
Height = 134
Top = 16
Width = 207
Anchors = [akLeft, akBottom]
AutoFill = True
Caption = ' Output: '
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.VerticalSpacing = 10
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 109
ClientWidth = 203
Color = clSilver
Font.Color = clBlack
Font.Style = [fsBold]
Items.Strings = (
'ENG - EN'
'DEU - DE'
'RUS - RU'
'POL - PO'
)
ParentBackground = False
ParentFont = False
ParentColor = False
TabOrder = 2
Data = {
0400000002020202
}
end
object Label2: TLabel
Left = 224
Height = 20
Top = 16
Width = 94
Anchors = [akLeft, akBottom]
Caption = '.MO - Output :'
ParentColor = False
end
object Edit2: TEdit
Left = 224
Height = 28
Hint = '.mo output file (excluding lang. initials (-en, -de, ...)'
Top = 43
Width = 208
Anchors = [akLeft, akBottom]
Color = clInfoBk
ParentShowHint = False
ShowHint = True
TabOrder = 3
Text = 'Edit2'
end
object Label1: TLabel
Left = 224
Height = 20
Top = 80
Width = 89
Anchors = [akLeft, akBottom]
Caption = '.PO - Output :'
ParentColor = False
end
object Edit3: TEdit
Left = 224
Height = 28
Hint = '.po output file (excluding lang. initials (-en, -de, ...)'
Top = 104
Width = 208
Anchors = [akLeft, akBottom]
Color = clInfoBk
ParentShowHint = False
ShowHint = True
TabOrder = 4
Text = 'Edit3'
end
object Button2: TButton
Left = 440
Height = 31
Top = 40
Width = 119
Anchors = [akLeft, akBottom]
Caption = 'Create .po/.mo'
Font.Style = [fsBold]
OnClick = Button1Click
ParentFont = False
TabOrder = 5
end
object ProgressBar1: TProgressBar
Left = 10
Height = 20
Top = 168
Width = 549
Anchors = [akLeft, akBottom]
TabOrder = 6
end
object Edit4: TEdit
Left = 112
Height = 28
Top = 104
Width = 90
Anchors = [akLeft, akBottom]
Color = clInfoBk
MaxLength = 16
OnChange = Edit4Change
TabOrder = 1
end
object Button3: TButton
Left = 112
Height = 31
Top = 40
Width = 94
Anchors = [akLeft, akBottom]
Caption = 'Add Lang.'
Enabled = False
OnClick = Button3Click
TabOrder = 0
end
end
object Panel4: TPanel
Left = 608
Height = 285
Top = 67
Width = 584
Caption = 'Panel4'
ClientHeight = 285
ClientWidth = 584
Enabled = False
TabOrder = 3
Visible = False
object Label3: TLabel
Left = 24
Height = 20
Top = 16
Width = 128
Anchors = [akLeft, akBottom]
Caption = 'Project-ID-Version :'
ParentColor = False
end
object Label4: TLabel
Left = 24
Height = 20
Top = 56
Width = 159
Anchors = [akLeft, akBottom]
Caption = 'Report-Msgid-Bugs-To :'
ParentColor = False
end
object Label5: TLabel
Left = 24
Height = 20
Top = 96
Width = 133
Anchors = [akLeft, akBottom]
Caption = 'POT-Creation-Date :'
ParentColor = False
end
object Label6: TLabel
Left = 24
Height = 20
Top = 130
Width = 125
Anchors = [akLeft, akBottom]
Caption = 'PO-Revision-Date :'
ParentColor = False
end
object Label7: TLabel
Left = 24
Height = 20
Top = 164
Width = 104
Anchors = [akLeft, akBottom]
Caption = 'Last-Translator :'
ParentColor = False
end
object Label8: TLabel
Left = 24
Height = 20
Top = 198
Width = 114
Anchors = [akLeft, akBottom]
Caption = 'Language-Team :'
ParentColor = False
end
object Label9: TLabel
Left = 24
Height = 20
Top = 240
Width = 96
Anchors = [akLeft, akBottom]
Caption = 'Content-Type :'
ParentColor = False
end
object Edit6: TEdit
Left = 200
Height = 28
Top = 15
Width = 284
Color = clInfoBk
TabOrder = 0
Text = 'Edit6'
end
object Edit7: TEdit
Left = 200
Height = 28
Top = 50
Width = 284
Color = clInfoBk
TabOrder = 1
Text = 'Edit7'
end
object Edit8: TEdit
Left = 200
Height = 28
Top = 88
Width = 284
Color = clInfoBk
TabOrder = 2
Text = 'Edit8'
end
object Edit9: TEdit
Left = 200
Height = 28
Top = 128
Width = 284
Color = clInfoBk
TabOrder = 3
Text = 'Edit9'
end
object Edit10: TEdit
Left = 200
Height = 28
Top = 164
Width = 284
Color = clInfoBk
TabOrder = 4
Text = 'Edit10'
end
object Edit11: TEdit
Left = 200
Height = 28
Top = 198
Width = 284
Color = clInfoBk
TabOrder = 5
Text = 'Edit11'
end
object Edit12: TEdit
Left = 200
Height = 28
Top = 232
Width = 284
Color = clInfoBk
TabOrder = 6
Text = 'Edit12'
end
end
object Panel6: TPanel
Left = 15
Height = 48
Top = 8
Width = 577
Caption = 'Panel6'
ClientHeight = 48
ClientWidth = 577
TabOrder = 4
object Button4: TButton
Left = 16
Height = 32
Top = 8
Width = 94
Caption = 'Messages'
Font.Style = [fsBold]
OnClick = Button4Click
ParentFont = False
TabOrder = 0
end
object Button5: TButton
Left = 131
Height = 32
Top = 8
Width = 86
Caption = 'Settings'
Font.Style = [fsBold]
OnClick = Button5Click
ParentFont = False
TabOrder = 1
end
object Edit13: TEdit
Left = 240
Height = 28
Hint = 'Tool Directory (msgfmt.exe)'
Top = 11
Width = 284
Color = clInfoBk
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'Edit13'
end
object SpeedButton3: TSpeedButton
Left = 536
Height = 28
Top = 8
Width = 29
Caption = '...'
Color = clSilver
OnClick = SpeedButton3Click
end
end
object MainMenu1: TMainMenu
Left = 192
Top = 224
object MenuItem1: TMenuItem
Caption = 'File'
object MenuItem3: TMenuItem
Caption = 'Open DataBase file'
OnClick = MenuItem3Click
end
object MenuItem4: TMenuItem
Caption = 'Save DataBase file'
OnClick = MenuItem4Click
end
object N1: TMenuItem
Caption = '-'
end
object MenuItem2: TMenuItem
Caption = 'Exit'
OnClick = MenuItem2Click
end
end
end
object Dbf1: TDbf
DateTimeHandling = dtDateTime
Exclusive = True
FilePath = 'G:\Projekte\docma\test\'
IndexDefs = <>
ShowDeleted = True
TableName = 'podata.dbf'
TableLevel = 7
FilterOptions = []
Left = 104
Top = 224
end
end