-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Japanese support #148
Conversation
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #148 +/- ##
============================================
- Coverage 98.83% 98.70% -0.14%
- Complexity 513 535 +22
============================================
Files 76 81 +5
Lines 2058 2157 +99
Branches 79 83 +4
============================================
+ Hits 2034 2129 +95
- Misses 12 14 +2
- Partials 12 14 +2 ☔ View full report in Codecov by Sentry. |
@@ -319,6 +322,31 @@ public static Container swedishContainer() { | |||
return new Container(swedishNumberToWordsConverter, swedishNumberToWordsConverter, swedishBigDecimalConverter); | |||
} | |||
|
|||
public static Container japaneseContainer() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just one suggestion - can you name it japaneseKanjiContainer, please? and also rename it in readme + in enums JAPANESE_LONG -> JAPANESE_KANJI_LONG. In the future, someone may implement it in hiragana
Fixed. |
Related to #142
I implemented Integer, Long and BigDecimal converter for Japanese.
I checked all tests passed.
Could you review this PR?