mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 22:31: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
22 lines
860 B
TypeScript
22 lines
860 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const shared: TranslationStrings = {
|
|
'shared.expired': 'الرابط منتهي أو غير صالح',
|
|
'shared.expiredHint': 'رابط الرحلة المشترك لم يعد نشطًا.',
|
|
'shared.readOnly': 'عرض للقراءة فقط',
|
|
'shared.tabPlan': 'الخطة',
|
|
'shared.tabBookings': 'الحجوزات',
|
|
'shared.tabPacking': 'قائمة التعبئة',
|
|
'shared.tabBudget': 'الميزانية',
|
|
'shared.tabChat': 'الدردشة',
|
|
'shared.days': 'أيام',
|
|
'shared.places': 'أماكن',
|
|
'shared.other': 'أخرى',
|
|
'shared.totalBudget': 'إجمالي الميزانية',
|
|
'shared.messages': 'رسائل',
|
|
'shared.sharedVia': 'تمت المشاركة عبر',
|
|
'shared.confirmed': 'مؤكد',
|
|
'shared.pending': 'قيد الانتظار',
|
|
};
|
|
export default shared;
|