134
Read more on poggitLangManager is a plugin for PocketMine-MP with multi-language support and variable translation.
Detects players’ language based on their location and sets it automatically.
Switch between available languages with the /setlang command.
All in-game messages -such as greetings, commands, and error notifications- are stored in easily editable language files, making customization and translation straightforward.
The language files are stored in lang/ within your server folder. Make sure the server is turned off before editing any language files.
Language files supported:
Language | File |
---|---|
English | en.yml |
Spanish | es.yml |
Hindi | hi.yml |
Portuguese | pt.yml |
Chinese | zh.yml |
Russian | ru.yml |
French | fr.yml |
German | de.yml |
Arabic | ar.yml |
Japanese | ja.yml |
Bengali | bn.yml |
Indonesian | id.yml |
Korean | ko.yml |
Turkish | tr.yml |
Vietnamese | vi.yml |
Polish | pl.yml |
Thai | th.yml |
Italian | it.yml |
Persian | fa.yml |
Swedish | sv.yml |
To add or remove a language to the language list in /lang, simply modify the config.yml
file.
language-list:
# English language (ISO code: en)
- en
# Spanish language (ISO code: es)
- es
# Add more languages below as needed. For example:
# - fr # French (ISO code: fr)
# - de # German (ISO code: de)
# - ja # Japanese (ISO code: ja)
The plugin is equipped with built-in functions to send messages directly to players and translate strings, eliminating the need for hardcoded messages in your code. This section will guide you on how to use the following methods:
LangManager::addKey()
LangManager::send()
LangManager::translate()
First, make sure you import the LangManager class in your plugin.
use matiasdamian\LangManager\LangManager;
If you are a plugin developer and want to use LangManager, it is very easy to do so.
Syntax:
LangManager::addKey(string $key, string $message) : bool;
Make sure you add LangManager as a dependency in your plugin.yml:
depend: [LangManager]
Paramaters:
To avoid conflicts with other plugins, it's recommended to add a prefix to your key. For example, use a prefix like MyPlugin-
, so your key might look like MyPlugin-key
. This ensures that the key is unique across all plugins.
This method is designed to send messages to players in their preferred language.
Syntax:
LangManager::send(string $messageKey, Player $player, ...$params);
Parameters
Example Usage
// Assuming you have a Player object $player
$messageKey = "welcome_message"; // The message key from your language file
LangManager::send($messageKey, $player);
In this example, if the player’s language is set to English, they will receive the message defined by the welcome_message
key in the en.yml
file.
This method is useful for translating strings that are not directly sent to the player, such as pop-ups.
Syntax:
LangManager::translate(string $messageKey, Player $player, ...$params);
Parameters:
Example Usage
// Assuming you have a Player object $player
$messageKey = "language_choose"; // The message key from your language file
// Sending a translated message as a popup or embed
$translatedMessage = LangManager::translate($messageKey, $player);
$player->sendMessage($translatedMessage); // Sending the translated message to the player
In this example, the player will receive the message defined by the language_choose
key in the en.yml
file.
When using the LangManager plugin, you can enhance your messages by utilizing parameters in your translation strings. Each parameter is denoted by an indexed placeholder such as {%0}
, {%1}
, and so on, which allows you to pass dynamic data into your messages. The number corresponds to the order in which you provide the parameters in the LangManager::translate()
method.
Example of Parameter Usage
For instance, if you have a message in your language file like:
welcome_message = "Welcome, {%0}! You are currently at {X}, {Y}, {Z}."
You can send this message with parameters by using:
$playerName = $player->getName();
LangManager::send("welcome_message", $player, $playerName);
This would result in a message like:
"Welcome, PlayerName! You are currently at X, Y, Z."
You can pass as much parameters as needed.
In addition to using parameters, the plugin provides several server and player variables that you can utilize in your messages.
Variable | Description | Example Output |
---|---|---|
Server Vars | ||
{ONLINE} |
The number of players currently online | 5 |
{MAX} |
The maximum number of players allowed | 20 |
{AVERAGE_TPS} |
The average ticks per second | 19.8 |
Player Vars | ||
{X} |
Player's current X coordinate | 100 |
{Y} |
Player's current Y coordinate | 64 |
{Z} |
Player's current Z coordinate | 200 |
{WORLD} |
The name of the world the player is in | survival |
{LEVEL} |
The level name of the player's current world | survival |
{HEALTH} |
The player's current health | 20 |
{MAX_HEALTH} |
The player's maximum health | 20 |
{PING} |
The player's ping to the server | 50 |
{NAME} |
The player's username | PlayerName |
{DISPLAY_NAME} |
The player's display name | PlayerName |
Formatting Tags | ||
<rainbow>Message≤/rainbow> |
Wrap a message in these tags to rainbowize it | |
&0 to &f
|
Color codes for text formatting |
Example of Using Server and Player Variables
Here’s how you can use server and player variables in a message:
LangManager::send("welcome_message", $player);
If your message in the .ini
file is
welcome_message = "There are currently {ONLINE} players online."
The output would be:
"There are currently 5 players online."
This project is licensed under LGPL-3.0. Please see the LICENSE file for details.