1function ware_helptext(tribe)
2   local helptext = {
3      -- TRANSLATORS: Helptext for a ware: Pitta Bread
4      barbarians = pgettext("barbarians_ware", "The Barbarian bakers are best in making this flat and tasty pitta bread. It is made out of wheat and water following a secret recipe. Pitta bread is used in the taverns, inns and big inns to prepare rations, snacks and meals. It is also consumed at training sites (training camp and battle arena).")
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