File size: 836 Bytes
cb43fbd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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;