diff options
author | intrigeri <intrigeri@boum.org> | 2009-01-02 12:27:10 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2009-01-02 12:27:10 +0100 |
commit | f58cb48f1f5b718886109642ec2caed45709b5e7 (patch) | |
tree | a38a17ebcf89cf8f69e97f41b373f298db4d8139 | |
parent | 0f89ef0579f2bbc385c78a4c22a2a9c44d99396a (diff) |
po(formbuilder_setup): use a template to display the warning
Signed-off-by: intrigeri <intrigeri@boum.org>
-rw-r--r-- | IkiWiki/Plugin/po.pm | 8 | ||||
-rw-r--r-- | templates/pocreatepage.tmpl | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index 2f43c4983..c8b5e8fde 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -447,11 +447,9 @@ sub formbuilder_setup (@) { return unless (defined $form->field("do") && $form->field("do") eq "create"); - $form->tmpl_param( - message => sprintf( - gettext('**WARNING: this page must be written in %s**'), - $config{po_master_language}{name}) - ); + my $template=template("pocreatepage.tmpl"); + $template->param(LANG => $config{po_master_language}{name}); + $form->tmpl_param(message => $template->output); } diff --git a/templates/pocreatepage.tmpl b/templates/pocreatepage.tmpl new file mode 100644 index 000000000..96c8fdd78 --- /dev/null +++ b/templates/pocreatepage.tmpl @@ -0,0 +1,3 @@ +<p> +<b>WARNING</b> this page must be written in <TMPL_VAR NAME="LANG">. +</p>
\ No newline at end of file |