Files
opensourcepos/app/Language/tr/Jobs.php
T
objecttothis b4db867ca1 feat(lang): add job queue translations across all locales
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>
2026-09-17 15:13:02 +04:00

33 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'mode' => 'Mod',
'mode_auto' => 'Otomatik (Cron / Görev Zamanlayıcı)',
'mode_invalid' => 'Mod, Otomatik, Web veya Manuel değerlerinden biri olmalıdır.',
'mode_manual' => 'Manuel',
'mode_web' => 'Web (Cron Gerekmez)',
'not_yet_implemented' => 'Henüz uygulanmadı — gelecek bir sürümde kullanılabilir olacak.',
'process_all_jobs' => 'Tüm İşleri İşle',
'process_selected_jobs' => 'Seçili İşleri İşle',
'saved_successfully' => 'İş Kuyruğu ayarları başarıyla kaydedildi.',
'saved_unsuccessfully' => 'İş Kuyruğu ayarları kaydedilemedi.',
'select_jobs' => 'İşleri Seç',
'settings' => 'Ayarlar',
'settings_configuration' => 'İş Kuyruğu Ayarları',
'throttle_count' => 'Sayı',
'throttle_count_required' => 'Kısıtlama sayısı gereklidir ve negatif olmayan bir tam sayı olmalıdır.',
'throttle_period' => 'Periyot',
'throttle_period_day' => 'Gün',
'throttle_period_hour' => 'Saat',
'throttle_period_minute' => 'Dakika',
'throttle_period_month' => 'Ay',
'throttle_period_required' => 'Kısıtlama periyodu gereklidir.',
'throttles' => 'Kısıtlamalar',
'utilities' => 'Araçlar',
'utilities_configuration' => 'İş Kuyruğu Araçları',
'web_max_seconds' => 'Web Modu Maksimum Süre',
'web_max_seconds_invalid' => 'Web Modu Maksimum Süre gereklidir ve negatif olmayan bir tam sayı olmalıdır.',
'web_max_seconds_tooltip' => 'Sayfa yüklendikten sonra yeni işlerin başlatıldığı maksimum saniye sayısı.',
'web_max_seconds_tooltip_disabled' => 'Web Modu Maksimum Süre yalnızca Mod, Web (cron gerektirmez) olarak ayarlandığında kullanılabilir.',
];