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
59 lines
2.8 KiB
TypeScript
59 lines
2.8 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const atlas: TranslationStrings = {
|
|
'atlas.subtitle': 'بصمتك السفرية حول العالم',
|
|
'atlas.countries': 'الدول',
|
|
'atlas.trips': 'الرحلات',
|
|
'atlas.places': 'الأماكن',
|
|
'atlas.unmark': 'إزالة',
|
|
'atlas.confirmMark': 'تعيين هذا البلد كمُزار؟',
|
|
'atlas.confirmUnmark': 'إزالة هذا البلد من قائمة المُزارة؟',
|
|
'atlas.confirmUnmarkRegion': 'إزالة هذه المنطقة من قائمة المُزارة؟',
|
|
'atlas.markVisited': 'تعيين كمُزار',
|
|
'atlas.markVisitedHint': 'إضافة هذا البلد إلى قائمة المُزارة',
|
|
'atlas.markRegionVisitedHint': 'إضافة هذه المنطقة إلى قائمة المُزارة',
|
|
'atlas.addToBucket': 'إضافة إلى قائمة الأمنيات',
|
|
'atlas.addPoi': 'إضافة مكان',
|
|
'atlas.searchCountry': 'ابحث عن دولة...',
|
|
'atlas.bucketNamePlaceholder': 'الاسم (بلد، مدينة، مكان…)',
|
|
'atlas.month': 'الشهر',
|
|
'atlas.year': 'السنة',
|
|
'atlas.addToBucketHint': 'حفظ كمكان تريد زيارته',
|
|
'atlas.bucketWhen': 'متى تخطط للزيارة؟',
|
|
'atlas.statsTab': 'الإحصائيات',
|
|
'atlas.bucketTab': 'قائمة الأمنيات',
|
|
'atlas.addBucket': 'إضافة إلى قائمة الأمنيات',
|
|
'atlas.bucketNotesPlaceholder': 'ملاحظات (اختياري)',
|
|
'atlas.bucketEmpty': 'قائمة أمنياتك فارغة',
|
|
'atlas.bucketEmptyHint': 'أضف أماكن تحلم بزيارتها',
|
|
'atlas.days': 'الأيام',
|
|
'atlas.visitedCountries': 'الدول التي تمت زيارتها',
|
|
'atlas.cities': 'المدن',
|
|
'atlas.noData': 'لا توجد بيانات سفر بعد',
|
|
'atlas.noDataHint': 'أنشئ رحلة وأضف أماكن لرؤية خريطتك العالمية',
|
|
'atlas.lastTrip': 'آخر رحلة',
|
|
'atlas.nextTrip': 'الرحلة القادمة',
|
|
'atlas.daysLeft': 'يوم متبقٍ',
|
|
'atlas.streak': 'سلسلة',
|
|
'atlas.years': 'سنوات',
|
|
'atlas.yearInRow': 'سنة متتالية',
|
|
'atlas.yearsInRow': 'سنوات متتالية',
|
|
'atlas.tripIn': 'رحلة في',
|
|
'atlas.tripsIn': 'رحلات في',
|
|
'atlas.since': 'منذ',
|
|
'atlas.europe': 'أوروبا',
|
|
'atlas.asia': 'آسيا',
|
|
'atlas.northAmerica': 'أمريكا الشمالية',
|
|
'atlas.southAmerica': 'أمريكا الجنوبية',
|
|
'atlas.africa': 'أفريقيا',
|
|
'atlas.oceania': 'أوقيانوسيا',
|
|
'atlas.other': 'أخرى',
|
|
'atlas.firstVisit': 'أول رحلة',
|
|
'atlas.lastVisitLabel': 'آخر رحلة',
|
|
'atlas.tripSingular': 'رحلة',
|
|
'atlas.tripPlural': 'رحلات',
|
|
'atlas.placeVisited': 'مكان تمت زيارته',
|
|
'atlas.placesVisited': 'أماكن تمت زيارتها',
|
|
};
|
|
export default atlas;
|