summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-05-19 15:05:39 +0000
committerRobert Pösel <robyer@seznam.cz>2013-05-19 15:05:39 +0000
commit2cfaeb79339df937027cf261a5f10b14d426b3d8 (patch)
tree5f18ebc94e74ad4ed074f076eabbafff1d9cfb4c /tools
parentf3896f628237835537f21679c858afff91def8ac (diff)
translate.js: Fixed rewriting ==CORE== file with untranslated ==CORE== file when set /untranslated parameter.
git-svn-id: http://svn.miranda-ng.org/main/trunk@4737 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools')
-rw-r--r--tools/lpgen/translate.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lpgen/translate.js b/tools/lpgen/translate.js
index c7723aa675..ec88980952 100644
--- a/tools/lpgen/translate.js
+++ b/tools/lpgen/translate.js
@@ -233,7 +233,7 @@ function OutputFiles(TranslatedArray,UntranslatedArray,FileName) {
//Write untranslated array into file, if /untranslated specified and there is something in array
if (untranslated & UntranslatedArray.length>0) {
//redefine Untranslated file path and name, if /untranslated:"/path/plugins" specified and this is not a =CORE=.txt file
- if (UnTranslatedPath!="yes" && FileName!="=CORE=.txt") UnTranslatedFile=UnTranslatedPath+"\\"+FileName;
+ if (UnTranslatedPath!="yes"/* && FileName!="=CORE=.txt"*/) UnTranslatedFile=UnTranslatedPath+"\\"+FileName;
if (log) WScript.Echo("Untranslated in: "+UnTranslatedFile);
WriteToUnicodeFile(UntranslatedArray,UnTranslatedFile);
}