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' => 'Tilstand',
|
|
'mode_auto' => 'Auto (Cron / Jobplanlægger)',
|
|
'mode_invalid' => 'Tilstand skal være enten Auto, Web eller Manuel.',
|
|
'mode_manual' => 'Manuel',
|
|
'mode_web' => 'Web (ingen cron påkrævet)',
|
|
'not_yet_implemented' => 'Endnu ikke implementeret — tilgængelig i en fremtidig udgivelse.',
|
|
'process_all_jobs' => 'Behandl alle job',
|
|
'process_selected_jobs' => 'Behandl valgte job',
|
|
'saved_successfully' => 'Indstillinger for jobkø blev gemt.',
|
|
'saved_unsuccessfully' => 'Indstillinger for jobkø kunne ikke gemmes.',
|
|
'select_jobs' => 'Vælg job',
|
|
'settings' => 'Indstillinger',
|
|
'settings_configuration' => 'Indstillinger for jobkø',
|
|
'throttle_count' => 'Antal',
|
|
'throttle_count_required' => 'Antal er påkrævet og skal være et ikke-negativt heltal.',
|
|
'throttle_period' => 'Periode',
|
|
'throttle_period_day' => 'Dag',
|
|
'throttle_period_hour' => 'Time',
|
|
'throttle_period_minute' => 'Minut',
|
|
'throttle_period_month' => 'Måned',
|
|
'throttle_period_required' => 'Periode er påkrævet.',
|
|
'throttles' => 'Begrænsninger',
|
|
'utilities' => 'Værktøjer',
|
|
'utilities_configuration' => 'Værktøjer til jobkø',
|
|
'web_max_seconds' => 'Maks. tid i webtilstand',
|
|
'web_max_seconds_invalid' => 'Maks. tid i webtilstand er påkrævet og skal være et ikke-negativt heltal.',
|
|
'web_max_seconds_tooltip' => 'Maksimalt antal sekunder efter sideindlæsning, hvor nye job kan startes.',
|
|
'web_max_seconds_tooltip_disabled' => 'Maks. tid i webtilstand er kun tilgængelig, når Tilstand er sat til Web (ingen cron påkrævet).',
|
|
];
|