From: Benoît Pin <benoit.pin@gmail.com>
Date: Tue, 26 Oct 2010 14:19:07 +0000 (+0200)
Subject: Résolu : problème de localisation avec zope-2.12.
X-Git-Url: https://svn.cri.mines-paristech.fr/git/photoprint.git/commitdiff_plain/fbcbbb59f3bf16d329c9cf9b1295eaeb15ae040e

Résolu : problème de localisation avec zope-2.12.
---

diff --git a/utils.py b/utils.py
index 3344d57..68b8c46 100755
--- a/utils.py
+++ b/utils.py
@@ -17,7 +17,7 @@ $URL: http://svn.luxia.fr/svn/labo/projects/zope/photoprint/trunk/utils.py $
 
 from AccessControl import ModuleSecurityInfo
 # TODO: trouver une solution…
-#from Products.PageTemplates.GlobalTranslationService import getGlobalTranslationService
+from zope.i18n import translate as i18ntranslate
 from zope.i18nmessageid import MessageFactory
 
 security = ModuleSecurityInfo('Products.photoprint.utils')
@@ -32,8 +32,7 @@ def translate(message, context):
 			message = message[0]
 		except (TypeError, IndexError):
 			pass
-	return message
-	return GTS.translate('photoprint', message, context=context)
+	return i18ntranslate(message, domain='photoprint', context=context.REQUEST)
 
 security.declarePublic('Message')
 Message = _ = MessageFactory('photoprint')