Lang compilation correction

Correct Lang class to be compiled without setfileencoding('utf-8')

darcs-hash:20060731213421-86b55-1606196ec39b0ca2e0c693b379fb34e2950c89f7.gz
This commit is contained in:
David Rousselie
2006-07-31 23:34:21 +02:00
parent f8d0151c85
commit dba8267b62

View File

@@ -4,24 +4,23 @@
## Login : David Rousselie <david.rousselie@happycoders.org> ## Login : David Rousselie <david.rousselie@happycoders.org>
## Started on Sat Jan 28 16:37:11 2006 David Rousselie ## Started on Sat Jan 28 16:37:11 2006 David Rousselie
## $Id$ ## $Id$
## ##
## Copyright (C) 2006 David Rousselie ## Copyright (C) 2006 David Rousselie
## This program is free software; you can redistribute it and/or modify ## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by ## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or ## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version. ## (at your option) any later version.
## ##
## This program is distributed in the hope that it will be useful, ## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of ## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details. ## GNU General Public License for more details.
## ##
## You should have received a copy of the GNU General Public License ## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software ## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
## ##
class Lang: class Lang:
def __init__(self, default_lang = "en"): def __init__(self, default_lang = "en"):
self.default_lang = default_lang self.default_lang = default_lang
@@ -35,10 +34,10 @@ class Lang:
def get_lang_class(self, lang): def get_lang_class(self, lang):
return getattr(Lang, lang) return getattr(Lang, lang)
def get_lang_class_from_node(self, node): def get_lang_class_from_node(self, node):
return self.get_lang_class(self.get_lang_from_node(node)) return self.get_lang_class(self.get_lang_from_node(node))
class en: class en:
register_title = u"Jabber Mail connection registration" register_title = u"Jabber Mail connection registration"
register_instructions = u"Enter connection parameters" register_instructions = u"Enter connection parameters"
@@ -80,7 +79,7 @@ class Lang:
check_error_body = u"An error appears while checking emails:\n\t%s" check_error_body = u"An error appears while checking emails:\n\t%s"
new_mail_subject = u"New email from %s" new_mail_subject = u"New email from %s"
new_digest_subject = u"%i new email(s)" new_digest_subject = u"%i new email(s)"
class fr: class fr:
register_title = u"Enregistrement d'une nouvelle connexion à un serveur email." register_title = u"Enregistrement d'une nouvelle connexion à un serveur email."
register_instructions = u"Entrer les paramètres de connexion" register_instructions = u"Entrer les paramètres de connexion"
@@ -193,11 +192,9 @@ class Lang:
update_instructions = u"Modifica los datos de la cuenta '%s'" update_instructions = u"Modifica los datos de la cuenta '%s'"
connection_label = u"%s conexión '%s'" connection_label = u"%s conexión '%s'"
update_account_message_subject = u"Actualizada %s conexión '%s'" update_account_message_subject = u"Actualizada %s conexión '%s'"
update_account_message_body = u"Registrado con el usuario '%s' y " \ update_account_message_body = u"Registrado con el usuario '%s' y contraseña '%s' en '%s'"
"contraseña '%s' en '%s'"
new_account_message_subject = u"Nueva %s conexión '%s' creada" new_account_message_subject = u"Nueva %s conexión '%s' creada"
new_account_message_body = u"Registrado con " \ new_account_message_body = u"Registrado con usuario '%s' y contraseña '%s' en '%s'"
"usuario '%s' y contraseña '%s' en '%s'"
ask_password_subject = u"Petición de contraseña" ask_password_subject = u"Petición de contraseña"
ask_password_body = u"Para avisarte de emails nuevos, contesta a este mensaje con la contraseña " \ ask_password_body = u"Para avisarte de emails nuevos, contesta a este mensaje con la contraseña " \
"de la cuenta: \n" \ "de la cuenta: \n" \