[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r14562: Fixing insanely long length of lang line. (check/trunk/cgi-bin)
Author: ioerror
Date: 2008-05-05 04:59:58 -0400 (Mon, 05 May 2008)
New Revision: 14562
Modified:
check/trunk/cgi-bin/index.py
Log:
Fixing insanely long length of lang line.
Modified: check/trunk/cgi-bin/index.py
===================================================================
--- check/trunk/cgi-bin/index.py 2008-05-05 08:56:29 UTC (rev 14561)
+++ check/trunk/cgi-bin/index.py 2008-05-05 08:59:58 UTC (rev 14562)
@@ -81,7 +81,9 @@
return 0
def getLocales():
- locale_descriptions = { 'en_US' : 'English', 'de' : 'Deutsch', 'es' : 'español','fa_IR' : 'fa_IR', 'ja': '(Nihogo)', 'pt_BR' : 'Português', 'pl' : 'polski', 'zh_CN' :'(Simplified Chinese)' }
+ locale_descriptions = { 'en_US' : 'English', 'de' : 'Deutsch', 'es' :
+ 'español','fa_IR' : 'fa_IR', 'ja': '(Nihogo)', 'pt_BR' : 'Português', 'pl'
+ : 'polski', 'zh_CN' :'(Simplified Chinese)' }
return locale_descriptions
def getLocaleName(lang):