mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Add Translations support
This commit is contained in:
parent
b8d6914615
commit
404689836d
5 changed files with 76 additions and 31 deletions
|
|
@ -668,7 +668,7 @@ cmd.follow.resuming=Resuming to follow!
|
|||
cmd.follow.player_left_the_range=The player {0} has left the range!
|
||||
cmd.follow.pausing=Pausing!
|
||||
cmd.follow.player_left=The player {0} left the server!
|
||||
cmd.follow.stopping=Stopped!
|
||||
cmd.follow.stopped=Stopped!
|
||||
|
||||
# HangmanGame
|
||||
botname.HangmanGame=HangmanGame
|
||||
|
|
@ -770,6 +770,17 @@ bot.TelegramBridge.direction.both=Both
|
|||
bot.TelegramBridge.direction.minecraft=Minecraft
|
||||
bot.TelegramBridge.direction.Telegram=Telegram
|
||||
|
||||
# WebSocketBot
|
||||
bot.WebSocketBot.session_id_changed=§bSession with an id §a{0}§b has been renamed to: §a{1}§b!
|
||||
bot.WebSocketBot.session_authenticated=§bSession with an id §a{0}§b has been succesfully authenticated!
|
||||
bot.WebSocketBot.failed_to_start.ip=§cFailed to start a server! The provided IP address is not a valid one!
|
||||
bot.WebSocketBot.failed_to_start.port=§cFailed to start a server! The port number provided is out of the range, it must be 65535 or bellow it!
|
||||
bot.WebSocketBot.failed_to_start.custom=§cFailed to start a server:\n\n{0}\n\n
|
||||
bot.WebSocketBot.starting=Starting the Websocket server...
|
||||
bot.WebSocketBot.started=§bServer started on ip §a{0}§b port: §a{1}
|
||||
bot.WebSocketBot.new_session=§bNew session connected: §a{0}
|
||||
bot.WebSocketBot.session_disconnected=§bSession with an id §a{0}§b has disconnected!
|
||||
|
||||
# TestBot
|
||||
botname.TestBot=TestBot
|
||||
bot.testBot.told=Bot: {0} told me : {1}
|
||||
|
|
@ -1029,4 +1040,11 @@ config.ChatBot.TelegramBridge.Token=Your Telegram Bot token.
|
|||
config.ChatBot.TelegramBridge.ChannelId=An ID of a channel where you want to interact with the MCC using the bot.
|
||||
config.ChatBot.TelegramBridge.Authorized_Chat_Ids=A list of Chat IDs that are allowed to send messages and execute commands. To get an id of your chat DM with the bot use ".chatid" bot command in Telegram.
|
||||
config.ChatBot.TelegramBridge.MessageSendTimeout=How long to wait (in seconds) if a message can not be sent to Telegram before canceling the task (minimum 1 second).
|
||||
config.ChatBot.TelegramBridge.Formats=Message formats\n# Words wrapped with { and } are going to be replaced during the code execution, do not change them!\n# For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time.\n# For Telegram message formatting, check the following: https://sendpulse.com/blog/telegram-text-formatting
|
||||
config.ChatBot.TelegramBridge.Formats=Message formats\n# Words wrapped with { and } are going to be replaced during the code execution, do not change them!\n# For example. {message} is going to be replace with an actual message, {username} will be replaced with an username, {timestamp} with the current time.\n# For Telegram message formatting, check the following: https://sendpulse.com/blog/telegram-text-formatting
|
||||
|
||||
# ChatBot.WebSocketBot
|
||||
config.ChatBot.WebSocketBot=Remotely control the client using Web Sockets.\n# This is useful if you want to implement an application that can remotely and asynchronously execute procedures in MCC.\n# Example implementation written in JavaScript: https://github.com/milutinke/MCC.js.git\n# The protocol specification will be available in the documentation soon.
|
||||
config.ChatBot.WebSocketBot.Ip=The IP address that Websocket server will be bounded to.
|
||||
config.ChatBot.WebSocketBot.Port=The Port that Websocket server will be bounded to.
|
||||
config.ChatBot.WebSocketBot.Password=A password that will be used to authenticate on thw Websocket server (It is recommended to change the default password and to set a strong one).
|
||||
config.ChatBot.WebSocketBot.DebugMode=If enabled the chat bot will print what is it recieving and sending when the "DebugMessages" are enabled in "Logging" section. This is useful when making your own library or trying to figure what is wrong with an existing one.
|
||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue