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.1 KiB
PHP
33 lines
2.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'mode' => 'Mode',
|
|
'mode_auto' => 'Otomatis (Cron / Penjadwal Tugas)',
|
|
'mode_invalid' => 'Mode harus salah satu dari Otomatis, Web, atau Manual.',
|
|
'mode_manual' => 'Manual',
|
|
'mode_web' => 'Web (Tidak Perlu Cron)',
|
|
'not_yet_implemented' => 'Belum diterapkan — akan tersedia pada rilis mendatang.',
|
|
'process_all_jobs' => 'Proses Semua Tugas',
|
|
'process_selected_jobs' => 'Proses Tugas Terpilih',
|
|
'saved_successfully' => 'Pengaturan Antrean Tugas berhasil disimpan.',
|
|
'saved_unsuccessfully' => 'Pengaturan Antrean Tugas tidak dapat disimpan.',
|
|
'select_jobs' => 'Pilih Tugas',
|
|
'settings' => 'Pengaturan',
|
|
'settings_configuration' => 'Pengaturan Antrean Tugas',
|
|
'throttle_count' => 'Jumlah',
|
|
'throttle_count_required' => 'Jumlah pembatasan wajib diisi dan harus berupa bilangan bulat non-negatif.',
|
|
'throttle_period' => 'Periode',
|
|
'throttle_period_day' => 'Hari',
|
|
'throttle_period_hour' => 'Jam',
|
|
'throttle_period_minute' => 'Menit',
|
|
'throttle_period_month' => 'Bulan',
|
|
'throttle_period_required' => 'Periode pembatasan wajib diisi.',
|
|
'throttles' => 'Pembatasan',
|
|
'utilities' => 'Utilitas',
|
|
'utilities_configuration' => 'Utilitas Antrean Tugas',
|
|
'web_max_seconds' => 'Waktu Maksimum Mode Web',
|
|
'web_max_seconds_invalid' => 'Waktu Maksimum Mode Web wajib diisi dan harus berupa bilangan bulat non-negatif.',
|
|
'web_max_seconds_tooltip' => 'Jumlah detik maksimum setelah halaman dimuat di mana tugas baru dimulai.',
|
|
'web_max_seconds_tooltip_disabled' => 'Waktu Maksimum Mode Web hanya tersedia ketika Mode diatur ke Web (tanpa perlu cron).',
|
|
];
|