Jump to content

Translation bug


GunChleoc
 Share

Recommended Posts

I'm having a problem with the following string on the Gaelic translation:

gui/gamesetup/gamesetup.js:1231

%(number)s players. %(description)s

For 3 players, it fetches the wrong plural form - either the one for 1,11 or the one for 2,12

We have had problems with some software defining the wrong plural rules for gd, could you please double-check this?

nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;
  • Like 1
Link to comment
Share on other sites

The number displayes on screen is correct, but the plural form is not. I had already double-checked the PO file to make sure it's not a translation error.

http://svn.wildfiregames.com/public/ps/trunk/binaries/data/mods/public/gui/gamesetup/gamesetup.js

    var playerString = sprintf(translatePlural("%(number)s player. %(description)s", "%(number)s players. %(description)s", numPlayers), { number: numPlayers, description: description });

This is the line in current trunk, I have no idea if changes have been made since the release was packaged or not. I simply quoted the code reference in the PO file ;)

This line of code looks correct as far as I can tell, so no idea what is wrong here.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...