File: editor_introduction.lua

package info (click to toggle)
widelands 2%3A1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 684,084 kB
  • sloc: cpp: 196,737; ansic: 19,395; python: 8,515; sh: 1,734; xml: 700; makefile: 46; lisp: 25
file content (20 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include "scripting/richtext.lua"
include "txts/help/common_helptexts.lua"

local online_help = help_online_help()

push_textdomain("widelands_editor")
local result = {
   title = _("The Widelands Editor"),
   text =
      h1(_("Introduction")) ..

      p(_("This editor is intended for players who would like to design their own maps to use with Widelands.")) ..
      p(_("As you can see, this editor is heavy work in progress and as the editor becomes better and better, this text will also get longer and more complete.")) ..

      online_help ..
      p(_("The wiki also includes a short tutorial on how to build a map."))
}

pop_textdomain()
return result