mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-21 02:07:23 -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' => 'Läge',
|
|
'mode_auto' => 'Auto (Cron / Aktivitetsschemaläggare)',
|
|
'mode_invalid' => 'Läge måste vara antingen Auto, Webb eller Manuell.',
|
|
'mode_manual' => 'Manuell',
|
|
'mode_web' => 'Webb (Ingen Cron krävs)',
|
|
'not_yet_implemented' => 'Ännu inte implementerat — tillgängligt i en framtida version.',
|
|
'process_all_jobs' => 'Bearbeta Alla Jobb',
|
|
'process_selected_jobs' => 'Bearbeta Valda Jobb',
|
|
'saved_successfully' => 'Jobbköns inställningar sparades framgångsrikt.',
|
|
'saved_unsuccessfully' => 'Jobbköns inställningar kunde inte sparas.',
|
|
'select_jobs' => 'Välj Jobb',
|
|
'settings' => 'Inställningar',
|
|
'settings_configuration' => 'Jobbköns Inställningar',
|
|
'throttle_count' => 'Antal',
|
|
'throttle_count_required' => 'Begränsningsantal krävs och måste vara ett icke-negativt heltal.',
|
|
'throttle_period' => 'Period',
|
|
'throttle_period_day' => 'Dag',
|
|
'throttle_period_hour' => 'Timme',
|
|
'throttle_period_minute' => 'Minut',
|
|
'throttle_period_month' => 'Månad',
|
|
'throttle_period_required' => 'Begränsningsperiod krävs.',
|
|
'throttles' => 'Begränsningar',
|
|
'utilities' => 'Verktyg',
|
|
'utilities_configuration' => 'Jobbköns Verktyg',
|
|
'web_max_seconds' => 'Webbläge Max Tid',
|
|
'web_max_seconds_invalid' => 'Webbläge Max Tid krävs och måste vara ett icke-negativt heltal.',
|
|
'web_max_seconds_tooltip' => 'Max antal sekunder efter sidladdning då nya jobb startas.',
|
|
'web_max_seconds_tooltip_disabled' => 'Webbläge Max Tid är endast tillgängligt när Läge är satt till Webb (ingen cron krävs).',
|
|
];
|