1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# -*- coding: iso-8859-1 -*-
"""
MoinMoin - Load I18N Text
This macro has the main purpose of supporting Help* page authors
to insert the texts that a user actually sees on his screen into
the description of the related features (which otherwise could
get very confusing).
@copyright: 2001 Juergen Hermann <jh@web.de>
@license: GNU GPL, see COPYING for details.
"""
Dependencies = ["language"]
def macro_GetText(macro, text=u''):
""" Return a translation of args, or args as is """
translation = macro.request.getText(text)
return macro.formatter.text(translation)
|