https://github.com/mouse0w0/i18n
An i18n library for Java application
https://github.com/mouse0w0/i18n
internationalization internationalization-library java
Last synced: 4 months ago
JSON representation
An i18n library for Java application
- Host: GitHub
- URL: https://github.com/mouse0w0/i18n
- Owner: mouse0w0
- License: bsd-3-clause
- Created: 2020-06-15T11:12:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-31T13:33:04.000Z (about 4 years ago)
- Last Synced: 2025-01-01T00:32:13.061Z (6 months ago)
- Topics: internationalization, internationalization-library, java
- Language: Java
- Homepage:
- Size: 85.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# i18n
[](https://search.maven.org/search?q=g:%22com.github.mouse0w0%22%20AND%20a:%22i18n%22)An i18n library for Java application.
## How to use it
### MavenAdd the dependency
```xml
com.github.mouse0w0
i18n
1.3.1```
### GradleStep 1. Add the Central repository to your build file
Add it in your root build.gradle at the end of repositories:
```gradle
repositories {
mavenCentral()
}
```
Step 2. Add the dependency```gradle
dependencies {
implementation 'com.github.mouse0w0:i18n:1.3.1'
}
```