Skip to content

Commit

Permalink
Fix dateFormat ko.json (#201)
Browse files Browse the repository at this point in the history
In the Korea translation (ko.json) the date format is currently:
"dateFormat": "dd/mm/yyyy", 
"showMonthAfterYear":false

It should be
"dateFormat": "yy-mm-dd",
"showMonthAfterYear":true

Source:
https://en.wikipedia.org/wiki/Date_and_time_notation_in_South_Korea
  • Loading branch information
hicucu authored Jan 2, 2025
1 parent 3b0354f commit 46b008c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"custom": "커스텀",
"dateAfter": "날짜 후",
"dateBefore": "날짜 전",
"dateFormat": "mm/dd/yy",
"dateFormat": "yy-mm-dd",
"dateIs": "날짜가 같은",
"dateIsNot": "날짜가 같지 않은",
"dayNames": [
Expand Down Expand Up @@ -122,7 +122,7 @@
"removeRule": "규칙 제거",
"searchMessage": "{0} 개 사용 가능",
"selectionMessage": "{0} 개 선택",
"showMonthAfterYear": false,
"showMonthAfterYear": true,
"startsWith": "으로 시작하는",
"strong": "강함",
"today": "오늘",
Expand Down Expand Up @@ -188,4 +188,4 @@
"zoomOut": "축소"
}
}
}
}

0 comments on commit 46b008c

Please sign in to comment.