;These are the messages of GAG. This is the file you need to ;translate if you want to have GAG in your own languaje. ;The text must end in zero. That's why there's the ',0' at the ;end of each one. ;each type of text has a maximum length. ; Messages 'presentation' (up to 40 characters) mabort DB "ou ESC para abortar",0 mbsel DB "Tecle 1-9 para selecionar um SO",0 mdelnm DB "Tecle 1-9 para remover um SO",0 mgag DB "GAG - Gerenciador de Boot Grafico",0 mlett DB "Tecle A-Z para selecionar uma opcao",0 mlett2 DB "Tecle A-Z para selecionar um icone",0 mnum DB "ou 1-8 para selecionar um disco rigido",0 mnumb DB "Tecle 1-9 para iniciar o SO",0 mopti DB " Tecla Tipo de Particao",0 ;messages 'intro' (up to 36 characters) mboot DB "Segundos? (Enter ou 0 desativa)",0 mdescr DB "Digite uma descricao (ate 15 cars)",0 mentpsw DB "Digite uma senha",0 mnewpsw DB "Nova senha? (ENTER para desativar)",0 ;messages 'error' (up to 34 characters) mbdisa DB "Limite de tempo desativada",0 mberr DB "Tempo maximo: 99 segundos",0 merrls DB "Unidade de disco nao preparada",0 merrms DB "Problema no sector de boot",0 mgraba DB "Erro de disco",0 mincor DB "Senha incorreta",0 mnoos DB "Nao existem SO para remover",0 mnoent DB "Nao existem mais opcoes",0 mpsdisa DB "Senha desativada",0 msucces DB "GAG instalado com sucesso",0 mswap DB "Mudar letras da unidade",0 ; Setup menu (Max. 30 characters) ; Each option has a HOTKEY, wich is delimited by 255,21,"hotkey",255,16 ; That group of numbers puts the letter in that colour. Be sure you put ; the same hotkeys here than in the 'Setup keys' group. madd DB 255,21,"A",255,16,"dicionar Sistema Operacional",0 mdel DB 255,21,"R",255,16,"emover um Sistema Operacional",0 msavfd DB "Gravar em Dis",255,21,"q",255,16,"uete",0 msavhd DB "Gravar em D",255,21,"i",255,16,"sco Rigido",0 mbotim DB 255,21,"L",255,16,"imite de tempo",0 mpassw DB "Configurar ",255,21,"S",255,16,"enha",0 mretur DB 255,21,"V",255,16,"oltar ao menu principal",0 ; mhide can have a maximum of 29 characters (sorry), and must ; end with that color code (255,22) mhide DB 255,21,"E",255,16,"sconder particoes primarias",255,24 ; don't thouch this. Is used to store the OK symbol. It mus be ; inmediately AFTER mhide mhide2 DB 32,255,21,0 ; Yes/No myesno DB 255,21,"S",255,16,"im/",255,21,"N",255,16,"ao",0 ;Other messages mdisk DB "A Inicio com disquete",0 ; up to 36 chars. WARNING with the spaces msetp2 DB "Configurar GAG",0 ; up to 15 chars mdos DB "FAT (MS-DOS)",0 mwin DB "FAT32 (MS-Windows)",0 mos2 DB "HPFS (OS/2) ou NTFS (Win-NT)",0 mbm DB "Boot Manager do OS/2",0 mlinux DB "Ext2 (Linux)",0 mbsd DB "FreeBSD",0 mbeos DB "BeOS",0 mobsd DB "OpenBSD",0 mthek DB "Tecla " thekey DB 0,0 ; here stores the key to print mnull DB 0 ;Menu keys ;These are the keys for each menu option. ;You must put the same letters than ;in the HotKeys, and must be in lowercase keyadd equ "a" ; Add an OS keydelete equ "r" ; Delete an OS keyfloppy equ "q" ; save in Floppy keyhd equ "i" ; save in Hard disk keytimer equ "l" ; Boot timer keypassw equ "s" ; setup Password keyreturn equ "v" ; Return to main menu keyyes equ "s" ; Key for 'Yes' keyno equ "n" ; Key for 'No' keyhide equ "e" ; Hide/unhide all partitions ; Setup keys ;here is the key used to enter setup from the ;main menu keysetup equ "C" ; Setup key in Uppercase keysetu2 equ "c" ; Setup key in Lowercase ;table of Operating Systems ostabl: DB 1h ; 1 byte: icon (0FFh=entry not used) ;Translate this entry too. DB "Inicia disco "; 15 bytes: OS'name (completed with blank spaces) DB 0 ; 1 byte: drive unit (0=A: 1=B: 80h=HD1 81h=HD2 ...) DB 0 ; 1 byte: start head DB 1 ; 1 byte: start sector DB 0 ; 1 byte: start track DB 0 ; 1 byte: tells if there's or not password DB 15 DUP(0) ; 15 bytes: stores the password DB 0 ; 1 byte: swap drive (if different to 0) DB 0 DB 0 DB 0 ; 3 bytes: reserved DB 320 DUP(0FFh) ; rest of entries DB 0FFh ; end of table