1
0
mirror of https://codeberg.org/tenplus1/farming.git synced 2025-06-29 23:01:00 +02:00

update russian translation (thanks Yellow)

This commit is contained in:
tenplus1
2020-06-20 20:34:18 +01:00
parent b3f69171c3
commit c62e36f6da
2 changed files with 145 additions and 124 deletions

View File

@ -499,12 +499,16 @@ if minetest.get_modpath("moreores") then
-- Toolranks support
if tr then
local desc = S("%s Hoe"):format(S("Silver"))
minetest.override_item("moreores:hoe_silver", {
original_description = S("%s Hoe"):format(S("Silver")),
description = toolranks.create_description("Silver Hoe")})
original_description = desc,
description = toolranks.create_description(desc)})
desc = S("%s Hoe"):format(S("Mithril"))
minetest.override_item("moreores:hoe_mithril", {
original_description = S("%s Hoe"):format(S("Mithril")),
description = toolranks.create_description("Mithril Hoe")})
original_description = desc,
description = toolranks.create_description(desc)})
end
end