In the replay log the same log doesn't have the problem. See https://imgur.com/a/XHQ1vr6
The code of the notification:
Code: Select all
$item_name = $this->item_types[$item]['name'];
self::notifyAllPlayers('chooseItemNotify', clienttranslate('${player_name} takes ${item_name}'),
array(
'i18n' => array(
'item_name'
),
'player_id' => $player_id,
'player_name' => $player_name,
'item_name' => $item_name
));$item_types is defined in another file:
Code: Select all
$this->item_types = array(
...
E_Items::GOLD => array(
'name' => 'gold',
'nametr' => self::_('gold'),
'nametrcl' => clienttranslate('gold'),
'diviser' => 6
),
...Please note that there is not even a translation for 'or' in the translation system of the game (which is in alpha).