Ok, got it.
I resynched item.lib & frFR.php with the latest and greatest SVN.
It was my 'gun' : localized group "Arme
s à fue"
In frFR.pho it's being recognized if called ...||Arme
s à feu||... : remove the 's' and I have 2 errors are down.
It in the $lang['tooltip_weapon_types'].
That (was) it ?
I continue for the other 2 'line 323 php errors...
I think it's because
WeaponDPS is set, without any other 'Weapon....' attribute, like 'Bullets' (hé, just found another frFR issue here :-)) :
So, what about this one :
- Code: Select all
if( isset($this->attributes['WeaponDPS']) )
{
if ( isset($html) )
{
$html .= $this->attributes['WeaponDPS'] . '<br />';
}
else
{
$html = $this->attributes['WeaponDPS'] . '<br />';
}
}
instead of :
- Code: Select all
if( isset($this->attributes['WeaponDPS']) )
{
$html .= $this->attributes
}
Because if $html isn't being set already so something (even an empty string) then one can't do a "$html .=xxx" = adding a string to an existing string.
Bullets (FR : Balles) : frFR.php : line
Instaed of :
- Code: Select all
$lang['tooltip_weapon_types']='Hache|Arc|Arbaléte|Dague|Canne à pêche|Arme de pugilat|Arme à feu|À une main|Masse|Main droite|Arme d\'hast|Bâton|Epée|Armes de jet|Baguette|Tenu\(e\) en main gauche';
use
- Code: Select all
$lang['tooltip_weapon_types']='Hache|Arc|Arbaléte|Balle|Dague|Canne à pêche|Arme de pugilat|Arme à feu|À une main|Masse|Main droite|Arme d\'hast|Bâton|Epée|Armes de jet|Baguette|Tenu\(e\) en main gauche';
I added "|Balle" on the fourth position - to recognize FR:Bullets :wink:
{and removed a 's' like stated above, at the beginning of the post}
It's your move :D