1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
; asmsyntax=nasm
;
; theme-pt.asm
;
; Portuguese theme data for Smart Boot Manager
;
; Copyright (C) 2001, Suzhe <su_zhe@sina.com>.
; Copyright (C) 2001, Andr Maldonado <agm@clix.pt>.
;
; See file COPYING for details.
;
; some constant used in this theme.
; PLEASE DO NOT CHANGE THESE, UNLESS YOU KNOW WHAT YOU ARE DOING!
%define SBMT_MAGIC 0x544D4253 ; magic number of
; Smart Boot Manager theme.
%define SBMT_VERSION 0x0307 ; version of theme.
start_font equ 219
brand_char1 equ start_font
brand_char2 equ start_font+1
brand_char3 equ start_font+2
brand_char4 equ start_font+3
bits 16
%ifndef MAIN
org 0 ; DO NOT REMOVE/MODIFY THIS LINE!!!
%endif
start_of_theme:
;!!! PLEASE DON NOT CHANGE THE SIZE AND ORDER OF FOLLOWING DATA !!!
;=============================================================================
;the header of Smart Boot Manager theme ( 16 bytes )
;=============================================================================
theme_magic dd SBMT_MAGIC ; magic number = 'SBMT', 4 bytes.
; it's abbr. of 'Smart Boot Manager Theme'
dw 0 ;
theme_lang db 'pt-pt',0 ; language of this theme, 6 bytes.
theme_version dw SBMT_VERSION ; version, high byte is major version,
; low byte is minor version. should be
; equal to the version of Smart Boot Manager.
theme_size dw (end_of_theme - start_of_theme)
; size of the theme (bytes).
;=============================================================================
; fix size data and index tables of variable size data
;=============================================================================
video_mode db 0xff ; 0 = 90x25, 0xff = 80x25
; do not use other value!!!
keyboard_type db 0x10 ; = 0x10 means use enhanced keyboard
; = 0x00 means use normal keyboard
; CAUTION: cannot use other value!!!
show_date_method db 3 ; the method of show date:
; 0 = don't show date
; 1 = day mm-dd-yyyy
; 2 = day yyyy-mm-dd
; 3 = day dd-mm-yyyy
show_time_method db 1 ; the method of show time:
; 0 = don't show time
; 1 = hh:mm (24 hours)
yes_key_lower db 's'
yes_key_upper db 'S'
; position of screen elements
position:
.main_win_col db 14 ; start column of main window
.main_win_row db 6 ; start row of main window
.brand_col db 255 ; start column of brand icon
; if = 255 then brand will be
; right justify in the screen.
.brand_row db 0 ; start row of brand icon
.cmd_menu_col db 1 ; the position of command menu.
.cmd_menu_row db 1 ;
.date_col db 55
.date_row db 0
.time_col db 70
.time_row db 0
; size of screen elements
size:
.copyright db 1 ; number of rows used by copyright info
.hint db 1 ; number of rows used by hint info
.box_width db 5 ; the minimal width of info/error/input box
; (when no info string)
.box_height db 4 ; the minimal height of info/error/input box
; (when no info string)
.main_win_height db 13 ; the height of main window
.bootmenu_height db 8 ; the height of boot menu area
;Black = 0
;Blue = 1
;Green = 2
;Cyan = 3
;Red = 4
;Violet = 5
;Yellow (brown) = 6
;White = 7
;Black (gray) = 8
;Intense blue = 9
;Intense green = a
;Intense cyan = b
;Intense red = c
;Intense violet = d
;Intense yellow = e
;Intense white = f
; color of screen elements
; high 4 bits is background color, low 4 bits is foreground color
color:
.main_win_frame db 0x3F ; main window
.main_win_title db 0xF1 ;
.menu_title db 0x1F ;
.menu_normal db 0x70 ; boot menu
.menu_focus db 0x0F ;
.scrollbar db 0x3F ; scroll bar
.delay_time db 0x70 ; delay time
.background db 0x00 ; background (if no background icon)
.copyright db 0x70 ; copyright string
.copyright_hl db 0x74 ; high lighted copyright string
.hint db 0x70 ; hint string
.hint_hl db 0x74 ; high lighted hint string
.knl_flags db 0x7C ; the color of kernal fags.
.knl_drvid db 0x70 ; the color of kernel drive id.
.date db 0x70 ; color of date string
.time db 0x70 ; color of time string
.input_box_frame db 0xB0 ;
.input_box_title db 0xF1 ; input box
.input_box_msg db 0xB0 ;
.error_box_frame db 0xCF ;
.error_box_title db 0xF1 ; error box
.error_box_msg db 0xCF ;
.info_box_frame db 0xB0 ;
.info_box_title db 0xF1 ; info box
.info_box_msg db 0xB0 ;
.help_win_frame db 0x3F ;
.help_win_title db 0xF1 ; help window
.help_msg db 0x30 ;
.about_win_frame db 0x3F ;
.about_win_title db 0xF1 ; about window
.about_msg db 0x3E ;
.cmd_menu_winframe db 0x30 ;
.cmd_menu_wintitle db 0xF1 ; the colors used
.cmd_menu_normal db 0x30 ; in command menu
.cmd_menu_normal_hl db 0x3C ;
.cmd_menu_focus db 0x07 ;
.cmd_menu_focus_hl db 0x0C ;
; icon data
icon:
.brand_size dw 0x0104 ; the size of brand icon,
; high byte = row, low byte = col.
.brand dw icon_data.brand ; offset of brand icon data, set to
; zero if no brand icon.
.background_size dw 0x0104 ; the size of background icon,
; high byte = row, low byte = col.
.background dw icon_data.background; offset of background icon data,
; set to zero if no background icon.
; font data
font:
.number dw (font_data.end-font_data)/17
; number of chars to be replaced,
; should <= (256 - start).
.data dw font_data ; offset of font set data, set to
; zero if no font to be replaced.
; chars used by window frame
frame_char:
.top db 0x20 ; top horizontal
.bottom db 0xCD ; bottom horiztontal
.left db 0xBA ; left vertical
.right db 0xBA ; right vertical
.tl_corner db 0xC9 ; top left corner
.tr_corner db 0xBB ; top right corner
.bl_corner db 0xC8 ; bottom left corner
.br_corner db 0xBC ; bottom right corner
; how to draw window frame
draw_frame_method db 1 ; = 0 means draw all frame using frame attr.
; = 1 means draw top horizontal line using
; title attr.
; = 2 means draw top corner and horizontal
; line using title attr.
; keymap data
keymap: ; entry of keymap
.number dw (keymap_data.end-keymap_data)/4
; number of keymap entries
.data dw keymap_data ; pointer to keymap
; index table of strings
str_idx:
.main_win_title dw string.main_win_title
.menu_title dw string.menu_title
.about dw string.about
.error dw string.error
.help dw string.help
.info dw string.info
.input dw string.input
.delay_time dw string.delay_time
.name dw string.name
.new_root_passwd dw string.new_root_passwd
.root_passwd dw string.root_passwd
.new_record_passwd dw string.new_record_passwd
.record_passwd dw string.record_passwd
.retype_passwd dw string.retype_passwd
.input_schedule dw string.input_schedule
.input_keystrokes dw string.input_keystrokes
.key_count dw string.key_count
.io_port dw string.io_port
.year dw string.year
.drive_id dw string.drive_id
.part_id dw string.part_id
.record_type dw string.record_type
.record_name dw string.record_name
.auto_active dw string.auto_active
.active dw string.active
.auto_hide dw string.auto_hide
.hidden dw string.hidden
.swap_drv dw string.swap_drv
.logical dw string.logical
.key_strokes dw string.key_strokes
.password dw string.password
.schedule dw string.schedule
.yes dw string.yes
.no dw string.no
.copyright dw string.copyright
.hint dw string.hint
.about_content dw string.about_content
.help_content dw string.help_content
.changes_saved dw string.changes_saved
.passwd_changed dw string.passwd_changed
.ask_save_changes dw string.ask_save_changes
.wrong_passwd dw string.wrong_passwd
.disk_error dw string.disk_error
.mark_act_failed dw string.mark_act_failed
.toggle_hid_failed dw string.toggle_hid_failed
.no_system dw string.no_system
.invalid_record dw string.invalid_record
.invalid_schedule dw string.invalid_schedule
.inst_confirm dw string.inst_confirm
.inst_ok dw string.inst_ok
.inst_abort dw string.inst_abort
.uninst_confirm dw string.uninst_confirm
.uninst_ok dw string.uninst_ok
.uninst_abort dw string.uninst_abort
.confirm dw string.confirm
.no_sbml dw string.no_sbml
.invalid_ioports dw string.invalid_ioports
; command menu str_idx
; main menu
.main_menu_title dw string.main_mnu_title
.main_menu_strings:
dw string.main_mnu_help
dw string.main_mnu_about
dw string.main_mnu_save
dw string.main_mnu_bootit
dw string.main_mnu_bootprev
dw string.main_mnu_bar
dw string.main_mnu_recordset
dw string.main_mnu_sysset
dw string.main_mnu_bar
dw string.main_mnu_quit
dw string.main_mnu_poweroff
; record settings menu
.record_menu_title dw string.record_mnu_title
.record_menu_strings:
dw string.record_mnu_info
dw string.record_mnu_name
dw string.record_mnu_passwd
dw string.record_mnu_schedule
dw string.record_mnu_keys
dw string.record_mnu_bar
dw string.record_mnu_act
dw string.record_mnu_hide
dw string.record_mnu_autoact
dw string.record_mnu_autohide
dw string.record_mnu_swapdrv
dw string.record_mnu_bar
dw string.record_mnu_del
dw string.record_mnu_dup
dw string.record_mnu_moveup
dw string.record_mnu_movedown
; system setting menu
.sys_menu_title dw string.sys_mnu_title
.sys_menu_strings:
dw string.sys_mnu_rootpasswd
dw string.sys_mnu_admin
dw string.sys_mnu_security
dw string.sys_mnu_bar
dw string.sys_mnu_setdef
dw string.sys_mnu_unsetdef
dw string.sys_mnu_delay
dw string.sys_mnu_bmstyle
dw string.sys_mnu_remlast
dw string.sys_mnu_int13ext
dw string.sys_mnu_bar
dw string.sys_mnu_rescanall
dw string.sys_mnu_rescanpart
dw string.sys_mnu_set_ioports
dw string.sys_mnu_set_y2kfix
dw string.sys_mnu_bar
dw string.sys_mnu_inst
dw string.sys_mnu_uninst
.cdimg_menu_title dw string.cdimg_mnu_title
.cdimg_menu_strings dw string.cdimg_mnu_noemu
dw string.cdimg_mnu_120m
dw string.cdimg_mnu_144m
dw string.cdimg_mnu_288m
.sunday dw string.sunday
.monday dw string.monday
.tuesday dw string.tuesday
.wednesday dw string.wednesday
.thursday dw string.thursday
.friday dw string.friday
.saturday dw string.saturday
end_of_str_idx:
end_of_checksum_area: ; DO NOT REMOVE THIS LINE!!!
;=============================================================================
; variable size data
;=============================================================================
; icon data
; two bytes corresponding to a char,
; high byte is color, low byte is char code.
icon_data:
.brand:
db brand_char1, 0x7C, brand_char2, 0x7C, brand_char3, 0x7C, brand_char4, 0x7C
.background:
db 0xB0, 0x71, 0xB0, 0x71, 0xB0, 0x71, 0xB0, 0x71
; font data
; each char occupied 17 bytes
; the first bytes is the ascii code used by this char
; the following 16 bytes is font data
;
; NOTE:
; Do not replace ascii char 0 and 0x0d, 0x1e and 0x1f,
; these chars have special use.
;
font_data:
db start_font
db 0x00,0x00,0x00,0x00,0x07,0x0c,0x08,0x08,0x0c,0x07,0x00,0x00,0x00,0x00,0xfe,0x00
db start_font+1
db 0x01,0x01,0x01,0x01,0xfd,0x01,0x1f,0x1f,0x03,0xf7,0x0d,0x19,0x31,0x61,0xff,0xff
db start_font+2
db 0x80,0x80,0x80,0x80,0xbf,0x80,0xf0,0xf8,0x98,0x9b,0x98,0x98,0x98,0x98,0x9e,0x9e
db start_font+3
db 0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xf0,0x18,0x08,0x08,0x18,0xf0,0x00
; Portuguese extended
db '', 000h,00Ch,018h,030h,000h,078h,00Ch,07Ch,0CCh,0CCh,0CCh,076h,000h,000h,000h,000h
db '', 000h,00Ch,018h,030h,000h,07Ch,0C6h,0C6h,0FCh,0C0h,0C6h,07Ch,000h,000h,000h,000h
db '', 000h,00Ch,018h,030h,000h,07Ch,0C6h,0C6h,0C6h,0C6h,0C6h,07Ch,000h,000h,000h,000h
db '', 000h,00Ch,018h,030h,000h,0CCh,0CCh,0CCh,0CCh,0CCh,0CCh,076h,000h,000h,000h,000h
db '', 000h,00Ch,018h,030h,000h,038h,018h,018h,018h,018h,018h,03Ch,000h,000h,000h,000h
db '', 000h,000h,076h,0DCh,000h,078h,00Ch,07Ch,0CCh,0CCh,0CCh,076h,000h,000h,000h,000h
db '', 000h,000h,076h,0DCh,000h,07Ch,0C6h,0C6h,0C6h,0C6h,0C6h,07Ch,000h,000h,000h,000h
db '', 000h,000h,000h,000h,000h,07Ch,0C6h,0C0h,0C0h,0C0h,0C6h,07Ch,018h,06Ch,038h,000h
.end:
; keymap
; each entry has two words, the first is original keycode,
; the second is new keycode.
keymap_data:
%ifdef KEYMAP_AZERTY
%include "azerty.kbd"
%elifdef KEYMAP_QWERTZ
%include "qwertz.kbd"
%elifdef KEYMAP_DVORAK
%include "dvorak.kbd"
%elifdef KEYMAP_DVORAK_ANSI
%include "dvorak-ansi.kbd"
%endif
.end:
; strings
; all strings are zero ending,
; use 0x0d to break string into multi-lines.
string:
; used in main window and boot menu.
.main_win_title db 'Menu de Arranque',0
.menu_title db ' Bandeiras Nmero Tipo Nome',0
; window titles.
.about db 'Acerca de',0
.error db 'Erro',0
.help db 'Ajuda',0
.info db 'Informao',0
.input db 'Entrada',0
; used in input boxes.
.delay_time db 'Tempo de espera: ',0
.name db 'Nome: ',0
.new_root_passwd db 'Novo '
.root_passwd db 'Palavra chave de Administrador: ',0
.new_record_passwd db 'Nova '
.record_passwd db 'Gravar palavra chave: ',0
.retype_passwd db 'Reintroduza a palavra chave: ',0
.input_schedule db 'Agendar (hh:mm-hh:mm;dias): ',0
.input_keystrokes db 'Introduo de teclas (max 13 teclas)',0x0d
db 'Prima <Scroll Lock> para terminar,',0x0d
db 'Cdigo de tecla = 0x',0
.key_count db 0x0d,'Nmero de teclas = ',0
.io_port db 'Portos Base de E/S (hex1,hex2): ',0
.year db 'Ano: ',0
; used in record info box.
.drive_id db 'ID da Unidade: ',0
.part_id db ' ID da Partio: ',0
.record_type db 0x0d,'Tipo do Registo: ',0
.record_name db 0x0d,'Nome do Registo: ',0
.auto_active db 0x0d,0x0d,' Auto-Activar: ',0
.active db ' Activar: ',0
.auto_hide db 0x0d,' Auto-Esconder: ',0
.hidden db ' Escondida: ',0
.swap_drv db 0x0d,'Trocar Unidade: ',0
.logical db ' Lgica: ',0
.key_strokes db 0x0d,0x0d,'Teclas introduzidas: ',0
.password db 0x0d,'Palavra Chave: ',0
.schedule db 0x0d,'Agendar: ',0
.yes db 'Sim',0
.no db 'No',0
; copyright infomation, displayed at the top of the screen.
.copyright db ' Smart Boot Manager 3.7.1 | Copyright (C) 2001 Suzhe',0
; hint message, displayed at the bottom of the screen.
.hint db ' ~F1~-Ajuda ~F2~-Guardar ~F3~-Nome ~F4~-Activar ~F5~-Esconder ~Tab~-Menu',0
; about infomation.
.about_content db ' Smart Boot Manager 3.7.1-pt',0x0d
db ' Copyright (C) 2001 Suzhe <su_zhe@sina.com>',0x0d
db ' Verso portuguesa por: AGM <agm@clix.pt>',0x0d
db ' Este software gratuito, pode distribu-lo',0x0d
db ' e/ou modific-lo sob os termos da Licena',0x0d
db ' Pblica Geral GNU verso 2.',0x0d,0x0d
db ' Este programa no tem QUALQUER GARANTIA! ',0
; help infomation.
.help_content:
db ' F1 = Ajuda Ctrl+F1 = Acerca de',0x0d
db ' F2 = Guardar F3 = Nome',0x0d
db ' F4 = Marcar como activa F5 = Mostrar/Esconder',0x0d
db ' F6 = Mudar auto-activar F7 = Mudar auto-esconde',0x0d
db ' F8 = Predefinir Shift+F8 = Remover predefinio',0x0d
db ' Ctrl+D = Apagar Ctrl+P = Duplicar',0x0d
db ' Ctrl+U = Mover registo para cima Ctrl+N = Mover registo para baixo',0x0d
db ' Ctrl+S = Agenda On/Off Ctrl+T = Tempo de espera',0x0d
db ' Ctrl+K = Teclas Introduzidas On/Off / ou ? = Mostar informaes',0x0d
db ' Ctrl+I = Reexaminar registos Ctrl+H = Reexaminar parties ',0x0d,
db ' Ctrl+X = Trocar ID das unidades Ctrl+F = Mostra/Esconde flags',0x0d
db ' Ctrl+L = Activa memorizao do ltimo registo de arranque',0x0d
db ' F9 = Muda a palavra chave do registo de arranque ',0x0d
db ' F10 = Muda a palvra chave do Administrador',0x0d
db 'Ctrl+F10 = Entrar/Sair do modo de Administrador',0x0d
db ' Alt+F10 = Entrar/Sair do modo de Bloqueio de Segurana',0x0d
db ' Tab = Menu de comandos',0x0d
db ' Ctrl+Q = Sair para o BIOS Ctrl+F12 = Desligar',0
; normal messages.
.changes_saved db 'Alteraes Guardadas.',0
.passwd_changed db 'Palavra chave alterada.',0
.ask_save_changes db 'Guardar Alteraes (s/n)?',0
; error messages.
.wrong_passwd db 'Palavra chave errada!',0
.disk_error db 'Erro de Disco! 0x',0
.mark_act_failed db 'Marcar activa falhou!',0
.toggle_hid_failed db 'Esconder/Mostar falhou!',0
.no_system db 'Sem Sistema Operativo!',0x0d
db 'Troque de disco e tente novamente.',0
.invalid_record db 'Registo de arranque invlido!',0
.invalid_schedule db 'Tempo agendado invlido!',0
.inst_confirm db 'De certeza que quer instalar o Smart BootManager ',
db 'no disco ',0
.inst_ok db 'Instalao bem sucedida!',0
.inst_abort db 'Instalao cancelada.',0
.uninst_confirm db 'De certeza que quer desinstalar o Smart BootManager?',0x0d,0
.uninst_ok db 'Desinstalao bem sucedida!',0x0d
db 'A reiniciar o computador.',0
.uninst_abort db 'Desinstalao cancelada.',0
.confirm db 'Prima S para continuar, ou qualquer tecla para cancelar.',0
.no_sbml db 'Carregador do Smart Boot Manager no foi encontrado',0x0d
db 'ou a verso incorrecta!',0
.invalid_ioports db 'Portos de E/S invlidos!',0
; command menu strings
; main menu
.main_mnu_title db 'Menu Principal',0
.main_mnu_help db 'Ajuda ~F1~',0
.main_mnu_about db 'Acerca de ~ Ctrl-F1~',0
.main_mnu_bootit db 'Arrancar',0
.main_mnu_bootprev db 'Arrancar o MBR anterior',0
.main_mnu_quit db 'Sair ~Ctrl-Q~',0
.main_mnu_poweroff db 'Desligar ~Ctrl-F12~',0
.main_mnu_recordset db 'Configurar Registo ->',0
.main_mnu_sysset db 'Configurar Sistema ->',0
.main_mnu_save db 'Guardar alteraes ~F2~',0
.main_mnu_bar db '-----------------------',0
; record settings menu
.record_mnu_title db 'Propriedades do Registo',0
.record_mnu_info db 'Informao ~/ ou ?~',0
.record_mnu_name db 'Nome ~F3~',0
.record_mnu_passwd db 'Palavra chave ~F9~',0
.record_mnu_schedule db 'Agendar ~Ctrl-S~',0
.record_mnu_keys db 'Teclas ~Ctrl-K~',0
.record_mnu_act db 'Marcar activa ~F4~',0
.record_mnu_hide db 'Esconder/Mostrar ~F5~',0
.record_mnu_autoact db 'Auto-activar ~F6~',0
.record_mnu_autohide db 'Auto-esconder ~F7~',0
.record_mnu_swapdrv db 'Trocar unidade ~Ctrl-X~',0
.record_mnu_del db 'Apagar ~Ctrl-D~',0
.record_mnu_dup db 'Duplicar ~Ctrl-P~',0
.record_mnu_moveup db 'Mover acima ~Ctrl-U~',0
.record_mnu_movedown db 'Mover abaixo ~Ctrl-N~',0
.record_mnu_bar db '----------------------',0
; system setting menu
.sys_mnu_title db 'Propriedades do Sistema',0
.sys_mnu_rootpasswd db 'Palavra chave de Admin. ~F10~',0
.sys_mnu_admin db 'Muda modo de Admin. ~Ctrl-F10~',0
.sys_mnu_security db 'Muda modo de Segurana ~Alt-F10~',0
.sys_mnu_setdef db 'Iniciar predefinio ~F8~',0
.sys_mnu_unsetdef db 'Tirar predefinio ~Shift-F8~',0
.sys_mnu_delay db 'Tempo de espera ~Ctrl-T~',0
.sys_mnu_bmstyle db 'Altera estilo do menu de aranque ~Ctrl-F~',0
.sys_mnu_remlast db 'Mudar memorizar ltima ~Ctrl-L~',0
.sys_mnu_int13ext db 'Mudar Int 13H Extendida',0
.sys_mnu_rescanall db 'Reexaminar todos os Registos ~Ctrl-I~',0
.sys_mnu_rescanpart db 'Reexaminar todas as parties ~Ctrl-H~',0
.sys_mnu_set_ioports db 'Portos E/S do CD-ROM',0
.sys_mnu_set_y2kfix db 'Acertar ano (Problema Y2K do BIOS)',0
.sys_mnu_inst db 'Instalar o Smart BootManager',0
.sys_mnu_uninst db 'Desinstalar o Smart BootManager',0
.sys_mnu_bar db '---------------------------------------',0
.cdimg_mnu_title db 'Escolha uma imagem de CD',0
.cdimg_mnu_noemu db 'Sem Emulao',0
.cdimg_mnu_120m db 'Disquete 1.2 M',0
.cdimg_mnu_144m db 'Disquete 1.44M',0
.cdimg_mnu_288m db 'Disquete 2.88M',0
.sunday db 'Dom',0
.monday db 'Seg',0
.tuesday db 'Ter',0
.wednesday db 'Qua',0
.thursday db 'Qui',0
.friday db 'Sex',0
.saturday db 'Sb',0
; END OF THEME.
end_of_theme:
; vi:ts=8:et:nowrap
|