Files
TREK/shared/src/i18n/ko/common.ts
T
Julien G. 126f2df21b 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
2026-05-26 20:27:29 +02:00

56 lines
1.7 KiB
TypeScript

import type { TranslationStrings } from '../types';
const common: TranslationStrings = {
'common.save': '저장',
'common.showMore': '더 보기',
'common.showLess': '접기',
'common.cancel': '취소',
'common.clear': '지우기',
'common.delete': '삭제',
'common.edit': '편집',
'common.add': '추가',
'common.loading': '로딩 중...',
'common.import': '가져오기',
'common.select': '선택',
'common.selectAll': '전체 선택',
'common.deselectAll': '전체 해제',
'common.error': '오류',
'common.unknownError': '알 수 없는 오류',
'common.tooManyAttempts':
'시도 횟수가 너무 많습니다. 잠시 후 다시 시도해 주세요.',
'common.back': '뒤로',
'common.all': '전체',
'common.close': '닫기',
'common.open': '열기',
'common.upload': '업로드',
'common.search': '검색',
'common.confirm': '확인',
'common.ok': '확인',
'common.yes': '예',
'common.no': '아니오',
'common.or': '또는',
'common.none': '없음',
'common.date': '날짜',
'common.rename': '이름 변경',
'common.discardChanges': '변경 사항 취소',
'common.discard': '취소',
'common.name': '이름',
'common.email': '이메일',
'common.password': '비밀번호',
'common.saving': '저장 중...',
'common.justNow': '방금 전',
'common.hoursAgo': '{count}시간 전',
'common.daysAgo': '{count}일 전',
'common.saved': '저장됨',
'common.update': '업데이트',
'common.change': '변경',
'common.uploading': '업로드 중…',
'common.backToPlanning': '계획으로 돌아가기',
'common.reset': '초기화',
'common.expand': '펼치기',
'common.collapse': '접기',
'common.copy': '복사',
'common.copied': '복사됨',
};
export default common;