mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 13: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
22 lines
988 B
TypeScript
22 lines
988 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const undo: TranslationStrings = {
|
|
'undo.button': 'تراجع',
|
|
'undo.tooltip': 'تراجع: {action}',
|
|
'undo.assignPlace': 'تم تعيين المكان لليوم',
|
|
'undo.removeAssignment': 'تم إزالة المكان من اليوم',
|
|
'undo.reorder': 'تمت إعادة ترتيب الأماكن',
|
|
'undo.optimize': 'تم تحسين المسار',
|
|
'undo.deletePlace': 'تم حذف المكان',
|
|
'undo.deletePlaces': 'تم حذف الأماكن',
|
|
'undo.moveDay': 'تم نقل المكان إلى يوم آخر',
|
|
'undo.lock': 'تم تبديل قفل المكان',
|
|
'undo.importGpx': 'استيراد GPX',
|
|
'undo.importKeyholeMarkup': 'استيراد KMZ/KML',
|
|
'undo.importGoogleList': 'استيراد خرائط Google',
|
|
'undo.importNaverList': 'استيراد خرائط Naver',
|
|
'undo.addPlace': 'تمت إضافة المكان',
|
|
'undo.done': 'تم التراجع: {action}',
|
|
};
|
|
export default undo;
|