File size: 1,052 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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}',
  'undo.importBooking': 'استيراد تأكيد الحجز',
};
export default undo;