X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/011a53d5681ad1f5fa88a534ec041c93d3e7be95..b14b0bd922e6ebf247d8ead6e8a27bc9730b02a6:/utils.py?ds=inline diff --git a/utils.py b/utils.py index 1fee07f..26ed830 100755 --- a/utils.py +++ b/utils.py @@ -9,12 +9,10 @@ # http://creativecommons.org/licenses/by-nc/2.0/ # ############################################################ """ Global utilities for portfolio / photo objects. -$Id: utils.py 1200 2009-07-08 15:50:15Z pin $ -$URL: http://svn.luxia.fr/svn/labo/projects/zope/Portfolio/trunk/utils.py $ """ from AccessControl import ModuleSecurityInfo -from Products.PageTemplates.GlobalTranslationService import getGlobalTranslationService +#from Products.PageTemplates.GlobalTranslationService import getGlobalTranslationService from zope.i18nmessageid import MessageFactory security = ModuleSecurityInfo('Products.Portfolio.utils') @@ -26,10 +24,12 @@ security.declarePublic('translate') def translate(message, context): """ Translate i18n message. """ - GTS = getGlobalTranslationService() + # TODO: touver une solution. + # GTS = getGlobalTranslationService() if isinstance(message, Exception): try: message = message[0] except (TypeError, IndexError): pass + return message return GTS.translate('portfolio', message, context=context)