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:
Julien G.
2026-05-26 20:27:29 +02:00
committed by GitHub
parent 324d930ca3
commit 126f2df21b
860 changed files with 56891 additions and 46377 deletions
+21
View File
@@ -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;