trypost/lang/el/common.php
Paulo Castellano 2549a82e9b Address review: cropper mime/zoom/error fixes, harden browser test
- Output a canvas-encodable mime (jpeg/png/webp, else png) and keep the File's
  name/extension in sync, so non-encodable input (gif/svg/heic) no longer ships
  PNG bytes mislabeled as the original type.
- Clamp zoom to a maximum (8x cover) so scrolling in can't collapse the crop to
  a sub-pixel region.
- Handle undecodable/zero-dimension images (@error + naturalWidth guard) with a
  crop_error message instead of a permanently-disabled Save.
- Replace the str_contains(static::class) Vite heuristic with a dedicated
  BrowserTestCase ($fakesVite = false).
- The browser test now decodes the dispatched blob and asserts a 512x512 image,
  and uses route(..., absolute: false) instead of a hardcoded path.
- Remove tests/Browser/ProbeTest.php (committed debug scratch).
2026-07-03 22:07:23 -03:00

67 lines
2.6 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
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.',
'crop_title' => 'Περικοπή εικόνας',
'crop_description' => 'Σύρετε και κάντε ζουμ για πλαισίωση.',
'crop_hint' => 'Σύρετε για επανατοποθέτηση',
'crop_save' => 'Αποθήκευση',
'crop_cancel' => 'Άκυρο',
'crop_error' => 'Δεν ήταν δυνατή η φόρτωση αυτής της εικόνας. Δοκιμάστε άλλο αρχείο.',
],
'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' => 'Αποτυχία αντιγραφής στο πρόχειρο',
],
];