From 26f4d954aca9474519a7fc5562ec7a04a58a0b4b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Pin?= Date: Mon, 25 Oct 2010 21:13:48 +0200 Subject: [PATCH] =?utf8?q?D=C3=A9sactivation=20de=20la=20fonction=20utilit?= =?utf8?q?aire=20de=20traduction,=20le=20temps=20de=20trouver=20une=20solu?= =?utf8?q?tion?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- utils.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index a2586c4..726c4e8 100755 --- a/utils.py +++ b/utils.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- ####################################################################################### # Plinn - http://plinn.org # # Copyright (C) 2005-2007 Benoît PIN # @@ -35,7 +36,7 @@ from Products.CMFCore.utils import getToolByName, getUtilityByInterfaceName from Products.CMFCore.exceptions import BadRequest from Products.Utf8Splitter.Utf8Splitter import Utf8Utils from Globals import REPLACEABLE, NOT_REPLACEABLE, UNIQUE -from Products.PageTemplates.GlobalTranslationService import getGlobalTranslationService +#from Products.PageTemplates.GlobalTranslationService import getGlobalTranslationService from zope.i18n.interfaces import IUserPreferredLanguages from zope.i18nmessageid import MessageFactory from zope.component.interfaces import ComponentLookupError @@ -194,12 +195,14 @@ security.declarePublic('translate') def translate(message, context): """ Translate i18n message. """ - GTS = getGlobalTranslationService() + # TODO : localisation. + #GTS = getGlobalTranslationService() if isinstance(message, Exception): try: message = message[0] except (TypeError, IndexError): pass + return message return GTS.translate('plinn', message, context=context) security.declarePublic('desacc') -- 2.20.1