mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Add a server-sided way to remove color codes from incoming chat messages (#5948)
These code be generated by CSM, a modded client or just copy and pasted by the player. Changes - Update configuration example and setting translation file. - Remove colour codes before logging chat. - Add setting to remove colour codes before processing the chat.
This commit is contained in:
parent
07be63b287
commit
25ae0739ed
6 changed files with 25 additions and 16 deletions
|
@ -87,7 +87,7 @@ fake_function() {
|
|||
gettext("Key for increasing the volume.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
|
||||
gettext("Dec. volume key");
|
||||
gettext("Key for decreasing the volume.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
|
||||
gettext("Autoforward key");
|
||||
gettext("Automatic forwards key");
|
||||
gettext("Key for toggling autoforward.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
|
||||
gettext("Cinematic mode key");
|
||||
gettext("Key for toggling cinematic mode.\nSee http://irrlicht.sourceforge.net/docu/namespaceirr.html#a54da2a0e231901735e3da1b0edf72eb3");
|
||||
|
@ -140,6 +140,8 @@ fake_function() {
|
|||
gettext("URL to the server list displayed in the Multiplayer Tab.");
|
||||
gettext("Serverlist file");
|
||||
gettext("File in client/serverlist/ that contains your favorite servers displayed in the Multiplayer Tab.");
|
||||
gettext("Maximum size of the out chat queue");
|
||||
gettext("Maximum size of the out chat queue. 0 to disable queueing and -1 to make the queue size unlimited");
|
||||
gettext("Graphics");
|
||||
gettext("In-Game");
|
||||
gettext("Basic");
|
||||
|
@ -229,6 +231,8 @@ fake_function() {
|
|||
gettext("Width component of the initial window size.");
|
||||
gettext("Screen height");
|
||||
gettext("Height component of the initial window size.");
|
||||
gettext("Autosave Screen Size");
|
||||
gettext("Save window size automatically when modified.");
|
||||
gettext("Full screen");
|
||||
gettext("Fullscreen mode.");
|
||||
gettext("Full screen BPP");
|
||||
|
@ -249,8 +253,6 @@ fake_function() {
|
|||
gettext("Height on which clouds are appearing.");
|
||||
gettext("Cloud radius");
|
||||
gettext("Radius of cloud area stated in number of 64 node cloud squares.\nValues larger than 26 will start to produce sharp cutoffs at cloud area corners.");
|
||||
gettext("Enable view bobbing");
|
||||
gettext("Enables view bobbing when walking.");
|
||||
gettext("View bobbing factor");
|
||||
gettext("Enable view bobbing and amount of view bobbing.\nFor example: 0 for no view bobbing; 1.0 for normal; 2.0 for double.");
|
||||
gettext("Fall bobbing factor");
|
||||
|
@ -362,8 +364,8 @@ fake_function() {
|
|||
gettext("Automaticaly report to the serverlist.");
|
||||
gettext("Serverlist URL");
|
||||
gettext("Announce to this serverlist.\nIf you want to announce your ipv6 address, use serverlist_url = v6.servers.minetest.net.");
|
||||
gettext("Disable escape sequences");
|
||||
gettext("Disable escape sequences, e.g. chat coloring.\nUse this if you want to run a server with pre-0.4.14 clients and you want to disable\nthe escape sequences generated by mods.");
|
||||
gettext("Strip color codes");
|
||||
gettext("Remove color codes from incoming chat messages\nUse this to stop players from being able to use color in their messages");
|
||||
gettext("Network");
|
||||
gettext("Server port");
|
||||
gettext("Network port to listen (UDP).\nThis value will be overridden when starting from the main menu.");
|
||||
|
@ -452,7 +454,6 @@ fake_function() {
|
|||
gettext("Fast mode speed");
|
||||
gettext("Climbing speed");
|
||||
gettext("Jumping speed");
|
||||
gettext("Descending speed");
|
||||
gettext("Liquid fluidity");
|
||||
gettext("Liquid fluidity smoothing");
|
||||
gettext("Liquid sink");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue