Translate into French update 2026-05-14#948
Conversation
|
Excellent, thank you.
Those are weird. I had to remind myself how they work; https://developer.android.com/reference/android/icu/text/SelectFormat. The format is so confusing I don't expect anyone to use these, but its possible to translate those lines so they respect the gender and number of the noun. I guess an example in Spanish is something like "it is 5 oclock" vs "it is 1 oclock", which is "son las 5" vs "es la 1. The conjugation and article are different depending on the hour. That eventually becomes The code that uses it is actually There are a bunch of strings that end in So the above version of Here's the spanish version: In this case it provides translations |
|
Thanks for the explanation. I've made the changes, hoping they're correct. In French, the feminine singular is “la,” the masculine singular is “le,” and the feminine and masculine plural is “les.” But it can also be “de la” for the feminine singular, "du" for the masculine singular, and “des” for the feminine and masculine plural. For your app, I think the first one is sufficient. |
I left these two lines.
I'm not sure how to translate them.
150
<string name="offset_before_msg1">{0} avant {1, plural, one {{2, select, female {} other {}}} other {{2, select, female {} other {}}}}{3}</string> <!-- uses SelectFormat (api24+) --> <!-- TODO: review -->151
<string name="offset_after_msg1">{0} après {1, plural, one {{2, select, female {} other {}}} other {{2, select, female {} other {}}}}{3}</string> <!-- uses SelectFormat (api24+) --> <!-- TODO: review -->