mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-22 18:55:03 -04:00
Add localized strings for new Job Queue feature. - Add 'jobs'/'jobs_desc' entries to each locale's Module.php for module listing/description. - Add new per-locale Jobs.php language files covering mode selection (auto/web/manual), throttle settings, web mode max time, job selection/processing actions, and save success/failure messages. - Covers all supported locales (ar-EG, ar-LB, az, bg, bs, ckb, cs, da, de-CH, de-DE, el, en, en-GB, es-ES, es-MX, fa, fr, and more) to keep the feature fully localized app-wide. Signed-off-by: objecttothis <17935339+objecttothis@users.noreply.github.com>
33 lines
2.0 KiB
PHP
33 lines
2.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'mode' => 'Mode',
|
|
'mode_auto' => 'Auto (Cron / Task Scheduler)',
|
|
'mode_invalid' => 'Mode must be one of Auto, Web, or Manual.',
|
|
'mode_manual' => 'Manual',
|
|
'mode_web' => 'Web (No Cron Required)',
|
|
'not_yet_implemented' => 'Not yet implemented — available in a future release.',
|
|
'process_all_jobs' => 'Process All Jobs',
|
|
'process_selected_jobs' => 'Process Selected Jobs',
|
|
'saved_successfully' => 'Job Queue settings saved successfully.',
|
|
'saved_unsuccessfully' => 'Job Queue settings could not be saved.',
|
|
'select_jobs' => 'Select Jobs',
|
|
'settings' => 'Settings',
|
|
'settings_configuration' => 'Job Queue Settings',
|
|
'throttle_count' => 'Count',
|
|
'throttle_count_required' => 'Throttle count is required and must be a non-negative integer.',
|
|
'throttle_period' => 'Period',
|
|
'throttle_period_day' => 'Day',
|
|
'throttle_period_hour' => 'Hour',
|
|
'throttle_period_minute' => 'Minute',
|
|
'throttle_period_month' => 'Month',
|
|
'throttle_period_required' => 'Throttle period is required.',
|
|
'throttles' => 'Throttles',
|
|
'utilities' => 'Utilities',
|
|
'utilities_configuration' => 'Job Queue Utilities',
|
|
'web_max_seconds' => 'Web Mode Max Time',
|
|
'web_max_seconds_invalid' => 'Web Mode Max Time is required and must be a non-negative integer.',
|
|
'web_max_seconds_tooltip' => 'Maximum number of seconds after page load where new jobs are started.',
|
|
'web_max_seconds_tooltip_disabled' => 'Web Mode Max Time is only available when Mode is set to Web (no cron required).',
|
|
];
|