I'm working on Lady's Choice. A game about choosing which gentleman you will marry. These gentlemen have pronouns which are static. The gentlemen do not become ladies (that's a different game I'll be uploading later).
So, for example,, would it become for female players? I hope not. That would not be the intended experience, and ironically would be a system that works perfectly for male players but ruins the experience for female players. The exact opposite of what the pronoun replacement system was designed to do.
(That exact example may not have made the bug appear, but I'm sure other examples in my code will.)
As for player pronouns, I've been avoiding them, but when forced I use the pronoun of the player's role not the player themself. (For 2p, all players are ladies. For 3+p you take it in turns to be a lady.)
(I know it will make males uncomfortable being called by female pronouns, but it makes me happy to know that these will likely be the same males who think females should not be uncomfortable with male pronouns.)
Also, while I'm here, there is a lot of data uploaded to an English csv file as well as a sprite image with English writing. How would I go about getting them flagged for translation? I'm happy to help where necessary. (I'm guessing translators prefer not to do image editing themselves.)
So, for example,
Code: Select all
clienttranslate( 'You courted Gentleman ${gent_no} and discovered his attribute: "${attribute}"' )Code: Select all
clienttranslate( 'You courted Gentleman ${gent_no} and discovered HER attribute: "${attribute}"' )(That exact example may not have made the bug appear, but I'm sure other examples in my code will.)
As for player pronouns, I've been avoiding them, but when forced I use the pronoun of the player's role not the player themself. (For 2p, all players are ladies. For 3+p you take it in turns to be a lady.)
(I know it will make males uncomfortable being called by female pronouns, but it makes me happy to know that these will likely be the same males who think females should not be uncomfortable with male pronouns.)
Also, while I'm here, there is a lot of data uploaded to an English csv file as well as a sprite image with English writing. How would I go about getting them flagged for translation? I'm happy to help where necessary. (I'm guessing translators prefer not to do image editing themselves.)