Revision 3e52fa98
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
SL/Controller/BackgroundJob.pm | ||
---|---|---|
9 | 9 |
use SL::Controller::Helper::Sorted; |
10 | 10 |
use SL::DB::BackgroundJob; |
11 | 11 |
use SL::Helper::Flash; |
12 |
use SL::Locale::String; |
|
12 | 13 |
use SL::System::TaskServer; |
13 | 14 |
|
14 | 15 |
use Rose::Object::MakeMethods::Generic |
... | ... | |
26 | 27 |
__PACKAGE__->make_sorted( |
27 | 28 |
ONLY => [ qw(list) ], |
28 | 29 |
|
29 |
package_name => 'Package name',
|
|
30 |
type => 'Execution type',
|
|
31 |
active => 'Active',
|
|
32 |
cron_spec => 'Execution schedule',
|
|
33 |
last_run_at => 'Last run at',
|
|
34 |
next_run_at => 'Next run at',
|
|
30 |
package_name => t8('Package name'),
|
|
31 |
type => t8('Execution type'),
|
|
32 |
active => t8('Active'),
|
|
33 |
cron_spec => t8('Execution schedule'),
|
|
34 |
last_run_at => t8('Last run at'),
|
|
35 |
next_run_at => t8('Next run at'),
|
|
35 | 36 |
); |
36 | 37 |
|
37 | 38 |
# |
Auch abrufbar als: Unified diff
Spaltentitel bei Sorted-Helper-Nutzern via t8() übersetzbar gemacht