X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FBuchungsgruppe.pm;h=cad8bb628605d0a6ad2403d0872ff4fc83984b29;hb=844a541e0d8f59644540413f675e8f07cd154cf6;hp=addbe33ad36bf95f75f4b9bfff8aead7f0af2348;hpb=09e4a554054f19869c9cd10102899ee5525941b4;p=kivitendo-erp.git 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;