mini-DMS: Filesystem-Backend: ungeänderte Dokumente nicht doppelt speichern.
[kivitendo-erp.git] / SL / DB / Buchungsgruppe.pm
index addbe33..cad8bb6 100644 (file)
@@ -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;