Background
I am working on an application in which there are many translations inside.
I have the following english multiple lines:
<plurals name="something"> <item quantity="one">added photo</item> <item quantity="other">added %d photos</item> </plurals>
and French translation:
<plurals name="something"> <item quantity="one">a ajouté une photo</item> <item quantity="other">a ajouté %d photos</item> </plurals>
Problem
For French and Russian, I get the following warning:
The number "one" matches more than one particular number in this locale, but the message does not contain a formatting argument (for example,% D). This is usually a mistake of internationalization. See the full release explanation for more.
when you select the details, it says: 
Thins is, I do not understand what needs to be done to fix this, and if there is even a problem ...
Question
What exactly should I do with these lines? What should I say to translators?
android string plural language-translation
android developer
source share