From 912521ef0711204965aa2319d41c7741bd3f4f4c Mon Sep 17 00:00:00 2001 From: joey Date: Fri, 29 Dec 2006 04:38:40 +0000 Subject: * Initial work on internationalization of the program code. po/ikiwiki.pot is available for translation. * Export gettext() from IkiWiki module. --- IkiWiki/Plugin/passwordauth.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'IkiWiki/Plugin/passwordauth.pm') diff --git a/IkiWiki/Plugin/passwordauth.pm b/IkiWiki/Plugin/passwordauth.pm index 1aac17a9e..7ffc12080 100644 --- a/IkiWiki/Plugin/passwordauth.pm +++ b/IkiWiki/Plugin/passwordauth.pm @@ -101,7 +101,7 @@ sub formbuilder_setup (@) { #{{{ } else { # First time settings. - $form->field(name => "name", comment => "(use FirstnameLastName)"); + $form->field(name => "name", comment => gettext("(use FirstnameLastName)")); if ($session->param("name")) { $form->field(name => "name", value => $session->param("name")); } @@ -141,10 +141,10 @@ sub formbuilder (@) { #{{{ 'regdate' => time})) { $form->field(name => "confirm_password", type => "hidden"); $form->field(name => "email", type => "hidden"); - $form->text("Account creation successful. Now you can Login."); + $form->text(gettext("Account creation successful. Now you can Login.")); } else { - error("Error creating account."); + error(gettext("Error creating account.")); } } elsif ($form->submitted eq 'Mail Password') { @@ -165,9 +165,9 @@ sub formbuilder (@) { #{{{ From => "$config{wikiname} admin <$config{adminemail}>", Subject => "$config{wikiname} information", Message => $template->output, - ) or error("Failed to send mail"); + ) or error(gettext("Failed to send mail")); - $form->text("Your password has been emailed to you."); + $form->text(gettext("Your password has been emailed to you.")); $form->field(name => "name", required => 0); push @$buttons, "Mail Password"; } -- cgit v1.2.3