X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FBackgroundJob.pm;h=7729dafe1684a364212f97b13f7638b621fd63c6;hb=3880d6570d3ee1d0f26e54887defcf49f359b9a9;hp=f80f57a1c0b200e6b6b917f9bccef4d6a168aa5b;hpb=dc7791df0d3e919e691fb3fd3d7ee20e3c5e7ca1;p=kivitendo-erp.git diff --git a/SL/Controller/BackgroundJob.pm b/SL/Controller/BackgroundJob.pm index f80f57a1c..7729dafe1 100644 --- a/SL/Controller/BackgroundJob.pm +++ b/SL/Controller/BackgroundJob.pm @@ -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 => $::locale->text('Package name'), - type => $::locale->text('Execution type'), - active => $::locale->text('Active'), - cron_spec => $::locale->text('Execution schedule'), - last_run_at => $::locale->text('Last run at'), - next_run_at => $::locale->text('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'), ); #