1LANGUAGE LANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN 2 3/* Dialogs */ 4 5IDD_STARTPAGE DIALOGEX 0, 0, 317, 193 6STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 7CAPTION "Instalação do ReactOS" 8FONT 8, "MS Shell Dlg" 9BEGIN 10 LTEXT "Bem-vindo(a) ao Assistente de Instalação do ReactOS", IDC_STARTTITLE, 115, 8, 195, 24 11 LTEXT "This wizard will install or upgrade ReactOS on your computer, \ 12and prepare the second part of the setup.", IDC_STATIC, 115, 40, 195, 27 13//// 14 GROUPBOX " IMPORTANT INFORMATION ", IDC_WARNTEXT1, 115, 70, 195, 90, BS_CENTER 15 LTEXT "ReactOS is in Alpha stage: it is not feature- complete and is \ 16under heavy development. It is recommended to use it only for \ 17evaluation and testing and not as your daily-usage OS.\n\ 18It may corrupt your data or damage your hardware.", IDC_WARNTEXT2, 120, 80, 185, 50, SS_CENTER 19 LTEXT "Backup your data or test on a secondary computer \ 20if you attempt to run ReactOS on real hardware.", IDC_WARNTEXT3, 120, 130, 185, 27, SS_CENTER 21//// 22 LTEXT "Clique Avançar para continuar a instalação.", IDC_STATIC, 115, 169, 195, 17 23END 24 25IDD_TYPEPAGE DIALOGEX 0, 0, 317, 143 26STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 27CAPTION "Instalação do ReactOS" 28FONT 8, "MS Shell Dlg" 29BEGIN 30 AUTORADIOBUTTON "&Instalar ReactOS", IDC_INSTALL, 7, 20, 277, 10, WS_GROUP | WS_TABSTOP 31 LTEXT "Install a new copy of ReactOS. This option does not keep your files, settings and programs. You can make changes to disks and partitions.", IDC_INSTALLTEXT, 19, 36, 279, 27, NOT WS_GROUP 32 AUTORADIOBUTTON "&Reparar ou atualizar ReactOS", IDC_UPDATE, 7, 80, 277, 10 33 LTEXT "Update or repair an installed copy of ReactOS. This option keeps your files, settings and programs. This option is only available if ReactOS is already installed on this computer.", IDC_UPDATETEXT, 19, 96, 279, 27, NOT WS_GROUP 34END 35 36IDD_UPDATEREPAIRPAGE DIALOGEX 0, 0, 317, 143 37STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 38CAPTION "ReactOS Setup" 39FONT 8, "MS Shell Dlg" 40BEGIN 41 LTEXT "The ReactOS Setup can upgrade one of the available ReactOS installations listed below, or, if a ReactOS installation is damaged, the Setup program can attempt to repair it.", IDC_STATIC, 6, 6, 300, 18 42 CONTROL "", IDC_NTOSLIST, "SysListView32", LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP, 6, 30, 303, 90 43 PUSHBUTTON "&Do not upgrade", IDC_SKIPUPGRADE, 230, 128, 80, 14 44 LTEXT "Click Next to upgrade the selected OS installation, or on 'Do not upgrade' to continue a new installation without upgrading.", IDC_STATIC, 7, 124, 222, 16 45END 46 47IDD_DEVICEPAGE DIALOGEX 0, 0, 317, 143 48STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 49CAPTION "Instalação do ReactOS" 50FONT 8, "MS Shell Dlg" 51BEGIN 52 LTEXT "Computador:", IDC_STATIC, 20, 15, 80, 10 53 COMBOBOX IDC_COMPUTER, 100, 15, 180, 80, WS_VSCROLL | WS_TABSTOP | CBS_DROPDOWNLIST 54 LTEXT "Monitor:", IDC_STATIC, 20, 35, 80, 10 55 COMBOBOX IDC_DISPLAY, 100, 35, 180, 80, WS_VSCROLL | WS_TABSTOP | CBS_DROPDOWNLIST 56 LTEXT "Teclado:", IDC_STATIC, 20, 55, 80, 10 57 COMBOBOX IDC_KEYBOARD, 100, 55, 180, 80, WS_VSCROLL | WS_TABSTOP | CBS_DROPDOWNLIST 58 LTEXT "Clique em Próximo para configurar o dispositivo de instalação.", IDC_STATIC, 7, 128, 297, 8 59END 60 61IDD_DRIVEPAGE DIALOGEX 0, 0, 317, 143 62STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 63CAPTION "Instalação do ReactOS" 64FONT 8, "MS Shell Dlg" 65BEGIN 66 CONTROL "", IDC_PARTITION, "SysTreeList32", WS_BORDER | WS_VISIBLE | WS_TABSTOP | LVS_REPORT | LVS_SINGLESEL, 7, 7, 303, 112 67 PUSHBUTTON "&Initialize", IDC_INITDISK, 7, 122, 50, 14 // NOTE: At same position as IDC_PARTCREATE 68 PUSHBUTTON "&Criar", IDC_PARTCREATE, 7, 122, 50, 14 69 PUSHBUTTON "&Format", IDC_PARTFORMAT, 7, 122, 50, 14 // NOTE: At same position as IDC_PARTCREATE 70 PUSHBUTTON "&Apagar", IDC_PARTDELETE, 63, 122, 50, 14 71 PUSHBUTTON "D&rivers", IDC_DEVICEDRIVER, 174, 122, 50, 14, WS_DISABLED 72 PUSHBUTTON "&Opções Avançadas...", IDC_PARTMOREOPTS, 230, 122, 80, 14 73 // LTEXT "Clique em Próximo para verificar o sumário.", IDC_STATIC, 7, 128, 277, 8 74END 75 76IDD_PARTITION DIALOGEX 0, 0, 200, 120 77STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU 78CAPTION "Criar e formatar partição" 79FONT 8, "MS Shell Dlg" 80BEGIN 81 LTEXT "&Tamanho:", IDC_STATIC, 7, 9, 70, 9 82 EDITTEXT IDC_EDIT_PARTSIZE, 82, 7, 47, 13, ES_RIGHT | ES_NUMBER | WS_GROUP 83 CONTROL "", IDC_UPDOWN_PARTSIZE, UPDOWN_CLASS, UDS_SETBUDDYINT | UDS_ALIGNRIGHT | 84 UDS_AUTOBUDDY | UDS_ARROWKEYS | WS_GROUP, 120, 22, 9, 13 85 LTEXT "MB", IDC_UNIT, 134, 9, 14, 9 86 AUTOCHECKBOX "&Extended partition", IDC_CHECK_MBREXTPART, 7, 22, 180, 14 87 LTEXT "&Sistema de arquivo:", IDC_FS_STATIC, 7, 46, 70, 9 88 COMBOBOX IDC_FSTYPE, 82, 44, 100, 50, CBS_DROPDOWNLIST | WS_TABSTOP 89 AUTOCHECKBOX "&Quick format", IDC_CHECK_QUICKFMT, 7, 59, 180, 14 90 PUSHBUTTON "OK", IDOK, 88, 98, 50, 14 91 PUSHBUTTON "Cancelar", IDCANCEL, 143, 98, 50, 14 92END 93 94IDD_FORMAT DIALOGEX 0, 0, 200, 83 95STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU 96CAPTION "Formatar partição" 97FONT 8, "MS Shell Dlg" 98BEGIN 99 LTEXT "&Sistema de arquivo:", IDC_FS_STATIC, 7, 9, 70, 9 100 COMBOBOX IDC_FSTYPE, 82, 7, 100, 50, CBS_DROPDOWNLIST | WS_TABSTOP 101 AUTOCHECKBOX "&Quick format", IDC_CHECK_QUICKFMT, 7, 22, 180, 14 102 PUSHBUTTON "OK", IDOK, 88, 61, 50, 14 103 PUSHBUTTON "Cancelar", IDCANCEL, 143, 61, 50, 14 104END 105 106IDD_ADVINSTOPTS DIALOGEX 0, 0, 305, 135 107STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU 108CAPTION "Advanced Installation Options" 109FONT 8, "MS Shell Dlg" 110BEGIN 111 LTEXT "Choose the &directory where you want to install ReactOS:", IDC_STATIC, 7, 9, 291, 10 112 EDITTEXT IDC_PATH, 7, 23, 291, 13 113 GROUPBOX "Bootloader", IDC_STATIC, 7, 45, 291, 60 114 LTEXT "Select the location where the FreeLoader\nbootloader should be installed.\n\nBy default, it is installed on the system partition of the boot disk (and either in the Master or the Volume Boot Record for BIOS-based computers).", IDC_STATIC, 13, 57, 279, 44 115 COMBOBOX IDC_INSTFREELDR, 150, 58, 142, 45, WS_VSCROLL | WS_TABSTOP | CBS_DROPDOWNLIST 116 DEFPUSHBUTTON "OK", IDOK, 193, 113, 50, 14 117 PUSHBUTTON "Cancelar", IDCANCEL, 248, 113, 50, 14 118END 119 120IDD_SUMMARYPAGE DIALOGEX 0, 0, 317, 143 121STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 122CAPTION "Instalação do ReactOS" 123FONT 8, "MS Shell Dlg" 124BEGIN 125 LTEXT "Installation type:", IDC_STATIC, 18, 5, 74, 11 126 EDITTEXT IDC_INSTALLTYPE, 95, 4, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 127 LTEXT "Installation source:", IDC_STATIC, 18, 17, 74, 11 128 EDITTEXT IDC_INSTALLSOURCE, 95, 16, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 129 LTEXT "Architecture:", IDC_STATIC, 18, 29, 74, 11 130 EDITTEXT IDC_ARCHITECTURE, 95, 28, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 131 LTEXT "Computer:", IDC_STATIC, 18, 41, 74, 11 132 EDITTEXT IDC_COMPUTER, 95, 40, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 133 LTEXT "Display:", IDC_STATIC, 18, 53, 74, 11 134 EDITTEXT IDC_DISPLAY, 95, 52, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 135 LTEXT "Keyboard:", IDC_STATIC, 18, 65, 74, 11 136 EDITTEXT IDC_KEYBOARD, 95, 64, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 137 LTEXT "Destination volume:", IDC_STATIC, 18, 77, 74, 11 138 EDITTEXT IDC_DESTDRIVE, 95, 76, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 139 LTEXT "Destination directory:", IDC_STATIC, 18, 89, 74, 11 140 EDITTEXT IDC_PATH, 95, 88, 210, 13, ES_READONLY | ES_AUTOHSCROLL | WS_VISIBLE | NOT WS_BORDER | NOT WS_TABSTOP 141 AUTOCHECKBOX "I confirm that all the installation settings are correct. I also acknowledge that\nReactOS is alpha-quality software and may break on my computer or corrupt my data.", 142 IDC_CONFIRM_INSTALL, 7, 104, 303, 18, BS_MULTILINE 143 LTEXT "Please confirm that all the installation settings are correct,\nthen click on Install to start the installation process.", IDC_STATIC, 7, 124, 303, 18 144END 145 146IDD_PROCESSPAGE DIALOGEX 0, 0, 317, 143 147STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 148CAPTION "Instalação do ReactOS" 149FONT 8, "MS Shell Dlg" 150BEGIN 151 LTEXT "Instalar arquivos...", IDC_ACTIVITY, 20, 50, 277, 10 152 LTEXT "teste.txt", IDC_ITEM, 30, 80, 257, 10 153 CONTROL "", IDC_PROCESSPROGRESS, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE | WS_BORDER, 20, 120, 277, 8 154END 155 156IDD_RESTARTPAGE DIALOGEX 0, 0, 317, 193 157STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 158CAPTION "Instalação do ReactOS" 159FONT 8, "MS Shell Dlg" 160BEGIN 161 LTEXT "Completing the ReactOS Setup Wizard", IDC_FINISHTITLE, 115, 8, 195, 24 162 LTEXT "A primeira etapa de Instalação do ReactOS foi efetuada com sucesso.", IDC_STATIC, 115, 50, 195, 17 163 LTEXT "Clique em Finalizar para reiniciar o computador.", IDC_STATIC, 115, 80, 195, 17 164 CONTROL "", IDC_RESTART_PROGRESS, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE | WS_BORDER, 115, 110, 195, 8 165 LTEXT "Se houver um CD no drive, remova-o. Após isto, clique em Finalizar para reiniciar o computador.", IDC_STATIC, 115, 169, 195, 17 166END 167 168/* Strings */ 169 170STRINGTABLE 171BEGIN 172 IDS_CAPTION "Instalação do ReactOS" 173 IDS_TYPETITLE "Installation Type" 174 IDS_TYPESUBTITLE "You can setup a new ReactOS installation, or update/repair an existing installation." 175 IDS_UPDATETITLE "Update or Repair ReactOS" 176 IDS_UPDATESUBTITLE "Choose which existing ReactOS installation you want to update or repair." 177 IDS_DEVICETITLE "Instalar dispositivos básicos" 178 IDS_DEVICESUBTITLE "Definir as configurações de monitor e teclado." 179 IDS_DRIVETITLE "Configurar a partição de instalação e pasta do sistema" 180 IDS_DRIVESUBTITLE "Preparando partição de instalação, pasta do sistema e bootloader." 181 IDS_SUMMARYTITLE "Sumário de Instalação" 182 IDS_SUMMARYSUBTITLE "Listar propriedades da instalação para verificação antes de aplicá-las na instalação dos despositivos." 183 IDS_PROCESSTITLE "Preparar partição, copiar arquivos e configurar sistema" 184 IDS_PROCESSSUBTITLE "Criar e formatar partição, copiar arquivos, instalar e configurar bootloader." 185 IDS_RESTARTTITLE "Primeira etapa de instalação finalizada" 186 IDS_RESTARTSUBTITLE "A primeira etapada da instalação foi completada, reinicie o computador para prosseguir com a segunda estapa." 187 IDS_ABORTSETUP "ReactOS não está totalmente instalado em seu computador. Se você sair da Instalação agora, você precisará executar o Instalador novamente para instalar o ReactOS. Tem certeza que deseja sair?" 188 IDS_ABORTSETUP2 "Abortar instalação?" 189 IDS_NO_TXTSETUP_SIF "Unable to find 'txtsetup.sif'.\nSetup is unable to continue." 190 IDS_INSTALLBTN "&Install" 191 IDS_VOLUME_NOFORMAT "Not formatted" 192END 193 194STRINGTABLE 195BEGIN 196 IDS_INSTALLATION_NAME "Name" 197 IDS_INSTALLATION_PATH "Installation Path" 198 IDS_INSTALLATION_VENDOR "Vendor Name" 199END 200 201STRINGTABLE 202BEGIN 203 IDS_PARTITION_NAME "Name" 204 IDS_PARTITION_TYPE "Type" 205 IDS_PARTITION_SIZE "Size" 206 IDS_PARTITION_STATUS "Status" 207END 208 209STRINGTABLE 210BEGIN 211 IDS_BOOTLOADER_NOINST "Não instalar" 212 IDS_BOOTLOADER_REMOVABLE "Removable media" 213 IDS_BOOTLOADER_SYSTEM "System partition (Default)" 214 IDS_BOOTLOADER_MBRVBR "MBR e VBR (Default)" 215 IDS_BOOTLOADER_VBRONLY "Apenas VBR" 216END 217 218/* Progress Strings */ 219 220STRINGTABLE 221BEGIN 222 IDS_FORMATTING_PROGRESS1 "Formatting volume %c: (%s) in %s..." 223 IDS_FORMATTING_PROGRESS2 "Formatting volume %s in %s..." 224 225 IDS_CHECKING_PROGRESS1 "Checking volume %c: (%s)..." 226 IDS_CHECKING_PROGRESS2 "Checking volume %s..." 227 228 IDS_COPYING "Copying %s" 229 IDS_MOVING "Moving %s to %s" 230 IDS_RENAMING "Renaming %s to %s" 231 IDS_DELETING "Deleting %s" 232 233 IDS_CONFIG_SYSTEM_PARTITION "Configuring the system partition..." 234 IDS_PREPARE_PARTITIONS "Preparing partitions..." 235 IDS_PREPARE_FILES "Preparing the list of files to be copied, please wait..." 236 IDS_COPYING_FILES "Copying the files..." 237 238 IDS_CREATE_REGISTRY "Creating the registry..." 239 IDS_UPDATE_REGISTRY "Updating the registry..." 240 241 // IDS_INSTALL_FINALIZE "Finalizing the installation..." 242 IDS_INSTALL_BOOTLOADER "Installing the bootloader..." 243END 244 245// Note to translators: please refer to the corresponding usetup/lang/*.h translations. 246STRINGTABLE 247BEGIN 248 IDS_REG_DONE "Done" 249 IDS_REG_REGHIVEUPDATE "Updating registry hives" 250 IDS_REG_IMPORTFILE "Importing %s" 251 IDS_REG_DISPLAYSETTINGSUPDATE "Updating display registry settings" 252 IDS_REG_LOCALESETTINGSUPDATE "Updating locale settings" 253 IDS_REG_ADDKBLAYOUTS "Adding keyboard layouts" 254 IDS_REG_KEYBOARDSETTINGSUPDATE "Updating keyboard layout settings" 255 IDS_REG_CODEPAGEINFOUPDATE "Adding codepage information" 256 IDS_REG_UNKNOWN "Unknown status %d" 257END 258 259/* Error Strings */ 260 261STRINGTABLE 262BEGIN 263 IDS_ERROR_INVALID_INSTALLDIR_CHAR_TITLE "Invalid character" 264 IDS_ERROR_INVALID_INSTALLDIR_CHAR "The only valid characters are:\n\ 265alphanumericals (a-z, A-Z, 0-9), and\n . \\ - _\n\ 266Spaces are not allowed." 267 268 IDS_ERROR_DIRECTORY_NAME_TITLE "Invalid installation path" 269 IDS_ERROR_DIRECTORY_NAME "The ReactOS installation path must follow the DOS 8.3 naming scheme, \ 270and only contain letters, digits, dashes and periods. Spaces are not allowed." 271 272 IDS_ERROR_CREATE_PARTITION_TITLE "Create partition" 273 IDS_ERROR_CREATE_PARTITION "Failed to create a new partition." 274 275 IDS_WARN_DELETE_PARTITION_TITLE "Delete partition?" 276 IDS_WARN_DELETE_PARTITION "Are you sure you want to delete the selected partition?" 277 IDS_WARN_DELETE_MBR_EXTENDED_PARTITION "Are you sure you want to delete the selected extended partition and ALL the logical partitions it contains?" 278 279 IDS_ERROR_WRITE_PTABLE "Setup failed to write partition tables." 280 281 IDS_ERROR_SYSTEM_PARTITION "The ReactOS Setup could not find a supported system partition\n\ 282on your system or could not create a new one. Without such a partition\n\ 283the Setup program cannot install ReactOS.\ 284\nClick on OK to return to the partition selection list." 285 286 IDS_ERROR_FORMAT_UNRECOGNIZED_VOLUME "Unrecognized volume while attempting to format the partition." 287 288 IDS_ERROR_COULD_NOT_FORMAT "Setup is currently unable to format a partition in %s.\n\ 289\nClick on OK to continue Setup.\ 290\nClick on CANCEL to quit Setup." 291 292 IDS_ERROR_FORMATTING_PARTITION "Setup is unable to format the partition:\n %s\n" 293 294 IDS_ERROR_COULD_NOT_CHECK "Setup is currently unable to check a partition formatted in %s.\n\ 295\nClick on OK to continue Setup.\ 296\nClick on CANCEL to quit Setup." 297 298 IDS_ERROR_CHECKING_PARTITION "ChkDsk detected some disk errors.\n(Status 0x%08lx)." 299 300 IDS_ERROR_WRITE_BOOT "Setup failed to install the %s bootcode on the system partition." 301 IDS_ERROR_INSTALL_BOOTCODE "Setup failed to install the %s bootcode on the boot disk." 302 IDS_ERROR_INSTALL_BOOTCODE_REMOVABLE "Setup failed to install the bootcode on the removable media." 303 IDS_ERROR_BOOTLDR_ARCH_UNSUPPORTED "Setup does not currently support installing the bootloader on the computer you are using.\ 304\nClick on OK to continue anyway." 305 IDS_ERROR_BOOTLDR_FAILED "Setup could not install the bootloader (Status 0x%08lx)." 306END 307