Partial merge of the condrv_restructure branch, including:
[reactos.git] / reactos / dll / cpl / inetcpl / lang / en-US.rc
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
22 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
23
24 /* "General" propsheet */
25 IDD_GENERAL DIALOG 0, 0, 320, 220
26 STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
27 FONT 8, "MS Shell Dlg"
28 CAPTION "General"
29 BEGIN
30
31 GROUPBOX " Home page ", IDC_STATIC, 4, 4, 312, 52
32 LTEXT "You can choose the address that will be used as your home page.",
33 IDC_STATIC, 58, 10, 252, 10
34 EDITTEXT IDC_HOME_EDIT, 58, 22, 252, 12, WS_VISIBLE | ES_AUTOHSCROLL
35 PUSHBUTTON "&Current page", IDC_HOME_CURRENT, 58, 36, 80, 14
36 PUSHBUTTON "&Default page", IDC_HOME_DEFAULT, 144, 36, 80, 14
37 PUSHBUTTON "&Blank page", IDC_HOME_BLANK, 230, 36, 80, 14
38 GROUPBOX " Browsing history ", IDC_STATIC, 4, 60, 312, 46
39 LTEXT "You can delete cached pages, cookies and other data.",
40 IDC_STATIC, 58, 72, 252, 10
41 PUSHBUTTON "Delete &files...", IDC_HISTORY_DELETE, 144, 86, 80, 14
42 PUSHBUTTON "&Settings...", IDC_HISTORY_SETTINGS, 230, 86, 80, 14
43
44 END
45
46 /* "Delete browsing history" dialog */
47 IDD_DELETE_HISTORY DIALOG 0, 0, 250, 250
48 STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
49 FONT 8, "MS Shell Dlg"
50 CAPTION "Delete browsing history"
51 BEGIN
52
53 AUTOCHECKBOX "Temporary internet files\nCached copies of webpages, images and certificates.",
54 IDC_DELETE_TEMP_FILES, 10, 8, 230, 30, BS_TOP | BS_MULTILINE
55 AUTOCHECKBOX "Cookies\nFiles saved on your computer by websites, which store things like user preferences and login information.",
56 IDC_DELETE_COOKIES, 10, 38, 230, 30, BS_TOP | BS_MULTILINE
57 AUTOCHECKBOX "History\nList of websites you have accessed.",
58 IDC_DELETE_HISTORY, 10, 68, 230, 30, BS_TOP | BS_MULTILINE
59 AUTOCHECKBOX "Form data\nUsernames and other information you have entered into forms.",
60 IDC_DELETE_FORM_DATA, 10, 98, 230, 30, BS_TOP | BS_MULTILINE
61 AUTOCHECKBOX "Passwords\nSaved passwords you have entered into forms.",
62 IDC_DELETE_PASSWORDS, 10, 128, 230, 30, BS_TOP | BS_MULTILINE
63 DEFPUSHBUTTON "Cancel", IDCANCEL, 185, 230, 60, 15, WS_GROUP
64 PUSHBUTTON "Delete", IDOK, 120, 230, 60, 15, WS_GROUP
65
66 END
67
68 /* "Security" propsheet */
69 IDD_SECURITY DIALOG 0, 0, 320, 220
70 STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
71 FONT 8, "MS Shell Dlg"
72 CAPTION "Security"
73 BEGIN
74
75 CONTROL "Listview", IDC_SEC_LISTVIEW, "SysListView32",
76 LVS_ICON | LVS_ALIGNLEFT | LVS_AUTOARRANGE | LVS_SINGLESEL | LVS_SHOWSELALWAYS | WS_BORDER | WS_VSCROLL,
77 4, 4, 312, 58
78 LTEXT "", IDC_SEC_ZONE_INFO, 4, 68, 312, 20
79 GROUPBOX "", IDC_SEC_GROUP, 4, 88, 312, 126
80 CONTROL "trackbar", IDC_SEC_TRACKBAR, "msctls_trackbar32",
81 TBS_VERT | TBS_AUTOTICKS | TBS_BOTH | TBS_REVERSED, 8, 98, 32, 100
82 LTEXT "", IDC_SEC_LEVEL, 48, 102, 180, 12
83 LTEXT "", IDC_SEC_LEVEL_INFO, 48, 114, 260, 80
84 END
85
86 /* "Content" propsheet */
87 IDD_CONTENT DIALOG 0, 0, 320, 220
88 STYLE WS_CAPTION | WS_CHILD | WS_DISABLED
89 FONT 8, "MS Shell Dlg"
90 CAPTION "Content"
91 BEGIN
92
93 GROUPBOX " Certificates ", IDC_STATIC, 4, 4, 312, 50
94 LTEXT "Certificates are used for your personal identification and to identify certificate authorities and publishers.",
95 IDC_STATIC, 58, 14, 252, 18
96 PUSHBUTTON "Certificates...", IDC_CERT, 146, 34, 80, 14
97 PUSHBUTTON "Publishers...", IDC_CERT_PUBLISHER, 230, 34, 80, 14
98
99 END
100
101 STRINGTABLE
102 BEGIN
103 IDS_CPL_NAME "Internet Settings"
104 IDS_CPL_INFO "Configure Wine Internet Browser and related settings"
105 IDS_SEC_SETTINGS "Security settings for zone: "
106 IDS_SEC_LEVEL0 "Custom"
107 IDS_SEC_LEVEL1 "Very Low"
108 IDS_SEC_LEVEL2 "Low"
109 IDS_SEC_LEVEL3 "Medium"
110 IDS_SEC_LEVEL4 "Increased"
111 IDS_SEC_LEVEL5 "High"
112 END