diff options
author | webdesigner97 <Christian_D_97@gmx.de> | 2014-04-13 15:13:59 +0200 |
---|---|---|
committer | webdesigner97 <Christian_D_97@gmx.de> | 2014-04-13 15:13:59 +0200 |
commit | df403a88ebe620d1deab0acbf90f54b0e9bd0394 (patch) | |
tree | 458066c09d687fa216e34a50118d4df15c9504b8 /trafficlight | |
parent | 15713246f247113af85cb8f782a2c4e371443f3d (diff) | |
download | roads-df403a88ebe620d1deab0acbf90f54b0e9bd0394.tar roads-df403a88ebe620d1deab0acbf90f54b0e9bd0394.tar.gz roads-df403a88ebe620d1deab0acbf90f54b0e9bd0394.tar.bz2 roads-df403a88ebe620d1deab0acbf90f54b0e9bd0394.tar.xz roads-df403a88ebe620d1deab0acbf90f54b0e9bd0394.zip |
regexp all descriptions to use S()
Diffstat (limited to 'trafficlight')
-rw-r--r-- | trafficlight/init.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/trafficlight/init.lua b/trafficlight/init.lua index 3eaa43a..4704743 100644 --- a/trafficlight/init.lua +++ b/trafficlight/init.lua @@ -2,7 +2,7 @@ StreetsMod: inDev Trafficlights ]] minetest.register_node(":streets:trafficlight_bottom",{ - description = "Cheater", + description = S("Cheater"), drop = "", groups = {not_in_creative_inventory = 1}, paramtype = "light", @@ -20,7 +20,7 @@ minetest.register_node(":streets:trafficlight_bottom",{ }) minetest.register_node(":streets:trafficlight_middle",{ - description = "Cheater!", + description = S("Cheater!"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", @@ -37,7 +37,7 @@ minetest.register_node(":streets:trafficlight_middle",{ }) minetest.register_node(":streets:trafficlight_controller",{ - description = "Trafficlight", + description = S("Trafficlight"), inventory_image = "streets_trafficlight_inv.png", tiles = {"streets_lampcontroller_top.png","streets_lampcontroller_bottom.png","streets_lampcontroller_sides.png"}, groups = {cracky = 1}, @@ -119,7 +119,7 @@ minetest.register_node(":streets:trafficlight_controller",{ }) minetest.register_node(":streets:trafficlight_top_off",{ - description = "U cheater U", + description = S("U cheater U"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", @@ -137,7 +137,7 @@ minetest.register_node(":streets:trafficlight_top_off",{ }) minetest.register_node(":streets:trafficlight_top_red",{ - description = "U cheater U", + description = S("U cheater U"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", @@ -156,7 +156,7 @@ minetest.register_node(":streets:trafficlight_top_red",{ }) minetest.register_node(":streets:trafficlight_top_yellow",{ - description = "U cheater U", + description = S("U cheater U"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", @@ -175,7 +175,7 @@ minetest.register_node(":streets:trafficlight_top_yellow",{ }) minetest.register_node(":streets:trafficlight_top_redyellow",{ - description = "U cheater U", + description = S("U cheater U"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", @@ -194,7 +194,7 @@ minetest.register_node(":streets:trafficlight_top_redyellow",{ }) minetest.register_node(":streets:trafficlight_top_green",{ - description = "U cheater U", + description = S("U cheater U"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", @@ -213,7 +213,7 @@ minetest.register_node(":streets:trafficlight_top_green",{ }) minetest.register_node(":streets:trafficlight_top_warn",{ - description = "U cheater U", + description = S("U cheater U"), drop = "", groups = {cracky = 1, not_in_creative_inventory = 1}, paramtype = "light", |