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 2014/07/13 00:17:29 UTC

svn commit: r1610071 - /openoffice/ooo-site/trunk/content/download/test/download.js

Author: marcus
Date: Sat Jul 12 22:17:28 2014
New Revision: 1610071

URL: http://svn.apache.org/r1610071
Log:
Changed assembling the tool tip string

Modified:
    openoffice/ooo-site/trunk/content/download/test/download.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=1610071&r1=1610070&r2=1610071&view=diff
==============================================================================
--- openoffice/ooo-site/trunk/content/download/test/download.js (original)
+++ openoffice/ooo-site/trunk/content/download/test/download.js Sat Jul 12 22:17:28 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 );
 	}