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' => 'Način rada',
|
|
'mode_auto' => 'Automatski (Cron / Planer zadataka)',
|
|
'mode_invalid' => 'Način rada mora biti Automatski, Web ili Ručni.',
|
|
'mode_manual' => 'Ručni',
|
|
'mode_web' => 'Web (Cron nije potreban)',
|
|
'not_yet_implemented' => 'Još nije implementirano — biće dostupno u budućoj verziji.',
|
|
'process_all_jobs' => 'Obradi sve zadatke',
|
|
'process_selected_jobs' => 'Obradi odabrane zadatke',
|
|
'saved_successfully' => 'Postavke reda zadataka su uspješno sačuvane.',
|
|
'saved_unsuccessfully' => 'Postavke reda zadataka nisu mogle biti sačuvane.',
|
|
'select_jobs' => 'Odaberi zadatke',
|
|
'settings' => 'Postavke',
|
|
'settings_configuration' => 'Postavke reda zadataka',
|
|
'throttle_count' => 'Broj',
|
|
'throttle_count_required' => 'Broj ograničenja je obavezan i mora biti nenegativan cijeli broj.',
|
|
'throttle_period' => 'Period',
|
|
'throttle_period_day' => 'Dan',
|
|
'throttle_period_hour' => 'Sat',
|
|
'throttle_period_minute' => 'Minuta',
|
|
'throttle_period_month' => 'Mjesec',
|
|
'throttle_period_required' => 'Period ograničenja je obavezan.',
|
|
'throttles' => 'Ograničenja',
|
|
'utilities' => 'Alati',
|
|
'utilities_configuration' => 'Alati reda zadataka',
|
|
'web_max_seconds' => 'Maksimalno vrijeme u web režimu',
|
|
'web_max_seconds_invalid' => 'Maksimalno vrijeme u web režimu je obavezno i mora biti nenegativan cijeli broj.',
|
|
'web_max_seconds_tooltip' => 'Maksimalan broj sekundi nakon učitavanja stranice tokom kojih se pokreću novi zadaci.',
|
|
'web_max_seconds_tooltip_disabled' => 'Maksimalno vrijeme u web režimu dostupno je samo kada je Način rada postavljen na Web (cron nije potreban).',
|
|
];
|