Signed-off-by: intrigeri <intrigeri@boum.org>
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);
}
--- /dev/null
+<p>
+<b>WARNING</b> this page must be written in <TMPL_VAR NAME="LANG">.
+</p>
\ No newline at end of file