X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/faef45c2e723c9fbc80d1d84b8481367204719b7..63024c9f98f172ec904324fd0b6f9cc819ce7600:/bin/mozilla/am.pl
diff --git a/bin/mozilla/am.pl b/bin/mozilla/am.pl
index 044bfee8d..c4f2a291d 100644
--- a/bin/mozilla/am.pl
+++ b/bin/mozilla/am.pl
@@ -1509,35 +1509,35 @@ sub list_buchungsgruppe {
. qq||;
$column_header{income_accno_0} =
qq|
|
- . $locale->text('Erlöse Inland')
+ . $locale->text('National Revenues')
. qq| | |;
$column_header{expense_accno_0} =
qq||
- . $locale->text('Aufwand Inland')
+ . $locale->text('National Expenses')
. qq| | |;
$column_header{income_accno_1} =
qq||
- . $locale->text('Erlöse EU m. UStId')
+ . $locale->text('Revenues EU with UStId')
. qq| | |;
$column_header{expense_accno_1} =
qq||
- . $locale->text('Aufwand EU m. UStId')
+ . $locale->text('Expenses EU with UStId')
. qq| | |;
$column_header{income_accno_2} =
qq||
- . $locale->text('Erlöse EU o. UStId')
+ . $locale->text('Revenues EU without UStId')
. qq| | |;
$column_header{expense_accno_2} =
qq||
- . $locale->text('Aufwand EU o. UStId')
+ . $locale->text('Expenses EU without UStId')
. qq| | |;
$column_header{income_accno_3} =
qq||
- . $locale->text('Erlöse Ausland')
+ . $locale->text('Foreign Revenues')
. qq| | |;
$column_header{expense_accno_3} =
qq||
- . $locale->text('Aufwand Ausland')
+ . $locale->text('Foreign Expenses')
. qq| | |;
$form->header;
@@ -1658,8 +1658,8 @@ sub buchungsgruppe_header {
$form->{title} = $locale->text("$form->{title} Buchungsgruppe");
- # $locale->text('Buchungsgruppe hinzufügen')
- # $locale->text('Buchungsgruppe bearbeiten')
+ # $locale->text('Add Accounting Group')
+ # $locale->text('Edit Accounting Group')
my ($acc_inventory, $acc_income, $acc_expense) = ({}, {}, {});
my %acc_type_map = (
@@ -1709,11 +1709,11 @@ sub buchungsgruppe_header {
$linkaccounts .= qq|
- | | . $locale->text('Erlöse Inland') . qq| |
+ | . $locale->text('National Revenues') . qq| |
|
- | | . $locale->text('Aufwand Inland') . qq| |
+ | . $locale->text('National Expenses') . qq| |
|
|;
if ($form->{id}) {
@@ -1723,11 +1723,11 @@ sub buchungsgruppe_header {
$form->{selectIC_expense} =~ s/ value=$form->{expense_accno_id_1}/ value=$form->{expense_accno_id_1} selected/;
}
$linkaccounts .= qq|
- | | . $locale->text('Erlöse EU m. UStId') . qq| |
+ | . $locale->text('Revenues EU with UStId') . qq| |
|
- | | . $locale->text('Aufwand EU m UStId') . qq| |
+ | . $locale->text('Expenses EU with UStId') . qq| |
|
|;
@@ -1739,11 +1739,11 @@ sub buchungsgruppe_header {
}
$linkaccounts .= qq|
- | | . $locale->text('Erlöse EU o. UStId') . qq| |
+ | . $locale->text('Revenues EU without UStId') . qq| |
|
- | | . $locale->text('Aufwand EU o. UStId') . qq| |
+ | . $locale->text('Expenses EU without UStId') . qq| |
|
|;
@@ -1755,11 +1755,11 @@ sub buchungsgruppe_header {
}
$linkaccounts .= qq|
- | | . $locale->text('Erlöse Ausland') . qq| |
+ | . $locale->text('Foreign Revenues') . qq| |
|
- | | . $locale->text('Aufwand Ausland') . qq| |
+ | . $locale->text('Foreign Expenses') . qq| |
|
|;
@@ -1799,7 +1799,7 @@ sub save_buchungsgruppe {
$form->isblank("description", $locale->text('Description missing!'));
AM->save_buchungsgruppe(\%myconfig, \%$form);
- $form->redirect($locale->text('Buchungsgruppe gespeichert!'));
+ $form->redirect($locale->text('Accounting Group saved!'));
$lxdebug->leave_sub();
}
@@ -1808,7 +1808,7 @@ sub delete_buchungsgruppe {
$lxdebug->enter_sub();
AM->delete_buchungsgruppe(\%myconfig, \%$form);
- $form->redirect($locale->text('Buchungsgruppe gelöscht!'));
+ $form->redirect($locale->text('Accounting Group deleted!'));
$lxdebug->leave_sub();
}