windows-nt/Source/XPSP1/NT/shell/comctl32/v5/en.rc
2020-09-26 16:20:57 +08:00

115 lines
4.4 KiB
Plaintext

STRINGTABLE MOVEABLE DISCARDABLE
BEGIN
// toolbar stuff
IDS_SPACE, "Separator"
IDS_PLUS, " + "
IDS_NONE, "None"
// menuhelp stuff
IDS_SYSMENU , "Contains commands for manipulating windows."
IDS_HEADER , "Drag to the left or right to resize columns."
IDS_HEADERADJ , "Resizes columns using the arrow and tab keys."
IDS_TOOLBARADJ, "Adds, moves, and removes buttons on the toolbar."
MH_SYSMENU+SC_RESTORE , "Restores this window to normal size."
MH_SYSMENU+SC_MOVE , "Moves this window."
MH_SYSMENU+SC_SIZE , "Resizes this window."
MH_SYSMENU+SC_MINIMIZE , "Collapses this window to an icon."
MH_SYSMENU+SC_MAXIMIZE , "Expands this window to fill the screen."
MH_SYSMENU+SC_CLOSE , "Closes this window."
MH_SYSMENU+SC_TASKLIST , "Switches to another task."
MH_SYSMENU+SC_NEXTWINDOW, "Switches to the next MDI window."
// property sheet
IDS_CLOSE "Close"
IDS_OK "OK"
IDS_PROPERTIESFOR "%s Properties"
IDS_PROPERTIES "Properties"
// MonthCal
IDS_TODAY "Today:"
IDS_GOTOTODAY "&Go to today"
IDS_DELIMETERS "/.,-:" // delimeters between date/time fields
IDS_MONTHFMT "MMMM"
IDS_MONTHYEARFMT "MMMM yyyy"
// Header
IDS_ENTERTEXTHERE "Enter text here"
END
ADJUSTDLG DIALOG 10, 20, 357, 125
STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | DS_CONTEXTHELP
CAPTION "Customize Toolbar"
FONT 8, "MS Shell Dlg"
BEGIN
DEFPUSHBUTTON "&Close", IDCANCEL, 308, 6, 44, 14
PUSHBUTTON "R&eset", IDC_RESET, 308, 23, 44, 14
PUSHBUTTON "&Help", IDC_APPHELP, 308, 40, 44, 14
PUSHBUTTON "Move &Up", IDC_MOVEUP, 308, 74, 44, 14
PUSHBUTTON "Move &Down", IDC_MOVEDOWN, 308, 91, 44, 14
LTEXT "A&vailable toolbar buttons:", -1, 4, 5, 84, 10
LISTBOX IDC_BUTTONLIST, 4, 17, 120, 100, LBS_OWNERDRAWFIXED |
LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT |
LBS_DISABLENOSCROLL | WS_VSCROLL | WS_HSCROLL |
WS_TABSTOP
PUSHBUTTON "&Add ->", IDOK, 131, 42, 44, 14
PUSHBUTTON "<- &Remove", IDC_REMOVE, 131, 62, 44, 14
LTEXT "Current &toolbar buttons:", -1, 182, 5, 78, 10
LISTBOX IDC_CURRENT, 182, 17, 120, 100, LBS_OWNERDRAWFIXED |
LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT |
LBS_DISABLENOSCROLL | WS_VSCROLL | WS_HSCROLL |
WS_TABSTOP
END
DLG_PROPSHEET DIALOG DISCARDABLE 20, 20, 220, 140
STYLE DS_MODALFRAME | DS_3DLOOK | DS_CONTEXTHELP | WS_POPUP | WS_CAPTION | WS_SYSMENU
#ifndef UNIX
| WS_VISIBLE
#endif
CAPTION ""
FONT 8, "MS Shell Dlg"
BEGIN
DEFPUSHBUTTON "OK",IDOK,4,122,50,14, WS_TABSTOP | WS_GROUP
PUSHBUTTON "Cancel",IDCANCEL,58,122,50,14
PUSHBUTTON "&Apply",IDD_APPLYNOW,112,122,50,14, WS_DISABLED
// Deliberately do NOT use mnuemonic for Help button (which is usually hidden)
PUSHBUTTON "Help",IDHELP,166,122,50,14, WS_TABSTOP | WS_GROUP
CONTROL "",IDD_PAGELIST,WC_TABCONTROL,WS_GROUP | WS_TABSTOP | TCS_MULTILINE,4,4,212,114
END
DLG_WIZARD DIALOG DISCARDABLE 20, 20, 290, 46
STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_CAPTION | WS_SYSMENU
#ifndef UNIX
| WS_VISIBLE
#endif
CAPTION ""
FONT 8, "MS Shell Dlg"
BEGIN
CONTROL "",IDD_PAGELIST,WC_TABCONTROL,WS_GROUP | WS_DISABLED,7,7,276,3
CONTROL "",IDD_DIVIDER,"Static", SS_SUNKEN,7,17,276,1
#ifndef UNIX
PUSHBUTTON "< &Back",IDD_BACK,12,26,50,14
#else
PUSHBUTTON "< &Back",IDD_BACK,7,26,50,14
#endif
DEFPUSHBUTTON "&Next >",IDD_NEXT,62,26,50,14
// DO NOT PUT AN ACCELERATOR ON "Finish"
// There exist apps which enumerate all the controls on the wizard
// and do hard-coded string comparisons. Adding an accelerator
// causes these apps to fault when they can't find the button.
// If an app wants an accelerator on Finish, they can use
// PSM_SETFINISHTEXT to add one themselves.
PUSHBUTTON "Finish",IDD_FINISH,119,26,50,14
PUSHBUTTON "Cancel",IDCANCEL,176,26,50,14
// Deliberately do NOT use mnuemonic for Help button (which is usually hidden)
PUSHBUTTON "Help",IDHELP,233,26,50,14, WS_TABSTOP | WS_GROUP
CONTROL "",IDD_TOPDIVIDER,"Static", SS_SUNKEN,0,35,290,1
END