1°) the skill on which everything is based, is the english term and not the one in the localized language. This is very easy to adapt this: just had a line in the missing.php file
- Code: Select all
$skill = $wordings[$roster_conf['roster_lang']][$skill];
This give the translation of the skill as mentioned in the DB.
2°) You are using http://wow.allakhazam.com as source for the different recipes. The same service exists for french WoW available on http://www.wowdbu.com:
this is the table as it must look for french:
- Code: Select all
switch($skill)
{
case 'Alchemy':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=75';
break;
case 'Blacksmithing':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=77';
break;
case 'Cooking':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=74';
break;
case 'Enchanting':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=72';
break;
case 'Engineering':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=73';
break;
case 'Firstaid':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=78';
$skill = 'First Aid';
break;
case 'Leatherworking':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=76';
break;
case 'Tailoring':
$url = 'http://www.wowdbu.com/index.php?cat=70&id=71';
break;
default:
$url ='';
break;
}
For the rest I'm not a php expert ... so can you help me in order to make your wonderful tool also available for another part of the community?