File: editor_introduction.lua

package info (click to toggle)
widelands 1%3A19%2Brepack-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 370,608 kB
  • ctags: 20,609
  • sloc: cpp: 108,404; ansic: 18,695; python: 5,155; sh: 487; xml: 460; makefile: 233
file content (20 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include "scripting/formatting.lua"
include "txts/help/common_helptexts.lua"

local online_help = help_online_help()

set_textdomain("widelands_editor")

return {
   title = _"The Widelands Editor",
   text =
      rt(
         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.")
      )
}