[tuxdroid-svn] r5410 - software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-inst
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-09-16 09:31:03
|
Author: jerome
Date: 2009-09-16 11:30:49 +0200 (Wed, 16 Sep 2009)
New Revision: 5410
Modified:
software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/TuxUtils.pas
Log:
* Fixed a bug playing en_US attitune.
Modified: software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/TuxUtils.pas
===================================================================
--- software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/TuxUtils.pas 2009-09-16 09:20:55 UTC (rev 5409)
+++ software_suite_v3/software/tool/tool-second-installer/trunk/tool-second-installer/TuxUtils.pas 2009-09-16 09:30:49 UTC (rev 5410)
@@ -520,11 +520,10 @@
result := ReadString('Language');
- if ( result <> 'en' ) and (result <> 'en_US') and (result <> 'en_GB') and (result <> 'fr')
+ if ( result <> 'en' )and (result <> 'fr') and (result <> 'no') and (result <> 'pt' )
and(result <> 'nl') and (result <> 'nl_BE') and (result <> 'it') and (result <> 'es')
and(result <> 'de') and (result <> 'ar') and (result <> 'da') and (result <> 'sv')
- and(result <> 'no') and (result <> 'pt' ) then
- result := 'en';
+ then result := 'en';
CloseKey;
end;
|