[freeside-commits] freeside/httemplate/search cust_bill.html, 1.38, 1.39 report_cust_credit.html, 1.16, 1.17 report_cust_pay.html, 1.23, 1.24
Erik Levinson
levinse at wavetail.420.am
Sat May 21 11:56:47 PDT 2011
- Previous message: [freeside-commits] freeside/httemplate/search cust_pay_void.html, 1.1, 1.2 cust_pkg.cgi, 1.70, 1.71 report_receivables.html, 1.13, 1.14
- Next message: [freeside-commits] freeside/httemplate/elements searchbar-cust_bill.html, 1.1, 1.2 searchbar-cust_svc.html, 1.1, 1.2 select-cust-part_pkg.html, 1.4, 1.5 select-month_year.html, 1.4, 1.5 select-otaker.html, 1.1, 1.2 select-payby.html, 1.2, 1.3 tr-cust_svc.html, 1.2, 1.3 tr-input-date-field.html, 1.10, 1.11 tr-password.html, 1.1, 1.2 tr-select-agent.html, 1.9, 1.10 tr-select-cust-part_pkg.html, 1.3, 1.4 tr-select-otaker.html, 1.1, 1.2 tr-select-part_pkg.html, 1.3, 1.4 tr-select-part_referral.html, 1.5, 1.6 tr-select-payby.html, 1.1, 1.2 tr-select-reason.html, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail.420.am:/tmp/cvs-serv10878/search
Modified Files:
cust_bill.html report_cust_credit.html report_cust_pay.html
Log Message:
internationalization/localization, RT12515
Index: report_cust_pay.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/report_cust_pay.html,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -w -d -r1.23 -r1.24
--- report_cust_pay.html 15 Aug 2010 06:21:06 -0000 1.23
+++ report_cust_pay.html 21 May 2011 18:56:45 -0000 1.24
@@ -1,5 +1,4 @@
-<% include( 'elements/report_cust_pay_or_refund.html',
+<& elements/report_cust_pay_or_refund.html,
'thing' => 'pay',
- 'name_singular' => 'payment',
- )
-%>
+ 'name_singular' => emt('payment'),
+&>
Index: report_cust_credit.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/report_cust_credit.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -w -d -r1.16 -r1.17
--- report_cust_credit.html 22 Sep 2010 00:08:29 -0000 1.16
+++ report_cust_credit.html 21 May 2011 18:56:45 -0000 1.17
@@ -1,4 +1,4 @@
-<% include('/elements/header.html', $title ) %>
+<& /elements/header.html, emt($title) &>
<FORM ACTION="cust_credit.html" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="_date">
@@ -6,35 +6,32 @@
<TABLE>
- <% include( '/elements/tr-select-user.html',
- 'label' => 'Credits by employee: ',
+ <& /elements/tr-select-user.html,
+ 'label' => emt('Credits by employee: '),
'access_user' => \%access_user,
- )
- %>
+ &>
- <% include( '/elements/tr-select-agent.html',
+ <& /elements/tr-select-agent.html,
'curr_value' => scalar( $cgi->param('agentnum') ),
- 'label' => 'for agent: ',
+ 'label' => emt('for agent: '),
'disable_empty' => 0,
- )
- %>
+ &>
- <% include( '/elements/tr-input-beginning_ending.html' ) %>
+ <& /elements/tr-input-beginning_ending.html &>
- <% include( '/elements/tr-input-lessthan_greaterthan.html',
- 'label' => 'Amount',
+ <& /elements/tr-input-lessthan_greaterthan.html,
+ 'label' => emt('Amount'),
'field' => 'amount',
- )
- %>
+ &>
</TABLE>
<BR>
-<INPUT TYPE="submit" VALUE="Get Report">
+<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
</FORM>
-<% include('/elements/footer.html') %>
+<& /elements/footer.html &>
<%init>
Index: cust_bill.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_bill.html,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -w -d -r1.38 -r1.39
--- cust_bill.html 11 Nov 2010 01:44:43 -0000 1.38
+++ cust_bill.html 21 May 2011 18:56:45 -0000 1.39
@@ -1,5 +1,5 @@
-<% include( 'elements/search.html',
- 'title' => 'Invoice Search Results',
+<& elements/search.html,
+ 'title' => emt('Invoice Search Results'),
'html_init' => $html_init,
'menubar' => $menubar,
'name' => 'invoices',
@@ -7,11 +7,11 @@
'count_query' => $count_query,
'count_addl' => $count_addl,
'redirect' => $link,
- 'header' => [ 'Invoice #',
- 'Balance',
- 'Net Amount',
- 'Gross Amount',
- 'Date',
+ 'header' => [ emt('Invoice #'),
+ emt('Balance'),
+ emt('Net Amount'),
+ emt('Gross Amount'),
+ emt('Date'),
FS::UI::Web::cust_header(),
],
'fields' => [
@@ -56,10 +56,7 @@
'',
FS::UI::Web::cust_styles(),
],
-
-
- )
-%>
+&>
<%init>
die "access denied"
@@ -71,7 +68,6 @@
my( $count_query, $sql_query );
my $count_addl = '';
-#my $distinct = '';
my %search;
if ( $cgi->param('invnum') =~ /^\s*(FS-)?(\d+)\s*$/ ) {
@@ -82,7 +78,6 @@
$count_query = "SELECT COUNT(*) FROM cust_bill $join_cust_main $where";
$sql_query = {
- #'select' => '*',
'table' => 'cust_bill',
'addl_from' => $join_cust_main,
'hashref' => {},
@@ -159,7 +154,6 @@
'table' => 'cust_bill',
'addl_from' => $join_cust_main,
'hashref' => {},
- #'select' => "$distinct ". join(', ',
'select' => join(', ',
'cust_bill.*',
#( map "cust_main.$_", qw(custnum last first company) ),
@@ -207,31 +201,31 @@
'<SCRIPT TYPE="text/javascript">
function confirm_print_process() {
- if ( ! confirm("Are you sure you want to reprint these invoices?") ) {
+ if ( ! confirm('.emt("Are you sure you want to reprint these invoices?").') ) {
return;
}
print_process();
}
function confirm_email_process() {
- if ( ! confirm("Are you sure you want to re-email these invoices?") ) {
+ if ( ! confirm('.emt("Are you sure you want to re-email these invoices?").') ) {
return;
}
email_process();
}
function confirm_fax_process() {
- if ( ! confirm("Are you sure you want to re-fax these invoices?") ) {
+ if ( ! confirm('.emt("Are you sure you want to re-fax these invoices?").') ) {
return;
}
fax_process();
}
function confirm_ftp_process() {
- if ( ! confirm("Are you sure you want to re-FTP these invoices?") ) {
+ if ( ! confirm('.emt("Are you sure you want to re-FTP these invoices?").') ) {
return;
}
ftp_process();
}
function confirm_spool_process() {
- if ( ! confirm("Are you sure you want to re-spool these invoices?") ) {
+ if ( ! confirm('.emt("Are you sure you want to re-spool these invoices?").') ) {
return;
}
spool_process();
@@ -243,20 +237,20 @@
if ( $FS::CurrentUser::CurrentUser->access_right('Resend invoices') ) {
- push @$menubar, 'Print these invoices' =>
+ push @$menubar, emt('Print these invoices') =>
"javascript:confirm_print_process()",
- 'Email these invoices' =>
+ emt('Email these invoices') =>
"javascript:confirm_email_process()";
- push @$menubar, 'Fax these invoices' =>
+ push @$menubar, emt('Fax these invoices') =>
"javascript:confirm_fax_process()"
if $conf->exists('hylafax');
- push @$menubar, 'FTP these invoices' =>
+ push @$menubar, emt('FTP these invoices') =>
"javascript:confirm_ftp_process()"
if $conf->exists('cust_bill-ftpformat');
- push @$menubar, 'Spool these invoices' =>
+ push @$menubar, emt('Spool these invoices') =>
"javascript:confirm_spool_process()"
if $conf->exists('cust_bill-spoolformat');
- Previous message: [freeside-commits] freeside/httemplate/search cust_pay_void.html, 1.1, 1.2 cust_pkg.cgi, 1.70, 1.71 report_receivables.html, 1.13, 1.14
- Next message: [freeside-commits] freeside/httemplate/elements searchbar-cust_bill.html, 1.1, 1.2 searchbar-cust_svc.html, 1.1, 1.2 select-cust-part_pkg.html, 1.4, 1.5 select-month_year.html, 1.4, 1.5 select-otaker.html, 1.1, 1.2 select-payby.html, 1.2, 1.3 tr-cust_svc.html, 1.2, 1.3 tr-input-date-field.html, 1.10, 1.11 tr-password.html, 1.1, 1.2 tr-select-agent.html, 1.9, 1.10 tr-select-cust-part_pkg.html, 1.3, 1.4 tr-select-otaker.html, 1.1, 1.2 tr-select-part_pkg.html, 1.3, 1.4 tr-select-part_referral.html, 1.5, 1.6 tr-select-payby.html, 1.1, 1.2 tr-select-reason.html, 1.10, 1.11
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list