Replace the move-image-behind-a-fixed-frame model with a selection box over the fully visible (contain-fit) image: drag to move, corner handles to resize, locked to 1:1 for the square avatar/logo output. The default selection is inset so the crop outline is always visible, handles sit inside the frame so they are never clipped, and wheel/pinch zoom is swallowed. Reset drag state on open/close, guard pointer capture and multi-touch, and fail-safe the canvas encode. Update the crop copy in all 15 locales to match the selection model.
67 lines
2 KiB
PHP
67 lines
2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'back' => 'Retour',
|
|
|
|
'beta' => 'Bêta',
|
|
|
|
'confirm_modal' => [
|
|
'cannot_be_undone' => 'Cette action est irréversible.',
|
|
'type' => 'Saisissez',
|
|
'to_confirm' => 'pour confirmer.',
|
|
'copy_to_clipboard' => 'Copier dans le presse-papiers',
|
|
'delete_keyword' => 'supprimer',
|
|
],
|
|
|
|
'photo_upload' => [
|
|
'upload' => 'Importer',
|
|
'uploading' => 'Import en cours...',
|
|
'remove' => 'Supprimer la photo',
|
|
'hint' => 'Recommandé : image carrée, 2 Mo maximum.',
|
|
'crop_title' => 'Recadrer l\'image',
|
|
'crop_description' => 'Sélectionnez la zone à conserver.',
|
|
'crop_hint' => 'Faites glisser pour déplacer, ou un coin pour redimensionner.',
|
|
'crop_save' => 'Enregistrer',
|
|
'crop_cancel' => 'Annuler',
|
|
'crop_error' => 'Impossible de charger cette image. Essayez un autre fichier.',
|
|
],
|
|
|
|
'timezone' => [
|
|
'select' => 'Sélectionner un fuseau horaire',
|
|
'search' => 'Rechercher un fuseau horaire...',
|
|
'empty' => 'Aucun fuseau horaire trouvé',
|
|
],
|
|
|
|
'date_picker' => [
|
|
'select' => 'Sélectionner une date',
|
|
],
|
|
|
|
'date_range_picker' => [
|
|
'placeholder' => 'Choisir une plage de dates',
|
|
'today' => 'Aujourd\'hui',
|
|
'yesterday' => 'Hier',
|
|
'last_7_days' => '7 derniers jours',
|
|
'last_30_days' => '30 derniers jours',
|
|
'last_3_months' => '3 derniers mois',
|
|
'last_6_months' => '6 derniers mois',
|
|
'last_12_months' => '12 derniers mois',
|
|
'this_month' => 'Ce mois-ci',
|
|
'last_month' => 'Le mois dernier',
|
|
'year_to_date' => 'Depuis le début de l\'année',
|
|
'last_year' => 'L\'année dernière',
|
|
],
|
|
|
|
'cancel' => 'Annuler',
|
|
'clear' => 'Effacer',
|
|
'close' => 'Fermer',
|
|
'loading_more' => 'Chargement...',
|
|
|
|
'actions' => [
|
|
'copy' => 'Copier',
|
|
'copied' => 'Copié',
|
|
'copy_failed' => 'Échec de la copie dans le presse-papiers',
|
|
],
|
|
];
|