1function ware_helptext(tribe)
2   local helptext = {
3      -- TRANSLATORS: Helptext for a ware: Clay
4      frisians = pgettext("frisians_ware", "Clay is made out of water and mud to be turned into bricks, used in ship construction and to improve the charcoal kiln.")
5   }
6   local result = ""
7   if tribe then
8      result = helptext[tribe]
9   else
10      result = helptext["default"]
11   end
12   if (result == nil) then result = "" end
13   return result
14end
15