mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-09-23 03:05:00 -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.2 KiB
PHP
33 lines
2.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'mode' => 'Modus',
|
|
'mode_auto' => 'Auto (Cron / Aufgabenplanung)',
|
|
'mode_invalid' => 'Modus muss Auto, Web oder Manuell sein.',
|
|
'mode_manual' => 'Manuell',
|
|
'mode_web' => 'Web (kein Cron erforderlich)',
|
|
'not_yet_implemented' => 'Noch nicht implementiert — verfügbar in einer zukünftigen Version.',
|
|
'process_all_jobs' => 'Alle Aufträge verarbeiten',
|
|
'process_selected_jobs' => 'Ausgewählte Aufträge verarbeiten',
|
|
'saved_successfully' => 'Einstellungen der Auftragswarteschlange wurden erfolgreich gespeichert.',
|
|
'saved_unsuccessfully' => 'Einstellungen der Auftragswarteschlange konnten nicht gespeichert werden.',
|
|
'select_jobs' => 'Aufträge auswählen',
|
|
'settings' => 'Einstellungen',
|
|
'settings_configuration' => 'Einstellungen der Auftragswarteschlange',
|
|
'throttle_count' => 'Anzahl',
|
|
'throttle_count_required' => 'Anzahl ist erforderlich und muss eine nicht negative Ganzzahl sein.',
|
|
'throttle_period' => 'Zeitraum',
|
|
'throttle_period_day' => 'Tag',
|
|
'throttle_period_hour' => 'Stunde',
|
|
'throttle_period_minute' => 'Minute',
|
|
'throttle_period_month' => 'Monat',
|
|
'throttle_period_required' => 'Zeitraum ist erforderlich.',
|
|
'throttles' => 'Drosselungen',
|
|
'utilities' => 'Werkzeuge',
|
|
'utilities_configuration' => 'Werkzeuge der Auftragswarteschlange',
|
|
'web_max_seconds' => 'Maximale Zeit im Webmodus',
|
|
'web_max_seconds_invalid' => 'Maximale Zeit im Webmodus ist erforderlich und muss eine nicht negative Ganzzahl sein.',
|
|
'web_max_seconds_tooltip' => 'Maximale Anzahl Sekunden nach dem Laden der Seite, in denen neue Aufträge gestartet werden.',
|
|
'web_max_seconds_tooltip_disabled' => 'Maximale Zeit im Webmodus ist nur verfügbar, wenn der Modus auf Web (kein Cron erforderlich) gesetzt ist.',
|
|
];
|