X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fpref%2Fpref-process.html;h=75e57958f5be9888fda7a66c0873562bbbb721d1;hp=f03a8dfa3e04346474777826be2df23a141db339;hb=611a7c3b4b717a595a530402d15c1960ba3424bd;hpb=992573160bf2fc89b1d957973109e03d2abf0a47 diff --git a/httemplate/pref/pref-process.html b/httemplate/pref/pref-process.html index f03a8dfa3..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 { @@ -55,6 +55,7 @@ unless ( $error ) { # if ($access_user) { disable_html_editor disable_enter_submit_onetimecharge enable_mask_clipboard_hack dashboard_customers customer_view_emails + printtofit email_address snom-ip snom-username snom-password vonage-fromnumber vonage-username vonage-password @@ -66,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; }