[freeside-commits] freeside/httemplate/search cust_main.html, 1.25, 1.26 cust_refund.html, 1.1, 1.2 cust_svc.html, 1.10, 1.11 svc_acct.cgi, 1.63, 1.64
Erik Levinson
levinse at wavetail.420.am
Tue May 17 18:49:10 PDT 2011
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail.420.am:/tmp/cvs-serv12482/search
Modified Files:
cust_main.html cust_refund.html cust_svc.html svc_acct.cgi
Log Message:
internationalization/localization, RT12515
Index: cust_svc.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_svc.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -d -r1.10 -r1.11
--- cust_svc.html 11 Nov 2010 01:44:43 -0000 1.10
+++ cust_svc.html 18 May 2011 01:49:08 -0000 1.11
@@ -1,11 +1,11 @@
-<% include( 'elements/search.html',
- 'title' => 'Service search results',
- 'name' => 'services',
+<& elements/search.html,
+ 'title' => emt('Service search results'),
+ 'name' => emt('services'),
'query' => $sql_query,
'count_query' => $count_query,
'redirect' => $link,
- 'header' => [ '#',
- 'Service',
+ 'header' => [ emt('#'),
+ emt('Service'),
# package?
FS::UI::Web::cust_header(),
],
@@ -36,8 +36,7 @@
'',
FS::UI::Web::cust_styles(),
],
- )
-%>
+&>
<%init>
die "access denied"
Index: svc_acct.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/svc_acct.cgi,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -w -d -r1.63 -r1.64
--- svc_acct.cgi 4 Nov 2010 05:57:00 -0000 1.63
+++ svc_acct.cgi 18 May 2011 01:49:08 -0000 1.64
@@ -1,6 +1,6 @@
-<% include( 'elements/search.html',
- 'title' => 'Account Search Results',
- 'name' => 'accounts',
+<& elements/search.html,
+ 'title' => emt('Account Search Results'),
+ 'name' => emt('accounts'),
'query' => $sql_query,
'count_query' => $count_query,
'redirect' => $link,
@@ -11,8 +11,7 @@
'color' => \@color,
'style' => \@style,
'footer' => \@footer,
- )
-%>
+&>
<%once>
#false laziness w/ClientAPI/MyAccount.pm
@@ -83,7 +82,7 @@
&& $curuser->access_right('List service passwords') #but if you insist...
)
{
- push @header, 'Password';
+ push @header, emt('Password');
push @fields, 'get_cleartext_password';
push @links, $link;
$align .= 'l';
@@ -91,7 +90,7 @@
push @style, '';
}
-push @header, 'Real Name';
+push @header, emt('Real Name');
push @fields, 'finger';
push @links, $link;
$align .= 'l';
@@ -100,7 +99,7 @@
#hide the UID, its much less useful these days
if ( $cgi->param('show_uid') ) { #XXX add a checkbox
- push @header, 'UID';
+ push @header, emt('UID');
push @fields, 'uid';
push @links, $link;
$align .= 'l';
@@ -108,7 +107,7 @@
push @style, '';
}
-push @header, 'Last Login';
+push @header, emt('Last Login');
push @fields, 'last_login_text';
push @links, $link;
$align .= 'r';
@@ -140,8 +139,7 @@
if ( $sortby eq 'seconds' ) {
my $tot_time = 0;
- #push @header, 'Time remaining';
- push @header, 'Time';
+ push @header, emt('Time');
push @fields, sub { my $svc_acct = shift;
$tot_time += $svc_acct->seconds;
format_time($svc_acct->seconds);
@@ -158,7 +156,7 @@
if ( $conf->exists('svc_acct-display_paid_time_remaining') ) {
my $tot_paid_time = 0;
my %tot = ( '30'=>0, '60'=>0, '90'=>0 );
- push @header, 'Paid time', 'Last 30', 'Last 60', 'Last 90';
+ push @header, emt('Paid time'), emt('Last 30'), emt('Last 60'), emt('Last 90');
push @fields,
sub {
my $svc_acct = shift;
Index: cust_main.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_main.html,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -w -d -r1.25 -r1.26
--- cust_main.html 5 Nov 2010 03:56:06 -0000 1.25
+++ cust_main.html 18 May 2011 01:49:08 -0000 1.26
@@ -1,7 +1,7 @@
-<% include( 'elements/search.html',
- 'title' => 'Customer Search Results',
+<& elements/search.html,
+ 'title' => emt('Customer Search Results'),
'menubar' => $menubar,
- 'name' => 'customers',
+ 'name' => emt('customers'),
'query' => $sql_query,
'count_query' => $count_query,
'header' => [ FS::UI::Web::cust_header(
@@ -29,8 +29,7 @@
),
map '', @extra_fields
],
- )
-%>
+&>
<%init>
die "access denied"
@@ -105,7 +104,7 @@
$uri->query_form( \%search_hash );
my $query = $uri->query;
- push @$menubar, 'Email a notice to these customers' =>
+ push @$menubar, emt('Email a notice to these customers') =>
"${p}misc/email-customers.html?table=cust_main&$query",
}
Index: cust_refund.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_refund.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -d -r1.1 -r1.2
--- cust_refund.html 19 May 2008 04:07:02 -0000 1.1
+++ cust_refund.html 18 May 2011 01:49:08 -0000 1.2
@@ -1,7 +1,6 @@
-<% include( 'elements/cust_pay_or_refund.html',
+<& elements/cust_pay_or_refund.html,
'thing' => 'refund',
'amount_field' => 'refund',
- 'name_singular' => 'refund',
- 'name_verb' => 'refunded',
- )
-%>
+ 'name_singular' => emt('refund'),
+ 'name_verb' => emt('refunded'),
+&>
More information about the freeside-commits
mailing list