Spaltentitel bei Sorted-Helper-Nutzern via t8() übersetzbar gemacht
[kivitendo-erp.git] / SL / Controller / BackgroundJob.pm
index bddb308..7729daf 100644 (file)
@@ -9,6 +9,7 @@ use SL::Controller::Helper::Paginated;
 use SL::Controller::Helper::Sorted;
 use SL::DB::BackgroundJob;
 use SL::Helper::Flash;
+use SL::Locale::String;
 use SL::System::TaskServer;
 
 use Rose::Object::MakeMethods::Generic
@@ -26,12 +27,12 @@ __PACKAGE__->make_paginated(ONLY => [ qw(list) ]);
 __PACKAGE__->make_sorted(
   ONLY         => [ qw(list) ],
 
-  package_name => 'Package name',
-  type         => 'Execution type',
-  active       => 'Active',
-  cron_spec    => 'Execution schedule',
-  last_run_at  => 'Last run at',
-  next_run_at  => 'Next run at',
+  package_name => t8('Package name'),
+  type         => t8('Execution type'),
+  active       => t8('Active'),
+  cron_spec    => t8('Execution schedule'),
+  last_run_at  => t8('Last run at'),
+  next_run_at  => t8('Next run at'),
 );
 
 #