Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mouse0w0/i18n

An i18n library for Java application
https://github.com/mouse0w0/i18n

internationalization internationalization-library java

Last synced: 6 days ago
JSON representation

An i18n library for Java application

Awesome Lists containing this project

README

        

# i18n
[![Maven Central](https://img.shields.io/maven-central/v/com.github.mouse0w0/i18n.svg?label=Maven%20Central)](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
### Maven

Add the dependency

```xml

com.github.mouse0w0
i18n
1.3.1

```
### Gradle

Step 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'
}
```