1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-06-28 14:16:11 +02:00

Remove translations in minetest.log output

because they are not translated anyway
This commit is contained in:
Louis Royer
2020-02-15 14:32:06 +00:00
committed by Vanessa Dannenberg
parent 31e0066238
commit 47c20dc550
107 changed files with 734 additions and 3096 deletions

View File

@ -1,5 +1,5 @@
-- support for i18n
local S = plantlife_i18n.gettext
local S = minetest.get_translator("ferns")
-----------------------------------------------------------------------------------------------
-- Ferns - Crafting 0.0.5
-----------------------------------------------------------------------------------------------

View File

@ -1,3 +0,0 @@
default
biome_lib
plantlife_i18n

View File

@ -15,7 +15,7 @@
assert(abstract_ferns.config.enable_lady_fern == true)
-- support for i18n
local S = plantlife_i18n.gettext
local S = minetest.get_translator("ferns")
-- Maintain backward compatibilty
-- minetest-0.5: Begin

View File

@ -10,7 +10,7 @@
assert(abstract_ferns.config.enable_giant_treefern == true)
-- support for i18n
local S = plantlife_i18n.gettext
local S = minetest.get_translator("ferns")
-- lot of code, lot to load
abstract_ferns.grow_giant_tree_fern = function(pos)

View File

@ -11,7 +11,7 @@
assert(abstract_ferns.config.enable_horsetails == true)
-- support for i18n
local S = plantlife_i18n.gettext
local S = minetest.get_translator("ferns")
-----------------------------------------------------------------------------------------------
-- HORSETAIL (EQUISETUM)
-----------------------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@ local mname = "ferns" -- former "archaeplantae"
abstract_ferns = {}
-- support for i18n
local S = plantlife_i18n.gettext
local S = minetest.get_translator("ferns")
dofile(minetest.get_modpath("ferns").."/settings.lua")

22
ferns/locale/ferns.fr.tr Normal file
View File

@ -0,0 +1,22 @@
# textdomain: ferns
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# fat115 <fat115@framasoft.org>, 2017.
#
Fiddlehead=Crosse de fougère
Roasted Fiddlehead=Crosse de fougère rôtie
Fern Tuber=Tubercule de fougère
Roasted Fern Tuber=Tubercule de fougère rôti
Lady-fern (Athyrium)=Fougère (Athyrium)
Tree Fern Crown (Dicksonia)=Fougère en couronne (Dicksonia)
Giant Tree Fern Leaves=Feuilles de fougère géante
Giant Tree Fern Leave End=Feuilles de fougère géante (extrémité)
Giant Fern Trunk=Tronc de fougère géante
Giant Tree Fern Sapling=Pousse de fougère géante
Young Horsetail (Equisetum)=Pousse de prêle (Equisetum)
Horsetail (Equisetum)=Prêle (Equisetum)
Fern Trunk (Dicksonia)=Tronc de fougère en couronne (Dicksonia)
Tree Fern Sapling (Dicksonia)=Pousse de fougère en couronne (Dicksonia)

23
ferns/locale/template.txt Normal file
View File

@ -0,0 +1,23 @@
# textdomain: ferns
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
Fiddlehead=
Roasted Fiddlehead=
Fern Tuber=
Roasted Fern Tuber=
Lady-fern (Athyrium)=
Tree Fern Crown (Dicksonia)=
Giant Tree Fern Leaves=
Giant Tree Fern Leave End=
Giant Fern Trunk=
Giant Tree Fern Sapling=
Young Horsetail (Equisetum)=
Horsetail (Equisetum)=
Fern Trunk (Dicksonia)=
Tree Fern Sapling (Dicksonia)=

2
ferns/mod.conf Normal file
View File

@ -0,0 +1,2 @@
name = ferns
depends = default, biome_lib

View File

@ -7,7 +7,7 @@
-----------------------------------------------------------------------------------------------
-- support for i18n
local S = plantlife_i18n.gettext
local S = minetest.get_translator("ferns")
assert(abstract_ferns.config.enable_treefern == true)