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.6 KiB
PHP
67 lines
2.6 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 МБ.',
|
||
'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' => 'Не удалось скопировать в буфер обмена',
|
||
],
|
||
];
|