1function ware_helptext(tribe)
2   local helptext = {
3      -- TRANSLATORS: Helptext for a ware: Hook Pole
4      atlanteans = pgettext("atlanteans_ware", "This hook pole is used by the smoker to suspend all the meat and fish from the top of the smokery. It is created by the toolsmith.")
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