• Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Contributors
Moderocky
Supported Minecraft Versions
  1. 1.13
  2. 1.14
  3. 1.15
About:

This addon adds a few new expressions and effects. It's incredibly simple but fills a small gap in the market for people who want to support multiple languages.

Minecraft has a built-in language system for translations, which is used for item names, system messages, et caetera.
It is also able to be used by plugins, mods and servers through the use of custom language entries in a resource pack. This allows servers to offer automatic message translation and other incredibly useful little bits and pieces.

Dependencies:

  • Skript (ideally 2.4+)
  • Spigot (1.13+)
  • Spigot 1.15+ (for lore translations/inventory names)

Syntax:

Code:
send [simple] translated [message[s]] %strings% to %players%
send [complex] translated [message[s]] %strings% with [(attachment[s]|input[s])] %strings% to %players%

#1.15+
[the] converted [translation] key %strings%

[a] [new] chest with [simple] translat(ed|able) name %string%
[a] [new] chest with [complex] translat(ed|able) name %string% with [(attachment[s]|input[s])] %strings%

set line %number% of %itemtype%'[s] lore to translated %string%
%itemtype% with translated lore %strings%

# Note:
# Item lore uses a special translation string format.
# "translation.key.here[inputs='hello there!','another input!']"
# You can generate these with the Converted Key expression.



Examples:
Code:
send translated "translation.test.none" to player
# This will send the language entry "Hello, world!" in the player's locale.
# This entry is already built in to Minecraft.

#send complex translated "translation.test.args" with inputs "Hello" and "there" to player
# This will send one of the other translation tests, '%s %s' to the player.
# The two input points (marked with the %s) will be replaced by the inputs, in order.

send complex translated "translation.test.args" with inputs "1", "2" and "3" to player
# This will send the same as above, with the inputs 1 and 2.
# Notice that the third input, "3", is ignored.
# This is because the translation has only two input points.
# You can use this for when you want additional inputs for certain languages but not others.


send complex translated "custom.message.key.here" with input "hi" to player
# Unless you have specified this in a resource pack, it will simply send that string.
# The player will receive 'custom.message.key.here'.
# If you specify a custom language entry in the player's locale file (en_us.json by default) then they will receive that instead.


send complex translated "death.fell.assist" with input "player1" and "player2" to all players
# The language entry for this message is: "%1$s was doomed to fall by %2$s"
# By using a specified input order (namely %1$s and %2$s instead of simply %s) you are able to make sure that the inputs are put in the correct order.
# This is useful for language translations where some languages might use a different word order.
# For example, the english "A was killed by B" might be better translated in the order "B killed A" in another language, and in this case you can specify the order of inputs.

Contact:

If you've found a bug or issue, please contact me on discord at Moderocky#0001 or find me on my projects discord here.

This addon supports only 1.13+ due to using an API built for 1.13+. I will not be providing any support for versions older than this. If you get it to work on an older version then lucky you, but do not expect it to work perfectly.
The tested version is and always will be the latest stable release of Minecraft.

GitLab: https://gitlab.com/Moderocky/TranSKator/
Author
Moderocky
Downloads
4,797
Views
4,797
First release
Last update
Rating
5.00 star(s) 2 ratings

More resources from Moderocky

Latest updates

  1. Bug Fix

    Minor bug fix.
  2. Fixes and Improvements

    Some background fixes to try and avoid component parsing errors have been added to this version...
  3. Lore Translations & Inventory Names!

    This update adds several new syntax patterns. Firstly, it's no longer required to specify a...

Latest reviews

Documentation Bot likes. Documentation bot recommends.
Very simple and useful! :)
Helps with translation a bunch.
Moderocky
Moderocky
Thanks for your review.