Open - roster/localization/enUS.php
Find the following area of code;
- Code: Select all
//this needs to be exact as it is the wording in the db
$wordings['enUS']['professions']='Professions';
$wordings['enUS']['secondary']='Secondary Skills';
$wordings['enUS']['Blacksmithing']='Blacksmithing';
$wordings['enUS']['Mining']='Mining';
$wordings['enUS']['Herbalism']='Herbalism';
$wordings['enUS']['Alchemy']='Alchemy';
$wordings['enUS']['Leatherworking']='Leatherworking';
$wordings['enUS']['Skinning']='Skinning';
$wordings['enUS']['Tailoring']='Tailoring';
$wordings['enUS']['Enchanting']='Enchanting';
$wordings['enUS']['Engineering']='Engineering';
$wordings['enUS']['Cooking']='Cooking';
$wordings['enUS']['Fishing']='Fishing';
$wordings['enUS']['First Aid']='First Aid';
$wordings['enUS']['Poisons']='Poisons';
$wordings['enUS']['backpack']='Backpack';
$wordings['enUS']['PvPRankNone']='none';
And replace with the following;
- Code: Select all
//this needs to be exact as it is the wording in the db
$wordings['enUS']['professions']='Professions';
$wordings['enUS']['secondary']='Secondary Skills';
$wordings['enUS']['Blacksmithing']='Blacksmithing';
$wordings['enUS']['Jewelcrafting']='Jewelcrafting';
$wordings['enUS']['Mining']='Mining';
$wordings['enUS']['Herbalism']='Herbalism';
$wordings['enUS']['Alchemy']='Alchemy';
$wordings['enUS']['Leatherworking']='Leatherworking';
$wordings['enUS']['Skinning']='Skinning';
$wordings['enUS']['Tailoring']='Tailoring';
$wordings['enUS']['Enchanting']='Enchanting';
$wordings['enUS']['Engineering']='Engineering';
$wordings['enUS']['Cooking']='Cooking';
$wordings['enUS']['Fishing']='Fishing';
$wordings['enUS']['First Aid']='First Aid';
$wordings['enUS']['Poisons']='Poisons';
$wordings['enUS']['backpack']='Backpack';
$wordings['enUS']['PvPRankNone']='none';
Also replace;
- Code: Select all
//Tradeskill-Array
$tsArray['enUS'] = array (
$wordings['enUS']['Alchemy'],
$wordings['enUS']['Herbalism'],
$wordings['enUS']['Blacksmithing'],
$wordings['enUS']['Mining'],
$wordings['enUS']['Leatherworking'],
$wordings['enUS']['Skinning'],
$wordings['enUS']['Tailoring'],
$wordings['enUS']['Enchanting'],
$wordings['enUS']['Engineering'],
$wordings['enUS']['Cooking'],
$wordings['enUS']['Fishing'],
$wordings['enUS']['First Aid'],
$wordings['enUS']['Poisons'],
With this;
- Code: Select all
//Tradeskill-Array
$tsArray['enUS'] = array (
$wordings['enUS']['Alchemy'],
$wordings['enUS']['Herbalism'],
$wordings['enUS']['Blacksmithing'],
$wordings['enUS']['Mining'],
$wordings['enUS']['Jewelcrafting'],
$wordings['enUS']['Leatherworking'],
$wordings['enUS']['Skinning'],
$wordings['enUS']['Tailoring'],
$wordings['enUS']['Enchanting'],
$wordings['enUS']['Engineering'],
$wordings['enUS']['Cooking'],
$wordings['enUS']['Fishing'],
$wordings['enUS']['First Aid'],
$wordings['enUS']['Poisons'],
And finally this section;
- Code: Select all
//Tradeskill Icons-Array
$wordings['enUS']['ts_iconArray'] = array (
$wordings['enUS']['Alchemy']=>'Trade_Alchemy',
$wordings['enUS']['Herbalism']=>'Trade_Herbalism',
$wordings['enUS']['Blacksmithing']=>'Trade_BlackSmithing',
$wordings['enUS']['Mining']=>'Trade_Mining',
$wordings['enUS']['Leatherworking']=>'Trade_LeatherWorking',
$wordings['enUS']['Skinning']=>'INV_Misc_Pelt_Wolf_01',
$wordings['enUS']['Tailoring']=>'Trade_Tailoring',
$wordings['enUS']['Enchanting']=>'Trade_Engraving',
$wordings['enUS']['Engineering']=>'Trade_Engineering',
$wordings['enUS']['Cooking']=>'INV_Misc_Food_15',
$wordings['enUS']['Fishing']=>'Trade_Fishing',
$wordings['enUS']['First Aid']=>'Spell_Holy_SealOfSacrifice',
$wordings['enUS']['Poisons']=>'Ability_Poisons',
With this section;
- Code: Select all
//Tradeskill Icons-Array
$wordings['enUS']['ts_iconArray'] = array (
$wordings['enUS']['Alchemy']=>'Trade_Alchemy',
$wordings['enUS']['Herbalism']=>'Trade_Herbalism',
$wordings['enUS']['Blacksmithing']=>'Trade_BlackSmithing',
$wordings['enUS']['Mining']=>'Trade_Mining',
$wordings['enUS']['Leatherworking']=>'Trade_LeatherWorking',
$wordings['enUS']['Jewelcrafting']=>'Trade_Jewelcrafting',
$wordings['enUS']['Skinning']=>'INV_Misc_Pelt_Wolf_01',
$wordings['enUS']['Tailoring']=>'Trade_Tailoring',
$wordings['enUS']['Enchanting']=>'Trade_Engraving',
$wordings['enUS']['Engineering']=>'Trade_Engineering',
$wordings['enUS']['Cooking']=>'INV_Misc_Food_15',
$wordings['enUS']['Fishing']=>'Trade_Fishing',
$wordings['enUS']['First Aid']=>'Spell_Holy_SealOfSacrifice',
$wordings['enUS']['Poisons']=>'Ability_Poisons',
Once you have completed this portion of the editing, go to your roster/img/Interface/Icons directory and find the INV_Misc_Gem_02.jpg image. Once you have done that, copy it and paste it to an alternate location and rename the copied image to Trade_Jewelcrafting.jpg and upload the new image to the icons directory.
Once you have completed these steps and "created" your new image, upload the enUS.php file to your localization directory and SHAZAM!
Jewelcrafting repaired.
Good luck!