Repository: flex-utilities Updated Branches: refs/heads/develop e1f537200 -> 054b7d9eb
log when locale changes Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/95cc618d Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/95cc618d Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/95cc618d Branch: refs/heads/develop Commit: 95cc618d36e92de31d7e5145f6aa9225e40be7a2 Parents: e1f5372 Author: Alex Harui <[email protected]> Authored: Fri Jun 27 00:25:06 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Fri Jun 27 00:25:06 2014 -0700 ---------------------------------------------------------------------- installer/src/InstallApacheFlex.mxml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/95cc618d/installer/src/InstallApacheFlex.mxml ---------------------------------------------------------------------- diff --git a/installer/src/InstallApacheFlex.mxml b/installer/src/InstallApacheFlex.mxml index 0ad4767..7767b89 100644 --- a/installer/src/InstallApacheFlex.mxml +++ b/installer/src/InstallApacheFlex.mxml @@ -563,7 +563,7 @@ variables are not required because the locations of these pieces are known. if (languageOverride) { userLocale = languageOverride; } - log("Using Locale:" + userLocale); + log("Using Locale: " + userLocale); var n:int = supportedLanguages.length; for (var i:int = 0; i < n; i++) { @@ -2297,6 +2297,7 @@ variables are not required because the locations of these pieces are known. var defaultLanguage:String = ViewResourceConstants.DEFAULT_LANGUAGE; resourceManager.localeChain = [ languageID, defaultLanguage ]; resourceManager.update(); + log("Using Locale: " + languageID); setButtonWidths(); }
