1252995Sdteske# Copyright (c) 2012 Ron McDowell
2252995Sdteske# Copyright (c) 2012 Devin Teske
3252995Sdteske# All rights reserved.
4252995Sdteske#
5252995Sdteske# Redistribution and use in source and binary forms, with or without
6252995Sdteske# modification, are permitted provided that the following conditions
7252995Sdteske# are met:
8252995Sdteske# 1. Redistributions of source code must retain the above copyright
9252995Sdteske#    notice, this list of conditions and the following disclaimer.
10252995Sdteske# 2. Redistributions in binary form must reproduce the above copyright
11252995Sdteske#    notice, this list of conditions and the following disclaimer in the
12252995Sdteske#    documentation and/or other materials provided with the distribution.
13252995Sdteske#
14252995Sdteske# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15252995Sdteske# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16252995Sdteske# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17252995Sdteske# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18252995Sdteske# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19252995Sdteske# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20252995Sdteske# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21252995Sdteske# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22252995Sdteske# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23252995Sdteske# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24252995Sdteske# SUCH DAMAGE.
25252995Sdteske#
26252995Sdteske# $FreeBSD$
27252995Sdteske
28252995Sdteske#
29252995Sdteske# Title that will be shown in the bsdconfig menu.
30252995Sdteske#
31252995Sdteskemenu_title=""
32252995Sdteske
33252995Sdteske#
34252995Sdteske# A short descriptive line shown at the bottom of the bsdconfig menu. keep it
35252995Sdteske# short because any line longer than the terminal width will be truncated.
36252995Sdteske#
37252995Sdteskemenu_help=""
38252995Sdteske
39252995Sdteske#
40252995Sdteske# Two-part variable that defines an action to take when `keyword' is passed on
41252995Sdteske# a bsdconfig command line. Variable takes the form "keyword|command" and
42252995Sdteske# multiple occurrences of the variable (with different `keyword's, or different
43252995Sdteske# `keyword's AND `command's) are allowed.  If `command' begins with a '/' then
44252995Sdteske# the full path to the program is needed. If `command' begins with anything
45252995Sdteske# else it is a path relative to the directory this INDEX file is in. `keyword'
46252995Sdteske# can be i18n'ed but `command' is the name of a script.
47252995Sdteske#
48252995Sdteskemenu_selection="dot|dot"
49252995Sdteske
50252995Sdteske#
51252995Sdteske# ------------ Items below this line do NOT need i18n translation ------------
52252995Sdteske#
53252995Sdteske# Name of the program to be run when this menu choice is selected. If it begins
54252995Sdteske# with a '/' then the full path to the program is needed. If it begins with
55252995Sdteske# anything else it is a path relative to the directory this INDEX file is in.
56252995Sdteske#
57252995Sdteskemenu_program=""
58