mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-21 10:15:01 -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.6 KiB
PHP
33 lines
2.6 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' => 'حداکثر زمان حالت وب فقط زمانی در دسترس است که حالت روی وب (بدون نیاز به کرون) تنظیم شده باشد.',
|
|
];
|