diff options
author | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2022-05-07 00:49:24 +0200 |
---|---|---|
committer | Jannis M. Hoffmann <jannis.hoffmann@rwth-aachen.de> | 2022-05-07 00:49:24 +0200 |
commit | 77992072b7963d9a96c11a3913f553c820cc21da (patch) | |
tree | f83db2a926e66d8ab6bdc3527f501cf47a5fb14e /templates/webmail | |
parent | 6ac91b3bc730ad8d3476288911e596bbfd2b8880 (diff) |
added localization via Locale::Maketext
Diffstat (limited to 'templates/webmail')
-rw-r--r-- | templates/webmail/login.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/webmail/login.html.ep b/templates/webmail/login.html.ep index 0b7b080..28768e3 100644 --- a/templates/webmail/login.html.ep +++ b/templates/webmail/login.html.ep @@ -21,14 +21,14 @@ %= text_field 'userid' => '' => (required => '') </div> <div class="pure-control-group"> - %= label_for password => ucfirst l 'passwd' + %= label_for password => ucfirst l 'password' %= password_field 'password' => (required => '') </div> % if ($uses_cram) { %= hidden_field challenge => rand % } <div class="pure-controls"> - %= submit_button l('login') => (class => 'pure-button pure-button-primary') => (name => 'submit_button') => $uses_cram ? (disabled => '') : () + %= submit_button ucfirst l('login') => (class => 'pure-button pure-button-primary') => (name => 'submit_button') => $uses_cram ? (disabled => '') : () </div> </fieldset> % end |