Skip to content

Commit

Permalink
Fix typos found while working on translations
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuelsmann committed Dec 26, 2024
1 parent 6846181 commit 82aea26
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions lib/LedgerSMB/Report/Budget/Variance.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ LedgerSMB::Report::Budget::Variance - Variance Report per Budget
=head1 DESCRIPTION
This is a basic variance report for budgets. A variance report shows budgetted
This is a basic variance report for budgets. A variance report shows budgeted
debits and credits along with those actually accrued during the stated period.
It thus provides a way of measuring both current and historical expenditures
against what was budgetted.
against what was budgeted.
=cut

Expand All @@ -41,23 +41,23 @@ Description of he budget line item
=item accno
Account number budgetted
Account number budgeted
=item account_label
Account name
=item budget_amount
Amount (normalized left or right) budgetted
Amount (normalized left or right) budgeted
=item used_amount
Amount (normalized left or right) used
=item variance
Difference between budgetted and used.
Difference between budgeted and used.
=back
Expand All @@ -81,7 +81,7 @@ sub columns {
{col_id => 'budget_amount',
type => 'text',
money => 1,
name => $self->Text('Amount Budgetted')},
name => $self->Text('Amount Budgeted')},

{col_id => 'used_amount',
type => 'text',
Expand Down
4 changes: 2 additions & 2 deletions old/bin/oe.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1322,12 +1322,12 @@ sub delete {
# $form->header;

if ( $form->{type} =~ /_order$/ ) {
$msg = $locale->text('Are you sure you want to delete Order Number');
$msg = $locale->text('Are you sure you want to delete Order Number?');
$ordnumber = 'ordnumber';
}
else {
$msg =
$locale->text('Are you sure you want to delete Quotation Number');
$locale->text('Are you sure you want to delete Quotation Number?');
$ordnumber = 'quonumber';
}

Expand Down

0 comments on commit 82aea26

Please sign in to comment.