summaryrefslogtreecommitdiff
path: root/bin/rp.pl
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-31 00:38:28 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-31 00:38:28 +0000
commitbfcb723e7a4e002123c2d0fac8c262388cc4d2fe (patch)
tree698651e067a19224651fa771d126c6038bb3b698 /bin/rp.pl
parentd48415acc6fe2c9e64e9f39ca0fd4724c683cff5 (diff)
String and button updates
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@410 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin/rp.pl')
-rwxr-xr-xbin/rp.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/rp.pl b/bin/rp.pl
index d130859e..29c49869 100755
--- a/bin/rp.pl
+++ b/bin/rp.pl
@@ -1691,9 +1691,9 @@ sub aging {
# type=submit $locale->text('Print')
# type=submit $locale->text('E-mail')
- %button = ('Select all' => { ndx => 1, key => 'A', value => $locale->text('Select all') },
- 'Print' => { ndx => 2, key => 'P', value => $locale->text('Print') },
- 'E-mail' => { ndx => 5, key => 'E', value => $locale->text('E-mail') },
+ %button = ('select_all' => { ndx => 1, key => 'A', value => $locale->text('Select all') },
+ 'print' => { ndx => 2, key => 'P', value => $locale->text('Print') },
+ 'e_mail' => { ndx => 5, key => 'E', value => $locale->text('E-mail') },
);
for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) }
@@ -1813,7 +1813,7 @@ sub e_mail {
|;
}
- $title = $locale->text('E-mail Statement to')." $form->{$form->{ct}}";
+ $title = $locale->text('E-mail Statement to [_1]', $form->{$form->{ct}});
$form->{media} = "email";
@@ -1893,14 +1893,14 @@ sub send_email {
$form->{OUT} = "${LedgerSMB::Sysconfig::sendmail}";
- $form->{subject} = $locale->text('Statement').qq| - $form->{todate}| unless $form->{subject};
+ $form->{subject} = $locale->text('Statement - [_1]', $form->{todate}) unless $form->{subject};
$form->isblank("email", $locale->text('E-mail address missing!'));
RP->aging(\%myconfig, \%$form);
&print_form;
- $form->redirect($locale->text('Statement sent to')." $form->{$form->{ct}}");
+ $form->redirect($locale->text('Statement sent to [_1]', $form->{$form->{ct}}));
}