Settings: Fix indents, chat_message_*. Update translations (#7580)

This commit is contained in:
SmallJoker 2018-07-25 18:07:11 +02:00 committed by Paramat
parent 7454deb1bf
commit 4b217411ea
3 changed files with 84 additions and 53 deletions

View File

@ -1049,13 +1049,13 @@ world_start_time (World start time) int 5250 0 23999
server_map_save_interval (Map save interval) float 5.3 server_map_save_interval (Map save interval) float 5.3
# Set the maximum character length of a chat message sent by clients. # Set the maximum character length of a chat message sent by clients.
# chat_message_max_size int 500 chat_message_max_size (Chat message max length) int 500
# Limit a single player to send X messages per 10 seconds. # Amount of messages a player may send per 10 seconds.
# chat_message_limit_per_10sec float 10.0 chat_message_limit_per_10sec (Chat message count limit) float 10.0
# Kick player if send more than X messages per 10 seconds. # Kick players who sent more than X messages per 10 seconds.
# chat_message_limit_trigger_kick int 50 chat_message_limit_trigger_kick (Chat message kick threshold) int 50
[**Physics] [**Physics]

View File

@ -96,6 +96,11 @@
# type: bool # type: bool
# fixed_virtual_joystick = false # fixed_virtual_joystick = false
# (Android) Use virtual joystick to trigger "aux" button.
# If enabled, virtual joystick will also tap "aux" button when out of main circle.
# type: bool
# virtual_joystick_triggers_aux = false
# Enable joysticks # Enable joysticks
# type: bool # type: bool
# enable_joysticks = false # enable_joysticks = false
@ -465,7 +470,9 @@
### Filtering ### Filtering
# Use mip mapping to scale textures. May slightly increase performance. # Use mip mapping to scale textures. May slightly increase performance,
# especially when using a high resolution texture pack.
# Gamma correct downscaling is not supported.
# type: bool # type: bool
# mip_map = false # mip_map = false
@ -694,6 +701,10 @@
# texture_path = # texture_path =
# The rendering back-end for Irrlicht. # The rendering back-end for Irrlicht.
# A restart is required after changing this.
# Note: on Android, stick with OGLES1 if unsure! App may fail to start otherwise.
# On other platforms, OpenGL is recommended, and its the only driver with
# shader support currently.
# type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl, ogles1, ogles2 # type: enum values: null, software, burningsvideo, direct3d8, direct3d9, opengl, ogles1, ogles2
# video_driver = opengl # video_driver = opengl
@ -1255,6 +1266,18 @@
# type: float # type: float
# server_map_save_interval = 5.3 # server_map_save_interval = 5.3
# Set the maximum character length of a chat message sent by clients.
# type: int
# chat_message_max_size = 500
# Amount of messages a player may send per 10 seconds.
# type: float
# chat_message_limit_per_10sec = 10.0
# Kick players who sent more than X messages per 10 seconds.
# type: int
# chat_message_limit_trigger_kick = 50
### Physics ### Physics
# type: float # type: float
@ -1372,19 +1395,19 @@
# server_side_occlusion_culling = true # server_side_occlusion_culling = true
# Restricts the access of certain client-side functions on servers # Restricts the access of certain client-side functions on servers
# Combine these byteflags below to restrict more client-side features: # Combine these byteflags below to restrict client-side features:
# LOAD_CLIENT_MODS: 1 (disable client mods loading) # LOAD_CLIENT_MODS: 1 (disable client mods loading)
# CHAT_MESSAGES: 2 (disable send_chat_message call client-side) # CHAT_MESSAGES: 2 (disable send_chat_message call client-side)
# READ_ITEMDEFS: 4 (disable get_item_def call client-side) # READ_ITEMDEFS: 4 (disable get_item_def call client-side)
# READ_NODEDEFS: 8 (disable get_node_def call client-side) # READ_NODEDEFS: 8 (disable get_node_def call client-side)
# LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to csm_restriction_noderange) # LOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to csm_restriction_noderange)
# type: int # type: int
# csm_restriction_flags = 18 # csm_restriction_flags = 30
# If the CSM restriction for node range is enabled, get_node calls are limited # If the CSM restriction for node range is enabled, get_node calls are limited
# to this distance from the player to the node. # to this distance from the player to the node.
# type: int # type: int
# csm_restriction_noderange = 8 # csm_restriction_noderange = 0
## Security ## Security
@ -2695,15 +2718,17 @@
## Mapgen Valleys ## Mapgen Valleys
# Map generation attributes specific to Mapgen Valleys. # Map generation attributes specific to Mapgen Valleys.
# 'altitude_chill' makes higher elevations colder, which may cause biome issues. # 'altitude_chill': Reduces heat with altitude.
# 'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool, # 'humid_rivers': Increases humidity around rivers and where water pools.
# it may interfere with delicately adjusted biomes. # 'vary_river_depth': If enabled, low humidity and high heat causes rivers
# Flags that are not enabled are not modified from the default. # to become shallower and occasionally dry.
# Flags starting with 'no' are used to explicitly disable them. # 'altitude_dry': Reduces humidity with altitude.
# type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers # type: flags possible values: altitude_chill, noaltitude_chill, humid_rivers, nohumid_rivers, vary_river_depth, novary_river_depth, altitude_dry, noaltitude_dry
# mg_valleys_spflags = altitude_chill,humid_rivers # mgvalleys_spflags = altitude_chill,humid_rivers,vary_river_depth,altitude_dry
# The altitude at which temperature drops by 20. # The vertical distance over which heat drops by 20 if 'altitude_chill' is
# enabled. Also the vertical distance over which humidity drops by 10 if
# 'altitude_dry' is enabled.
# type: int # type: int
# mgvalleys_altitude_chill = 90 # mgvalleys_altitude_chill = 90

View File

@ -40,6 +40,8 @@ fake_function() {
gettext("The length in pixels it takes for touch screen interaction to start."); gettext("The length in pixels it takes for touch screen interaction to start.");
gettext("Fixed virtual joystick"); gettext("Fixed virtual joystick");
gettext("(Android) Fixes the position of virtual joystick.\nIf disabled, virtual joystick will center to first-touch's position."); gettext("(Android) Fixes the position of virtual joystick.\nIf disabled, virtual joystick will center to first-touch's position.");
gettext("Virtual joystick triggers aux button");
gettext("(Android) Use virtual joystick to trigger \"aux\" button.\nIf enabled, virtual joystick will also tap \"aux\" button when out of main circle.");
gettext("Enable joysticks"); gettext("Enable joysticks");
gettext("Enable joysticks"); gettext("Enable joysticks");
gettext("Joystick ID"); gettext("Joystick ID");
@ -191,7 +193,7 @@ fake_function() {
gettext("Adds particles when digging a node."); gettext("Adds particles when digging a node.");
gettext("Filtering"); gettext("Filtering");
gettext("Mipmapping"); gettext("Mipmapping");
gettext("Use mip mapping to scale textures. May slightly increase performance."); gettext("Use mip mapping to scale textures. May slightly increase performance,\nespecially when using a high resolution texture pack.\nGamma correct downscaling is not supported.");
gettext("Anisotropic filtering"); gettext("Anisotropic filtering");
gettext("Use anisotropic filtering when viewing at textures from an angle."); gettext("Use anisotropic filtering when viewing at textures from an angle.");
gettext("Bilinear filtering"); gettext("Bilinear filtering");
@ -288,7 +290,7 @@ fake_function() {
gettext("Texture path"); gettext("Texture path");
gettext("Path to texture directory. All textures are first searched from here."); gettext("Path to texture directory. All textures are first searched from here.");
gettext("Video driver"); gettext("Video driver");
gettext("The rendering back-end for Irrlicht."); gettext("The rendering back-end for Irrlicht.\nA restart is required after changing this.\nNote: on Android, stick with OGLES1 if unsure! App may fail to start otherwise.\nOn other platforms, OpenGL is recommended, and its the only driver with\nshader support currently.");
gettext("Cloud radius"); 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("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("View bobbing factor"); gettext("View bobbing factor");
@ -438,7 +440,7 @@ fake_function() {
gettext("Announce server"); gettext("Announce server");
gettext("Automaticaly report to the serverlist."); gettext("Automaticaly report to the serverlist.");
gettext("Serverlist URL"); gettext("Serverlist URL");
gettext("Announce to this serverlist.\nIf you want to announce your ipv6 address, use serverlist_url = v6.servers.minetest.net."); gettext("Announce to this serverlist.");
gettext("Strip color codes"); 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("Remove color codes from incoming chat messages\nUse this to stop players from being able to use color in their messages");
gettext("Network"); gettext("Network");
@ -470,8 +472,6 @@ fake_function() {
gettext("World directory (everything in the world is stored here).\nNot needed if starting from the main menu."); gettext("World directory (everything in the world is stored here).\nNot needed if starting from the main menu.");
gettext("Item entity TTL"); gettext("Item entity TTL");
gettext("Time in seconds for item entity (dropped items) to live.\nSetting it to -1 disables the feature."); gettext("Time in seconds for item entity (dropped items) to live.\nSetting it to -1 disables the feature.");
gettext("Status message on connection");
gettext("If enabled, show the server status message on player connection.");
gettext("Damage"); gettext("Damage");
gettext("Enable players getting damage and dying."); gettext("Enable players getting damage and dying.");
gettext("Creative"); gettext("Creative");
@ -522,6 +522,12 @@ fake_function() {
gettext("Time of day when a new world is started, in millihours (0-23999)."); gettext("Time of day when a new world is started, in millihours (0-23999).");
gettext("Map save interval"); gettext("Map save interval");
gettext("Interval of saving important changes in the world, stated in seconds."); gettext("Interval of saving important changes in the world, stated in seconds.");
gettext("Chat message max length");
gettext("Set the maximum character length of a chat message sent by clients.");
gettext("Chat message count limit");
gettext("Amount of messages a player may send per 10 seconds.");
gettext("Chat message kick threshold");
gettext("Kick players who sent more than X messages per 10 seconds.");
gettext("Physics"); gettext("Physics");
gettext("Default acceleration"); gettext("Default acceleration");
gettext("Acceleration in air"); gettext("Acceleration in air");
@ -567,8 +573,8 @@ fake_function() {
gettext("Server side occlusion culling"); gettext("Server side occlusion culling");
gettext("If enabled the server will perform map block occlusion culling based on\non the eye position of the player. This can reduce the number of blocks\nsent to the client 50-80%. The client will not longer receive most invisible\nso that the utility of noclip mode is reduced."); gettext("If enabled the server will perform map block occlusion culling based on\non the eye position of the player. This can reduce the number of blocks\nsent to the client 50-80%. The client will not longer receive most invisible\nso that the utility of noclip mode is reduced.");
gettext("Client side modding restrictions"); gettext("Client side modding restrictions");
gettext("Restricts the access of certain client-side functions on servers\nCombine these byteflags below to restrict more client-side features:\nLOAD_CLIENT_MODS: 1 (disable client mods loading)\nCHAT_MESSAGES: 2 (disable send_chat_message call client-side)\nREAD_ITEMDEFS: 4 (disable get_item_def call client-side)\nREAD_NODEDEFS: 8 (disable get_node_def call client-side)\nLOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to csm_restriction_noderange)"); gettext("Restricts the access of certain client-side functions on servers\nCombine these byteflags below to restrict client-side features:\nLOAD_CLIENT_MODS: 1 (disable client mods loading)\nCHAT_MESSAGES: 2 (disable send_chat_message call client-side)\nREAD_ITEMDEFS: 4 (disable get_item_def call client-side)\nREAD_NODEDEFS: 8 (disable get_node_def call client-side)\nLOOKUP_NODES_LIMIT: 16 (limits get_node call client-side to csm_restriction_noderange)");
gettext("Client side node lookup restriction"); gettext("Client side node lookup range restriction");
gettext("If the CSM restriction for node range is enabled, get_node calls are limited\nto this distance from the player to the node."); gettext("If the CSM restriction for node range is enabled, get_node calls are limited\nto this distance from the player to the node.");
gettext("Security"); gettext("Security");
gettext("Enable mod security"); gettext("Enable mod security");
@ -901,9 +907,9 @@ fake_function() {
gettext("Second of 2 3D noises that together define tunnels."); gettext("Second of 2 3D noises that together define tunnels.");
gettext("Mapgen Valleys"); gettext("Mapgen Valleys");
gettext("Mapgen Valleys specific flags"); gettext("Mapgen Valleys specific flags");
gettext("Map generation attributes specific to Mapgen Valleys.\n'altitude_chill' makes higher elevations colder, which may cause biome issues.\n'humid_rivers' modifies the humidity around rivers and in areas where water would tend to pool,\nit may interfere with delicately adjusted biomes.\nFlags that are not enabled are not modified from the default.\nFlags starting with 'no' are used to explicitly disable them."); gettext("Map generation attributes specific to Mapgen Valleys.\n'altitude_chill': Reduces heat with altitude.\n'humid_rivers': Increases humidity around rivers and where water pools.\n'vary_river_depth': If enabled, low humidity and high heat causes rivers\nto become shallower and occasionally dry.\n'altitude_dry': Reduces humidity with altitude.");
gettext("Altitude chill"); gettext("Altitude chill");
gettext("The altitude at which temperature drops by 20."); gettext("The vertical distance over which heat drops by 20 if 'altitude_chill' is\nenabled. Also the vertical distance over which humidity drops by 10 if\n'altitude_dry' is enabled.");
gettext("Large cave depth"); gettext("Large cave depth");
gettext("Depth below which you'll find large caves."); gettext("Depth below which you'll find large caves.");
gettext("Lava depth"); gettext("Lava depth");
@ -957,5 +963,5 @@ fake_function() {
gettext("Limit of emerge queues to generate"); gettext("Limit of emerge queues to generate");
gettext("Maximum number of blocks to be queued that are to be generated.\nSet to blank for an appropriate amount to be chosen automatically."); gettext("Maximum number of blocks to be queued that are to be generated.\nSet to blank for an appropriate amount to be chosen automatically.");
gettext("Number of emerge threads"); gettext("Number of emerge threads");
gettext("Number of emerge threads to use. Make this field blank, or increase this number\nto use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly\nat the cost of slightly buggy caves."); gettext("Number of emerge threads to use. Make this field blank or 0, or increase this number\nto use multiple threads. On multiprocessor systems, this will improve mapgen speed greatly\nat the cost of slightly buggy caves.");
} }