mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 14:21:46 +00:00
17264ef745
* feat(i18n): add Greek translation (#1061) * i18n: complete Turkish (tr) translation (#1075) Fill in the remaining ~2100 UI strings in shared/src/i18n/tr so Turkish matches the English catalog. Brand names, URLs, and technical placeholders are left untranslated by design. * chore: prettier + lint * chore: enforce prettier & lint on shared package --------- Co-authored-by: Dimitris Kafetzis <39215021+Dkafetzis@users.noreply.github.com> Co-authored-by: Ahmet Yılmaz <70577707+sharkpaw@users.noreply.github.com>
26 lines
1.1 KiB
TypeScript
26 lines
1.1 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
||
|
||
const photos: TranslationStrings = {
|
||
'photos.title': 'Fotoğraflar',
|
||
'photos.subtitle': '{trip} için {count} fotoğraf',
|
||
'photos.dropHere': 'Fotoğrafları buraya bırakın...',
|
||
'photos.dropHereActive': 'Fotoğrafları buraya bırakın',
|
||
'photos.captionForAll': 'Açıklama (hepsi için)',
|
||
'photos.captionPlaceholder': 'İsteğe bağlı açıklama...',
|
||
'photos.addCaption': 'Açıklama ekle...',
|
||
'photos.allDays': 'Tüm Günler',
|
||
'photos.noPhotos': 'Henüz fotoğraf yok',
|
||
'photos.uploadHint': 'Seyahat fotoğraflarınızı yükleyin',
|
||
'photos.clickToSelect': 'veya seçmek için tıklayın',
|
||
'photos.linkPlace': 'Yere Bağla',
|
||
'photos.noPlace': 'Yer Yok',
|
||
'photos.uploadN': '{n} fotoğraf yükle',
|
||
'photos.linkDay': 'Güne Bağla',
|
||
'photos.noDay': 'Gün Yok',
|
||
'photos.dayLabel': '{number}. gün',
|
||
'photos.photoSelected': 'Fotoğraf seçildi',
|
||
'photos.photosSelected': 'Fotoğraflar seçildi',
|
||
'photos.fileTypeHint': 'JPG, PNG, WebP · maks. 10 MB · en fazla 30 fotoğraf',
|
||
};
|
||
export default photos;
|