1 # -*- coding: utf-8 -*-
2 ############################################################
3 # Copyright © 2008 Benoît PIN <benoit.pin@ensmp.fr> #
4 # Plinn - http://plinn.org #
6 # This program is free software; you can redistribute it #
7 # and/or modify it under the terms of the Creative Commons #
8 # "Attribution-Noncommercial 2.0 Generic" #
9 # http://creativecommons.org/licenses/by-nc/2.0/ #
10 ############################################################
14 $Id: utils.py 651 2009-02-04 15:38:20Z pin $
15 $URL: http://svn.luxia.fr/svn/labo/projects/zope/photoprint/trunk/utils.py $
18 from AccessControl
import ModuleSecurityInfo
19 from Products
.PageTemplates
.GlobalTranslationService
import getGlobalTranslationService
20 from zope
.i18nmessageid
import MessageFactory
22 security
= ModuleSecurityInfo('Products.photoprint.utils')
24 security
.declarePublic('translate')
25 def translate(message
, context
):
26 """ Translate i18n message.
28 GTS
= getGlobalTranslationService()
29 if isinstance(message
, Exception):
32 except (TypeError, IndexError):
34 return GTS
.translate('photoprint', message
, context
=context
)
36 security
.declarePublic('Message')
37 Message
= _
= MessageFactory('photoprint')