Install a moduli(5) manual page.
[dragonfly.git] / contrib / bsdinstaller-1.1.6 / src / backend / lua / install / 100_welcome.lua
1 -- $Id: 100_welcome.lua,v 1.7 2005/02/24 23:08:04 cpressey Exp $
2
3 require "gettext"
4
5 return {
6     name = "welcome",
7     title = "Welcome",
8     action = function(fsm)
9         return App.ui:present({
10             id = "begin_install",
11             name =  _("Begin Installation"),
12             short_desc = _(
13                 "This experimental application will install %s"                 ..
14                 " on one of the hard disk drives attached to this computer. "   ..
15                 "It has been designed to make it easy to install "              ..
16                 "%s in the typical case. "                                      ..
17                 "If you have special requirements that are not addressed "      ..
18                 "by this installer, or if you have problems using it, you "     ..
19                 "are welcome to install %s manually. "                          ..
20                 "To do so select Exit to Live CD, login as root, and follow "   ..
21                 "the instructions given in the file /README ."                  ..
22                 "\n\n"                                                          ..
23                 "NOTE! As with any installation process, YOU ARE "              ..
24                 "STRONGLY ENCOURAGED TO BACK UP ANY IMPORTANT DATA ON THIS "    ..
25                 "COMPUTER BEFORE PROCEEDING!",
26                 App.os.name, App.os.name, App.os.name),
27             long_desc = _(
28                 "Some situations in which you might not wish to use this "      ..
29                 "installer are:\n\n"                                            ..
30                 "- you want to install %s onto a "                              ..
31                 "logical/extended partition;\n"                                 ..
32                 "- you want to install %s "                                     ..
33                 "onto a ``dangerously dedicated'' disk; or\n"                   ..
34                 "- you want full and utter control over the install process.",
35                 App.os.name, App.os.name),
36
37             actions = {
38                 {
39                     id = "proceed",
40                     name = _("Install %s", App.os.name),
41                     effect = function()
42                         return fsm:next()
43                     end
44                 },
45                 {
46                     id = "cancel",
47                     name = _("Return to Previous Menu"),
48                     effect = function()
49                         return nil
50                     end
51                 }
52             }
53         }).result
54     end
55 }