diff options
author | Oliver Bolte <obo@openoffice.org> | 2009-03-05 13:32:16 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2009-03-05 13:32:16 +0000 |
commit | f28cc6ae8975ae93c68691c9d4507a07f62df059 (patch) | |
tree | ddaaa5485948d4b75b59627f61d5069a6af8319e /solenv/bin/modules/installer/download.pm | |
parent | 59ac34964b464d1c4904dbe11d541fb5cff839f8 (diff) |
CWS-TOOLING: integrate CWS native228
2009-02-27 14:58:20 +0100 is r268595 : #i98665# new nsis version
2009-02-27 14:29:56 +0100 is r268593 : #i98665# new nsis version
2009-02-27 11:39:02 +0100 is r268571 : #i98665# switch to nsis 2.42
2009-02-26 15:30:28 +0100 is r268527 : #i99106# temporary path for simple packaging
2009-02-26 14:38:15 +0100 is r268521 : #i99106# temporary path for simple packaging
2009-02-26 14:36:12 +0100 is r268519 : #i99106# temporary path for simple packaging
2009-02-25 17:59:26 +0100 is r268462 : #i99616# gnome package for Solaris user installation
2009-02-25 17:58:36 +0100 is r268461 : #i99616# gnome package for Solaris user installation
2009-02-25 17:08:08 +0100 is r268455 : #i97206# changing variable replacement in setup script
2009-02-25 17:07:04 +0100 is r268454 : #i97206# changing variable replacement in setup script
2009-02-25 15:48:33 +0100 is r268444 : #i97124# including performance patch
Diffstat (limited to 'solenv/bin/modules/installer/download.pm')
-rw-r--r-- | solenv/bin/modules/installer/download.pm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/download.pm b/solenv/bin/modules/installer/download.pm index 3780bed95052..70802b6bc582 100644 --- a/solenv/bin/modules/installer/download.pm +++ b/solenv/bin/modules/installer/download.pm @@ -1045,7 +1045,6 @@ sub nsis_language_converter elsif ( $language eq "zh-CN" ) { $nsislanguage = "SimpChinese"; } elsif ( $language eq "zh-TW" ) { $nsislanguage = "TradChinese"; } else { - my $infoline = "NSIS language_converter : Could not find nsis language for $language!\n"; push( @installer::globals::logfileinfo, $infoline); $nsislanguage = "English"; @@ -1356,6 +1355,8 @@ sub copy_and_translate_nsis_language_files my $nlffilepath = $nsispath . $installer::globals::separator . "Contrib" . $installer::globals::separator . "Language\ files" . $installer::globals::separator; my $nshfilepath = $nsispath . $installer::globals::separator . "Contrib" . $installer::globals::separator . "Modern\ UI" . $installer::globals::separator . "Language files" . $installer::globals::separator; + my $infoline = ""; + for ( my $i = 0; $i <= $#{$languagesarrayref}; $i++ ) { my $onelanguage = ${$languagesarrayref}[$i]; @@ -1390,6 +1391,8 @@ sub copy_and_translate_nsis_language_files if ( $installer::globals::unicodensis ) { + $infoline = "This is Unicode NSIS!\n"; + push( @installer::globals::logfileinfo, $infoline); convert_utf16_to_utf8($nshfilename); convert_utf16_to_utf8($nlffilename); $nshfile = installer::files::read_file($nshfilename); # read nsh file again @@ -1604,6 +1607,9 @@ sub get_translation_file my $translationfile = installer::files::read_file($translationfilename); replace_variables($translationfile, $allvariableshashref); + my $infoline = "Reading translation file: $translationfilename\n"; + push( @installer::globals::logfileinfo, $infoline); + return $translationfile; } |