; theme-de.asm ; ; English theme data for Smart Boot Manager ; ; Copyright (C) 2000, Suzhe. 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 0x0304 ; 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 'de-de',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!!! ; 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 ; ; 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 .hint db 0x70 ; hint string .security_flags db 0x7C ; root passwd, login and secure mode flags. .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 4 ; 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. ; index table of strings str_idx: .main_win_title dw string.main_win_title .menu_title dw string.menu_title .menu_noflags_title dw string.menu_noflags_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 .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 ; 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_bar dw string.main_mnu_recordset dw string.main_mnu_sysset dw string.main_mnu_bar dw string.main_mnu_bootit 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_flags dw string.sys_mnu_remlast dw string.sys_mnu_bar dw string.sys_mnu_rescanall dw string.sys_mnu_rescanhard 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 ; 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 'Bootmenue',0 .menu_title db ' Flags ' .menu_noflags_title db ' Nummer Typ Name',0 ; window titles. .about db 'Ueber',0 .error db 'Fehler',0 .help db 'Hilfe',0 .info db 'Infomationen',0 .input db 'Eingabe',0 ; used in input boxes. .delay_time db 'Verzoegerungszeit: ',0 .name db 'Name: ',0 .new_root_passwd db 'Neu ' .root_passwd db 'Administrator-Passwort: ',0 .new_record_passwd db 'Neu ' .record_passwd db 'Eintrag-Passwort: ',0 .retype_passwd db 'Wiederhole Passwort: ',0 .input_schedule db 'Zeitsteuerung (hh:mm-hh:mm): ',0 .input_keystrokes db 'An das OS uebergeben(max 13 Zeichen)',0x0d db 'Druecke zum Beenden,',0x0d db 'Zeichencode = 0x',0 .key_count db 0x0d,'Anzahl Zeichen = ',0 ; used in record info box. .drive_id db 'Laufwerk ID: ',0 .part_id db ' Part ID: ',0 .record_type db 0x0d,'Eintragtyp : ',0 .record_name db 0x0d,'Eintragname: ',0 .auto_active db 0x0d,0x0d,'Autoaktiv: ',0 .active db ' Aktiv : ',0 .auto_hide db 0x0d,'Autoverstecken: ',0 .hidden db ' Versteckt: ',0 .swap_drv db 0x0d,'Vertausche Laufwerk: ',0 .logical db ' Logisch: ',0 .key_strokes db 0x0d,0x0d,'Tastenbelegung: ',0 .password db ' Passwort: ',0 .schedule db 0x0d,' Zeitsteuerung: ',0 .yes db 'Ja ',0 .no db 'Nein',0 ; copyright infomation, displayed at the top of the screen. .copyright db ' Smart Boot Manager 3.4 | Copyright (C) 2000 Suzhe',0 ; hint message, displayed at the bottom of the screen. .hint db ' F1-Hilfe F2-Speichern F3-Aendern F4-Aktiv F5-Verstecken Tab-Menue',0 ; about infomation. .about_content db ' Smart Boot Manager 3.4',0x0d db ' Copyright (C) 2000 Suzhe ',0x0d,0x0d db ' Dies ist freie Software, sie ist weiterver- ',0x0d db ' teilbar und/oder modifizierbar im Rahmen der ',0x0d db ' GNU General Public License Version 2. ',0x0d,0x0d db 'Der Author uebernimmt keinerlei Gewaehrleistung!',0 ; help infomation. .help_content: db ' F1 = Hilfe Strg+F1 = Ueber',0x0d db ' F2 = Speichern F3 = Aendern',0x0d db ' F4 = Aktiv setzen F5 = (ent-)Verstecken',0x0d db ' F6 = Autoaktiv an/abstellen F7 = Autoverstecken an/abstellen',0x0d db ' F8 = Default setzen Shift+F8 = Default loeschen',0x0d db ' Strg+D = Loeschen Strg+P = Duplizieren',0x0d db ' Strg+U = Eintrag nach oben Strg+N = Eintrag nach unten',0x0d db ' Strg+S = Zeitsteuerung an/abst. Strg+T = Boot-Timer einstellen',0x0d db ' Strg+K = Tastendruecke ans OS / oder ? = Informationen anzeigen',0x0d db ' Strg+I = Laufwerke durchsuchen Strg+H = Alle Festplatten durchsuchen',0x0d, db ' Strg+X = Vertausche Drive-ID an/a.Strg+F = Zeige/Verstecke Flags',0x0d db ' Strg+L = Boote_zuletzt_gestarte_Partition an/abstellen',0x0d db ' F9 = Eintrag-Passwort aendern',0x0d db ' F10 = Administrator-Passwort aendern',0x0d db 'Strg+F10 = Gehe in/Verlasse Administrator-Modus',0x0d db ' Alt+F10 = Gehe in/Verlasse Sicherheits-Modus',0x0d db ' Tab = Befehlsmenue aufklappen',0x0d db ' Strg+Q = Verlassen ins BIOS Strg+F12 = Ausschalten',0 ; normal messages. .changes_saved db 'Aenderungen gespeichert.',0 .passwd_changed db 'Passwort geaendert.',0 .ask_save_changes db 'Aenderungen speichern (j[=z]/n)?',0 ; error messages. .wrong_passwd db 'Falsches Passwort!',0 .disk_error db 'Disk Schreib-/Lesefehler!',0 .mark_act_failed db 'Aktiv setzen gescheitert!',0 .toggle_hid_failed db '(ent)Verstecken gescheitert!',0 .no_system db 'Kein Betriebssystem!',0x0d db 'Disk wechseln und nochmal versuchen.',0 .invalid_record db 'Ungueltiger Booteintrag!',0 .invalid_schedule db 'Ungueltige Zeitsteuerung!',0 ; command menu strings ; main menu .main_mnu_title db 'Hauptmenue',0 .main_mnu_help db 'Hilfe ~F1~',0 .main_mnu_about db 'Ueber ~Strg-F1~',0 .main_mnu_bootit db 'Booten ',0 .main_mnu_quit db 'Verlassen ~Strg-Q~',0 .main_mnu_poweroff db 'Ausschalten ~Strg-F12~',0 .main_mnu_recordset db 'Booteinstellungen',0 .main_mnu_sysset db 'Systemeinstellungen',0 .main_mnu_save db 'Aenderungen speichern ~F2~',0 .main_mnu_bar db '--------------------------',0 ; record settings menu .record_mnu_title db 'Booteinstellungen',0 .record_mnu_info db 'Informationen ~/ or ?~',0 .record_mnu_name db 'Name ~F3~',0 .record_mnu_passwd db 'Passwort ~F9~',0 .record_mnu_schedule db 'Zeitsteuerung ~Strg-S~',0 .record_mnu_keys db 'Tasten-an-OS ~Strg-K~',0 .record_mnu_act db 'Aktiv setzen ~F4~',0 .record_mnu_hide db '(ent)Verstecken ~F5~',0 .record_mnu_autoact db 'Autoaktiv ~F6~',0 .record_mnu_autohide db 'Autoverstecken ~F7~',0 .record_mnu_swapdrv db 'Tausche Disk_ID ~Strg-X~',0 .record_mnu_del db 'Loeschen ~Strg-D~',0 .record_mnu_dup db 'Duplizieren ~Strg-P~',0 .record_mnu_moveup db 'Eintrag hoeher ~Strg-U~',0 .record_mnu_movedown db 'Eintrag tiefer ~Strg-N~',0 .record_mnu_bar db '------------------------',0 ; system setting menu .sys_mnu_title db 'Systemeinstellungen',0 .sys_mnu_rootpasswd db 'Administrator-Passwort ~F10~',0 .sys_mnu_admin db 'Admin Modus an/abstellen ~Strg-F10~',0 .sys_mnu_security db 'Sicherheitsmodus an/abstellen ~Alt-F10~',0 .sys_mnu_setdef db 'Default-Eintrag setzen ~F8~',0 .sys_mnu_unsetdef db 'Default-Eintrag loeschen ~Shift-F8~',0 .sys_mnu_delay db 'Verzoegerungszeit setzen ~Strg-T~',0 .sys_mnu_flags db '(ent)Verstecke Flags ~Strg-F~',0 .sys_mnu_remlast db 'Boote Letztgest. an/abschalten ~Strg-L~',0 .sys_mnu_rescanall db 'Alle Laufwerke durchsuchen ~Strg-I~',0 .sys_mnu_rescanhard db 'Alle Festplatten durchsuchen ~Strg-H~',0 .sys_mnu_bar db '---------------------------------------',0 ; END OF THEME. end_of_theme: