Miscellaneous > Projects
Generator Lang Files
(1/1)
iq_132:
If you're interested in making a language file for the generator, just translate the english in this and paste it into a .txt file :)
--- Code: ---
--- End code ---
iq_132:
Here's the language code for what will most likely be version 1.1.0
--- Code: ---<!--
function create(form) {
document.lang.thegen.value = "The Generator";
document.lang.genops.value = "General Options";
document.lang.rsname.value = "Romset (ZIP) name";
document.lang.gtitle.value = "Game title";
document.lang.devver.value = "Developer";
document.lang.releas.value = "Year Released";
document.lang.gnotes.value = "Game Notes";
document.lang.noneop.value = "None";
document.lang.gconts.value = "Game Controls";
document.lang.workin.value = "Working?";
document.lang.protos.value = "Prototype?";
document.lang.gename.value = "Generic Naming";
document.lang.usechk.value = "Use?";
document.lang.gnameo.value = "Name? (Ex: kof2k)";
document.lang.extchk.value = "Extension";
document.lang.pcopts.value = "Parent/Clone Options";
document.lang.clorpa.value = "Clone or Parent?";
document.lang.cloneo.value = "Clone";
document.lang.parent.value = "Parent";
document.lang.prname.value = "Parent Name (If clone):";
document.lang.mischo.value = "Misc. Hardware Options";
document.lang.swapch.value = "Swap";
document.lang.gamble.value = "Gambling";
document.lang.alttxt.value = "Alternate Text";
document.lang.txtfix.value = "Text Fix";
document.lang.encopt.value = "Encryption Options";
document.lang.method.value = "Method:";
document.lang.noencr.value = "No Encryption";
document.lang.oldenc.value = "Old Encryption";
document.lang.newenc.value = "New Encryption";
document.lang.romset.value = "Romset Options";
document.lang.rmname.value = "Rom name";
document.lang.rmsize.value = "Rom size";
document.lang.romcrc.value = "Rom CRC";
document.lang.includ.value = "Include?";
document.lang.decrm1.value = "<b>Decrypted</b> M1 rom only";
document.lang.decrv1.value = "<b>Decrypted</b> V roms only";
document.lang.create.value = "Create FBA Driver";
document.lang.prview.value = "Preview";
document.lang.select.value = "Select All";
document.lang.cleara.value = "Clear All";
document.lang.rusure.value = "Are you sure everything is correct?";
document.lang.nothin.value = "There's nothing to preview!";
document.lang.abouta.value = "About:";
document.lang.versin.value = "Version";
document.lang.trans.value = ""; // Translated by XXXXXX
/*------------------ Added in Version 1.0.8 ------------------------*/
document.lang.errchk.value = "Enable error checking?";
document.lang.errlbl.value = "Error Messages:";
document.lang.error.value = "Error! ";
document.lang.error1.value = " CRC is too short";
document.lang.warnin.value = "Warning! ";
document.lang.warn1.value = " CRC may be too short";
document.lang.requir.value = " is required!";
document.lang.spcfix.value = "kotm2 fix";
/*------------------ Added in Version 1.1.0 ------------------------*/
document.lang.nebopt.value = "Nebula Options";
document.lang.fixnum.value = "Fix No.";
document.lang.cartid.value = "Cart ID";
}
create(this.form);
// -->
--- End code ---
FerchogtX:
I cooaperate a little with a spanish traduction, maybe it will be usefull :p
--- Code: ---<!--
function create(form) {
document.lang.thegen.value = "El Generador";
document.lang.genops.value = "Opciones Generales";
document.lang.rsname.value = "Nombre del Romset (ZIP)";
document.lang.gtitle.value = "Titulo del Juego";
document.lang.devver.value = "Desarrollador";
document.lang.releas.value = "Año de Realizacion";
document.lang.gnotes.value = "Notas del Juego";
document.lang.noneop.value = "Ninguno";
document.lang.gconts.value = "Controles";
document.lang.workin.value = "Funciona?";
document.lang.protos.value = "Prototipo?";
document.lang.gename.value = "Nombramiento generico";
document.lang.usechk.value = "Usar?";
document.lang.gnameo.value = "Nombre? (Ej: kof2k)";
document.lang.extchk.value = "Extensión";
document.lang.pcopts.value = "Opciones de Principal/Clon";
document.lang.clorpa.value = "Clon o Principal?";
document.lang.cloneo.value = "Clon";
document.lang.parent.value = "Principal";
document.lang.prname.value = "Nombre del Principal (Si es clon):";
document.lang.mischo.value = "Opciones Misc. de Hardware";
document.lang.swapch.value = "Swap";
document.lang.gamble.value = "Apuestas/Azar";
document.lang.alttxt.value = "Texto alternativo";
document.lang.txtfix.value = "Arreglo de textos";
document.lang.encopt.value = "Opciones de Encriptacion";
document.lang.method.value = "Metodo:";
document.lang.noencr.value = "Sin Encriptacion";
document.lang.oldenc.value = "Vieja Encriptacion";
document.lang.newenc.value = "Nueva Encriptacion";
document.lang.romset.value = "Opciones de Romset";
document.lang.rmname.value = "Nombre del Rom";
document.lang.rmsize.value = "Tamaño del Rom";
document.lang.romcrc.value = "CRC del Rom";
document.lang.includ.value = "Incluir?";
document.lang.decrm1.value = "<b>Desencriptado</b> Rom M1 solamente";
document.lang.decrv1.value = "<b>Desencriptado</b> Roms V solamente";
document.lang.create.value = "Crear driver para FBA";
document.lang.prview.value = "Previsualizar";
document.lang.select.value = "Seleccionar todo";
document.lang.cleara.value = "Limpiar todo";
document.lang.rusure.value = "Seguro que todo esta correcto?";
document.lang.nothin.value = "No hay nada que previsualizar!";
document.lang.abouta.value = "acerca:";
document.lang.versin.value = "Versión";
document.lang.trans.value = ""; // Traducido por XXXXXX
/*------------------ Added in Version 1.0.8 ------------------------*/
document.lang.errchk.value = "Habilitar deteccion de errores?";
document.lang.errlbl.value = "Mensajes de error:";
document.lang.error.value = "Error! ";
document.lang.error1.value = "CRC es muy corto";
document.lang.warnin.value = "Cuidado! ";
document.lang.warn1.value = "CRC deberia ser mas corto";
document.lang.requir.value = "Es requerido!";
document.lang.spcfix.value = "Arreglo para kotm2";
/*------------------ Added in Version 1.1.0 ------------------------*/
document.lang.nebopt.value = "Opciones para Nebula";
document.lang.fixnum.value = "No. de Fix.";
document.lang.cartid.value = "ID de Cartucho";
}
create(this.form);
// -->
--- End code ---
See ya!!!! :D
iq_132:
--- Quote from: FerchogtX ---I cooaperate a little with a spanish traduction, maybe it will be usefull :p
--- Code: ---<!--
function create(form) {
document.lang.thegen.value = "El Generador";
document.lang.genops.value = "Opciones Generales";
document.lang.rsname.value = "Nombre del Romset (ZIP)";
document.lang.gtitle.value = "Titulo del Juego";
document.lang.devver.value = "Desarrollador";
document.lang.releas.value = "Año de Realizacion";
document.lang.gnotes.value = "Notas del Juego";
document.lang.noneop.value = "Ninguno";
document.lang.gconts.value = "Controles";
document.lang.workin.value = "Funciona?";
document.lang.protos.value = "Prototipo?";
document.lang.gename.value = "Nombramiento generico";
document.lang.usechk.value = "Usar?";
document.lang.gnameo.value = "Nombre? (Ej: kof2k)";
document.lang.extchk.value = "Extensión";
document.lang.pcopts.value = "Opciones de Principal/Clon";
document.lang.clorpa.value = "Clon o Principal?";
document.lang.cloneo.value = "Clon";
document.lang.parent.value = "Principal";
document.lang.prname.value = "Nombre del Principal (Si es clon):";
document.lang.mischo.value = "Opciones Misc. de Hardware";
document.lang.swapch.value = "Swap";
document.lang.gamble.value = "Apuestas/Azar";
document.lang.alttxt.value = "Texto alternativo";
document.lang.txtfix.value = "Arreglo de textos";
document.lang.encopt.value = "Opciones de Encriptacion";
document.lang.method.value = "Metodo:";
document.lang.noencr.value = "Sin Encriptacion";
document.lang.oldenc.value = "Vieja Encriptacion";
document.lang.newenc.value = "Nueva Encriptacion";
document.lang.romset.value = "Opciones de Romset";
document.lang.rmname.value = "Nombre del Rom";
document.lang.rmsize.value = "Tamaño del Rom";
document.lang.romcrc.value = "CRC del Rom";
document.lang.includ.value = "Incluir?";
document.lang.decrm1.value = "<b>Desencriptado</b> Rom M1 solamente";
document.lang.decrv1.value = "<b>Desencriptado</b> Roms V solamente";
document.lang.create.value = "Crear driver para FBA";
document.lang.prview.value = "Previsualizar";
document.lang.select.value = "Seleccionar todo";
document.lang.cleara.value = "Limpiar todo";
document.lang.rusure.value = "Seguro que todo esta correcto?";
document.lang.nothin.value = "No hay nada que previsualizar!";
document.lang.abouta.value = "acerca:";
document.lang.versin.value = "Versión";
document.lang.trans.value = ""; // Traducido por XXXXXX
/*------------------ Added in Version 1.0.8 ------------------------*/
document.lang.errchk.value = "Habilitar deteccion de errores?";
document.lang.errlbl.value = "Mensajes de error:";
document.lang.error.value = "Error! ";
document.lang.error1.value = "CRC es muy corto";
document.lang.warnin.value = "Cuidado! ";
document.lang.warn1.value = "CRC deberia ser mas corto";
document.lang.requir.value = "Es requerido!";
document.lang.spcfix.value = "Arreglo para kotm2";
/*------------------ Added in Version 1.1.0 ------------------------*/
document.lang.nebopt.value = "Opciones para Nebula";
document.lang.fixnum.value = "No. de Fix.";
document.lang.cartid.value = "ID de Cartucho";
}
create(this.form);
// -->
--- End code ---
See ya!!!! :D
--- End quote ---
Very nice, thank you :) (BTW, please don't be offended if I don't use your translation, Evils0u generally does the spanish translations for me ;) )
FerchogtX:
No problem man, EvilSou is my friend, and he does a better work that I :p better using his translation files beecause he has more experience on it ;)
See ya!!!!! :D
Navigation
[0] Message Index
Go to full version