diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 13:11:21 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2016-09-25 13:11:21 -0700 |
| commit | fef753a00170c17020399f88751070bc03ac6173 (patch) | |
| tree | 2eb0be84bd92259e002223dde12c1bbaa7a8309e /httemplate/pref/pref-process.html | |
| parent | 9cb2c2f0b06e33b6c4bceb693267f206ca23e895 (diff) | |
localize preferences page, starting with patch from Fernando Kiernan <fkiernan@id.net.ar>, modified to fix escaping
Diffstat (limited to 'httemplate/pref/pref-process.html')
| -rw-r--r-- | httemplate/pref/pref-process.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html index b622efc15..75e57958f 100644 --- a/httemplate/pref/pref-process.html +++ b/httemplate/pref/pref-process.html @@ -2,7 +2,7 @@ % $cgi->param('error', $error); <% $cgi->redirect(popurl(1). "pref.html?". $cgi->query_string ) %> % } else { -<% include('/elements/header.html', 'Preferences updated') %> +<% include('/elements/header.html', mt('Preferences updated')) %> <% include('/elements/footer.html') %> % } <%init> @@ -25,13 +25,13 @@ if ( FS::Auth->auth_class->can('change_password') my $newpass = $cgi->param('new_password'); if ( $newpass ne $cgi->param('new_password2') ) { - $error = "New passwords don't match"; + $error = mt("New passwords don't match"); } elsif ( ! length($newpass) ) { - $error = 'No new password entered'; + $error = mt('No new password entered'); } elsif ( ! FS::Auth->authenticate( $access_user, $oldpass ) ) { - $error = 'Current password incorrect; password not changed'; + $error = mt('Current password incorrect; password not changed'); } else { @@ -67,7 +67,7 @@ unless ( $error ) { # if ($access_user) { foreach (@paramlist) { scalar($cgi->param($_)) =~ /^[,.\-\@\w]*$/ && next; - $error ||= "Illegal value for parameter $_"; + $error ||= mt("Illegal value for parameter")." $_"; last; } |
