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_auto' => '自动(定时任务 / 任务计划程序)',
|
|
'mode_invalid' => '模式必须为自动、网页或手动之一。',
|
|
'mode_manual' => '手动',
|
|
'mode_web' => '网页(无需定时任务)',
|
|
'not_yet_implemented' => '尚未实现——将在未来版本中提供。',
|
|
'process_all_jobs' => '处理所有任务',
|
|
'process_selected_jobs' => '处理选定任务',
|
|
'saved_successfully' => '任务队列设置已成功保存。',
|
|
'saved_unsuccessfully' => '无法保存任务队列设置。',
|
|
'select_jobs' => '选择任务',
|
|
'settings' => '设置',
|
|
'settings_configuration' => '任务队列设置',
|
|
'throttle_count' => '数量',
|
|
'throttle_count_required' => '限流数量为必填项,且必须为非负整数。',
|
|
'throttle_period' => '周期',
|
|
'throttle_period_day' => '天',
|
|
'throttle_period_hour' => '小时',
|
|
'throttle_period_minute' => '分钟',
|
|
'throttle_period_month' => '月',
|
|
'throttle_period_required' => '限流周期为必填项。',
|
|
'throttles' => '限流设置',
|
|
'utilities' => '实用工具',
|
|
'utilities_configuration' => '任务队列实用工具',
|
|
'web_max_seconds' => '网页模式最长时间',
|
|
'web_max_seconds_invalid' => '网页模式最长时间为必填项,且必须为非负整数。',
|
|
'web_max_seconds_tooltip' => '页面加载后允许启动新任务的最长秒数。',
|
|
'web_max_seconds_tooltip_disabled' => '仅当模式设置为网页(无需定时任务)时,网页模式最长时间才可用。',
|
|
];
|