Skip to content

Commit

Permalink
Merge a55560d into f474e48
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseChaucer committed Jun 24, 2019
2 parents f474e48 + a55560d commit 3159ed8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,3 +371,4 @@ Available languages
| ur | Urdu | |
| vi | Vietnamese | |
| zh | Chinese | |
| zhHK | Chinese_HK | |
4 changes: 3 additions & 1 deletion src/locale/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import uk from './translations/uk'
import ur from './translations/ur'
import vi from './translations/vi'
import zh from './translations/zh'
import zhHK from './translations/zh-HK'

export {
af,
Expand Down Expand Up @@ -97,7 +98,8 @@ export {
uk,
ur,
vi,
zh
zh,
zhHK
}
// eslint-disable-next-line
;
11 changes: 11 additions & 0 deletions src/locale/translations/zh-HK.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import Language from '../Language'

const language = new Language(
'Chinese_HK',
['壹月', '贰月', '叁月', '肆月', '伍月', '陆月', '柒月', '捌月', '玖月', '拾月', '拾壹月', '拾贰月'],
['壹月', '贰月', '叁月', '肆月', '伍月', '陆月', '柒月', '捌月', '玖月', '拾月', '拾壹月', '拾贰月'],
['日', '壹', '贰', '叁', '肆', '伍', '陆']
)
language.yearSuffix = '年'

export default language

0 comments on commit 3159ed8

Please sign in to comment.