-
Notifications
You must be signed in to change notification settings - Fork 92
Getting Started with Tradukisto!
Julia Glaszka edited this page Jul 11, 2023
·
7 revisions
Note: Tradukisto can handle only values with no more than two digits after the decimal point.
dependencies {
implementation("pl.allegro.finance:tradukisto:2.2.0")
}
Select expected language - for example FRENCH_INTEGER
:
ValueConverters intConverter = ValueConverters.FRENCH_INTEGER;
You can now easily reuse the converter in your code wherever you need it:
String valueAsWords = intConverter.asWords(1_234);
That's all! 😃