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
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
return [
|
||
|
||
'back' => 'Geri',
|
||
|
||
'beta' => 'Beta',
|
||
|
||
'confirm_modal' => [
|
||
'cannot_be_undone' => 'Bu işlem geri alınamaz.',
|
||
'type' => 'Yazın:',
|
||
'to_confirm' => 'onaylamak için.',
|
||
'copy_to_clipboard' => 'Panoya kopyala',
|
||
'delete_keyword' => 'sil',
|
||
],
|
||
|
||
'photo_upload' => [
|
||
'upload' => 'Yükle',
|
||
'uploading' => 'Yükleniyor...',
|
||
'remove' => 'Fotoğrafı kaldır',
|
||
'hint' => 'Önerilen: kare görsel, en fazla 2 MB.',
|
||
'crop_title' => 'Görseli kırp',
|
||
'crop_description' => 'Saklamak istediğiniz alanı seçin.',
|
||
'crop_hint' => 'Taşımak için sürükleyin veya boyutlandırmak için bir köşeyi sürükleyin.',
|
||
'crop_save' => 'Kaydet',
|
||
'crop_cancel' => 'İptal',
|
||
'crop_error' => 'Bu görsel yüklenemedi. Başka bir dosya deneyin.',
|
||
],
|
||
|
||
'timezone' => [
|
||
'select' => 'Saat dilimi seç',
|
||
'search' => 'Saat dilimi ara...',
|
||
'empty' => 'Saat dilimi bulunamadı',
|
||
],
|
||
|
||
'date_picker' => [
|
||
'select' => 'Tarih seç',
|
||
],
|
||
|
||
'date_range_picker' => [
|
||
'placeholder' => 'Bir tarih aralığı seçin',
|
||
'today' => 'Bugün',
|
||
'yesterday' => 'Dün',
|
||
'last_7_days' => 'Son 7 gün',
|
||
'last_30_days' => 'Son 30 gün',
|
||
'last_3_months' => 'Son 3 ay',
|
||
'last_6_months' => 'Son 6 ay',
|
||
'last_12_months' => 'Son 12 ay',
|
||
'this_month' => 'Bu ay',
|
||
'last_month' => 'Geçen ay',
|
||
'year_to_date' => 'Yıl başından bugüne',
|
||
'last_year' => 'Geçen yıl',
|
||
],
|
||
|
||
'cancel' => 'İptal',
|
||
'clear' => 'Temizle',
|
||
'close' => 'Kapat',
|
||
'loading_more' => 'Daha fazla yükleniyor...',
|
||
|
||
'actions' => [
|
||
'copy' => 'Kopyala',
|
||
'copied' => 'Kopyalandı',
|
||
'copy_failed' => 'Panoya kopyalanamadı',
|
||
],
|
||
];
|