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
|
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.Buttons, ShellApi;
type
TForm1 = class(TForm)
ListBox1: TListBox;
Memo1: TMemo;
Memo2: TMemo;
Button1: TButton;
Button2: TButton;
Button3: TButton;
ComboBox1: TComboBox;
procedure ListBox12Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure ListBox1Click(Sender: TObject);
procedure langlist;
procedure fileslist;
procedure stringview;
procedure savestring;
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
locale:string;
z,j,i,qq,l:integer;
sr:tsearchrec;
res:integer;
s:array[0..1,1..6000] of string;
u:array[1..6000] of integer;
first:string;
filename:string;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
memo2.lines:=memo1.lines;
end;
procedure TForm1.Button2Click(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='duth' 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='herbrew' 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/';
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;
ShellExecute(0, 'open',PChar(str), nil, nil, SW_SHOW);
end;
procedure TForm1.Button3Click(Sender: TObject);
var sList:TStringList;
begin
savestring;
sList:=TstringList.Create;
sList.add(first);
for i := 1 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;
end;
sList.SavetoFile(extractfilePath(application.exename)
+'/'+locale+'/'+filename+'.txt',TEncoding.UTF8);
sList.free;
end;
procedure tform1.fileslist;
begin
ListBox1.Items.Add('=CORE=');
Res:=FindFirst(ExtractFilePath(Application.ExeName)
+'\english\plugins\*.txt', faAnyFile, SR);
while Res = 0 do
begin
listBox1.Items.Add('plugins\'+copy(extractfilename(SR.Name),1,
length(extractfilename(SR.Name))-4));
Res:=FindNext(SR);
end;
FindClose(SR);
Res:=FindFirst(ExtractFilePath(Application.ExeName)
+'\english\weather\*.txt', faAnyFile, SR);
while Res = 0 do
begin
listBox1.Items.Add('weather\'+copy(extractfilename(SR.Name),1,
length(extractfilename(SR.Name))-4));
Res:=FindNext(SR);
end;
FindClose(SR);
end;
procedure tform1.langlist;
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
ListBox1.Items.Add(SR.name);
Res:=FindNext(SR);
end;
FindClose(SR);
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.stringview;
var
im,m:integer;
sse:string;
begin
sse:=copy(s[0,u[listbox1.itemindex]],2,
length(s[0,u[listbox1.itemindex]])-2);
m:=1;
for im := 1 to length(sse)-1 do
begin
if copy(sse,im,2)='\n' then
begin
memo1.Lines.Add(copy(sse,m,im-m));
m:=im+2;
end;
end;
memo2.Lines.Clear;
l:=listbox1.itemindex;
if m=1 then memo1.Lines.Add(sse)
else memo1.Lines.Add(copy(sse,m,length(sse)-m+2));
if s[1,u[listbox1.itemindex]]<>'' then
begin
m:=1;
for im := 1 to length(s[1,u[listbox1.itemindex]])-1 do
begin
if copy(s[1,u[listbox1.itemindex]],im,2)='\n' then
begin
memo2.Lines.Add(copy(s[1,u[listbox1.itemindex]],m,im-m));
m:=im+2;
end;
end;
if m=1 then memo2.Lines.Add(s[1,u[listbox1.itemindex]])
else memo2.Lines.Add(copy(s[1,u[listbox1.itemindex]],m,
length(s[1,u[listbox1.itemindex]])-m+2));
end;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
langlist;
qq:=0;
end;
procedure TForm1.ListBox1Click(Sender: TObject);
begin
if qq=0 then
begin
if listbox1.itemindex<>-1 then
begin
memo1.Lines.Clear;
memo1.Lines.LoadFromFile(extractfilePath(application.exename)
+'/'+listbox1.items[listbox1.itemindex]+'/=HEAD=.txt');
end;
end;
if (qq=2) and (listbox1.itemindex>0)then
begin
savestring;
{}
memo1.Lines.clear;
memo2.Lines.clear;
stringview;
end;
end;
procedure TForm1.ListBox12Click(Sender: TObject);
var llist:TStringList;
f:textfile;
begin
case qq of
0:begin
ListBox1.height:=300;
Combobox1.Visible:=true;
Memo1.Lines.Clear;
Memo1.Height:=150;
Memo2.Visible:=true;
Button1.Visible:=true;
Button2.Visible:=true;
Button3.Visible:=true;
locale:=listbox1.items[listbox1.itemindex];
listbox1.items.clear;
form1.Caption:='Miranda NG Langpack Manager: '+locale;
listbox1.items.add('..');
fileslist;
qq:=1;
end;
1:begin
if listbox1.items[listbox1.itemindex]='..' then
begin
ListBox1.height:=343;
Combobox1.Visible:=false;
ListBox1.Items.clear;
Memo1.Lines.Clear;
Memo1.Height:=343;
Memo2.Visible:=false;
Button1.Visible:=false;
Button2.Visible:=false;
Button3.Visible:=false;
langlist;
listbox1.itemindex:=0;
form1.Caption:='Miranda NG Langpack Manager';
qq:=0;
end
else
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/'
+listbox1.items[listbox1.itemindex]+'.txt',TEncoding.UTF8);
first:=lList[0];
for i := 1 to lList.Count-1 do
begin
j:=j+1;
s[0,j]:=lList[i];
end;
//
if not FileExists(extractfilePath(application.exename)
+'/'+locale+'/'+listbox1.items[listbox1.itemindex]+'.txt')
then
begin
assignfile(f,extractfilePath(application.exename)
+'/'+locale+'/'+listbox1.items[listbox1.itemindex]+'.txt');
rewrite(f);
closefile(f);
end;
//
lList.LoadFromFile(extractfilePath(application.exename)+'/'+locale+'/'
+listbox1.items[listbox1.itemindex]+'.txt',TEncoding.UTF8);
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]) then
s[1,z]:=lList[i+1];
lList.free;
form1.Caption:='Miranda NG Langpack Manager - '
+locale+':'+listbox1.items[listbox1.itemindex];
filename:=listbox1.items[listbox1.itemindex];
listbox1.items.Clear;
listbox1.items.add('..');
z:=0;
for i := 1 to j do
if (copy(s[0,i],1,1)='[')and(s[1,i]='') then
begin
z:=z+1;
u[z]:=i;
listbox1.items.add(copy(s[0,i],2,length(s[0,i])-2));
end;
qq:=2;
end;
end;
2:begin
if listbox1.items[listbox1.itemindex]='..' then
begin
listbox1.Items.Clear;
listbox1.Items.Add('..');
fileslist;
memo1.Lines.Clear;
memo2.Lines.Clear;
form1.Caption:='Miranda NG Langpack Manager - '+locale;
qq:=1;
end;
end;
end;
end;
end.
|