Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ them around.**
- Use dispensers to spawn the mobs back automatically.
- Clean messages, sound effects and particle effects.
- Blacklist/whitelist any mob you want using **tags**!
- **Language support:** German & English (Paper/Spigot only)
- **Language support:** German, English & Hungarian (Paper/Spigot only)

### Blacklisting & Whitelisting Mobs
- Blacklist/whitelist any mob you want using **tags**.
Expand Down
3 changes: 2 additions & 1 deletion paper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
- `/clickmobs config get <option>`: Gets the value of a configuration option.
- `/clickmobs config path`: Prints the path to the **configuration file**.
- `/clickmobs config reload`: Reloads the configuration file.
- Removed the old reload command and `cm` alias.
- Removed the old reload command and `cm` alias.
- Added Hungarian language support.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface ClickMobsConfig {
CONFIG.option("language", "en_US")
.description("""
Language of the plugin.
Currently supported languages: en_US, de_DE
Currently supported languages: en_US, de_DE, hu_HU
""")
.onChange(lang -> Message.LOCALIZATION
.language(lang)
Expand Down
18 changes: 18 additions & 0 deletions paper/src/main/resources/lang/hu_HU.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 4,
Comment on lines +1 to +2
"credit": ["SzaBee13"],
"update": "ClickMobs: §a§lÚj verzió érhető el: §f{version}",
"no_permission": "Nincs jogosultságod ehhez.",
"pick_up": "Felvetted a(z) {mob}-ot",
"blacklisted_mob": "Ezt a mobbot nem veheted fel",
"write_error": "Nem sikerült menteni a mobb adatait.",
"read_error": "Nem sikerült beolvasni a mobb adatait.",
"baby_mob": "Bébi {mob}",
"mob.lore": [
"§8Jobb klikk a(z) {mob} visszahelyezéséhez."
],
"config_set": "A(z) \"&l{option}&a\" konfig opció értéke &l{value}&a lett.",
"config_get": "A(z) \"&l{option}&a\" konfig opció jelenlegi értéke: &l{value}.",
"config_path": "A konfig fájl helye: &f{path}",
"config_reload": "A konfig fájl újratöltve."
}