The answer is, unfortunately, no:
Pretty much everything uses zope.i18n.translate, and that itself doesn't do
translations:
>>> translate('license.help.commercial', 'cc_org', {}, target_language='es')
u'El licenciador permite la reproducci\xf3n, distribuci\xf3n y comunicaci\xf3n
p\xfablica de la obra, incluso con fines comerciales.'
>>> translate('license.help.commercial', 'cc_org', {}, target_language='es_CO')
u'The licensor permits others to copy, distribute, display, and perform the
work, including for commercial purposes.'
|