1-- This include can be removed when all help texts have been defined.
2include "tribes/scripting/help/global_helptexts.lua"
3
4function building_helptext_lore ()
5   -- TRANSLATORS#: Lore helptext for a building
6   return no_lore_text_yet()
7end
8
9function building_helptext_lore_author ()
10   -- TRANSLATORS#: Lore author helptext for a building
11   return no_lore_author_text_yet()
12end
13
14function building_helptext_purpose()
15   -- TRANSLATORS: Purpose helptext for a building
16   return pgettext("building", "Digs iron ore out of the ground in mountain terrain.")
17end
18
19function building_helptext_note()
20   -- TRANSLATORS: Note helptext for a building
21   return pgettext("frisians_building", "This mine exploits only %s of the resource. From there on out, it will only have a 5%% chance of finding any iron ore."):bformat("1/2")
22end
23
24function building_helptext_performance()
25   -- TRANSLATORS: Performance helptext for a building
26   return pgettext("frisians_building", "If the food supply is steady, the iron mine can produce one piece of iron ore in %s on average."):bformat(ngettext("%d second", "%d seconds", 65):bformat(65))
27end
28