1function building_helptext_lore()
2   -- TRANSLATORS: Lore helptext for a building
3   return pgettext("barbarians_building", "‘A new warrior’s ax brings forth the best in its wielder – or the worst in its maker.’")
4end
5
6function building_helptext_lore_author()
7   -- TRANSLATORS: Lore author helptext for a building
8   return pgettext("barbarians_building", "An old Barbarian proverb<br> meaning that you need to take some risks sometimes.")
9end
10
11function building_helptext_purpose()
12   -- TRANSLATORS: Purpose helptext for a building
13   return pgettext("barbarians_building", "Produces axes, sharp axes and broad axes.")
14end
15
16function building_helptext_note()
17   -- TRANSLATORS: Note helptext for a building
18   return pgettext("barbarians_building", "The Barbarian ax workshop is the intermediate production site in a series of three buildings. It is enhanced from the metal workshop but doesn’t require additional qualification for the worker.")
19end
20
21function building_helptext_performance()
22   -- TRANSLATORS: Performance helptext for a building
23   return pgettext("barbarians_building", "If all needed wares are delivered in time, this building can produce each type of ax in about %s on average."):bformat(ngettext("%d second", "%d seconds", 57):bformat(57)) .. " " .. pgettext("barbarians_building", "All three weapons take the same time for making, but the required raw materials vary.")
24end
25