This repository was archived by the owner on Jul 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Localization
Nico edited this page Aug 20, 2020
·
21 revisions
WIP
The SimplixCore localization system is designed to be as versatile as possible. With it you can easily achieve an per player localization on your server (E.G. English messages for people from English speaking countries, Spanish for people from Spanish speaking countries, etc.) In opposition to the common YAML based localization techniques the our property based system comes with great support for IDE's such as IntelliJ.
The API of the localization system used in SimplixCore can be found in the simplixcore-common-api module and the implementation in the simplixcore-common-implementation module.

<repository>
<id>SimplixPublic</id>
<url>https://repo.simplix.dev/repository/simplixsoft-public/</url>
</repository>
<dependency>
<groupId>dev.simplix</groupId>
<artifactId>simplixcore-common-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>dev.simplix</groupId>
<artifactId>simplixcore-common-implementation</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
2020 - SimplixSoftworks
- Introduction
- Getting started
- Maven Dependencies
- How to use the Dependency-Injection
- Localization
- Listener API
- SQL
- Libraries
- Utilities
- Contribute

