add some hard coded strings to properties file. Volunteers needed to translate to other properties files
Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/87f8aa44 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/87f8aa44 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/87f8aa44 Branch: refs/heads/develop Commit: 87f8aa4493a657e8e94e996c4badfa02d72e8fc1 Parents: e8202df Author: Alex Harui <[email protected]> Authored: Mon Feb 10 23:39:06 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Mon Feb 10 23:39:06 2014 -0800 ---------------------------------------------------------------------- installer/src/InstallApacheFlex.mxml | 6 +++--- installer/src/properties/en_US.properties | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/87f8aa44/installer/src/InstallApacheFlex.mxml ---------------------------------------------------------------------- diff --git a/installer/src/InstallApacheFlex.mxml b/installer/src/InstallApacheFlex.mxml index 3f43c2f..fd88b32 100644 --- a/installer/src/InstallApacheFlex.mxml +++ b/installer/src/InstallApacheFlex.mxml @@ -2390,7 +2390,7 @@ variables are not required because the locations of these pieces are known. paddingLeft="10"/> </s:layout> <s:HGroup verticalAlign="middle"> - <s:Label text="Select Flex version" width="200" fontFamily="openSansBold" /> + <s:Label text="{_viewResourceConstants.INFO_SELECT_FLEX}" width="200" fontFamily="openSansBold" /> <s:DropDownList id="flexVersion" dataProvider="{FLEX_VERSIONS}" labelField="label" @@ -2403,7 +2403,7 @@ variables are not required because the locations of these pieces are known. </s:DropDownList> </s:HGroup> <s:HGroup verticalAlign="middle"> - <s:Label text="Select AIR version" width="200" fontFamily="openSansBold" /> + <s:Label text="{_viewResourceConstants.INFO_SELECT_AIR}" width="200" fontFamily="openSansBold" /> <s:DropDownList id="airVersion" dataProvider="{AIR_VERSIONS}" width="200" @@ -2415,7 +2415,7 @@ variables are not required because the locations of these pieces are known. </s:DropDownList> </s:HGroup> <s:HGroup verticalAlign="middle"> - <s:Label text="Select Flash Player version" width="200" fontFamily="openSansBold" /> + <s:Label text="{_viewResourceConstants.INFO_SELECT_FLASH}" width="200" fontFamily="openSansBold" /> <s:DropDownList id="flashPlayerVersion" width="200" dataProvider="{FLASH_PLAYER_VERSIONS}" http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/87f8aa44/installer/src/properties/en_US.properties ---------------------------------------------------------------------- diff --git a/installer/src/properties/en_US.properties b/installer/src/properties/en_US.properties index 75620ff..41116fa 100644 --- a/installer/src/properties/en_US.properties +++ b/installer/src/properties/en_US.properties @@ -68,8 +68,11 @@ INFO_INVOKED_GUI_MODE=invoked in GUI mode INFO_LICENSE_AGREEMENTS=License Agreements INFO_NEED_TO_READ_AND_AGREE_TO_LICENSE=This installer will download software from multiple sites with various license agreements. Please click on each item on the left, read the license and confirm that you agree to the terms of each license by checking the checkbox next to it. INFO_SELECT_AIR_FLASH_PLAYER=Select AIR and Flash Player versions. +INFO_SELECT_AIR=Select AIR version INFO_SELECT_DIRECTORY=Select the directory where you want to install the Flex SDK INFO_SELECT_DIRECTORY_INSTALL=Select installation directory +INFO_SELECT_FLASH=Select Flash Player version +INFO_SELECT_FLEX=Select Flex version INFO_UNZIPPING=Uncompressing: INFO_VERIFY_FLEX_SDK_DONE=The Apache Flex SDK MD5 Signature of the downloaded files matches the reference. The file is valid. INFO_WINDOW_TITLE=Install Apache Flex SDK {0} for use with your IDE
