mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 14:21: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
57 lines
2.9 KiB
TypeScript
57 lines
2.9 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const journey: TranslationStrings = {
|
|
'journey.search.placeholder': 'البحث في الرحلات…',
|
|
'journey.search.noResults': 'لا توجد رحلات تطابق "{query}"',
|
|
'journey.status.archived': 'مؤرشف',
|
|
'journey.detail.backToJourney': 'العودة للمجلة',
|
|
'journey.detail.photos': 'صور',
|
|
'journey.detail.day': 'اليوم {number}',
|
|
'journey.detail.places': 'أماكن',
|
|
'journey.skeletons.show': 'إظهار الاقتراحات',
|
|
'journey.skeletons.hide': 'إخفاء الاقتراحات',
|
|
'journey.editor.discardChangesConfirm':
|
|
'لديك تغييرات غير محفوظة. هل تريد تجاهلها؟',
|
|
'journey.editor.uploadFailed': 'فشل رفع الصور',
|
|
'journey.editor.uploadPhotos': 'رفع صور',
|
|
'journey.editor.uploading': '...جارٍ الرفع',
|
|
'journey.editor.uploadingProgress': 'جارٍ الرفع {done}/{total}…',
|
|
'journey.editor.uploadPartialFailed':
|
|
'فشل رفع {failed} من {total} — احفظ مجدداً للمحاولة',
|
|
'journey.editor.fromGallery': 'من المعرض',
|
|
'journey.editor.addAnother': 'إضافة آخر',
|
|
'journey.editor.makeFirst': 'جعله الأول',
|
|
'journey.editor.searching': 'جارٍ البحث...',
|
|
'journey.share.copy': 'نسخ',
|
|
'journey.share.copied': 'تم النسخ!',
|
|
'journey.invite.role': 'الدور',
|
|
'journey.invite.viewer': 'مشاهد',
|
|
'journey.invite.editor': 'محرر',
|
|
'journey.invite.invite': 'دعوة',
|
|
'journey.invite.inviting': 'جارٍ الدعوة...',
|
|
'journey.settings.endJourney': 'أرشفة الرحلة',
|
|
'journey.settings.reopenJourney': 'استعادة الرحلة',
|
|
'journey.settings.archived': 'تم أرشفة الرحلة',
|
|
'journey.settings.reopened': 'تمت إعادة فتح الرحلة',
|
|
'journey.settings.endDescription':
|
|
'يخفي شارة البث المباشر. يمكنك إعادة الفتح في أي وقت.',
|
|
'journey.settings.failedToDelete': 'فشل في الحذف',
|
|
'journey.entries.deleteTitle': 'حذف الإدخال',
|
|
'journey.photosUploaded': 'تم رفع {count} صورة',
|
|
'journey.photosUploadFailed': 'فشل رفع بعض الصور',
|
|
'journey.photosAdded': 'تمت إضافة {count} صورة',
|
|
'journey.picker.tripPeriod': 'فترة الرحلة',
|
|
'journey.picker.dateRange': 'نطاق التاريخ',
|
|
'journey.picker.allPhotos': 'كل الصور',
|
|
'journey.picker.albums': 'ألبومات',
|
|
'journey.picker.selected': 'محدد',
|
|
'journey.picker.addTo': 'إضافة إلى',
|
|
'journey.picker.newGallery': 'معرض جديد',
|
|
'journey.picker.selectAll': 'تحديد الكل',
|
|
'journey.picker.deselectAll': 'إلغاء تحديد الكل',
|
|
'journey.picker.noAlbums': 'لم يتم العثور على ألبومات',
|
|
'journey.picker.selectDate': 'اختر تاريخ',
|
|
'journey.picker.search': 'بحث',
|
|
};
|
|
export default journey;
|