File: editor_introduction.lua

package info (click to toggle)
widelands 1%3A21-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 594,308 kB
  • sloc: cpp: 134,669; ansic: 18,676; python: 7,200; sh: 912; xml: 439; makefile: 175
file content (18 lines) | stat: -rw-r--r-- 613 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include "scripting/richtext.lua"
include "txts/help/common_helptexts.lua"

local online_help = help_online_help()

set_textdomain("widelands_editor")

return {
   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.")
}