Merged revision(s) 60218 #f21f956ce1 from trunk:

Tools, UpdatePoFiles: corrected accepted resource file extension (.lrt -> .lrj)
........

git-svn-id: branches/fixes_2_0@60222 -
This commit is contained in:
maxim 2019-01-25 22:42:15 +00:00
parent 64941cd4a8
commit 65cd5f6bcb

View File

@ -86,14 +86,14 @@ begin
if not FileExistsUTF8(Filename) then begin
if (Ext='.rst') or (Ext='.lrt') or (Ext='.rsj') then
if (Ext='.rst') or (Ext='.lrj') or (Ext='.rsj') then
continue; // ignore resource files
writeln('ERROR: file not found: ',FileName);
exit;
end;
if (Ext<>'.po') and (Ext<>'.rst') and (Ext<>'.lrt') and (Ext<>'.rsj') then begin
if (Ext<>'.po') and (Ext<>'.rst') and (Ext<>'.lrj') and (Ext<>'.rsj') then begin
writeln('ERROR: invalid extension: ',Filename);
exit;
end;