summaryrefslogtreecommitdiff
path: root/bin/gl.pl
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-03 02:16:57 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-11-03 02:16:57 +0000
commite5e963a2cfa1ec6be3dbf670fa233f4a662ee2fe (patch)
treeb91c8aee8dfdc352f8c675cc5e5c539121621950 /bin/gl.pl
parent3b1878dd7812f23159471b4d5384a4f1c9671737 (diff)
More string changes
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@474 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'bin/gl.pl')
-rwxr-xr-xbin/gl.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/gl.pl b/bin/gl.pl
index 79c80698..2db8611d 100755
--- a/bin/gl.pl
+++ b/bin/gl.pl
@@ -193,7 +193,7 @@ sub create_links {
sub search {
- $form->{title} = $locale->text('General Ledger')." ".$locale->text('Reports');
+ $form->{title} = $locale->text('General Ledger Reports');
$colspan = 5;
$form->all_departments(\%myconfig);
@@ -654,13 +654,13 @@ sub generate_report {
if ($myconfig{acs} !~ /AR--AR/) {
$button{'AR--Add Transaction'}{code} = qq|<button class="submit" type="submit" name="action" value="ar_transaction">|.$locale->text('AR Transaction').qq|</button> |;
$button{'AR--Add Transaction'}{order} = $i++;
- $button{'AR--Sales Invoice'}{code} = qq|<button class="submit" type="submit" name="action" value="sales_invoice_">|.$locale->text('Sales Invoice ').qq|</button> |;
+ $button{'AR--Sales Invoice'}{code} = qq|<button class="submit" type="submit" name="action" value="sales_invoice_">|.$locale->text('Sales Invoice').qq|</button> |;
$button{'AR--Sales Invoice'}{order} = $i++;
}
if ($myconfig{acs} !~ /AP--AP/) {
$button{'AP--Add Transaction'}{code} = qq|<button class="submit" type="submit" name="action" value="ap_transaction">|.$locale->text('AP Transaction').qq|</button> |;
$button{'AP--Add Transaction'}{order} = $i++;
- $button{'AP--Vendor Invoice'}{code} = qq|<button class="submit" type="submit" name="action" value="vendor_invoice_">|.$locale->text('Vendor Invoice ').qq|</button> |;
+ $button{'AP--Vendor Invoice'}{code} = qq|<button class="submit" type="submit" name="action" value="vendor_invoice_">|.$locale->text('Vendor Invoice').qq|</button> |;
$button{'AP--Vendor Invoice'}{order} = $i++;
}
@@ -1104,7 +1104,7 @@ sub delete {
print qq|
<h2 class=confirm>|.$locale->text('Confirm!').qq|</h2>
-<h4>|.$locale->text('Are you sure you want to delete Transaction').qq| $form->{reference}</h4>
+<h4>|.$locale->text('Are you sure you want to delete Transaction [_1]', $form->{reference}).qq|</h4>
<button name="action" class="submit" type="submit" value="yes">|.$locale->text('Yes').qq|</button>
</form>