En.rc 3.35 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * OleView (En.rc)
 * English Language Support
 *
 * Copyright 2006 Piotr Caban
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20
 */
21

22 23
#include "resource.h"

24
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
25

26
DLG_CREATEINSTON DIALOG 0, 0, 250, 41
27 28 29 30
STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_CAPTION | WS_SYSMENU
CAPTION "Connect to another machine"
FONT 8, "MS Shell Dlg"
{
31
    LTEXT   "&Machine name:", -1, 5, 6, 190, 8
32 33 34 35
    EDITTEXT    IDC_MACHINE, 5, 16, 190, 12, WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL
    DEFPUSHBUTTON   "&OK", IDOK, 200, 5, 45, 14
    PUSHBUTTON  "&Cancel", IDCANCEL, 200, 22, 45, 14
}
36

37
DLG_SYSCONF DIALOG 0, 0, 170, 100
38 39 40 41
STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_CAPTION | WS_SYSMENU
CAPTION "System Configuration"
FONT 8, "MS Shell Dlg"
{
42
    LTEXT   "System Settings", -1, 5, 6, 160, 8
43 44
    CHECKBOX    "&Enable Distributed COM", IDC_ENABLEDCOM, 5, 20, 160, 10, WS_TABSTOP | WS_GROUP | BS_AUTOCHECKBOX
    CHECKBOX    "Enable &Remote Connections (Win95 only)", IDC_ENABLEREMOTE, 5, 35, 160, 10, WS_TABSTOP | WS_GROUP | BS_AUTOCHECKBOX
45
    LTEXT   "These settings changes only register values.\nIt has no effect on Wine performance.", -1, 5, 50, 160, 40
46 47 48
    DEFPUSHBUTTON   "&OK", IDOK, 70, 80, 45, 14
    PUSHBUTTON  "&Cancel", IDCANCEL, 120, 80, 45, 14
}
49

50
DLG_DEFAULT_IV DIALOG 0, 0, 280, 50
51 52 53 54
STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_CAPTION | WS_SYSMENU
CAPTION "Default Interface Viewer"
FONT 8, "MS Shell Dlg"
{
55
    LTEXT   "Interface", -1, 5, 6, 50, 8
56
    LTEXT   "", IDC_LABEL, 60, 6, 145, 8
57
    LTEXT   "IID:", -1, 5, 16, 50, 8
58 59 60 61 62
    LTEXT   "", IDC_IDENTIFIER, 60, 16, 165, 8
    DEFPUSHBUTTON   "&Close", IDCANCEL, 230, 6, 45, 14
    PUSHBUTTON  "&View Type Info", IDC_VIEWTYPEINFO, 6, 31, 70, 14, WS_DISABLED
}

63
DLG_IPERSIST_IV DIALOG 0, 0, 280, 29
64 65 66 67
STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_CAPTION | WS_SYSMENU
CAPTION "IPersist Interface Viewer"
FONT 8, "MS Shell Dlg"
{
68
    LTEXT   "Class Name:", -1, 5, 6, 50, 8
69
    LTEXT   "", IDC_LABEL, 60, 6, 145, 8
70
    LTEXT   "CLSID:", -1, 5, 16, 50, 8
71 72 73 74
    LTEXT   "", IDC_IDENTIFIER, 60, 16, 165, 8
    DEFPUSHBUTTON   "&Close", IDCANCEL, 230, 6, 45, 14
}

75
DLG_IPERSISTSTREAM_IV DIALOG 0, 0, 280, 68
76 77 78 79
STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_CAPTION | WS_SYSMENU
CAPTION "IPersistStream Interface Viewer"
FONT 8, "MS Shell Dlg"
{
80
    LTEXT   "Class Name:", -1, 5, 6, 50, 8
81
    LTEXT   "", IDC_LABEL, 60, 6, 145, 8
82
    LTEXT   "CLSID:", -1, 5, 16, 50, 8
83 84 85 86 87 88 89
    LTEXT   "", IDC_IDENTIFIER, 60, 16, 165, 8
    DEFPUSHBUTTON   "&Close", IDCANCEL, 230, 6, 45, 14
    PUSHBUTTON  "&IsDirty", IDC_ISDIRTY_BUTTON, 6, 31, 50, 14
    LTEXT   "???", IDC_ISDIRTY, 60, 34, 145, 8
    PUSHBUTTON  "&GetSizeMax", IDC_GETSIZEMAX_BUTTON, 6, 49, 50, 14
    LTEXT   "???", IDC_GETSIZEMAX, 60, 52, 145, 8
}