summaryrefslogtreecommitdiff
path: root/tools/langpackmgr/Unit1.pas
blob: 05329e9287f10a3b8214b65e9fb3fa2a34e087ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
unit unit1;

interface

uses
  classes, sysutils, fileutil, forms, controls, graphics, dialogs, stdctrls,
  extctrls, CheckLst, Windows;

type

  { tform1 }

  tform1 = class(tform)
    button1: tbutton;
    button2: tbutton;
    button3: tbutton;
    button4: tbutton;
    Button5: TButton;
    Button6: TButton;
    Button7: TButton;
    CheckListBox1: TCheckListBox;
    Edit1: TEdit;
    Edit2: TEdit;
    Label1: TLabel;
    memo1: tmemo;
    memo2: tmemo;
    listbox: tlistbox;
    combobox1: tcombobox;
    combobox2: tcombobox;
    radiogroup1: tradiogroup;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
    procedure Button4Click(Sender: TObject);
    procedure Button5Click(Sender: TObject);
    procedure Button6Click(Sender: TObject);
    procedure Button7Click(Sender: TObject);
    procedure combobox1change(sender: tobject);
    procedure ComboBox2Change(Sender: TObject);
    procedure formcreate(sender: tobject);
    procedure FormResize(Sender: TObject);
    procedure listbox1click(sender: tobject);
    procedure listbox2click(sender: tobject);
    procedure stringview;
    procedure savestring;
    procedure stringlist;

  private
    { private declarations }
  public
    { public declarations }
  end;

var
  form1: tform1;

  view,locale: string;
  trlang,trline: TStringList;
  z,j,i,l:integer;
  sr:tsearchrec;
  res:integer;
  s:array[0..1,1..6000] of string;
  u:array[0..6000] of integer;
  first:string;
  filename:string;
  m:integer;
  sse:string;
implementation

{$r *.lfm}

{ tform1 }

procedure tform1.formcreate(sender: tobject);
  var sr:tsearchrec; res:integer;
begin
view:='english';
trlang:=TstringList.Create;
trline:=TstringList.Create;
begin
     res:=findfirst(extractfilepath(application.exename)+'*',faanyfile,sr);
     while res = 0 do
           begin
                if ((sr.attr and fadirectory)=fadirectory)
                and ((sr.name='.')or(sr.name='..')) then
                    begin res:=findnext(sr); continue; end;
                if ((sr.attr and fadirectory)=fadirectory)
                and (fileexists(extractfilepath(application.exename)+
                '/'+sr.name+'/=head=.txt')) and (sr.name<>'english') then
                     begin
                          ListBox.items.add(sr.name);
                          trlang.add(sr.name);
                     end;
                res:=findnext(sr);
           end;
     SysUtils.FindClose(sr);
     end;

     if (paramstr(1)='-r') then
    begin
         form1.caption:='Miranda NG Langpack Tools: Replacer';
         listbox.visible:=false;
         memo1.Visible:=false;
         memo2.Visible:=false;
         combobox1.visible:=false;
         combobox2.visible:=false;
         button1.visible:=false;
         button2.visible:=false;
         button3.visible:=false;
         button4.visible:=false;
         button7.visible:=false;
         label1.visible:=false;
         radiogroup1.visible:=false;
         edit1.visible:=true;
         edit2.visible:=true;
         button5.visible:=true;
         button6.visible:=true;
         checklistbox1.visible:=true;
    end;
end;

procedure tform1.FormResize(Sender: TObject);
begin
  combobox2.Left:=form1.Width-78;
  label1.left:=form1.Width-150;
  button1.Left:=form1.width-48;
  memo1.Width:=form1.Width-140;
  memo2.Width:=form1.Width-140;

  button1.top:=form1.Height-25;
  button2.top:=form1.Height-25;
  button3.top:=form1.Height-25;
  button4.top:=form1.Height-25;
  button7.top:=form1.Height-25;
  listbox.height:=form1.Height-42;

  memo1.Height:=Trunc((form1.Height-80)/2);
  memo2.Height:=Trunc((form1.Height-80)/2);
  memo2.top:=44+memo1.Height;

  edit1.width:=form1.width-105;
  edit2.width:=form1.width-105;
  button5.left:=form1.width-88;
  button6.left:=form1.width-88;
  checklistbox1.width:=form1.width-12;
  checklistbox1.height:=form1.height-68;

end;

procedure tform1.stringlist;
 var llist:TStringList;
  begin
  for i := 1 to 6000 do
         begin s[0,i]:='';s[1,i]:='';end;
       j:=0;
   lList:=TstringList.Create;
       lList.LoadFromFile(extractfilePath(application.exename)+'/english/'
       +combobox1.items[combobox1.itemindex]+'.txt');
       first:=lList[0];
       for i := 1 to lList.Count-1 do
           begin
             j:=j+1;
             s[0,j]:=lList[i];
           end;
          lList.LoadFromFile(extractfilePath(application.exename)+'/'
     +locale+'/'+combobox1.items[combobox1.itemindex]+'.txt');
       for z:= 1 to j do
         for i := 1 to lList.count-2 do
           if (copy(s[0,z],1,1)='[')and(s[0,z]=lList[i])
           and (copy(lList[i+1],1,1)<>'[')then
             s[1,z]:=lList[i+1];
       lList.free;
       form1.Caption:='Miranda NG Langpack Tools: Editor -'
       +locale+'\'+combobox1.items[combobox1.itemindex];
       filename:=combobox1.items[combobox1.itemindex];
       listbox.items.Clear;
       z:=0;
       for i := 1 to j do
         if ((copy(s[0,i],1,1)='[')and(s[1,i]='') and (radiogroup1.ItemIndex=0))
         or ((copy(s[0,i],1,1)='[')and (radiogroup1.ItemIndex=1))
         then
           begin
             u[z]:=i;
             z:=z+1;
             listbox.items.add(copy(s[0,i],2,length(s[0,i])-2));
         end;
  end;

procedure tform1.stringview;
  begin
   for i:=0 to combobox2.items.count-1 do
      if view=combobox2.Items[i] then
        combobox2.itemindex:=i;
    sse:=trline[combobox2.ItemIndex];
    m:=1;
    for i := 1 to length(sse)-1 do
        begin
          if copy(sse,i,2)='\n' then
          begin
            memo1.Lines.Add(copy(sse,m,i-m));
            m:=i+2;
          end;
        end;
    memo2.Lines.Clear;
    l:=listbox.itemindex;
    if m=1 then  memo1.Lines.Add(sse)
    else memo1.Lines.Add(copy(sse,m,length(sse)-m+2));
   if s[1,u[listbox.itemindex]]<>'' then
    begin
      m:=1;
      for i := 1 to length(s[1,u[listbox.itemindex]])-1 do
        begin
          if copy(s[1,u[listbox.itemindex]],i,2)='\n' then
          begin
            memo2.Lines.Add(copy(s[1,u[listbox.itemindex]],m,i-m));
            m:=i+2;
          end;
        end;
    if m=1 then  memo2.Lines.Add(s[1,u[listbox.itemindex]])
    else memo2.Lines.Add(copy(s[1,u[listbox.itemindex]],m,
    length(s[1,u[listbox.itemindex]])-m+2));
    end;
  end;

procedure tform1.savestring;
var sa:integer;
    begin
         s[1,u[l]]:='';
         for sa:=0 to memo2.Lines.Count-1 do
             begin
                  s[1,u[l]]:=s[1,u[l]]+memo2.Lines[sa];
                  if sa<>memo2.Lines.Count-1 then  s[1,u[l]]:=s[1,u[l]]+'\n';
             end;
    end;

procedure tform1.combobox1change(sender: tobject);
  var f:textfile;
begin
  if not FileExists(extractfilePath(application.exename)
      +'/'+locale+'/'+combobox1.items[combobox1.itemindex]+'.txt')
  then
      begin
           assignfile(f,extractfilePath(application.exename)
           +'/'+locale+'/'+combobox1.items[combobox1.itemindex]+'.txt');
           rewrite(f);
           closefile(f);
      end;
  stringlist;
  memo1.lines.clear;
  memo2.lines.clear;
end;

procedure tform1.ComboBox2Change(Sender: TObject);
begin
   view:=combobox2.Text;
  if (listbox.items.count>0) and (combobox1.items.count>0) then
       begin
     savestring;
     memo1.lines.Clear;
     memo2.lines.Clear;
     stringview;
       end;
end;

procedure tform1.Button1Click(Sender: TObject);
  var sList:TStringList;
begin
     savestring;
     memo1.lines.Clear;
     memo2.lines.Clear;
     sList:=TstringList.Create;
     sList.add(first);
     for i := 0 to j do
         begin
              if copy(s[0,i],1,1)=';' then sList.add(s[0,i]);
              if s[1,i]<>'' then
         begin
            sList.add(s[0,i]);
            sList.add(s[1,i]);
          end
        else
        if (copy(s[0,i],1,1)='[')and
        (fileexists(extractfilePath(application.exename)+'clearstring.ini'))then
          begin
          sList.add(s[0,i]);
          sList.add('');
          end;
      end;
  sList.SavetoFile(extractfilePath(application.exename)
  +'/'+locale+'/'+filename+'.txt');
  sList.free;
  stringlist;
end;

procedure tform1.Button2Click(Sender: TObject);
  var search:TStringList; q:integer;
begin
     search:=TstringList.Create;
     search.LoadFromFile(extractfilePath(application.exename)+
     '/'+locale+'/'+'Langpack_'+locale+'.txt');
     for q := 0 to listbox.items.Count-1 do
         for i := 1 to search.count-1 do
             if (s[0,u[q]]=search[i])and(copy(search[i+1],1,1)<>'[')then
                begin
                     s[1,u[q]]:=search[i+1];
                     break;
                end;
     search.free;
end;

procedure tform1.Button3Click(Sender: TObject);
begin
     memo2.lines:=memo1.lines;
end;

procedure tform1.Button4Click(Sender: TObject);
  var str:string; i:integer;
   begin
   str:='http://translate.google.com/?hl=&ie=yhgg#auto/';
   if  locale='belarusian' then str:=str+'be/';
   if  locale='bulgarian' then str:=str+'bg/';
   if  locale='chinese' then str:=str+'zh-CN/';
   if  locale='czech' then str:=str+'cs/';
   if  locale='dutch' then str:=str+'da/';
   if  locale='estonian' then str:=str+'et/';
   if  locale='french' then str:=str+'fr/';
   if  locale='german' then str:=str+'de/';
   if  locale='hebrew' then str:=str+'iw/';
   if  locale='hungarian' then str:=str+'hu/';
   if  locale='italian' then str:=str+'it/';
   if  locale='japanese' then str:=str+'ja/';
   if  locale='korean' then str:=str+'ko/';
   if  locale='norwegian' then str:=str+'no/';
   if  locale='polish' then str:=str+'pl/';
   if  locale='portuguese_br' then str:=str+'pt/';
   if  locale='russian' then str:=str+'ru/';
   if  locale='slovak' then str:=str+'sk/';
   if  locale='spanish' then str:=str+'es/';
   if  locale='turkish' then str:=str+'tr/';
   if  locale='ukrainian' then str:=str+'uk/';
   if combobox1.Text<>'english' then str:=str+listbox.items[listbox.itemindex]
   else     begin
            for i:=0 to memo1.Lines.Count-1 do
                begin
                     str:=str+memo1.Lines[i];
                     if i<memo1.Lines.Count-1 then str:=str+'+%0A+';
                end;
            end;
   ShellExecute(0, 'open',PChar(str), nil, nil, SW_SHOW);
end;

procedure tform1.Button5Click(Sender: TObject);
begin
  CheckListBox1.Items.clear;
  for i := 0 to trlang.Count-1 do
begin
  trline:=TstringList.Create;
  if fileexists(extractfilepath(application.exename)
  +trlang[i]+'/'+'=CORE=.txt') then
    begin
      trline.LoadFromFile(extractfilepath(application.exename)
      +trlang[i]+'/'+'=CORE=.txt');
      for j := 0 to trline.count-1 do
      if trline[j]=edit1.text then
        begin
          CheckListBox1.Items.Add(trlang[i]+'/'+'=CORE=.txt');
          break;
        end;
     end;
  trline.Free;

 res:=FindFirst(ExtractFilePath(Application.ExeName)+'/'
+trlang[i]+'/plugins/*.txt', faAnyFile, sr);
 while res = 0 do
    begin
      trline:=TstringList.Create;
      trline.LoadFromFile(extractfilepath(application.exename)
      +'/'+trlang[i]+'/'+'plugins/'+sr.name);
      for j := 0 to trline.count-1 do
        if trline[j]=edit1.text then
          begin
            CheckListBox1.Items.Add(trlang[i]+'/'+'plugins/'+sr.name);
            break;
          end;
      trline.free;
       res:=FindNext(sr);
    end;
     FindClose(res);

res:=FindFirst(ExtractFilePath(Application.ExeName)+'/'
+trlang[i]+'/weather/*.txt', faAnyFile, sr);
 while res = 0 do
    begin
      trline:=TstringList.Create;
      trline.LoadFromFile(extractfilepath(application.exename)
      +'/'+trlang[i]+'/'+'weather/'+sr.name);
      for j := 0 to trline.count-1 do
        if trline[j]=edit1.text then
          begin
            CheckListBox1.Items.Add(trlang[i]+'/'+'plugins/'+sr.name);
            break;
          end;
      trline.free;
       res:=FindNext(sr);
    end;
     FindClose(res);

end;
for i := 0 to CheckListBox1.Count-1 do
 CheckListBox1.Checked[i]:=true;
end;

procedure tform1.Button6Click(Sender: TObject);
begin
   for i := 0 to CheckListBox1.Count-1 do
 if CheckListBox1.Checked[i]=true then
 begin
    trline:=TstringList.Create;
    trline.LoadFromFile(extractfilepath(application.exename)
      +'/'+CheckListBox1.Items[i]);
    for j := 1 to trline.Count-1 do
      if trline[j]=edit1.text then  trline[j]:=edit2.text;
    trline.SaveToFile(extractfilepath(application.exename)
      +'/'+CheckListBox1.Items[i]);
 end;
end;

procedure tform1.Button7Click(Sender: TObject);
  var search:TStringList; r:integer;
begin
if (form1.caption<>'Miranda NG Langpack Tools: Editor')
then
   begin
if listbox.itemindex<listbox.items.Count-1 then listbox.itemindex:=listbox.ItemIndex+1;
 savestring;
               search:=tstringlist.Create;
               combobox2.items.clear;
               trline.Clear;
               combobox2.items.add('english');
               trline.add(copy(s[0,u[listbox.itemindex]],2,
               length(s[0,u[listbox.itemindex]])-2));
               for i:=0 to trlang.count-1 do
               begin
               if (fileexists(extractfilepath(application.exename)+
                    '/'+trlang[i]+'/'+filename+'.txt'))
               and(trlang[i]<>locale) then
                  begin
                    search.LoadFromFile(extractfilepath(application.exename)+
                    '/'+trlang[i]+'/'+filename+'.txt');
                   for r:=1 to search.Count-2 do
                    if (search[r]=s[0,u[listbox.itemindex]])
                    and (search[r+1]<>'')
                    and (search[r+1]<>'[')
                    and (search[r+1]<>';')
                    then begin
                    combobox2.items.add(trlang[i]);
                    trline.add(search[r+1]);
                    break;
                    end;
                  end;
               end;
               search.free;
               combobox2.itemindex:=0;
        memo1.lines.clear;
        memo2.lines.clear;
        stringview;
        memo2.setFocus();
   end;
end;

procedure tform1.ListBox1Click(sender: tobject);
var search:TStringList; r:integer;
begin
   if (form1.caption<>'Miranda NG Langpack Tools: Editor')
   then
      begin
        savestring;
               search:=tstringlist.Create;
               combobox2.items.clear;
               trline.Clear;
               combobox2.items.add('english');
               trline.add(copy(s[0,u[listbox.itemindex]],2,
               length(s[0,u[listbox.itemindex]])-2));
               for i:=0 to trlang.count-1 do
               begin
               if (fileexists(extractfilepath(application.exename)+
                    '/'+trlang[i]+'/'+filename+'.txt'))
               and(trlang[i]<>locale) then
                  begin
                    search.LoadFromFile(extractfilepath(application.exename)+
                    '/'+trlang[i]+'/'+filename+'.txt');
                   for r:=1 to search.Count-2 do
                    if (search[r]=s[0,u[listbox.itemindex]])
                    and (search[r+1]<>'')
                    and (search[r+1]<>'[')
                    and (search[r+1]<>';')
                    then begin
                    combobox2.items.add(trlang[i]);
                    trline.add(search[r+1]);
                    break;
                    end;
                  end;
               end;
               search.free;
               combobox2.itemindex:=0;
        memo1.lines.clear;
        memo2.lines.clear;
        stringview;
      end;
end;

procedure tform1.listbox2click(sender: tobject);
  var sr:tsearchrec; res:integer;
begin
  if form1.caption='Miranda NG Langpack Tools: Editor'
  then
    begin
      locale:=ListBox.items[listBox.itemindex];
      form1.caption:=form1.caption+': '+locale;
      ListBox.items.clear;
      combobox1.items.add('=CORE=');
      res:=findfirst(extractfilepath(application.exename)
      +'\english\plugins\*.txt', faanyfile, sr);
      while res = 0 do
            begin
                 combobox1.items.add('plugins\'+copy(extractfilename(sr.name),1,
                 length(extractfilename(sr.name))-4));
                 res:=findnext(sr);
            end;
      SysUtils.FindClose(sr);
      res:=findfirst(extractfilepath(application.exename)
      +'\english\weather\*.txt', faanyfile, sr);
      while res = 0 do
            begin
                 combobox1.items.add('weather\'+copy(extractfilename(sr.name),1,
                 length(extractfilename(sr.name))-4));
                 res:=findnext(sr);
            end;
      SysUtils.FindClose(sr);
      combobox1.itemindex:=0;
      stringlist;
      if (fileexists(extractfilePath(application.exename)+'/'+locale+'/'
      +'Langpack_'+locale+'.txt'))  then button2.Enabled:=true;
    end;

end;

end.