]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/game/privileges.lua
Make LuaVoxelManipulator available to CSM API
[dragonfireclient.git] / builtin / game / privileges.lua
index 325340fd2bec2d7881d17cf00c442895d98559e4..97681655ef48d0728c6120327bdb7210c65070cc 100644 (file)
@@ -1,5 +1,7 @@
 -- Minetest: builtin/privileges.lua
 
+local S = core.get_translator("__builtin")
+
 --
 -- Privileges
 --
@@ -15,10 +17,10 @@ function core.register_privilege(name, param)
                        def.give_to_admin = def.give_to_singleplayer
                end
                if def.description == nil then
-                       def.description = "(no description)"
+                       def.description = S("(no description)")
                end
        end
-       local def = {}
+       local def
        if type(param) == "table" then
                def = param
        else
@@ -28,71 +30,80 @@ function core.register_privilege(name, param)
        core.registered_privileges[name] = def
 end
 
-core.register_privilege("interact", "Can interact with things and modify the world")
-core.register_privilege("shout", "Can speak in chat")
-core.register_privilege("basic_privs", "Can modify 'shout' and 'interact' privileges")
-core.register_privilege("privs", "Can modify privileges")
+core.register_privilege("interact", S("Can interact with things and modify the world"))
+core.register_privilege("shout", S("Can speak in chat"))
+
+local basic_privs =
+       core.string_to_privs((core.settings:get("basic_privs") or "shout,interact"))
+local basic_privs_desc = S("Can modify basic privileges (@1)",
+       core.privs_to_string(basic_privs, ', '))
+core.register_privilege("basic_privs", basic_privs_desc)
+
+core.register_privilege("privs", S("Can modify privileges"))
 
 core.register_privilege("teleport", {
-       description = "Can use /teleport command",
+       description = S("Can teleport self"),
        give_to_singleplayer = false,
 })
 core.register_privilege("bring", {
-       description = "Can teleport other players",
+       description = S("Can teleport other players"),
        give_to_singleplayer = false,
 })
 core.register_privilege("settime", {
-       description = "Can use /time",
+       description = S("Can set the time of day using /time"),
        give_to_singleplayer = false,
 })
 core.register_privilege("server", {
-       description = "Can do server maintenance stuff",
+       description = S("Can do server maintenance stuff"),
        give_to_singleplayer = false,
        give_to_admin = true,
 })
 core.register_privilege("protection_bypass", {
-       description = "Can bypass node protection in the world",
+       description = S("Can bypass node protection in the world"),
        give_to_singleplayer = false,
 })
 core.register_privilege("ban", {
-       description = "Can ban and unban players",
+       description = S("Can ban and unban players"),
        give_to_singleplayer = false,
        give_to_admin = true,
 })
 core.register_privilege("kick", {
-       description = "Can kick players",
+       description = S("Can kick players"),
        give_to_singleplayer = false,
        give_to_admin = true,
 })
 core.register_privilege("give", {
-       description = "Can use /give and /giveme",
+       description = S("Can use /give and /giveme"),
        give_to_singleplayer = false,
 })
 core.register_privilege("password", {
-       description = "Can use /setpassword and /clearpassword",
+       description = S("Can use /setpassword and /clearpassword"),
        give_to_singleplayer = false,
        give_to_admin = true,
 })
 core.register_privilege("fly", {
-       description = "Can fly using the free_move mode",
+       description = S("Can use fly mode"),
        give_to_singleplayer = false,
 })
 core.register_privilege("fast", {
-       description = "Can walk fast using the fast_move mode",
+       description = S("Can use fast mode"),
        give_to_singleplayer = false,
 })
 core.register_privilege("noclip", {
-       description = "Can fly through walls",
+       description = S("Can fly through solid nodes using noclip mode"),
        give_to_singleplayer = false,
 })
 core.register_privilege("rollback", {
-       description = "Can use the rollback functionality",
+       description = S("Can use the rollback functionality"),
+       give_to_singleplayer = false,
+})
+core.register_privilege("basic_debug", {
+       description = S("Can view more debug info that might give a gameplay advantage"),
        give_to_singleplayer = false,
 })
 core.register_privilege("debug", {
-       description = "Allows enabling various debug options that may affect gameplay",
+       description = S("Can enable wireframe"),
        give_to_singleplayer = false,
-       give_to_admin = true,
 })
 
 core.register_can_bypass_userlimit(function(name, ip)