summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-30 21:33:53 +0000
committertetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-30 21:33:53 +0000
commitc5a4d2327e48ff441e498315578fb3cf54e5651d (patch)
treee666e2ab105bf85df5d5fca7f2c8cf156387fdb7
parente48d8996525b15af848999644712d352371b0f1d (diff)
Button update
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@399 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-xbin/ct.pl30
1 files changed, 15 insertions, 15 deletions
diff --git a/bin/ct.pl b/bin/ct.pl
index a875e4e7..d8e5e108 100755
--- a/bin/ct.pl
+++ b/bin/ct.pl
@@ -1631,19 +1631,19 @@ sub form_footer {
# type=submit $locale->text('Delete')
# type=submit $locale->text('POS')
- %button = ('Save' => { ndx => 1, key => 'S', value => $locale->text('Save') },
- 'Save as new' => { ndx => 2, key => 'N', value => $locale->text('Save as new') },
- 'AR Transaction' => { ndx => 7, key => 'A', value => $locale->text('AR Transaction') },
- 'AP Transaction' => { ndx => 8, key => 'A', value => $locale->text('AP Transaction') },
- 'Sales Invoice' => { ndx => 9, key => 'I', value => $locale->text('Sales Invoice') },
- 'POS' => { ndx => 10, key => 'C', value => $locale->text('POS') },
- 'Sales Order' => { ndx => 11, key => 'O', value => $locale->text('Sales Order') },
- 'Quotation' => { ndx => 12, key => 'Q', value => $locale->text('Quotation') },
- 'Vendor Invoice' => { ndx => 13, key => 'I', value => $locale->text('Vendor Invoice') },
- 'Purchase Order' => { ndx => 14, key => 'O', value => $locale->text('Purchase Order') },
- 'RFQ' => { ndx => 15, key => 'Q', value => $locale->text('RFQ') },
- 'Pricelist' => { ndx => 16, key => 'P', value => $locale->text('Pricelist') },
- 'Delete' => { ndx => 17, key => 'D', value => $locale->text('Delete') },
+ %button = ('save' => { ndx => 1, key => 'S', value => $locale->text('Save') },
+ 'save_as_new' => { ndx => 2, key => 'N', value => $locale->text('Save as new') },
+ 'ar_transaction' => { ndx => 7, key => 'A', value => $locale->text('AR Transaction') },
+ 'ap_transaction' => { ndx => 8, key => 'A', value => $locale->text('AP Transaction') },
+ 'sales_invoice' => { ndx => 9, key => 'I', value => $locale->text('Sales Invoice') },
+ 'pos' => { ndx => 10, key => 'C', value => $locale->text('POS') },
+ 'sales_order' => { ndx => 11, key => 'O', value => $locale->text('Sales Order') },
+ 'quotation' => { ndx => 12, key => 'Q', value => $locale->text('Quotation') },
+ 'vendor_invoice' => { ndx => 13, key => 'I', value => $locale->text('Vendor Invoice') },
+ 'purchase_order' => { ndx => 14, key => 'O', value => $locale->text('Purchase Order') },
+ 'rfq' => { ndx => 15, key => 'Q', value => $locale->text('RFQ') },
+ 'pricelist' => { ndx => 16, key => 'P', value => $locale->text('Pricelist') },
+ 'delete' => { ndx => 17, key => 'D', value => $locale->text('Delete') },
);
@@ -2083,8 +2083,8 @@ sub pricelist_footer {
# type=submit $locale->text('Update')
# type=submit $locale->text('Save Pricelist')
- %button = ('Update' => { ndx => 1, key => 'U', value => $locale->text('Update') },
- 'Save Pricelist' => { ndx => 3, key => 'S', value => $locale->text('Save Pricelist') },
+ %button = ('update' => { ndx => 1, key => 'U', value => $locale->text('Update') },
+ 'save_pricelist' => { ndx => 3, key => 'S', value => $locale->text('Save Pricelist') },
);
for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) }