1) This one is a super small change only, sorry: In Website/stat_geschichte.php, can you change %1$s to %1$d and %2$s to %2$d, please? The d is for numbers (integers), as opposed to s which is for strings, and so a translator can see what values to expect right from the placeholder string :) When using number_format(), it's correct to use %s, by the way, because that function returns a string (including dots and commas).
2) In Website/ver_stadion.php, you have € %s twice, which should be %s € again.
Well done, thank you very much! Just two things:
1) This one is a super small change only, sorry: In
Website/stat_geschichte.php
, can you change%1$s
to%1$d
and%2$s
to%2$d
, please? Thed
is for numbers (integers), as opposed tos
which is for strings, and so a translator can see what values to expect right from the placeholder string :) When usingnumber_format()
, it's correct to use%s
, by the way, because that function returns a string (including dots and commas).2) In
Website/ver_stadion.php
, you have€ %s
twice, which should be%s €
again.