Translate the interface into 12 languages
Add full lang/ translations for fr, de, it, nl, pl, el, ja, ko, zh, ru,
tr, and ar — all 23 base files each, with identical key trees to lang/en,
preserved :placeholders and plural forms, and native product terminology.
2026-07-03 18:38:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
'back' => 'Zurück',
|
|
|
|
|
|
|
|
|
|
'confirm_modal' => [
|
|
|
|
|
'cannot_be_undone' => 'Dies kann nicht rückgängig gemacht werden.',
|
|
|
|
|
'type' => 'Gib',
|
|
|
|
|
'to_confirm' => 'zur Bestätigung ein.',
|
|
|
|
|
'copy_to_clipboard' => 'In die Zwischenablage kopieren',
|
|
|
|
|
'delete_keyword' => 'löschen',
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'photo_upload' => [
|
|
|
|
|
'upload' => 'Hochladen',
|
|
|
|
|
'uploading' => 'Wird hochgeladen...',
|
|
|
|
|
'remove' => 'Foto entfernen',
|
|
|
|
|
'hint' => 'Empfohlen: quadratisches Bild, max. 2 MB.',
|
Crop the avatar/logo before upload with a dependency-free cropper
Selecting an avatar or workspace logo now opens a crop dialog (drag + zoom)
before uploading, so the image is framed the way it renders. The crop is
performed client-side and the resized 512x512 result is what gets uploaded.
This reworks the idea from #131 without its cropper dependency: vue-advanced-cropper
was last released ~2 years ago and we did not want an unmaintained package for
something this load-bearing. What we need is narrow (fixed 1:1, a circle/square
mask, fixed-size output), so a small canvas-based cropper covers it:
- imageCrop.ts: pure transform math (cover-fit, clamp, zoom, viewport->source).
- ImageCropperDialog.vue: CSS-transform preview, pointer drag, wheel/button zoom,
a ResizeObserver to measure the modal (no requestAnimationFrame timing hacks),
and a canvas toBlob only on save.
- PhotoUpload.vue: opens the cropper on file select; the mask shape follows the
display shape (round avatar / square logo) instead of always being round.
- crop_* strings added to all 15 locales.
Also installs Pest browser testing (pest-plugin-browser + Playwright) and adds a
browser test for the crop flow. TestCase only calls withoutVite() for non-browser
tests, since browser tests need the real Vite assets to boot the SPA. The Pest
browser server does not parse multipart uploads, so the test asserts the crop
dispatches the correct upload request; endpoint persistence stays covered by
ProfileUpdateTest.
2026-07-04 00:46:19 +00:00
|
|
|
'crop_title' => 'Bild zuschneiden',
|
2026-07-04 12:56:31 +00:00
|
|
|
'crop_description' => 'Wählen Sie den Bereich aus, den Sie behalten möchten.',
|
|
|
|
|
'crop_hint' => 'Zum Verschieben ziehen oder an einer Ecke die Größe ändern.',
|
Crop the avatar/logo before upload with a dependency-free cropper
Selecting an avatar or workspace logo now opens a crop dialog (drag + zoom)
before uploading, so the image is framed the way it renders. The crop is
performed client-side and the resized 512x512 result is what gets uploaded.
This reworks the idea from #131 without its cropper dependency: vue-advanced-cropper
was last released ~2 years ago and we did not want an unmaintained package for
something this load-bearing. What we need is narrow (fixed 1:1, a circle/square
mask, fixed-size output), so a small canvas-based cropper covers it:
- imageCrop.ts: pure transform math (cover-fit, clamp, zoom, viewport->source).
- ImageCropperDialog.vue: CSS-transform preview, pointer drag, wheel/button zoom,
a ResizeObserver to measure the modal (no requestAnimationFrame timing hacks),
and a canvas toBlob only on save.
- PhotoUpload.vue: opens the cropper on file select; the mask shape follows the
display shape (round avatar / square logo) instead of always being round.
- crop_* strings added to all 15 locales.
Also installs Pest browser testing (pest-plugin-browser + Playwright) and adds a
browser test for the crop flow. TestCase only calls withoutVite() for non-browser
tests, since browser tests need the real Vite assets to boot the SPA. The Pest
browser server does not parse multipart uploads, so the test asserts the crop
dispatches the correct upload request; endpoint persistence stays covered by
ProfileUpdateTest.
2026-07-04 00:46:19 +00:00
|
|
|
'crop_save' => 'Speichern',
|
|
|
|
|
'crop_cancel' => 'Abbrechen',
|
2026-07-04 01:07:23 +00:00
|
|
|
'crop_error' => 'Dieses Bild konnte nicht geladen werden. Versuchen Sie eine andere Datei.',
|
Translate the interface into 12 languages
Add full lang/ translations for fr, de, it, nl, pl, el, ja, ko, zh, ru,
tr, and ar — all 23 base files each, with identical key trees to lang/en,
preserved :placeholders and plural forms, and native product terminology.
2026-07-03 18:38:40 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'timezone' => [
|
|
|
|
|
'select' => 'Zeitzone auswählen',
|
|
|
|
|
'search' => 'Zeitzone suchen...',
|
|
|
|
|
'empty' => 'Keine Zeitzone gefunden',
|
|
|
|
|
],
|
|
|
|
|
|
2026-08-06 00:02:34 +00:00
|
|
|
'just_now' => 'Gerade eben',
|
|
|
|
|
|
Translate the interface into 12 languages
Add full lang/ translations for fr, de, it, nl, pl, el, ja, ko, zh, ru,
tr, and ar — all 23 base files each, with identical key trees to lang/en,
preserved :placeholders and plural forms, and native product terminology.
2026-07-03 18:38:40 +00:00
|
|
|
'date_picker' => [
|
2026-08-06 00:02:34 +00:00
|
|
|
'label' => 'Datumsauswahl',
|
Translate the interface into 12 languages
Add full lang/ translations for fr, de, it, nl, pl, el, ja, ko, zh, ru,
tr, and ar — all 23 base files each, with identical key trees to lang/en,
preserved :placeholders and plural forms, and native product terminology.
2026-07-03 18:38:40 +00:00
|
|
|
'select' => 'Datum auswählen',
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'date_range_picker' => [
|
|
|
|
|
'placeholder' => 'Zeitraum wählen',
|
|
|
|
|
'today' => 'Heute',
|
|
|
|
|
'yesterday' => 'Gestern',
|
|
|
|
|
'last_7_days' => 'Letzte 7 Tage',
|
|
|
|
|
'last_30_days' => 'Letzte 30 Tage',
|
|
|
|
|
'last_3_months' => 'Letzte 3 Monate',
|
|
|
|
|
'last_6_months' => 'Letzte 6 Monate',
|
|
|
|
|
'last_12_months' => 'Letzte 12 Monate',
|
|
|
|
|
'this_month' => 'Dieser Monat',
|
|
|
|
|
'last_month' => 'Letzter Monat',
|
|
|
|
|
'year_to_date' => 'Seit Jahresbeginn',
|
|
|
|
|
'last_year' => 'Letztes Jahr',
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'cancel' => 'Abbrechen',
|
|
|
|
|
'clear' => 'Zurücksetzen',
|
|
|
|
|
'close' => 'Schließen',
|
|
|
|
|
'loading_more' => 'Weitere werden geladen...',
|
|
|
|
|
|
|
|
|
|
'actions' => [
|
|
|
|
|
'copy' => 'Kopieren',
|
|
|
|
|
'copied' => 'Kopiert',
|
|
|
|
|
'copy_failed' => 'Kopieren in die Zwischenablage fehlgeschlagen',
|
|
|
|
|
],
|
|
|
|
|
];
|