delight-im / OpenSoccer

[UNMAINTAINED] Online Soccer Manager
GNU General Public License v3.0
52 stars 25 forks source link

Missing gettext tags #291

Closed cosme12 closed 9 years ago

ocram commented 9 years ago

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? 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.

cosme12 commented 9 years ago

Updated.

ocram commented 9 years ago

Thank you :)