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
|
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtDlgs, Vcl.StdCtrls, Vcl.Buttons;
type
TForm1 = class(TForm)
Label1: TLabel;
ListBox1: TListBox;
OpenDialog1: TOpenDialog;
Edit1: TEdit;
Button1: TButton;
Button2: TButton;
C: TBitBtn;
X: TBitBtn;
Label2: TLabel;
Edit2: TEdit;
Edit3: TEdit;
Label3: TLabel;
Button3: TButton;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure ListBox1Click(Sender: TObject);
procedure refresh;
procedure read;
procedure enter(Sender: TObject; var Key: Word; Shift: TShiftState);
procedure CClick(Sender: TObject);
procedure XClick(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
openDialog : TOpenDialog;
full: array [1..7000] of string;
notranslate: array [1..7000] of integer;
ustring,tstring: array [1..7000] of string;
fline:array [1..2,1..7000] of string;
english,translate: textfile;
line:string;
ii,i,it,ie:integer;
bom, bomd:string;
dupes: array [1..7000] of string;
idx,idm:integer;
cores:boolean;
implementation
{$R *.dfm}
procedure tform1.read;
begin
if extractfilename(opendialog.filename)='=CORE=.txt'
then button3.Visible:=false
else button3.Visible:=true;
listbox1.Items.Clear;
line:='';
edit3.Text:='';
for i:= 1 to 7000 do
begin
full[i]:='';
dupes[i]:='';
notranslate[i]:=0;
ustring[i]:='';
tstring[i]:='';
end;
assignfile(translate,opendialog.filename,CP_UTF8);
reset(translate);
it:=0;
while not Eof(translate) do
begin
ReadLn(translate, line);
if (copy(line,1,1)='[') and (not Eof(translate)) then
begin
it:=it+1;
full[it]:=line;
ReadLn(translate, line);
if (copy(line,1,1)<>'')and(copy(line,1,1)<>';')and(copy(line,1,1)<>'[')then
begin
it:=it+1;
full[it]:=line;
end else it:=it-1;
end;
end;
closefile(translate);
idm:=0;
if FileExists(ExtractFilePath(opendialog.filename)+'=DUPES=.txt')=true then
begin
assignfile(translate,ExtractFilePath(opendialog.filename)+'=DUPES=.txt',CP_UTF8);
reset(translate);
ReadLn(translate, bomd);
while not Eof(translate) do
begin
ReadLn(translate, line);
if (copy(line,1,1)='[') and (not Eof(translate)) then
begin
idm:=idm+1;
dupes[idm]:=line;
ReadLn(translate, line);
if (copy(line,1,1)<>'')and(copy(line,1,1)<>';')and(copy(line,1,1)<>'[')then
begin idm:=idm+1; dupes[idm]:=line; end
else idm:=idm-1;
end;
end;
closefile(translate);
end;
if FileExists(ExtractFilePath(opendialog.filename)+'\..\=DUPES=.txt')=true then
begin
assignfile(translate,ExtractFilePath(opendialog.filename)+'\..\=DUPES=.txt',CP_UTF8);
reset(translate);
while not Eof(translate) do
begin
ReadLn(translate, line);
if (copy(line,1,1)='[') and (not Eof(translate)) then
begin
idm:=idm+1;
dupes[idm]:=line;
ReadLn(translate, line);
if (copy(line,1,1)<>'')and(copy(line,1,1)<>';')and(copy(line,1,1)<>'[')then
begin idm:=idm+1; dupes[idm]:=line; end
else idm:=idm-1;
end;
end;
closefile(translate);
end;
if extractfilename(opendialog.filename)='=CORE=.txt' then
begin
assignfile(english,ExtractFilePath(Application.ExeName)+
'\..\english\'+extractfilename(opendialog.filename),CP_UTF8);
end
else
begin
assignfile(translate,ExtractFilePath(opendialog.filename)+'\..\=CORE=.txt',CP_UTF8);
reset(translate);
while not Eof(translate) do
begin
ReadLn(translate, line);
if (copy(line,1,1)='[') and (not Eof(translate)) then
begin
idm:=idm+1;
dupes[idm]:=line;
ReadLn(translate, line);
if (copy(line,1,1)<>'')and(copy(line,1,1)<>';')and(copy(line,1,1)<>'[')then
begin
idm:=idm+1;
dupes[idm]:=line;
end else idm:=idm-1;
end;
end;
closefile(translate);
assignfile(english,ExtractFilePath(Application.ExeName)+
'\..\english\plugins\'+extractfilename(opendialog.filename),CP_UTF8);
end;
reset(english);
ReadLn(english, bom);
ie:=0;
while not Eof(english) do
begin
ReadLn(english, line);
ie:=ie+1;
ustring[ie]:=line;
end;
closefile(english);
for i := 1 to ie do
begin
for ii:= 1 to it-1 do
if ustring[i]=full[ii] then tstring[i]:=full[ii+1];
if copy(ustring[i],1,1)=';' then tstring[i]:=ustring[i];
end;
for i := 1 to ie do
if tstring[i]='' then
begin
if (extractfilename(opendialog.filename)='=CORE=.txt') and (idm>0) then
for idx := 1 to idm do
if dupes[idx]=ustring[i] then tstring[i]:=dupes[idx+1];
if (extractfilename(opendialog.filename)<>'=CORE=.txt') and (idm>0)
and (button3.Caption='DUPES ON') then
for idx := 1 to idm do
if dupes[idx]=ustring[i] then tstring[i]:=dupes[idx+1];
if tstring[i]='' then
begin
listbox1.Items.Add(ustring[i]);
notranslate[listbox1.Items.Count]:=i;
end;
end;
label3.caption:='Untranslate:'+inttostr(listbox1.Items.Count)+' lines.';
end;
procedure tform1.refresh;
var n:integer;
begin
n:=strtoint(label2.caption);
line:=edit3.Text;
if length(line)<>0 then
tstring[notranslate[n]]:=line;
label2.Caption:=inttostr(ListBox1.ItemIndex+1);
n:=strtoint(label2.caption);
edit2.Text:=copy(ustring[notranslate[n]],2,length(ustring[notranslate[n]])-2);
edit2.SelectAll;
edit2.CopyToClipboard;
edit3.Text:=tstring[notranslate[n]];
edit3.SetFocus;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
chdir(ExtractFilePath(Application.ExeName));
chdir('..');
openDialog := TOpenDialog.Create(self);
openDialog.Filter := 'Text files only|*.txt';
openDialog.InitialDir :=GetCurrentDir ;
openDialog.Options := [ofFileMustExist];
if (openDialog.Execute)
and(extractfilename(openDialog.filename)<>'=HEAD=.txt')
and(extractfilename(openDialog.filename)<>'=DUPES=.txt')
and(extractfilename(openDialog.filename)<>'untranslated.txt')
then
begin
edit1.Text:=copy(openDialog.filename,
length(ExtractFilePath(Application.ExeName))-4,
length(openDialog.filename)-length(ExtractFilePath(Application.ExeName))+5);
read;
refresh;
end;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
refresh;
assignfile(translate,opendialog.filename,CP_UTF8);
rewrite(translate);
writeLn(translate, bom);
for i := 1 to ie do
if tstring[i]<>'' then
begin
cores:=false;
for idx := 1 to idm do
if (copy(dupes[idx],1,1)='[')
and (dupes[idx]=ustring[i])
and (Button3.caption='DUPES ON')
then cores:=true;
if cores=false then
begin
writeln(translate,ustring[i]);
if copy(ustring[i],1,1)<>';' then
writeln(translate,tstring[i]);
end;
end;
closefile(translate);
if (extractfilename(openDialog.filename)='=CORE=.txt')
and (FileExists(ExtractFilePath(opendialog.filename)+'=DUPES=.txt')=true)
then
begin
assignfile(translate,ExtractFilePath(opendialog.filename)+'=DUPES=.txt',CP_UTF8);
rewrite(translate);
writeLn(translate, bomd);
for idx := 1 to idm do
if (copy(dupes[idx],1,1)='[') then
begin cores:=false;
for i := 1 to ie do
if dupes[idx]=ustring[i] then cores:=true;
if cores=true then begin
writeLn(translate, dupes[idx]);
writeLn(translate, dupes[idx+1]);
end;
end;
closefile(translate);
end;
read;
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
if edit1.Text<>'' then
If Button3.Caption='DUPES OFF'
then Button3.Caption:='DUPES ON'
else Button3.Caption:='DUPES OFF';
refresh;read;refresh;
end;
procedure TForm1.CClick(Sender: TObject);
begin
Edit3.text:=edit2.text;
end;
procedure TForm1.XClick(Sender: TObject);
begin
Edit3.text:='';
tstring[notranslate[strtoint(label2.caption)]]:='';
refresh;
end;
procedure TForm1.enter(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
case key of
vk_return,vk_down: if listbox1.ItemIndex<listbox1.Items.Count then
listbox1.ItemIndex:=listbox1.ItemIndex+1;
vk_up: if listbox1.ItemIndex>0 then
listbox1.ItemIndex:=listbox1.ItemIndex-1;
end;
refresh;
end;
procedure TForm1.ListBox1Click(Sender: TObject);
begin
refresh;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
KeyPreview := True;
end;
end.
|