mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-24 15:51:46 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const photos: TranslationStrings = {
|
|
'photos.title': 'صور',
|
|
'photos.subtitle': '{count} صورة لـ {trip}',
|
|
'photos.dropHere': 'أسقط الصور هنا...',
|
|
'photos.dropHereActive': 'أسقط الصور هنا',
|
|
'photos.captionForAll': 'تعليق (للجميع)',
|
|
'photos.captionPlaceholder': 'تعليق اختياري...',
|
|
'photos.addCaption': 'إضافة تعليق...',
|
|
'photos.allDays': 'كل الأيام',
|
|
'photos.noPhotos': 'لا توجد صور بعد',
|
|
'photos.uploadHint': 'ارفع صور رحلتك',
|
|
'photos.clickToSelect': 'أو انقر للاختيار',
|
|
'photos.linkPlace': 'ربط بمكان',
|
|
'photos.noPlace': 'بلا مكان',
|
|
'photos.uploadN': 'رفع {n} صورة',
|
|
'photos.linkDay': 'ربط اليوم',
|
|
'photos.noDay': 'لا يوم',
|
|
'photos.dayLabel': 'اليوم {number}',
|
|
'photos.photoSelected': 'صورة محددة',
|
|
'photos.photosSelected': 'صور محددة',
|
|
'photos.fileTypeHint':
|
|
'JPG, PNG, WebP · الحد الأقصى 10 ميغابايت · حتى 30 صورة',
|
|
};
|
|
export default photos;
|