Files
TREK/shared/src/i18n/ar/photos.ts
T
Julien G. 126f2df21b chore: move i18n to shared package (#1066)
* chore: move i18n to shared package

* chore: move server translations to shared package and apply linter and prettier on entire shared package
2026-05-26 20:27:29 +02:00

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;