mirror of
https://codeberg.org/tenplus1/mobs_monster.git
synced 2025-01-03 14:50:23 +01:00
update translation checks
This commit is contained in:
parent
23e24bff06
commit
f792de52af
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
local dirt_types = {
|
local dirt_types = {
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
local master_types = {
|
local master_types = {
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
local mob_drops = {
|
local mob_drops = {
|
||||||
{name = "fireflies:firefly", chance = 1, min = 1, max = 1}
|
{name = "fireflies:firefly", chance = 1, min = 1, max = 1}
|
||||||
|
28
init.lua
28
init.lua
@ -2,10 +2,32 @@
|
|||||||
-- Load support for intllib.
|
-- Load support for intllib.
|
||||||
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
||||||
|
|
||||||
local S = minetest.get_translator and minetest.get_translator("mobs_monster") or
|
local S
|
||||||
dofile(path .. "intllib.lua")
|
|
||||||
|
|
||||||
mobs.intllib = S
|
-- Check for translation method
|
||||||
|
local S
|
||||||
|
if minetest.get_translator ~= nil then
|
||||||
|
S = minetest.get_translator("mobs_monster") -- 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_monster = S
|
||||||
|
|
||||||
|
|
||||||
-- Check for custom mob spawn file
|
-- Check for custom mob spawn file
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
-- Support for the old multi-load method
|
|
||||||
return dofile(minetest.get_modpath("intllib").."/init.lua")
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
|
|
||||||
local guard_types = {
|
local guard_types = {
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
|
|
||||||
-- Lava Flan by Zeg9 (additional textures by JurajVajda)
|
-- Lava Flan by Zeg9 (additional textures by JurajVajda)
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
|
|
||||||
-- Mese Monster by Zeg9
|
-- Mese Monster by Zeg9
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
|
|
||||||
-- Oerkki by PilzAdam
|
-- Oerkki by PilzAdam
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
|
|
||||||
-- custom particle effects
|
-- custom particle effects
|
||||||
local effect = function(
|
local effect = function(
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
local get_velocity = function(self)
|
local get_velocity = function(self)
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
local stone_types = {
|
local stone_types = {
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
local S = mobs.intllib
|
local S = mobs.intllib_monster
|
||||||
|
|
||||||
local tree_types = {
|
local tree_types = {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user