~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/programs/wineconsole/wineconsole_En.rc

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * Copyright 2001 Eric Pouech
  3  *
  4  * This library is free software; you can redistribute it and/or
  5  * modify it under the terms of the GNU Lesser General Public
  6  * License as published by the Free Software Foundation; either
  7  * version 2.1 of the License, or (at your option) any later version.
  8  *
  9  * This library is distributed in the hope that it will be useful,
 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 12  * Lesser General Public License for more details.
 13  *
 14  * You should have received a copy of the GNU Lesser General Public
 15  * License along with this library; if not, write to the Free Software
 16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 17  */
 18 
 19 #include "wineconsole_res.h"
 20 
 21 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
 22 
 23 STRINGTABLE
 24 BEGIN
 25 IDS_EDIT,               "&Edit"
 26 IDS_DEFAULT,            "Set &Defaults"
 27 IDS_PROPERTIES,         "&Properties"
 28 IDS_MARK,               "&Mark"
 29 IDS_COPY,               "&Copy"
 30 IDS_PASTE,              "&Paste"
 31 IDS_SELECTALL,          "&Select all"
 32 IDS_SCROLL,             "Sc&roll"
 33 IDS_SEARCH,             "S&earch"
 34 IDS_FNT_DISPLAY,        "Each character is %ld pixels wide on %ld pixels high"
 35 IDS_FNT_PREVIEW_1,      "This is a test"
 36 IDS_FNT_PREVIEW_2,      ""
 37 IDS_DLG_TIT_DEFAULT,    "Setup - Default settings"
 38 IDS_DLG_TIT_CURRENT,    "Setup - Current settings"
 39 IDS_DLG_TIT_ERROR,      "Configuration error"
 40 IDS_DLG_ERR_SBWINSIZE,  "Screen buffer size must be greater or equal to the window's one"
 41 
 42 IDS_CMD_INVALID_EVENT_ID   "wineconsole: Couldn't parse event id\n"
 43 IDS_CMD_INVALID_BACKEND    "wineconsole: Invalid backend\n"
 44 IDS_CMD_INVALID_OPTION     "wineconsole: Unrecognized command line option\n"
 45 IDS_CMD_ABOUT              "Starts a program in a Wine console\n"
 46 IDS_CMD_LAUNCH_FAILED      "wineconsole: Starting program %s failed.\n"\
 47                            "The command is invalid.\n"
 48 
 49 IDS_USAGE_HEADER           "\nUsage:\n  wineconsole [options] <command>\n\nOptions:\n"
 50 IDS_USAGE_BACKEND          "  --backend={user|curses}  Choosing user will spawn a new window, curses will\n"\
 51                            "                            try to setup the current terminal as a Wine console\n"
 52 IDS_USAGE_COMMAND          "  <command>                 The Wine program to launch in the console\n"
 53 IDS_USAGE_FOOTER           "\nExample:\n  wineconsole cmd\nStarts the Wine command prompt in a Wine console\n\n"
 54 
 55 END
 56 
 57 IDD_OPTION DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105
 58 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
 59 CAPTION " Options "
 60 FONT 8, "MS Shell Dlg"
 61 {
 62         GROUPBOX "Cursor size", -1, 10, 11, 60, 44, BS_GROUPBOX
 63         AUTORADIOBUTTON "&Small", IDC_OPT_CURSOR_SMALL, 14, 23, 44, 10, WS_TABSTOP
 64         AUTORADIOBUTTON "&Medium", IDC_OPT_CURSOR_MEDIUM, 14, 33, 44, 10, WS_TABSTOP
 65         AUTORADIOBUTTON "&Large", IDC_OPT_CURSOR_LARGE, 14, 43, 44, 10, WS_TABSTOP
 66 
 67         GROUPBOX "Control", -1, 75, 11, 125, 44, BS_GROUPBOX
 68         LTEXT "Popup menu", -1, 79, 23, 40, 10
 69         AUTOCHECKBOX "&Control", IDC_OPT_CONF_CTRL, 129, 23, 60, 10, WS_TABSTOP
 70         AUTOCHECKBOX "S&hift", IDC_OPT_CONF_SHIFT, 129, 33, 60, 10, WS_TABSTOP
 71         LTEXT "Quick edit", -1, 79, 43, 50, 10
 72         AUTOCHECKBOX "&enable", IDC_OPT_QUICK_EDIT, 129, 43, 60, 10, WS_TABSTOP
 73 
 74         GROUPBOX "Command history", -1, 10, 57, 190, 35, BS_GROUPBOX
 75         LTEXT "&Number of recalled commands :", -1, 14, 67, 78, 18
 76         EDITTEXT IDC_OPT_HIST_SIZE, 92, 69, 31, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER
 77         CONTROL "", IDC_OPT_HIST_SIZE_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0
 78         AUTOCHECKBOX "&Remove doubles", IDC_OPT_HIST_NODOUBLE, 130, 67, 50, 18, WS_TABSTOP|BS_MULTILINE
 79 }
 80 
 81 IDD_FONT DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105
 82 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
 83 CAPTION " Font "
 84 FONT 8, "MS Shell Dlg"
 85 {
 86         LTEXT "&Font", -1, 5, 5, 24, 8
 87         LISTBOX IDC_FNT_LIST_FONT, 5, 18, 90, 42, LBS_SORT|WS_VSCROLL
 88         LTEXT "&Color", -1, 100, 5, 50, 8
 89         CONTROL "", IDC_FNT_COLOR_FG, "WineConColorPreview", 0L, 100, 18, 48, 16
 90         CONTROL "", IDC_FNT_COLOR_BK, "WineConColorPreview", 0L, 100, 40, 48, 16
 91         LTEXT "&Size", -1, 158, 5, 40, 8
 92         LISTBOX IDC_FNT_LIST_SIZE, 158, 18, 40, 60, WS_VSCROLL
 93         CONTROL "", IDC_FNT_PREVIEW, "WineConFontPreview", 0L, 5, 60, 109, 40
 94         LTEXT "", IDC_FNT_FONT_INFO, 128, 76, 80, 18
 95 }
 96 
 97 IDD_CONFIG DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105
 98 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
 99 CAPTION " Configuration "
100 FONT 8, "MS Shell Dlg"
101 {
102         GROUPBOX "Buffer zone", -1, 10, 11, 100, 42, BS_GROUPBOX
103         LTEXT "&Width :", -1, 14, 25, 54, 9
104         EDITTEXT IDC_CNF_SB_WIDTH, 68, 23, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER
105         CONTROL "", IDC_CNF_SB_WIDTH_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0
106         LTEXT "&Height :", -1, 14, 39, 54, 9
107         EDITTEXT IDC_CNF_SB_HEIGHT, 68, 37, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER
108         CONTROL "", IDC_CNF_SB_HEIGHT_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0
109 
110         GROUPBOX "Window size", -1, 10, 55, 100, 42
111         LTEXT "W&idth :", -1, 14, 69, 54, 9
112         EDITTEXT IDC_CNF_WIN_WIDTH, 68, 67, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER
113         CONTROL "", IDC_CNF_WIN_WIDTH_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0
114         LTEXT "H&eight :", -1, 14, 83, 54, 9
115         EDITTEXT IDC_CNF_WIN_HEIGHT, 68, 81, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER
116         CONTROL "", IDC_CNF_WIN_HEIGHT_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0
117 
118         GROUPBOX "End of program", -1, 115, 11, 80, 42, BS_GROUPBOX
119         AUTOCHECKBOX "&Close console", IDC_CNF_CLOSE_EXIT, 119, 25, 72, 20, WS_TABSTOP
120 
121         GROUPBOX "Edition", -1, 115, 55, 80, 42
122         COMBOBOX IDC_CNF_EDITION_MODE, 119, 69, 72, 20, CBS_DROPDOWNLIST|WS_VSCROLL|WS_TABSTOP
123 }
124 
125 IDD_SAVE_SETTINGS DIALOG LOADONCALL MOVEABLE DISCARDABLE 20, 20, 170, 60
126 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
127 CAPTION "Console parameters"
128 FONT 8, "MS Shell Dlg"
129 {
130         GROUPBOX "", -1, 10, 10, 150, 31, BS_GROUPBOX
131         AUTORADIOBUTTON "Retain these settings for later sessions", IDC_SAV_SAVE, 14, 15, 140, 10, WS_TABSTOP
132         AUTORADIOBUTTON "Modify only current session", IDC_SAV_SESSION, 14, 27, 140, 10, WS_TABSTOP
133 
134         PUSHBUTTON "OK", IDOK, 35, 45, 35, 12
135         PUSHBUTTON "Cancel", IDCANCEL, 80, 45, 35, 12
136 }
137 
138 LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
139 
140 IDD_FONT DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105
141 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
142 CAPTION " Font "
143 FONT 8, "MS Shell Dlg"
144 {
145         LTEXT "&Font", -1, 5, 5, 24, 8
146         LISTBOX IDC_FNT_LIST_FONT, 5, 18, 90, 42, LBS_SORT|WS_VSCROLL
147         LTEXT "&Colour", -1, 100, 5, 50, 8
148         CONTROL "", IDC_FNT_COLOR_FG, "WineConColorPreview", 0L, 100, 18, 48, 16
149         CONTROL "", IDC_FNT_COLOR_BK, "WineConColorPreview", 0L, 100, 40, 48, 16
150         LTEXT "&Size", -1, 158, 5, 40, 8
151         LISTBOX IDC_FNT_LIST_SIZE, 158, 18, 40, 60, WS_VSCROLL
152         CONTROL "", IDC_FNT_PREVIEW, "WineConFontPreview", 0L, 5, 60, 109, 40
153         LTEXT "", IDC_FNT_FONT_INFO, 128, 76, 80, 18
154 }

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.