diff options
author | levinse <levinse> | 2011-05-27 05:57:19 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-05-27 05:57:19 +0000 |
commit | d0c5ddbd31af8b1747d447f31623e1af05961eb4 (patch) | |
tree | 8fdb8e3bb059eb0d2b96648cf7933271ba8509ae /httemplate/misc/payment.cgi | |
parent | 8ef00c68688492b2afa3dde8d3d467f89f238c40 (diff) |
internationalization/localization, RT12515
Diffstat (limited to 'httemplate/misc/payment.cgi')
-rw-r--r-- | httemplate/misc/payment.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/misc/payment.cgi b/httemplate/misc/payment.cgi index 4c02da066..a033c1cea 100644 --- a/httemplate/misc/payment.cgi +++ b/httemplate/misc/payment.cgi @@ -222,7 +222,7 @@ <TR> <TD COLSPAN=2> <INPUT TYPE="checkbox" CHECKED NAME="save" VALUE="1"> - <% mt('Remember this informatio') |h %> + <% mt('Remember this information') |h %> </TD> </TR> @@ -265,8 +265,8 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Process payment'); -my %type = ( 'CARD' => emt('credit card'), - 'CHEK' => emt('electronic check (ACH)'), +my %type = ( 'CARD' => 'credit card', + 'CHEK' => 'electronic check (ACH)', ); $cgi->param('payby') =~ /^(CARD|CHEK)$/ |