- Brand-analyzer prompt now lists every supported language instead of only en/pt-BR/es, so onboarding autofill can detect the 12 added languages. The backtick-formatted list is built in BrandAnalyzer::instructions(), keeping the Blade clean and the enum free of prompt presentation. - Translate the delete-confirmation keyword for el/ja/zh/ar (the four locales that still shipped the English "delete"). - Make the language and font comboboxes RTL-correct (logical ms-* instead of physical ml-*), and let the language combobox be searched by English name via a visually-hidden label (ContentLanguage::options() now exposes englishName). - Correct the ContentLanguage class docblock: the enum is also the source of truth for the UI locales' text direction. Tests: SetLocale middleware dir/RTL, isRtl and the full 15-language englishName/label match arms, LLM language detection beyond en/es/pt-BR, and store-path persistence of a non-default content language plus rejection of an unsupported one.
61 lines
2.1 KiB
PHP
61 lines
2.1 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
|
||
'back' => 'Πίσω',
|
||
|
||
'beta' => 'Βήτα',
|
||
|
||
'confirm_modal' => [
|
||
'cannot_be_undone' => 'Αυτό δεν μπορεί να αναιρεθεί.',
|
||
'type' => 'Πληκτρολογήστε',
|
||
'to_confirm' => 'για επιβεβαίωση.',
|
||
'copy_to_clipboard' => 'Αντιγραφή στο πρόχειρο',
|
||
'delete_keyword' => 'διαγραφή',
|
||
],
|
||
|
||
'photo_upload' => [
|
||
'upload' => 'Μεταφόρτωση',
|
||
'uploading' => 'Μεταφόρτωση...',
|
||
'remove' => 'Αφαίρεση φωτογραφίας',
|
||
'hint' => 'Συνιστάται: τετράγωνη εικόνα, έως 2 MB.',
|
||
],
|
||
|
||
'timezone' => [
|
||
'select' => 'Επιλογή ζώνης ώρας',
|
||
'search' => 'Αναζήτηση ζώνης ώρας...',
|
||
'empty' => 'Δεν βρέθηκε ζώνη ώρας',
|
||
],
|
||
|
||
'date_picker' => [
|
||
'select' => 'Επιλογή ημερομηνίας',
|
||
],
|
||
|
||
'date_range_picker' => [
|
||
'placeholder' => 'Επιλέξτε εύρος ημερομηνιών',
|
||
'today' => 'Σήμερα',
|
||
'yesterday' => 'Χθες',
|
||
'last_7_days' => 'Τελευταίες 7 ημέρες',
|
||
'last_30_days' => 'Τελευταίες 30 ημέρες',
|
||
'last_3_months' => 'Τελευταίοι 3 μήνες',
|
||
'last_6_months' => 'Τελευταίοι 6 μήνες',
|
||
'last_12_months' => 'Τελευταίοι 12 μήνες',
|
||
'this_month' => 'Αυτόν τον μήνα',
|
||
'last_month' => 'Προηγούμενος μήνας',
|
||
'year_to_date' => 'Από την αρχή του έτους',
|
||
'last_year' => 'Πέρσι',
|
||
],
|
||
|
||
'cancel' => 'Ακύρωση',
|
||
'clear' => 'Καθαρισμός',
|
||
'close' => 'Κλείσιμο',
|
||
'loading_more' => 'Φόρτωση περισσότερων...',
|
||
|
||
'actions' => [
|
||
'copy' => 'Αντιγραφή',
|
||
'copied' => 'Αντιγράφηκε',
|
||
'copy_failed' => 'Αποτυχία αντιγραφής στο πρόχειρο',
|
||
],
|
||
];
|