feat(Locale): add Korean translations (#10243)

This commit is contained in:
neverland 2022-01-26 10:39:54 +08:00 committed by GitHub
parent aa50e59da9
commit fc86330d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 82 additions and 0 deletions

View File

@ -47,6 +47,7 @@ Current supported languages:
| Spanish (Spain) | es-ES |
| French | fr-FR |
| Japanese | ja-JP |
| Korean | ko-KR |
| Norwegian | nb-NO |
| Portuguese (Brazil) | pt-BR |
| Romanian | ro-RO |

View File

@ -48,6 +48,7 @@ Locale.add(messages);
| 西班牙语 | es-ES |
| 法语 | fr-FR |
| 日语 | ja-JP |
| 韩语/朝鲜语 | ko-KR.ts |
| 挪威语 | nb-NO |
| 葡萄牙语 (巴西) | pt-BR |
| 罗马尼亚语 | ro-RO |

View File

@ -0,0 +1,80 @@
export default {
name: '이름',
tel: '핸드폰',
save: '구하다',
confirm: '확인',
cancel: '취소',
delete: '삭제',
loading: '로딩 중...',
noCoupon: '쿠폰 없음',
nameEmpty: '이름을 기입해주세요',
telInvalid: '잘못된 전화번호',
vanCalendar: {
end: '끝',
start: '시작',
title: '달력',
startEnd: '시작/끝',
weekdays: [
'일요일',
'월요일',
'화요일',
'수요일',
'목요일',
'금요일',
'토요일',
],
monthTitle: (year: number, month: number) => `${year}/${month}`,
rangePrompt: (maxRange: number) => `${maxRange} 일 이내로 선택`,
},
vanCascader: {
select: '선택하다',
},
vanContactCard: {
addText: '연락처 정보 추가',
},
vanContactList: {
addText: '새 연락처 추가',
},
vanPagination: {
prev: '이전의',
next: '다음',
},
vanPullRefresh: {
pulling: '당겨서 새로고침...',
loosing: '새로 고침...',
},
vanSubmitBar: {
label: '총:',
},
vanCoupon: {
unlimited: '제한 없는',
discount: (discount: number) => `${discount * 10}% 할인`,
condition: (condition: number) => `최소 ${condition}`,
},
vanCouponCell: {
title: '쿠폰',
count: (count: number) => `${count} 개의 쿠폰이 있습니다`,
},
vanCouponList: {
exchange: '교환',
close: '닫다',
enable: '사용 가능',
disabled: '없는',
placeholder: '쿠폰 코드',
},
vanAddressEdit: {
area: '지역',
postal: '우편 엽서',
areaEmpty: '접수지역을 선택해주세요',
addressEmpty: '주소는 비워둘 수 없습니다',
postalEmpty: '잘못된 우편번호',
defaultAddress: '기본 주소로 설정',
},
vanAddressEditDetail: {
label: '주소',
placeholder: '주소',
},
vanAddressList: {
add: '새 주소 추가',
},
};