A tiling window manager
1/*
2 * Messages.
3 * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17 * Place, Suite 330, Boston, MA 02111-1307 USA.
18 */
19
20#ifndef _SDORFEHS_MESSAGES_H
21#define _SDORFEHS_MESSAGES_H 1
22
23#define MESSAGE_NO_OTHER_WINDOW "No other window"
24#define MESSAGE_NO_OTHER_FRAME "No other frame"
25#define MESSAGE_NO_MANAGED_WINDOWS "No managed windows"
26#define MESSAGE_UNKNOWN_COMMAND "Unknown command '%s'"
27#define MESSAGE_WINDOW_INFORMATION "This is window %d (%s)"
28
29#define MESSAGE_RAISE_TRANSIENT "Raise request from transient window %d (%s)"
30#define MESSAGE_RAISE_WINDOW "Raise request from window %d (%s)"
31#define MESSAGE_RAISE_TRANSIENT_VSCREEN "Raise request from transient window %d (%s) on vscreen %d"
32#define MESSAGE_RAISE_WINDOW_VSCREEN "Raise request from window %d (%s) on vscreen %d"
33#define MESSAGE_MAP_TRANSIENT "New transient window %d (%s)"
34#define MESSAGE_MAP_WINDOW "New window %d (%s)"
35#define MESSAGE_MAP_TRANSIENT_VSCREEN "New transient window %d (%s) on vscreen %d"
36#define MESSAGE_MAP_WINDOW_VSCREEN "New window %d (%s) on vscreen %d"
37
38#define MESSAGE_PROMPT_SWITCH_TO_WINDOW "Switch to window: "
39#define MESSAGE_PROMPT_NEW_WINDOW_NAME "Set window's title to: "
40#define MESSAGE_PROMPT_SHELL_COMMAND "/bin/sh -c "
41#define MESSAGE_PROMPT_COMMAND ":"
42#define MESSAGE_PROMPT_XTERM_COMMAND MESSAGE_PROMPT_SHELL_COMMAND TERM_PROG " -e "
43#define MESSAGE_PROMPT_SWITCH_TO_VSCREEN "Switch to vscreen: "
44#define MESSAGE_PROMPT_SELECT_VAR "Variable: "
45#define MESSAGE_PROMPT_VAR_VALUE "Value: "
46
47#define MESSAGE_WELCOME "Welcome to " PROGNAME " - press \"%s %s\" for help"
48
49#define EMPTY_FRAME_MESSAGE "Current Frame"
50
51#endif /* ! _SDORFEHS_MESSAGES_H */