You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ma...@apache.org on 2016/10/11 17:30:46 UTC

svn commit: r1764312 - in /openoffice/ooo-site/trunk/content/download/test: download.js globalvars.js msg_prop_l10n_en.js release_matrix.js

Author: marcus
Date: Tue Oct 11 17:30:46 2016
New Revision: 1764312

URL: http://svn.apache.org/viewvc?rev=1764312&view=rev
Log:
Updated test files to check the 4.1.3 release

Modified:
    openoffice/ooo-site/trunk/content/download/test/download.js
    openoffice/ooo-site/trunk/content/download/test/globalvars.js
    openoffice/ooo-site/trunk/content/download/test/msg_prop_l10n_en.js
    openoffice/ooo-site/trunk/content/download/test/release_matrix.js

Modified: openoffice/ooo-site/trunk/content/download/test/download.js
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/download.js?rev=1764312&r1=1764311&r2=1764312&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/test/download.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/download.js Tue Oct 11 17:30:46 2016
@@ -490,7 +490,7 @@ DL.getVersionSelection = function() {
 		}
 	}
 
-	// Get the version number without dots (e.g., "412" instead of "4.1.2").
+	// Get the version number without dots (e.g., "413" instead of "4.1.3").
 	DL.VERSION_SEL_RAW = DL.VERSION_SEL.replace( /\./g,'' );
 
 	return DL.VERSION_SEL;
@@ -597,7 +597,7 @@ DL.isLanguageSupported = function() {
 	}
 
 	// Assign the language data of the selected version depending on the ISO code.
-	// Generate variable name: release_matrix_ + version number without dots (e.g., "412" instead of "4.1.2").
+	// Generate variable name: release_matrix_ + version number without dots (e.g., "413" instead of "4.1.3").
 	DL.RELEASE_LANG = DL[ "release_matrix_" + DL.VERSION_SEL_RAW ][ DL.LANG_ISO ][ 0 ];
 
 	// If the flag = 'y' then the language is supported, otherwise not.
@@ -668,7 +668,7 @@ DL.checkForLinkExceptions = function() {
 	}
 
 	// If version is '4.1.0' (or newer) and platform is 'Mac OS X <= 10.6', show the none-availability to the user.
-	if( ( DL.VERSION_SEL === "4.1.2" || DL.VERSION_SEL === "4.1.1" || DL.VERSION_SEL === "4.1.0" ) && DL.PLATFORM === "mac32" ) {
+	if( ( DL.VERSION_SEL === "4.1.3" || DL.VERSION_SEL === "4.1.2" || DL.VERSION_SEL === "4.1.1" || DL.VERSION_SEL === "4.1.0" ) && DL.PLATFORM === "mac32" ) {
 		// Show an error message that the chosen items do not lead to a download.
 
 		// If a customized string is not available in the "msg_prop_l10n_XX.js" file.
@@ -1210,7 +1210,7 @@ DL.getReleaseMatrixPosition = function()
 DL.getFileData = function() {
 	// Depending on $ver, a different release matrix has to be used to assemble the download filenames.
 
-	// Generate variable name: string + version number without dots (e.g., "412" instead of "4.1.2").
+	// Generate variable name: string + version number without dots (e.g., "413" instead of "4.1.3").
 	var release_matrix_version = "release_matrix_" + DL.VERSION_SEL_RAW;
 
 	// Assign all values from the release matrix of language and platform.
@@ -1231,7 +1231,7 @@ DL.getFileData = function() {
 				+ " | " + l10n.dl_rel_info_rel_date_text + DL[ release_matrix_version ][ "src" ][ 1 ][ 3 ];
 
 	// Assign the link for release notes, depending on the version.
-	// Generate variable name: string + version number without dots (e.g., "412" instead of "4.1.2").
+	// Generate variable name: string + version number without dots (e.g., "413" instead of "4.1.3").
 	DL.REL_NOTES = l10n[ "dl_rel_notes_aoo" + DL.VERSION_SEL_RAW + "_link" ];
 
 	return;

Modified: openoffice/ooo-site/trunk/content/download/test/globalvars.js
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/globalvars.js?rev=1764312&r1=1764311&r2=1764312&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/test/globalvars.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/globalvars.js Tue Oct 11 17:30:46 2016
@@ -12,13 +12,13 @@
 var DL = new Object();
 
 // Stable release: General properties.
-DL.VERSION			= "4.1.2";		// Release version in full format "x.y.z".
+DL.VERSION			= "4.1.3";		// Release version in full format "x.y.z".
 DL.VERSION_SHORT		= DL.VERSION;		// Release version in short format "x.y".
-DL.MILESTONE			= "AOO412m3";		// Milestone ID (from AOO build system).
-DL.BUILD			= "9782";		// Build ID (from AOO build system).
-DL.SVN_REV			= "r1709699";		// SVN revision.
-DL.REL_DATE			= "2015-Oct-28";	// Date of the public announced release.
-DL.PREV_VERSION			= "4.1.1";		// Release of the previous version.
+DL.MILESTONE			= "AOO413m1";		// Milestone ID (from AOO build system).
+DL.BUILD			= "9783";		// Build ID (from AOO build system).
+DL.SVN_REV			= "r1761381";		// SVN revision.
+DL.REL_DATE			= "2016-Oct-09";	// Date of the public announced release.
+DL.PREV_VERSION			= "4.1.2";		// Release of the previous version.
 DL.OLDVERSION			= "3.4.1";		// Old version (last stable release of 3.x series).
 DL.LEGACYVERSION		= "3.3.0";		// Old legacy version (last stable none-Apache release).
 
@@ -85,7 +85,8 @@ DL.SEL_LANG			= [ "ast",    "Asturian",
 
 // Data for the <select> element "ver".
 				    // Value  Visible text
-DL.SEL_VER			= [ "4.1.2",  "4.1.2",
+DL.SEL_VER			= [ "4.1.3",  "4.1.3",
+				    "4.1.2",  "4.1.2",
 				    "4.1.1",  "4.1.1",
 				    "4.1.0",  "4.1.0",
 				    "4.0.1",  "4.0.1",

Modified: openoffice/ooo-site/trunk/content/download/test/msg_prop_l10n_en.js
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/msg_prop_l10n_en.js?rev=1764312&r1=1764311&r2=1764312&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/test/msg_prop_l10n_en.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/msg_prop_l10n_en.js Tue Oct 11 17:30:46 2016
@@ -52,10 +52,10 @@ l10n.dl_green_box_select_box_version_val
 // Not defined for now.
 
 // Get developers: Strings in the orange box (used in "index.html").
-l10n.dl_getdev_orange_box_headline_text		= "Developers Needed";
-l10n.dl_getdev_orange_box_headline_title	= "The Apache OpenOffice project need developers to grow its developer base";
-l10n.dl_getdev_orange_box_text_text		= "Are you a software developer with C++ skills or have you deeper knowledge about building software? Or are you an experienced lead technical writer? Furthermore, you like to work in open source projects and you are familiar with the English language? Then come to us and help Apache OpenOffice to grow.";
-l10n.dl_getdev_orange_box_text_title		= "The Apache OpenOffice project need software developers to grow its base";
+l10n.dl_getdev_orange_box_headline_text		= "Help Needed";
+l10n.dl_getdev_orange_box_headline_title	= "The Apache OpenOffice project seeks developers to take part in expanding its activities";
+l10n.dl_getdev_orange_box_text_text		= "Are you a software developer with C++ skills? Do you have expertise in building software? Are you an experienced lead technical writer? Are you proficient in English? Do you like contributing to open source projects? Come and join us in helping Apache OpenOffice to thrive.";
+l10n.dl_getdev_orange_box_text_title		= "The Apache OpenOffice project seeks developers to take part in expanding its activities";
 l10n.dl_getdev_orange_box_text_href		= "http://openoffice.apache.org/get-involved.html";
 
 // Share: Strings in the light-blue box (used in "index.html").
@@ -65,19 +65,19 @@ l10n.dl_share_light_blue_box_text_text
 l10n.dl_share_light_blue_box_text_title		= "Help spread the word and tell your friends about Apache OpenOffice";
 l10n.dl_share_light_blue_box_blog_text		= "Official Blog";
 l10n.dl_share_light_blue_box_blog_title		= "Weblog of OpenOffice.";
-l10n.dl_share_light_blue_box_blog_src		= "http://www.openoffice.org/images/logo-rss-32.png";
+l10n.dl_share_light_blue_box_blog_src		= "../images/logo-rss-32.png";
 l10n.dl_share_light_blue_box_blog_alt		= "Weblog of OpenOffice";
 l10n.dl_share_light_blue_box_facebook_text	= "Facebook";
 l10n.dl_share_light_blue_box_facebook_title	= "Please tell your friends about Apache OpenOffice via Facebook";
-l10n.dl_share_light_blue_box_facebook_src	= "http://www.openoffice.org/images/logo-facebook-32.png";
+l10n.dl_share_light_blue_box_facebook_src	= "../images/logo-facebook-32.png";
 l10n.dl_share_light_blue_box_facebook_alt	= "Share on Facebook";
 l10n.dl_share_light_blue_box_twitter_text	= "Twitter";
 l10n.dl_share_light_blue_box_twitter_title	= "Please tell your friends about Apache OpenOffice via Twitter";
-l10n.dl_share_light_blue_box_twitter_src	= "http://www.openoffice.org/images/logo-twitter-32.png";
+l10n.dl_share_light_blue_box_twitter_src	= "../images/logo-twitter-32.png";
 l10n.dl_share_light_blue_box_twitter_alt	= "Share on Twitter";
 l10n.dl_share_light_blue_box_googleplus_text	= "Google+";
 l10n.dl_share_light_blue_box_googleplus_title	= "Please tell your friends about Apache OpenOffice via Google+";
-l10n.dl_share_light_blue_box_googleplus_src	= "http://www.openoffice.org/images/logo-googleplus-32.png";
+l10n.dl_share_light_blue_box_googleplus_src	= "../images/logo-googleplus-32.png";
 l10n.dl_share_light_blue_box_googleplus_alt	= "Share on Google+";
 
 // Extensions: Strings in the blue box (top) (used in "index.html").
@@ -172,11 +172,11 @@ l10n.dl_nav_checksum_href			= "http://ww
 // Strings for the logo graphics.
 l10n.dl_img_sourceforge_title			= "Sourceforge - Download, Develop and Publish Free Open Source Software";
 l10n.dl_img_sourceforge_href			= "http://www.sourceforge.net/";
-l10n.dl_img_sourceforge_src			= "http://www.openoffice.org/images/sourceforge.png";
+l10n.dl_img_sourceforge_src			= "../images/sourceforge.png";
 l10n.dl_img_sourceforge_alt			= "Sourceforge";
 l10n.dl_img_w3c_title				= "W3C Markup Validation Service - Check the markup (HTML, XHTML, ...) of Web documents";
 l10n.dl_img_w3c_href				= "http://validator.w3.org/check?uri=referer";
-l10n.dl_img_w3c_src				= "http://www.openoffice.org/images/valid-xhtml10-blue.png";
+l10n.dl_img_w3c_src				= "../images/valid-xhtml10-blue.png";
 l10n.dl_img_w3c_alt				= "W3C Validator";
 
 
@@ -218,17 +218,17 @@ l10n.dl_checksum_sha256_text			= "SHA256
 l10n.dl_checksum_sha256_title			= "SHA256 hash for: ";
 
 l10n.dl_help_img_title				= "What is the difference between full installation and language pack?";
-l10n.dl_help_img_src				= "http://www.openoffice.org/download/cachedimages/help-information-icon.png";
+l10n.dl_help_img_src				= "../download/cachedimages/help-information-icon.png";
 l10n.dl_help_img_alt				= "Install info";
 l10n.dl_help_text				= "What is a language pack?";
 l10n.dl_help_title				= "What is the difference between full installation and language pack?";
 l10n.dl_checksum_img_title			= "How to verify the downloaded file with checksums?";
-l10n.dl_checksum_img_src			= "http://www.openoffice.org/download/cachedimages/help-information-icon.png";
+l10n.dl_checksum_img_src			= "../download/cachedimages/help-information-icon.png";
 l10n.dl_checksum_img_alt			= "Checksum verify";
 l10n.dl_checksum_text				= "How to verify the download?";
 l10n.dl_checksum_title				= "How to verify the downloaded file with checksums?";
 l10n.dl_report_img_title			= "Broken download link? Click here to report.";
-l10n.dl_report_img_src				= "http://www.openoffice.org/download/cachedimages/help-report-broken-link-icon.png";
+l10n.dl_report_img_src				= "../download/cachedimages/help-report-broken-link-icon.png";
 l10n.dl_report_img_alt				= "Broken link";
 l10n.dl_report_text				= "Report broken link";
 l10n.dl_report_title				= "Broken download link? Click here to report.";
@@ -240,7 +240,7 @@ l10n.dl_langpack_link_error_text		= "No
 l10n.dl_langpack_link_error_title		= "Please select another language, platform or version.";
 
 l10n.dl_error_problem_img_title			= "The selected download file is not available";
-l10n.dl_error_problem_img_src			= "http://www.openoffice.org/download/cachedimages/exclamation-icon.png";
+l10n.dl_error_problem_img_src			= "../download/cachedimages/exclamation-icon.png";
 l10n.dl_error_problem_img_alt			= "Error text";
 l10n.dl_error_problem_text			= "Problem: ";
 l10n.dl_error_solution_text			= "Solution: ";
@@ -302,9 +302,8 @@ l10n.dl_analyze_table_no_text			= "No";
 l10n.dl_analyze_table_stable_release_text	= "Stable Release";
 l10n.dl_analyze_table_javascript_text		= "JavaScript&nbsp;functions/variables";
 
-
-
 // General: Links to webpage files that could be localized.
+l10n.dl_rel_notes_aoo413_link			= "http://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.3+Release+Notes";
 l10n.dl_rel_notes_aoo412_link			= "http://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.2+Release+Notes";
 l10n.dl_rel_notes_aoo411_link			= "http://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.1+Release+Notes";
 l10n.dl_rel_notes_aoo410_link			= "http://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1+Release+Notes";
@@ -316,4 +315,3 @@ l10n.dl_report_link				= "http://www.ope
 l10n.dl_porting_link				= "http://www.openoffice.org/porting/index.html";
 l10n.dl_archive_link				= "http://www.openoffice.org/download/archive.html";
 l10n.dl_aoo341_link				= "http://www.openoffice.org/download/other-341.html";
-

Modified: openoffice/ooo-site/trunk/content/download/test/release_matrix.js
URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/test/release_matrix.js?rev=1764312&r1=1764311&r2=1764312&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/test/release_matrix.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/release_matrix.js Tue Oct 11 17:30:46 2016
@@ -19,6 +19,286 @@
  *
  */
 
+/* Description for AOO 4.1.3.
+ *
+ * For the matrix position and their meanings see the descriptions on top of file.
+ */
+DL.release_matrix_413 = {
+"src": {
+	 "0": [ 'src', 'English (US)', 'English (US)', 'y', 'download/index.html' ],
+	 "1": [ 'AOO413m1', '9783', 'r1761381', '2016-10-09' ],
+	 "2": [ 'tar_bz2', 'y', '209' ],
+	 "3": [ 'tar_gz',  'y', '276' ],
+	 "4": [ 'zip',	   'y', '323' ] },
+
+"sdk": {
+	 "0": [ 'sdk', 'English (US)', 'English (US)', 'y', 'download/index.html' ],
+	 "1": [ /* lnx_64_f_d  */ 'y', '  9' ],
+	 "2": [ /* lnx_64_lp_d */ 'n', '  0' ],
+	 "3": [ /* lnx_64_f_r  */ 'y', '  8' ],
+	 "4": [ /* lnx_64_lp_r */ 'n', '  0' ],
+	 "5": [ /* lnx_32_f_d  */ 'y', '  9' ],
+	 "6": [ /* lnx_32_lp_d */ 'n', '  0' ],
+	 "7": [ /* lnx_32_f_r  */ 'y', '  8' ],
+	 "8": [ /* lnx_32_lp_r */ 'n', '  0' ],
+	 "9": [ /* mac_64_f    */ 'y', ' 12' ],
+	"10": [ /* mac_64_lp   */ 'n', '  0' ],
+	"11": [ /* win_32_f    */ 'y', '  7' ],
+	"12": [ /* win_32_lp   */ 'n', '  0' ] },
+
+"ar": {
+	 "0": [ 'ar', 'Arabic', 'العربية', 'n', 'ar/' ],
+	 "1": [ 'n', '  0' ],  "2": [ 'n', '  0' ],  "3": [ 'n', '  0' ],  "4": [ 'n', '  0' ],  "5": [ 'n', '  0' ],
+	 "6": [ 'n', '  0' ],  "7": [ 'n', '  0' ],  "8": [ 'n', '  0' ],  "9": [ 'n', '  0' ], "10": [ 'n', '  0' ],
+	"11": [ 'n', '  0' ], "12": [ 'n', '  0' ] },		
+
+"ast": {
+	 "0": [ 'ast', 'Asturian', 'Asturianu', 'y', 'ast/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '145' ], "12": [ 'y', ' 34' ] },
+
+"bg": {
+	 "0": [ 'bg', 'Bulgarian', 'български език', 'y', 'bg/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 13' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 13' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 13' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 13' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 12' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 12' ] },
+
+"ca": {
+	 "0": [ 'ca', 'Catalan', 'Català', 'y', 'ca/' ],
+	 "1": [ 'y', '153' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '154' ],  "4": [ 'y', ' 19' ],  "5": [ 'y', '146' ],
+	 "6": [ 'y', ' 19' ],  "7": [ 'y', '151' ],  "8": [ 'y', ' 19' ],  "9": [ 'y', '164' ], "10": [ 'y', ' 19' ],
+	"11": [ 'y', '135' ], "12": [ 'y', ' 19' ] },
+
+"ca-XV": {
+	 "0": [ 'ca-XV', 'Valencià', 'Català (Valencià AVL)', 'y', 'ca-xv/' ],
+	 "1": [ 'y', '153' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '154' ],  "4": [ 'y', ' 19' ],  "5": [ 'y', '146' ],
+	 "6": [ 'y', ' 19' ],  "7": [ 'y', '151' ],  "8": [ 'y', ' 19' ],  "9": [ 'y', '164' ], "10": [ 'y', ' 19' ],
+	"11": [ 'y', '151' ], "12": [ 'y', ' 35' ] },	
+
+"ca-XR": {
+	 "0": [ 'ca-XR', 'Valencià', 'Català (Valencià RACV)', 'y', 'ca-xr/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '145' ], "12": [ 'y', ' 34' ] },	
+
+"cs": {
+	 "0": [ 'cs', 'Czech', 'Čeština', 'y', 'cs/' ],
+	 "1": [ 'y', '141' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '142' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '134' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '152' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 12' ] },
+
+"da": {
+	 "0": [ 'da', 'Danish', 'Dansk', 'y', 'da/' ],
+	 "1": [ 'y', '143' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '144' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '136' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 11' ] },
+
+"de": {
+	 "0": [ 'de', 'German', 'Deutsch', 'y', 'de/downloads/index.html' ],
+	 "1": [ 'y', '176' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '177' ],  "4": [ 'y', ' 19' ],  "5": [ 'y', '169' ],
+	 "6": [ 'y', ' 19' ],  "7": [ 'y', '173' ],  "8": [ 'y', ' 19' ],  "9": [ 'y', '187' ], "10": [ 'y', ' 19' ],
+	"11": [ 'y', '157' ], "12": [ 'y', ' 19' ] },
+
+"el": {
+	 "0": [ 'el', 'Greek', '&Epsilon;&lambda;&lambda;&eta;&nu;&iota;&kappa;ά', 'y', 'el/' ],
+	 "1": [ 'y', '150' ],  "2": [ 'y', ' 21' ],  "3": [ 'y', '151' ],  "4": [ 'y', ' 21' ],  "5": [ 'y', '143' ],
+	 "6": [ 'y', ' 21' ],  "7": [ 'y', '147' ],  "8": [ 'y', ' 21' ],  "9": [ 'y', '161' ], "10": [ 'y', ' 20' ],
+	"11": [ 'y', '131' ], "12": [ 'y', ' 20' ] },
+
+"en-GB": {
+	 "0": [ 'en-GB', 'English (British)', 'English (British)', 'y', 'download/index.html' ],
+	 "1": [ 'y', '146' ],  "2": [ 'y', ' 11' ],  "3": [ 'y', '147' ],  "4": [ 'y', ' 11' ],  "5": [ 'y', '139' ],
+	 "6": [ 'y', ' 11' ],  "7": [ 'y', '143' ],  "8": [ 'y', ' 11' ],  "9": [ 'y', '156' ], "10": [ 'y', ' 10' ],
+	"11": [ 'y', '127' ], "12": [ 'y', ' 11' ] },
+
+"en-US": {
+	 "0": [ 'en-US', 'English (US)', 'English (US)', 'y', 'download/index.html' ],
+	 "1": [ 'y', '153' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '154' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '146' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '150' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '163' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '134' ], "12": [ 'y', ' 18' ] },
+
+"es": {
+	 "0": [ 'es', 'Spanish', 'Espa&ntilde;ol', 'y', 'es/' ],
+	 "1": [ 'y', '143' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '136' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '154' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 12' ] },
+
+"eu": {
+	 "0": [ 'eu', 'Basque', 'Euskara', 'y', 'eu/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 12' ] },
+
+"fi": {
+	 "0": [ 'fi', 'Finnish', 'Suomi', 'y', 'fi/lataa.html' ],
+	 "1": [ 'y', '149' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '150' ],  "4": [ 'y', ' 20' ],  "5": [ 'y', '142' ],
+	 "6": [ 'y', ' 20' ],  "7": [ 'y', '146' ],  "8": [ 'y', ' 20' ],  "9": [ 'y', '160' ], "10": [ 'y', ' 19' ],
+	"11": [ 'y', '130' ], "12": [ 'y', ' 19' ] },
+
+"fr": {
+	 "0": [ 'fr', 'French', 'Fran&ccedil;ais', 'y', 'fr/' ],
+	 "1": [ 'y', '145' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '146' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '138' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '142' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '156' ], "10": [ 'y', ' 12' ],
+	"11": [ 'y', '126' ], "12": [ 'y', ' 12' ] },
+
+"gd": {
+	 "0": [ 'gd', 'Scottish (Gaelic)', 'Gàidhlig', 'y', 'gd/' ],
+	 "1": [ 'y', '148' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '149' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '141' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '146' ], "12": [ 'y', ' 34' ] },
+
+"gl": {
+	 "0": [ 'gl', 'Galician', 'Galego', 'y', 'gl/' ],
+	 "1": [ 'y', '148' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '149' ],  "4": [ 'y', ' 19' ],  "5": [ 'y', '141' ],
+	 "6": [ 'y', ' 19' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 19' ],  "9": [ 'y', '159' ], "10": [ 'y', ' 18' ],
+	"11": [ 'y', '130' ], "12": [ 'y', ' 18' ] },
+
+"he": {
+	 "0": [ 'he', 'Hebrew', 'עברית',  'y', 'he/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '129' ], "12": [ 'y', ' 18' ] },
+
+"hi": {
+	 "0": [ 'hi', 'Hindi', 'हिन्दी', 'y', 'hi/' ],
+	 "1": [ 'y', '148' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '149' ],  "4": [ 'y', ' 19' ],  "5": [ 'y', '141' ],
+	 "6": [ 'y', ' 19' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 19' ],  "9": [ 'y', '159' ], "10": [ 'y', ' 18' ],
+	"11": [ 'y', '130' ], "12": [ 'y', ' 18' ] },
+
+"hu": {
+	 "0": [ 'hu', 'Hungarian', 'Magyar', 'y', 'hu/' ],
+	 "1": [ 'y', '144' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '145' ],  "4": [ 'y', ' 13' ],  "5": [ 'y', '137' ],
+	 "6": [ 'y', ' 13' ],  "7": [ 'y', '141' ],  "8": [ 'y', ' 13' ],  "9": [ 'y', '155' ], "10": [ 'y', ' 12' ],
+	"11": [ 'y', '125' ], "12": [ 'y', ' 12' ] },
+
+"it": {
+	 "0": [ 'it', 'Italian', 'Italiano', 'y', 'it/download/' ],
+	 "1": [ 'y', '148' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '149' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '141' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '146' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '159' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '130' ], "12": [ 'y', ' 12' ] },
+
+"ja": {
+	 "0": [ 'ja', 'Japanese', '日本語', 'y', 'ja/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '128' ], "12": [ 'y', ' 17' ] },
+
+"km": {
+	 "0": [ 'km', 'Khmer', 'ភាសាខ្មែរ', 'y', 'km/' ],
+	 "1": [ 'y', '145' ],  "2": [ 'y', ' 15' ],  "3": [ 'y', '146' ],  "4": [ 'y', ' 15' ],  "5": [ 'y', '138' ],
+	 "6": [ 'y', ' 15' ],  "7": [ 'y', '142' ],  "8": [ 'y', ' 15' ],  "9": [ 'y', '157' ], "10": [ 'y', ' 15' ],
+	"11": [ 'y', '143' ], "12": [ 'y', ' 31' ] },
+
+"ko": {
+	 "0": [ 'ko', 'Korean', '한국어', 'y', 'ko/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 12' ] },
+
+"lt": {
+	 "0": [ 'lt', 'Lithuanian', 'Lietuvių', 'y', 'lt/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '129' ], "12": [ 'y', ' 17' ] },
+
+"nb": {
+	 "0": [ 'nb', 'Norwegian (Bokmal)', 'Norsk (Bokmål)', 'y', 'no/' ],
+	 "1": [ 'y', '151' ],  "2": [ 'y', ' 19' ],  "3": [ 'y', '152' ],  "4": [ 'y', ' 19' ],  "5": [ 'y', '144' ],
+	 "6": [ 'y', ' 19' ],  "7": [ 'y', '148' ],  "8": [ 'y', ' 19' ],  "9": [ 'y', '162' ], "10": [ 'y', ' 18' ],
+	"11": [ 'y', '132' ], "12": [ 'y', ' 19' ] },
+
+"nl": {
+	 "0": [ 'nl', 'Dutch', 'Nederlands', 'y', 'nl/' ],
+	 "1": [ 'y', '151' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '152' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '144' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '148' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '162' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '132' ], "12": [ 'y', ' 12' ] },
+
+"pl": {
+	 "0": [ 'pl', 'Polish', 'Polski', 'y', 'pl/product.download.html' ],
+	 "1": [ 'y', '144' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '145' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '137' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '141' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '155' ], "10": [ 'y', ' 12' ],
+	"11": [ 'y', '125' ], "12": [ 'y', ' 12' ] }, 
+
+"pt": {
+	 "0": [ 'pt', 'Portuguese (European)', 'Portugu&ecirc;s (Europeu)', 'y', 'pt/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 12' ] },	
+
+"pt-BR": {
+	 "0": [ 'pt-BR', 'Portuguese (Brazilian)', 'Portugu&ecirc;s (do Brasil)', 'y', 'pt-br/' ],
+	 "1": [ 'y', '141' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '142' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '134' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '152' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 12' ] },
+
+"ru": {	
+	 "0": [ 'ru', 'Russian', 'Русский', 'y', 'ru/' ],
+	 "1": [ 'y', '149' ],  "2": [ 'y', ' 13' ],  "3": [ 'y', '150' ],  "4": [ 'y', ' 13' ],  "5": [ 'y', '142' ],
+	 "6": [ 'y', ' 13' ],  "7": [ 'y', '146' ],  "8": [ 'y', ' 13' ],  "9": [ 'y', '160' ], "10": [ 'y', ' 12' ],
+	"11": [ 'y', '130' ], "12": [ 'y', ' 13' ] },
+
+"sk": {
+	 "0": [ 'sk', 'Slovak', 'Slovenský jazyk (slovenčina)', 'y', 'sk/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 11' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 11' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 11' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 11' ],  "9": [ 'y', '152' ], "10": [ 'y', ' 10' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 11' ] },
+
+"sl": {
+	 "0": [ 'sl', 'Slovenian', 'Slovenski jezik (slovenščina)', 'y', 'sl/' ],
+	 "1": [ 'y', '143' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '144' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '136' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 12' ] },
+
+"sr": {
+	 "0": [ 'sr', 'Serbian (Cyrillic)', 'Cрпски (ћирилицом)', 'y', 'sr/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '129' ], "12": [ 'y', ' 18' ] },
+
+"sv": {
+	 "0": [ 'sv', 'Swedish', 'Svenska', 'y', 'sv/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '152' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 11' ] },
+
+"ta": {	
+	 "0": [ 'ta', 'Tamil', 'தமிழ்', 'y', 'ta/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '145' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '129' ], "12": [ 'y', ' 18' ] },
+
+"th": {
+	 "0": [ 'th', 'Thai', 'ภาษาไทย', 'y', 'th/' ],
+	 "1": [ 'y', '147' ],  "2": [ 'y', ' 18' ],  "3": [ 'y', '148' ],  "4": [ 'y', ' 18' ],  "5": [ 'y', '140' ],
+	 "6": [ 'y', ' 18' ],  "7": [ 'y', '144' ],  "8": [ 'y', ' 18' ],  "9": [ 'y', '158' ], "10": [ 'y', ' 17' ],
+	"11": [ 'y', '129' ], "12": [ 'y', ' 18' ] },
+
+"tr": {
+	 "0": [ 'tr', 'Turkish', 'T&uuml;rk&ccedil;e', 'y', 'tr/' ],
+	 "1": [ 'y', '141' ],  "2": [ 'y', ' 12' ],  "3": [ 'y', '142' ],  "4": [ 'y', ' 12' ],  "5": [ 'y', '134' ],
+	 "6": [ 'y', ' 12' ],  "7": [ 'y', '138' ],  "8": [ 'y', ' 12' ],  "9": [ 'y', '152' ], "10": [ 'y', ' 11' ],
+	"11": [ 'y', '122' ], "12": [ 'y', ' 11' ] },
+
+"vi": {
+	 "0": [ 'vi', 'Vietnamese', 'Tiếng Việt', 'y', 'vi/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 13' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 13' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 13' ],  "7": [ 'y', '139' ],  "8": [ 'y', ' 13' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 12' ],
+	"11": [ 'y', '123' ], "12": [ 'y', ' 12' ] },
+
+"zh-CN": {
+	 "0": [ 'zh-CN', 'Chinese (simplified)', '简体中文', 'y',	 'zh-cn/download/' ],
+	 "1": [ 'y', '142' ],  "2": [ 'y', ' 13' ],  "3": [ 'y', '143' ],  "4": [ 'y', ' 13' ],  "5": [ 'y', '135' ],
+	 "6": [ 'y', ' 13' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 13' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 13' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 13' ] },
+
+"zh-TW": {
+	 "0": [ 'zh-TW', 'Chinese (traditional)', '正體中文', 'y', 'zh-tw/' ],
+	 "1": [ 'y', '143' ],  "2": [ 'y', ' 13' ],  "3": [ 'y', '144' ],  "4": [ 'y', ' 13' ],  "5": [ 'y', '136' ],
+	 "6": [ 'y', ' 13' ],  "7": [ 'y', '140' ],  "8": [ 'y', ' 13' ],  "9": [ 'y', '153' ], "10": [ 'y', ' 13' ],
+	"11": [ 'y', '124' ], "12": [ 'y', ' 13' ] }
+};
+
 /* Description for AOO 4.1.2.
  *
  * For the matrix position and their meanings see the descriptions on top of file.
@@ -1419,4 +1699,3 @@ DL.release_matrix_400 = {
 	 "6": [ 'n', '  0' ],  "7": [ 'n', '  0' ],  "8": [ 'n', '  0' ],  "9": [ 'n', '  0' ], "10": [ 'n', '  0' ],
 	"11": [ 'n', '  0' ], "12": [ 'n', '  0' ] }
 };
-