Mercurial > moin > 1.9
view MoinMoin/macro/GetText.py @ 2999:e94b940f3a84
add a comment about listen backlog to moin.fcg (port from 1.6)
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sun, 06 Jan 2008 17:32:33 +0100 |
parents | bb2e053067fb |
children | 5cb80bd604b4 |
line wrap: on
line source
# -*- 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 execute(macro, args): """ Return a translation of args, or args as is """ translation = macro.request.getText(args, formatted=False) return macro.formatter.text(translation)