mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 14:51:45 +00:00
chore: move i18n to shared package (#1066)
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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 Maps 가져오기',
|
||||
'undo.importNaverList': '네이버 지도 가져오기',
|
||||
'undo.addPlace': '장소가 추가되었습니다',
|
||||
'undo.done': '실행 취소됨: {action}',
|
||||
};
|
||||
export default undo;
|
||||
Reference in New Issue
Block a user