Author: marcus Date: Sat Jul 12 22:18:54 2014 New Revision: 1610074 URL: http://svn.apache.org/r1610074 Log: Changed assembling the tool tip string
Modified: openoffice/ooo-site/trunk/content/download/download.js Modified: openoffice/ooo-site/trunk/content/download/download.js URL: http://svn.apache.org/viewvc/openoffice/ooo-site/trunk/content/download/download.js?rev=1610074&r1=1610073&r2=1610074&view=diff ============================================================================== --- openoffice/ooo-site/trunk/content/download/download.js (original) +++ openoffice/ooo-site/trunk/content/download/download.js Sat Jul 12 22:18:54 2014 @@ -277,7 +277,7 @@ DL.fillLanguageSelection = function() { // Assign the language name as "Native name" (or English name if localization is not available). option.text = DL.SEL_LANG[ i + 1 ]; // Assign the language as "English name (ISO code)" as title. - option.title = DL.SEL_LANG[ i + 2 ]; + option.title = DL.SEL_LANG[ i + 2 ] + " (" + DL.SEL_LANG[ i ] + ")"; // Add the new option to the already existing ones. selection.appendChild( option ); }