Skip to content

Commit

Permalink
Merge pull request #1352 from Tradeshift/korean-translation
Browse files Browse the repository at this point in the history
Added korean translation
  • Loading branch information
isprogfun authored May 31, 2024
2 parents 4c786cd + 22b5455 commit 45414d4
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/xhtml/components/times/langs.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
('da de-CH de en-GB en-US en es ' +
'fi fr hu id it ja ms nb-NO ' +
'nl no pl pt-BR pt-PT ro ru ' +
'se sv-SE zh-CN zh-TW')
'se sv-SE zh-CN zh-TW ko ko-KR')
.split(' ')
.forEach(function(code) {
<tr>
Expand Down
38 changes: 38 additions & 0 deletions src/runtime/js/ts.ui/lang/ts-lang-ko-kr.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
ts.ui.DatePicker.localize({
firstDay: 1,
monthNames: [
'1월',
'2월',
'3월',
'4월',
'5월',
'6월',
'7월',
'8월',
'9월',
'10월',
'11월',
'12월'
],
monthNamesShort: [
'1월',
'2월',
'3월',
'4월',
'5월',
'6월',
'7월',
'8월',
'9월',
'10월',
'11월',
'12월'
],
dayNames: ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'],
dayNamesShort: ['일', '월', '화', '수', '목', '금', '토'],
dayNamesMin: ['일', '월', '화', '수', '목', '금', '토'],
deselect: '선택 해제'
});
ts.ui.Footer.localize({
collaboration: '협업 열기'
});
38 changes: 38 additions & 0 deletions src/runtime/js/ts.ui/lang/ts-lang-ko.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
ts.ui.DatePicker.localize({
firstDay: 1,
monthNames: [
'1월',
'2월',
'3월',
'4월',
'5월',
'6월',
'7월',
'8월',
'9월',
'10월',
'11월',
'12월'
],
monthNamesShort: [
'1월',
'2월',
'3월',
'4월',
'5월',
'6월',
'7월',
'8월',
'9월',
'10월',
'11월',
'12월'
],
dayNames: ['일요일', '월요일', '화요일', '수요일', '목요일', '금요일', '토요일'],
dayNamesShort: ['일', '월', '화', '수', '목', '금', '토'],
dayNamesMin: ['일', '월', '화', '수', '목', '금', '토'],
deselect: '선택 해제'
});
ts.ui.Footer.localize({
collaboration: '협업 열기'
});

0 comments on commit 45414d4

Please sign in to comment.