|
I change the way to mantain the translations, in order to seplify, please check it and give me some suggestions. Thanks.
Please follow this template:
English
dict_FormTitle = '\"BaseBog Script\" Options';
dict_KeyShortcut = 'Key Shorcut to show/hide Options Menu';
dict_DaysUpdate = 'Frequency of updating the script (days)';
dict_MnuPlusShow = 'Show Menu\' Plus';
dict_MnuAllyShow = 'Show Menu\' Ally';
dict_MnuMineralsShow = 'Show Menu\' Minerali';
dict_SoundEnable = 'Sounds enable';
dict_Volume = 'Volume';
dict_DefaultSound = 'Default sound';
dict_OptionsSound = 'Menu options sound';
dict_LoginSound = 'DP login sound';
dict_ExitSound = 'DP exit sound';
dict_WarpSound = 'Sound during the trip(warp)';
dict_ArriveSound = 'Sound arriving at the sector';
dict_Note01 = 'have effect at the next page refresh';
dict_Ok = 'OK';
dict_Cancel = 'Cancel';
dict_FindEnemy_tt = 'Scan equal opponents (10 credits)';
dict_FindEnemy = 'Scan enemy';
dict_Amno_tt = 'Ammunition';
dict_Amno = 'Ammunition';
dict_Trade_tt = 'Trade market';
dict_Trade = 'Trade market';
dict_BlackMarket_tt = 'Black market';
dict_BlackMarket = 'Black market';
dict_Train_tt = 'Training';
dict_Train = 'Training';
dict_Recruit_tt = 'Recruitment Office';
dict_Recruit = 'Recruiting';
dict_Work_tt = 'Work';
dict_Work = 'Work';
dict_Storage_tt = 'Post storage';
dict_Storage = 'Storage';
dict_Auction_tt = 'Auction house';
dict_Auction = 'Auction';
dict_Lab_tt = 'Laboratory';
dict_Lab = 'Laboratory';
dict_AllyMsg_tt = 'Alliance General Message';
dict_AllyMsg = 'Alliance msg';
dict_AllyMembers_tt = 'Ally members';
dict_AllyMembers = 'Members';
dict_AllyBattles_tt = 'Ally battles';
dict_AllyBattles = 'Battles';
dict_AllyUpgrade_tt = 'Upgrade ally';
dict_AllyUpgrade = 'Upgrade';
dict_SearchUpdates = 'Click to search for updates';
dict_Version = 'Version';
dict_HotkeyHelp = ['Tool information, press ',' to open options menù'];
dict_AlertMsg = [
'Insert Hotkey',
'Insert frequency of updating '
];
//******* dizionario autoaggiornamento - autoupdate dictionary *******
dict_AutoUpdate = [
'A new version of the ',
' user script is available. Do you want to update?',
'Do you want to turn off auto updating for this script?',
'Automatic updates can be re-enabled for this script from the User Script Commands submenu.',
'No updates available for '
];
/*
*******************************************
************** Data structures *************
*******************************************
*/
// ******* dizionario minerali - resources dictionary *******
dict_ArrMinerals = [
'Iron',
'Duran',
'Polenium',
'Quadrinium',
'Helenium',
'Phosarit',
'Melanit',
'Megatan',
'Querell',
'Florisar',
'Warium',
'Crysolit',
'Niciltar',
'Hypolium',
'Einsteinium'
];
// ******* dizionario abbreviazione minerali - abbreviation resources dictionary *******
dict_ArrAbbrMin = [
'Meg++',
'Que++',
'Flo++',
'War++',
'Cry++',
'Nic++',
'Hyp++',
'Ein++'
];
// ******* dizionario munizioni - amno dictionary *******
dict_ArrAmno = [
'Standard Ammunition',
'APS Ammunition',
'ASR 5',
'FDR 13',
'Ares II',
'Ares I',
'Calltroop',
'Smecker Mine',
'Starclasher Mine',
'WarpNuker Mine'
];
// ******* dizionario armi - weapon dictionary *******
dict_ArrWeapon = [
'Azojal',
'Jajawil',
'Biqaj'
];
// ******* dizionario moduli - modules dictionary *******
dict_ArrModule = [
'Marate',
'Senofle Warp Drive',
'Undassa',
'Nenofith',
'Chamim',
'Kelenens',
'CTX 11',
'Fenesyn',
'Sondast',
'Estenin',
'Lassathe',
'Nenzon',
'Iladar'
];
// ******* dizionario extra - extras dictionary *******
dict_ArrExtras= [
'Repair-Bot',
'Nano-kit'
];
// ******* menu titles *******
dict_TitleMenu = [
'Plus Menù',
'Alliance Menù',
'Special Minerals',
'Info'
];
// ******* legend dictionary *******
dict_Legend = [
'Legend',
'Common',
'Laboratory',
'Market',
'Headquarter',
'Minerals missing',
'Spec.Minerals'
];
// ******* Dictionary for Combat Report
dict_CR = [
'Piloting Skills ',
'Camouflage Technology ',
'Supervision ',
'Shield Technology ',
'Reaction ',
'Sensor Technology ',
'Navigation Research ',
'Ship Data ',
'Structure Points ',
'Shield Points ',
'Laser ',
'Module Nodes ',
'Additions ',
'Speed ',
'Damage: (Max.) ',
'Damage Dealt: ',
'Structure Points Left: ',
'Generated with ',
' script Combat Report Converter'
];
// ******* Dictionary for Converter Box
dict_CRbox = [
'Convert Report',
'Report Converted',
'Close'
];
// ******* Dictionary for Left Position of some elements of Legend
d_lpl = [
'37px',
'42px',
'39px',
'40px',
'33px',
'36px',
'20px',
'10px'
];
// ******* abbreviations dictionary *******
//(p)urchase,(s)ell,(a)verage
sPurchase = 'p';
sSell = 's';
sAverage = 'a';
// ******* selection messages dictionary *******
dict_ChkSel = 'Mark/Unmark all';
|