Hi! I'm a developer here. I've tried different things including the right way of translating log texts, but I was informed that the log texts are translated in the active player's language. I even got an image from a player and it doesn't make sense to me.
Player's image:
(The player put the arrows and labels on the image, but it seems there are different languages up there based on who is the active player)

Here is one section of the offending code:
from material.inc.php
from penaltychallenge.game.php
I would be really grateful if someone can help me and tell me what I did wrong.
Player's image:
(The player put the arrows and labels on the image, but it seems there are different languages up there based on who is the active player)

Here is one section of the offending code:
from material.inc.php
Code: Select all
$this->slots = array(
"1x1" => self::_("left-high-post"),
"1x2" => self::_("left-high"),
...
);
Code: Select all
$slot_name = $this->slots[$slot_n];
self::notifyAllPlayers( 'shooter_aim', clienttranslate( 'The shooter aims for <b>${slot_name}<b>' ), array(
'slot_name' => $slot_name
) );