Install a moduli(5) manual page.
[dragonfly.git] / contrib / bsdinstaller-1.1.6 / src / backend / lua / install / 800_finished.lua
1 -- $Id: 800_finished.lua,v 1.8 2005/02/24 23:08:04 cpressey Exp $
2
3 require "gettext"
4
5 return {
6     name = "finished",
7     title = "Finished",
8     action = function(fsm)
9         return App.ui:present({
10             id = "finished_install",
11             name = _("%s is now installed", App.os.name),
12             short_desc = _("Congratulations, %s is now installed "       ..
13                             "on your hard drive! You may now do one "    ..
14                             "of three things: you can perform some "     ..
15                             "initial configuration of this system, you " ..
16                             "can reboot to test out your new "           ..
17                             "installation, or you can go back to the "   ..
18                             "main menu and select other actions to "     ..
19                             "perform.",
20                             App.os.name),
21             actions = {
22                 {
23                     id = "configure",
24                     name = _("Configure"),
25                     short_desc = _("Configure the system that was just installed"),
26                     effect = function()
27                         App.descend("../configure/menu")
28                         return nil
29                     end
30                 },
31                 {
32                     id = "reboot",
33                     name = _("Reboot"),
34                     short_desc = _("Reboot this computer"),
35                     effect = function()
36                         return fsm:next()
37                     end
38                 },
39                 {
40                     id = "cancel",
41                     name = _("Return to Main Menu"),
42                     short_desc = _("Return to Main Menu"),
43                     effect = function()
44                         return nil
45                     end
46                 }
47             }
48         }).result
49     end
50 }