~weedfreak/widelands/Innkeeper_upgrade

« back to all changes in this revision

Viewing changes to data/tribes/buildings/productionsites/barbarians/coalmine/helptexts.lua

  • Committer: Wideland's Bunnybot
  • Date: 2018-01-05 13:07:26 UTC
  • mfrom: (8525.5.5 fh1-finish_help)
  • Revision ID: bunnybot@widelands.org-20180105130726-km4x3sipuevpzp77
Merged lp:~widelands-dev/widelands/fh1-finish_help:
Converted the Tribal Encyclopedia to the new font renderer and added some tweaks:

- Added market building type
- Removed markup from some help texts
- Pulled out common function help_worker_experience

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
function building_helptext_lore()
2
 
   -- TRANSLATORS#: Lore helptext for a building
3
 
   return pgettext("barbarians_building", [[Ages ago, the Barbarians learned to delve into mountainsides for that black material that feeds their furnaces. <br>
4
 
Wood may serve for a household fire and to keep you warm, but when it comes to working with iron or gold, there is no way around coal.]])
 
2
   return {
 
3
      -- TRANSLATORS: Lore helptext for a coal mine building, part 1
 
4
      pgettext("barbarians_building", "Ages ago, the Barbarians learned to delve into mountainsides for that black material that feeds their furnaces."),
 
5
      -- TRANSLATORS: Lore helptext for a coal mine building, part 2
 
6
      pgettext("barbarians_building", "Wood may serve for a household fire and to keep you warm, but when it comes to working with iron or gold, there is no way around coal.")
 
7
   }
5
8
end
6
9
 
7
10
function building_helptext_lore_author()
10
13
end
11
14
 
12
15
function building_helptext_purpose()
13
 
   -- TRANSLATORS#: Purpose helptext for a building
 
16
   -- TRANSLATORS: Purpose helptext for a building
14
17
   return pgettext("building", "Digs coal out of the ground in mountain terrain.")
15
18
end
16
19