1/* 2 * Portuguese resources for the Internet control panel applet 3 * 4 * Copyright 2010 Gustavo Henrique Milaré 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#pragma code_page(65001) 23 24LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN 25 26STRINGTABLE 27BEGIN 28 IDS_CPL_NAME "Internet Settings" 29 IDS_CPL_INFO "Configure WINE Internet Explorer and related settings." 30 IDS_SEC_SETTINGS "Security settings for zone: " 31 IDS_SEC_LEVEL0 "Custom" 32 IDS_SEC_LEVEL1 "Very Low" 33 IDS_SEC_LEVEL2 "Low" 34 IDS_SEC_LEVEL3 "Medium" 35 IDS_SEC_LEVEL4 "Increased" 36 IDS_SEC_LEVEL5 "High" 37END 38 39/* "General" propsheet */ 40IDD_GENERAL DIALOGEX 0, 0, 320, 220 41STYLE DS_SHELLFONT | WS_CAPTION | WS_CHILD | WS_DISABLED 42FONT 8, "MS Shell Dlg" 43CAPTION "Geral" 44BEGIN 45 46 GROUPBOX "Página inicial ", IDC_STATIC, 4, 4, 312, 56 47 ICON ICO_HOME, ICO_HOME, 10, 15, 21, 20 48 LTEXT "Escolha o endereço que será usado como página inicial.", 49 IDC_STATIC, 40, 14, 265, 10 50 EDITTEXT IDC_HOME_EDIT, 40, 26, 270, 12, WS_VISIBLE | ES_AUTOHSCROLL 51 PUSHBUTTON "Página &atual", IDC_HOME_CURRENT, 58, 42, 80, 14 52 PUSHBUTTON "Página &padrão", IDC_HOME_DEFAULT, 144, 42, 80, 14 53 PUSHBUTTON "Página em &branco", IDC_HOME_BLANK, 230, 42, 80, 14 54 GROUPBOX "Browsing history", IDC_STATIC, 4, 66, 312, 42 55 ICON ICO_HISTORY, ICO_HISTORY, 10, 78, 80, 14 56 LTEXT "You can delete cached pages, cookies and other data.", 57 IDC_STATIC, 40, 76, 270, 10 58 PUSHBUTTON "Delete &files...", IDC_HISTORY_DELETE, 144, 90, 80, 14 59 PUSHBUTTON "&Settings...", IDC_HISTORY_SETTINGS, 230, 90, 80, 14 60 61END 62 63/* "Delete browsing history" dialog */ 64IDD_DELETE_HISTORY DIALOGEX 0, 0, 250, 250 65STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION | WS_SYSMENU 66FONT 8, "MS Shell Dlg" 67CAPTION "Delete browsing history" 68BEGIN 69 70 AUTOCHECKBOX "Temporary internet files\nCached copies of web pages, images and certificates.", 71 IDC_DELETE_TEMP_FILES, 10, 8, 230, 40, BS_TOP | BS_MULTILINE 72 AUTOCHECKBOX "Cookies\nFiles saved on your computer by websites, which store things like user preferences and login information.", 73 IDC_DELETE_COOKIES, 10, 48, 230, 40, BS_TOP | BS_MULTILINE 74 AUTOCHECKBOX "History\nList of websites you have accessed.", 75 IDC_DELETE_HISTORY, 10, 88, 230, 40, BS_TOP | BS_MULTILINE 76 AUTOCHECKBOX "Form data\nUsernames and other information you have entered into forms.", 77 IDC_DELETE_FORM_DATA, 10, 128, 230, 40, BS_TOP | BS_MULTILINE 78 AUTOCHECKBOX "Passwords\nSaved passwords you have entered into forms.", 79 IDC_DELETE_PASSWORDS, 10, 168, 230, 40, BS_TOP | BS_MULTILINE 80 DEFPUSHBUTTON "Cancel", IDCANCEL, 185, 230, 60, 15, WS_GROUP 81 PUSHBUTTON "Delete", IDOK, 120, 230, 60, 15, WS_GROUP 82 83END 84 85/* "Security" propsheet */ 86IDD_SECURITY DIALOGEX 0, 0, 320, 220 87STYLE DS_SHELLFONT | WS_CAPTION | WS_CHILD | WS_DISABLED 88FONT 8, "MS Shell Dlg" 89CAPTION "Security" 90BEGIN 91 92 CONTROL "", IDC_SEC_LISTVIEW, "SysListView32", 93 LVS_ICON | LVS_ALIGNLEFT | LVS_AUTOARRANGE | LVS_SINGLESEL | LVS_SHOWSELALWAYS | WS_BORDER | WS_VSCROLL, 94 4, 4, 312, 58 95 LTEXT "", IDC_SEC_ZONE_INFO, 4, 68, 312, 20 96 GROUPBOX "", IDC_SEC_GROUP, 4, 88, 312, 126 97 CONTROL "", IDC_SEC_TRACKBAR, "msctls_trackbar32", 98 TBS_VERT | TBS_AUTOTICKS | TBS_BOTH | TBS_REVERSED, 8, 98, 32, 100 99 LTEXT "", IDC_SEC_LEVEL, 48, 102, 180, 12 100 LTEXT "", IDC_SEC_LEVEL_INFO, 48, 114, 260, 80 101END 102 103/* "Content" propsheet */ 104IDD_CONTENT DIALOGEX 0, 0, 320, 220 105STYLE DS_SHELLFONT | WS_CAPTION | WS_CHILD | WS_DISABLED 106FONT 8, "MS Shell Dlg" 107CAPTION "Conteúdo" 108BEGIN 109 110 GROUPBOX "Certificados ", IDC_STATIC, 4, 4, 312, 50 111 ICON ICO_CERTIFICATES, ICO_CERTIFICATES, 10, 15, 21, 20 112 LTEXT "Certificados são usados para sua identificação pessoal e para identificar certificados de autoridades e editores.", 113 IDC_STATIC, 40, 14, 252, 18 114 PUSHBUTTON "Certificados...", IDC_CERT, 146, 34, 80, 14 115 PUSHBUTTON "Editores...", IDC_CERT_PUBLISHER, 230, 34, 80, 14 116 117END 118 119/* "Connections" propsheet */ 120IDD_CONNECTIONS DIALOG 0, 0, 320, 220 121STYLE WS_CAPTION | WS_CHILD | WS_DISABLED 122FONT 8, "MS Shell Dlg" 123CAPTION "Connections" 124BEGIN 125 GROUPBOX "Automatic configuration", IDC_STATIC, 4, 4, 312, 56 126 AUTOCHECKBOX "Use Web Proxy Auto-Discovery (WPAD)", IDC_USE_WPAD, 10, 14, 200, 14, BS_TOP 127 AUTOCHECKBOX "Use Proxy Auto-Config (PAC) script", IDC_USE_PAC_SCRIPT, 10, 28, 200, 14, BS_TOP 128 LTEXT "Address:", IDC_STATIC, 10, 42, 40, 14 129 EDITTEXT IDC_EDIT_PAC_SCRIPT, 50, 42, 160, 14, WS_VISIBLE | ES_AUTOHSCROLL | WS_DISABLED 130 GROUPBOX "Proxy server", IDC_STATIC, 4, 66, 312, 42 131 AUTOCHECKBOX "Use a proxy server", IDC_USE_PROXY_SERVER, 10, 76, 200, 14, BS_TOP | BS_MULTILINE 132 LTEXT "Address:", IDC_STATIC, 10, 90, 40, 14 133 EDITTEXT IDC_EDIT_PROXY_SERVER, 50, 90, 80, 14, WS_VISIBLE | ES_AUTOHSCROLL | WS_DISABLED 134 LTEXT "Port:", IDC_STATIC, 140, 90, 30, 14 135 EDITTEXT IDC_EDIT_PROXY_PORT, 170, 90, 40, 14, WS_VISIBLE | ES_AUTOHSCROLL | WS_DISABLED | ES_NUMBER 136END 137