Skip to content

Commit

Permalink
update translation checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tenplus1 committed Jan 20, 2022
1 parent 3e15456 commit 97f2e47
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 41 deletions.
2 changes: 1 addition & 1 deletion bee.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local S = mobs.intllib
local S = mobs.intllib_animal

-- Bee by KrupnoPavel (.b3d model by sirrobzeroone)

Expand Down
2 changes: 1 addition & 1 deletion bunny.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local S = mobs.intllib
local S = mobs.intllib_animal


-- Bunny by ExeterDad
Expand Down
2 changes: 1 addition & 1 deletion chicken.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local S = mobs.intllib
local S = mobs.intllib_animal


-- Chicken by JK Murray and Sirrobzeroone
Expand Down
2 changes: 1 addition & 1 deletion cow.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local S = mobs.intllib
local S = mobs.intllib_animal


-- Cow by sirrobzeroone
Expand Down
30 changes: 25 additions & 5 deletions init.lua
Original file line number Diff line number Diff line change
@@ -1,11 +1,31 @@

-- Load support for intllib.
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"

local S = minetest.get_translator and minetest.get_translator("mobs_animal") or
dofile(path .. "intllib.lua")
local S

-- Check for translation method
local S
if minetest.get_translator ~= nil then
S = minetest.get_translator("mobs_animal") -- 5.x translation function
else
if minetest.get_modpath("intllib") then
dofile(minetest.get_modpath("intllib") .. "/init.lua")
if intllib.make_gettext_pair then
gettext, ngettext = intllib.make_gettext_pair() -- new gettext method
else
gettext = intllib.Getter() -- old text file method
end
S = gettext
else -- boilerplate function
S = function(str, ...)
local args = {...}
return str:gsub("@%d+", function(match)
return args[tonumber(match:sub(2))]
end)
end
end
end

mobs.intllib = S
mobs.intllib_animal = S


-- Check for custom mob spawn file
Expand Down
3 changes: 0 additions & 3 deletions intllib.lua

This file was deleted.

2 changes: 1 addition & 1 deletion kitten.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local S = mobs.intllib
local S = mobs.intllib_animal
local hairball = minetest.settings:get("mobs_hairball")

-- Kitten by Jordach / BFD
Expand Down
3 changes: 1 addition & 2 deletions panda.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

local S = mobs.intllib

local S = mobs.intllib_animal

-- Panda by AspireMint (CC BY-SA 3.0)

Expand Down
3 changes: 1 addition & 2 deletions penguin.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

local S = mobs.intllib

local S = mobs.intllib_animal

-- Penguin by D00Med

Expand Down
3 changes: 1 addition & 2 deletions rat.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

local S = mobs.intllib

local S = mobs.intllib_animal

-- Rat by PilzAdam (B3D model by sirrobzeroone)

Expand Down
22 changes: 11 additions & 11 deletions sheep.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local S = mobs.intllib
local S = mobs.intllib_animal

local all_colours = {
{"black", S("Black"), "#000000b0"},
Expand All @@ -16,7 +16,7 @@ local all_colours = {
{"red", S("Red"), "#ff0000a0"},
{"violet", S("Violet"), "#2000c970"},
{"white", S("White"), "#abababc0"},
{"yellow", S("Yellow"), "#e3ff0070"},
{"yellow", S("Yellow"), "#e3ff0070"}
}


Expand All @@ -36,13 +36,13 @@ for _, col in ipairs(all_colours) do
visual = "mesh",
mesh = "mobs_sheep.b3d",
textures = {
{"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"},
{"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"}
},
gotten_texture = {"mobs_sheep_shaved.png"},
gotten_mesh = "mobs_sheep_shaved.b3d",
makes_footstep_sound = true,
sounds = {
random = "mobs_sheep",
random = "mobs_sheep"
},
walk_velocity = 1,
run_velocity = 2,
Expand All @@ -52,7 +52,7 @@ for _, col in ipairs(all_colours) do
pushable = true,
drops = {
{name = "mobs:mutton_raw", chance = 1, min = 1, max = 2},
{name = "wool:"..col[1], chance = 1, min = 1, max = 1},
{name = "wool:"..col[1], chance = 1, min = 1, max = 1}
},
water_damage = 0,
lava_damage = 5,
Expand All @@ -69,7 +69,7 @@ for _, col in ipairs(all_colours) do
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
die_speed = 1, -- have mob rotate when dying.
die_loop = false,
die_rotate = true,
die_rotate = true
},
follow = {
"farming:wheat", "default:grass_1", "farming:barley",
Expand Down Expand Up @@ -110,7 +110,7 @@ for _, col in ipairs(all_colours) do

self.object:set_properties({
textures = {"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"},
mesh = "mobs_sheep.b3d",
mesh = "mobs_sheep.b3d"
})
end

Expand Down Expand Up @@ -223,7 +223,7 @@ mobs:spawn({
chance = 8000, -- 15000
min_height = 0,
max_height = 200,
day_toggle = true,
day_toggle = true
})
end

Expand All @@ -235,20 +235,20 @@ minetest.register_craftitem(":mobs:mutton_raw", {
description = S("Raw Mutton"),
inventory_image = "mobs_mutton_raw.png",
on_use = minetest.item_eat(2),
groups = {food_meat_raw = 1, food_mutton_raw = 1, flammable = 2},
groups = {food_meat_raw = 1, food_mutton_raw = 1, flammable = 2}
})

-- cooked mutton
minetest.register_craftitem(":mobs:mutton_cooked", {
description = S("Cooked Mutton"),
inventory_image = "mobs_mutton_cooked.png",
on_use = minetest.item_eat(6),
groups = {food_meat = 1, food_mutton = 1, flammable = 2},
groups = {food_meat = 1, food_mutton = 1, flammable = 2}
})

minetest.register_craft({
type = "cooking",
output = "mobs:mutton_cooked",
recipe = "mobs:mutton_raw",
cooktime = 5,
cooktime = 5
})
21 changes: 10 additions & 11 deletions warthog.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

local S = mobs.intllib

local S = mobs.intllib_animal

-- Warthog originally by KrupnoPavel, B3D model by sirrobzeroone

Expand All @@ -21,12 +20,12 @@ mobs:register_mob("mobs_animal:pumba", {
visual = "mesh",
mesh = "mobs_pumba.b3d",
textures = {
{"mobs_pumba.png"},
{"mobs_pumba.png"}
},
makes_footstep_sound = true,
sounds = {
random = "mobs_pig",
attack = "mobs_pig_angry",
attack = "mobs_pig_angry"
},
walk_velocity = 2,
run_velocity = 3,
Expand All @@ -36,7 +35,7 @@ mobs:register_mob("mobs_animal:pumba", {
follow = {"default:apple", "farming:potato"},
view_range = 10,
drops = {
{name = "mobs:pork_raw", chance = 1, min = 1, max = 3},
{name = "mobs:pork_raw", chance = 1, min = 1, max = 3}
},
water_damage = 0,
lava_damage = 5,
Expand All @@ -55,14 +54,14 @@ mobs:register_mob("mobs_animal:pumba", {
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
die_speed = 1, -- have mob rotate when dying.
die_loop = false,
die_rotate = true,
die_rotate = true
},
on_rightclick = function(self, clicker)

if mobs:feed_tame(self, clicker, 8, true, true) then return end
if mobs:protect(self, clicker) then return end
if mobs:capture_mob(self, clicker, 0, 5, 50, false, nil) then return end
end,
end
})

local spawn_on = {"default:dirt_with_grass"}
Expand All @@ -88,7 +87,7 @@ mobs:spawn({
chance = 8000, -- 15000
min_height = 0,
max_height = 200,
day_toggle = true,
day_toggle = true
})
end

Expand All @@ -103,20 +102,20 @@ minetest.register_craftitem(":mobs:pork_raw", {
description = S("Raw Porkchop"),
inventory_image = "mobs_pork_raw.png",
on_use = minetest.item_eat(4),
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2},
groups = {food_meat_raw = 1, food_pork_raw = 1, flammable = 2}
})

-- cooked porkchop
minetest.register_craftitem(":mobs:pork_cooked", {
description = S("Cooked Porkchop"),
inventory_image = "mobs_pork_cooked.png",
on_use = minetest.item_eat(8),
groups = {food_meat = 1, food_pork = 1, flammable = 2},
groups = {food_meat = 1, food_pork = 1, flammable = 2}
})

minetest.register_craft({
type = "cooking",
output = "mobs:pork_cooked",
recipe = "mobs:pork_raw",
cooktime = 5,
cooktime = 5
})

0 comments on commit 97f2e47

Please sign in to comment.