X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/09e4a554054f19869c9cd10102899ee5525941b4..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/DB/Buchungsgruppe.pm diff --git a/SL/DB/Buchungsgruppe.pm b/SL/DB/Buchungsgruppe.pm index addbe33ad..cad8bb628 100644 --- a/SL/DB/Buchungsgruppe.pm +++ b/SL/DB/Buchungsgruppe.pm @@ -18,9 +18,9 @@ sub validate { if( $self->inventory_accno_id ) { require SL::DB::Chart; my $inventory_accno = SL::DB::Manager::Chart->find_by( id => $self->inventory_accno_id ); - push(@errors, $::locale->text('Buchungsgruppe #1 needs a valid inventory account', $self->description)) unless $inventory_accno; + push(@errors, $::locale->text('Booking group #1 needs a valid inventory account', $self->description)) unless $inventory_accno; } else { - push @errors, $::locale->text('The Buchungsgruppe needs an inventory account.'); + push @errors, $::locale->text('The booking group needs an inventory account.'); }; return @errors;