xref: /reactos/dll/cpl/inetcpl/lang/en-US.rc (revision ac0bcf4a)
1/*
2 * English resources for the Internet control panel applet
3 *
4 * Copyright 2010 Detlef Riekenberg
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 *
20 */
21
22LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
23
24STRINGTABLE
25BEGIN
26    IDS_CPL_NAME        "Internet Settings"
27    IDS_CPL_INFO        "Configure WINE Internet Explorer and related settings."
28    IDS_SEC_SETTINGS    "Security settings for zone: "
29    IDS_SEC_LEVEL0      "Custom"
30    IDS_SEC_LEVEL1      "Very Low"
31    IDS_SEC_LEVEL2      "Low"
32    IDS_SEC_LEVEL3      "Medium"
33    IDS_SEC_LEVEL4      "Increased"
34    IDS_SEC_LEVEL5      "High"
35END
36
37/* "General" propsheet */
38IDD_GENERAL DIALOGEX  0, 0, 320, 220
39STYLE DS_SHELLFONT | WS_CAPTION | WS_CHILD | WS_DISABLED
40FONT 8, "MS Shell Dlg"
41CAPTION "General"
42BEGIN
43
44    GROUPBOX    "Home page", IDC_STATIC, 4, 4, 312, 56
45    ICON ICO_HOME, ICO_HOME, 10, 15, 21, 20
46    LTEXT       "You can choose the address that will be used as your home page.",
47                IDC_STATIC, 40, 14, 265, 10
48    EDITTEXT    IDC_HOME_EDIT, 40, 26, 270, 12, WS_VISIBLE | ES_AUTOHSCROLL
49    PUSHBUTTON  "&Current page", IDC_HOME_CURRENT, 58, 42, 80, 14
50    PUSHBUTTON  "&Default page", IDC_HOME_DEFAULT, 144, 42, 80, 14
51    PUSHBUTTON  "&Blank page", IDC_HOME_BLANK, 230, 42, 80, 14
52    GROUPBOX    "Browsing history", IDC_STATIC, 4, 66, 312, 42
53    ICON ICO_HISTORY, ICO_HISTORY, 10, 78, 80, 14
54    LTEXT       "You can delete cached pages, cookies and other data.",
55                IDC_STATIC, 40, 76, 270, 10
56    PUSHBUTTON  "Delete &files...", IDC_HISTORY_DELETE, 144, 90, 80, 14
57    PUSHBUTTON  "&Settings...", IDC_HISTORY_SETTINGS, 230, 90, 80, 14
58
59END
60
61/* "Delete browsing history" dialog */
62IDD_DELETE_HISTORY DIALOGEX  0, 0, 250, 250
63STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
64FONT 8, "MS Shell Dlg"
65CAPTION "Delete browsing history"
66BEGIN
67
68    AUTOCHECKBOX   "&Temporary internet files\nCached copies of web pages, images and certificates.",
69                    IDC_DELETE_TEMP_FILES, 10, 8, 230, 40, BS_TOP | BS_MULTILINE | WS_GROUP | WS_TABSTOP
70    AUTOCHECKBOX   "&Cookies\nFiles saved on your computer by websites, which store things like user preferences and login information.",
71                    IDC_DELETE_COOKIES, 10, 48, 230, 40, BS_TOP | BS_MULTILINE
72    AUTOCHECKBOX   "&History\nList of websites you have accessed.",
73                    IDC_DELETE_HISTORY, 10, 88, 230, 40, BS_TOP | BS_MULTILINE
74    AUTOCHECKBOX   "&Form data\nUsernames and other information you have entered into forms.",
75                    IDC_DELETE_FORM_DATA, 10, 128, 230, 40, BS_TOP | BS_MULTILINE
76    AUTOCHECKBOX   "&Passwords\nSaved passwords you have entered into forms.",
77                    IDC_DELETE_PASSWORDS, 10, 168, 230, 40, BS_TOP | BS_MULTILINE
78    DEFPUSHBUTTON  "Cancel", IDCANCEL, 185, 230, 60, 15, WS_GROUP
79    PUSHBUTTON     "&Delete", IDOK, 120, 230, 60, 15
80
81END
82
83/* "Security" propsheet */
84IDD_SECURITY DIALOGEX  0, 0, 320, 220
85STYLE DS_SHELLFONT | WS_CAPTION | WS_CHILD | WS_DISABLED
86FONT 8, "MS Shell Dlg"
87CAPTION "Security"
88BEGIN
89
90    CONTROL     "", IDC_SEC_LISTVIEW, "SysListView32",
91                LVS_ICON | LVS_ALIGNLEFT | LVS_AUTOARRANGE | LVS_SINGLESEL | LVS_SHOWSELALWAYS | WS_BORDER | WS_VSCROLL,
92                4, 4, 312, 58
93    LTEXT       "", IDC_SEC_ZONE_INFO, 4, 68, 312, 20
94    GROUPBOX    "", IDC_SEC_GROUP, 4, 88, 312, 126
95    CONTROL     "", IDC_SEC_TRACKBAR, "msctls_trackbar32",
96                TBS_VERT | TBS_AUTOTICKS | TBS_BOTH | TBS_REVERSED, 8, 98, 32, 100
97    LTEXT       "", IDC_SEC_LEVEL, 48, 102, 180, 12
98    LTEXT       "", IDC_SEC_LEVEL_INFO, 48, 114, 260, 80
99END
100
101/* "Content" propsheet */
102IDD_CONTENT DIALOGEX  0, 0, 320, 220
103STYLE DS_SHELLFONT | WS_CAPTION | WS_CHILD | WS_DISABLED
104FONT 8, "MS Shell Dlg"
105CAPTION "Content"
106BEGIN
107
108    GROUPBOX    "Certificates", IDC_STATIC, 4, 4, 312, 50
109    ICON ICO_CERTIFICATES, ICO_CERTIFICATES, 10, 15, 21, 20
110    LTEXT       "Certificates are used for your personal identification and to identify certificate authorities and publishers.",
111                IDC_STATIC, 40, 14, 252, 18
112    PUSHBUTTON  "&Certificates...", IDC_CERT, 146, 34, 80, 14
113    PUSHBUTTON	"Pu&blishers...", IDC_CERT_PUBLISHER, 230, 34, 80, 14
114
115END
116
117/* "Connections" propsheet */
118IDD_CONNECTIONS DIALOG 0, 0, 320, 220
119STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
120FONT 8, "MS Shell Dlg"
121CAPTION "Connections"
122BEGIN
123    GROUPBOX        "Automatic configuration", IDC_STATIC, 4, 4, 312, 56
124    AUTOCHECKBOX    "Use Web Proxy Auto-Discovery (WPAD)", IDC_USE_WPAD, 10, 14, 200, 14, BS_TOP
125    AUTOCHECKBOX    "Use Proxy Auto-Config (PAC) script", IDC_USE_PAC_SCRIPT, 10, 28, 200, 14, BS_TOP
126    LTEXT           "Address:", IDC_STATIC, 10, 42, 40, 14
127    EDITTEXT        IDC_EDIT_PAC_SCRIPT, 50, 42, 160, 14, WS_VISIBLE | ES_AUTOHSCROLL | WS_DISABLED
128    GROUPBOX        "Proxy server", IDC_STATIC, 4, 66, 312, 42
129    AUTOCHECKBOX    "Use a proxy server", IDC_USE_PROXY_SERVER, 10, 76, 200, 14, BS_TOP | BS_MULTILINE
130    LTEXT           "Address:", IDC_STATIC, 10, 90, 40, 14
131    EDITTEXT        IDC_EDIT_PROXY_SERVER, 50, 90, 80, 14, WS_VISIBLE | ES_AUTOHSCROLL | WS_DISABLED
132    LTEXT           "Port:", IDC_STATIC, 140, 90, 30, 14
133    EDITTEXT        IDC_EDIT_PROXY_PORT, 170, 90, 40, 14, WS_VISIBLE | ES_AUTOHSCROLL | WS_DISABLED | ES_NUMBER
134END
135