Improve message about drill control
authorZefram <zefram@fysh.org>
Fri, 25 Apr 2014 16:44:46 +0000 (17:44 +0100)
committerShadowNinja <shadowninja@minetest.net>
Sun, 27 Apr 2014 18:42:59 +0000 (14:42 -0400)
The message to "hold shift" makes an unwarranted assumption about the
user's keybindings.  Messages from the server should refer to a key's
game function, rather than its extragame identity.

technic/locale/de.txt
technic/locale/es.txt
technic/locale/it.txt
technic/locale/template.txt
technic/tools/mining_drill.lua

index 2e6af057a9136f19aa3607314f6c27e07d25d0eb..b2ddd32f0346f49f7b17890dc1409280c8c263f9 100644 (file)
@@ -170,7 +170,7 @@ Flashlight = Taschenlampe
 3 nodes tall. = 3 Bloecke hoch.
 3 nodes wide. = 3 Bloecke breit.
 3x3 nodes. = 3x3 Bloecke.
-Hold shift and use to change Mining Drill Mk%d modes. = Halte die Shift-Taste beim Benutzen gedrueckt, um die Funktion des Bergbaubohrers Modell %d zu aendern.
+Use while sneaking to change Mining Drill Mk%d modes. = Halte die Shift-Taste beim Benutzen gedrueckt, um die Funktion des Bergbaubohrers Modell %d zu aendern.
 Mining Drill Mk%d Mode %d = Bergbaubohrer Modell %d Funktion %d
 Mining Drill Mk%d = Bergbaubohrer Modell %d
 Mining Laser Mk%d = Bergbaulaser Modell %d
index 5fb81cc777cd45be560073119997dbd2a90cb24e..bc27c5dbdcf73baf48d3084464488f16c000ae74 100644 (file)
@@ -160,7 +160,7 @@ Flashlight = Linterna
 3 nodes tall. = 3 nodos de alto.
 3 nodes wide. = 3 nodos de ancho.
 3x3 nodes. = 3x3 nodos.
-Hold shift and use to change Mining Drill Mk%d modes. = Manten pulsado Mayus y Usar para cambiar el modo del Taladro de Mineria Mk%d.
+Use while sneaking to change Mining Drill Mk%d modes. = Manten pulsado Mayus y Usar para cambiar el modo del Taladro de Mineria Mk%d.
 Mining Drill Mk%d Mode %d = Taladro de Mineria Mk%d Modo %d
 Mining Drill Mk%d = Taladro de Mineria Mk%d
 Mining Laser Mk%d = Laser de Mineria Mk%d
index e8499cfd7d74fd918088f1d26c05bb6b79da606c..831b1df229ea4cb004de2a7a41124597f5da9cea 100644 (file)
@@ -158,7 +158,7 @@ Flashlight = Torcia
 3 nodes tall. = 3 nodi in altezza.
 3 nodes wide. = 3 nodi in larghezza.
 3x3 nodes. = 3x3 nodi.
-Hold shift and use to change Mining Drill Mk%d modes. = Premi shift (freccia grossa) e usa per cambiare modalità nella trivella da miniera Mk%d.
+Use while sneaking to change Mining Drill Mk%d modes. = Premi shift (freccia grossa) e usa per cambiare modalità nella trivella da miniera Mk%d.
 Mining Drill Mk%d Mode %d = Trivella mk%d in modalità %d
 Mining Drill Mk%d = Trivella da miniera mk%d
 Mining Laser Mk%d = Laser da miniera mk%d
index e4fb2e8473f4ae2cd8478a8414be6526426e4900..cc7d2ddd468d267f4542141c5c74ba906c2b1722 100644 (file)
@@ -170,7 +170,7 @@ Flashlight =
 3 nodes tall. =
 3 nodes wide. =
 3x3 nodes. =
-Hold shift and use to change Mining Drill Mk%d modes. =
+Use while sneaking to change Mining Drill Mk%d modes. =
 Mining Drill Mk%d Mode %d =
 Mining Drill Mk%d =
 Mining Laser Mk%d =
index e4b31b8fb5531a51ddd18e3ee0dff66c36cefc50..e3a01debca4d59dc67ac22cdd5e1daf7d46acbab 100644 (file)
@@ -243,7 +243,7 @@ local function mining_drill_mk2_setmode(user,itemstack)
                mode=0
        end
        if meta["mode"]==nil then
-               minetest.chat_send_player(player_name, S("Hold shift and use to change Mining Drill Mk%d modes."):format(2))
+               minetest.chat_send_player(player_name, S("Use while sneaking to change Mining Drill Mk%d modes."):format(2))
                meta["mode"]=0
                mode=0
        end
@@ -267,7 +267,7 @@ local function mining_drill_mk3_setmode(user,itemstack)
                mode=0
        end
        if meta["mode"]==nil then
-               minetest.chat_send_player(player_name, S("Hold shift and use to change Mining Drill Mk%d modes."):format(3))
+               minetest.chat_send_player(player_name, S("Use while sneaking to change Mining Drill Mk%d modes."):format(3))
                meta["mode"]=0
                mode=0
        end