mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-03 17:59:39 +02:00
update translations, add a fix for unescaped '&' entity
This commit is contained in:
parent
c75622605a
commit
f99d9daa49
2 changed files with 8 additions and 4 deletions
|
@ -425,6 +425,7 @@
|
||||||
<string name="pref_profile_info_headline">Informations de votre profil</string>
|
<string name="pref_profile_info_headline">Informations de votre profil</string>
|
||||||
<string name="pref_profile_photo">Photo de profil</string>
|
<string name="pref_profile_photo">Photo de profil</string>
|
||||||
<string name="pref_blocked_contacts">Contacts bloqués</string>
|
<string name="pref_blocked_contacts">Contacts bloqués</string>
|
||||||
|
<string name="blocked_empty_hint">Si vous bloquez des contacts, ils seront affichés ici.</string>
|
||||||
<string name="pref_profile_photo_remove_ask">Supprimer la photo de profil ?</string>
|
<string name="pref_profile_photo_remove_ask">Supprimer la photo de profil ?</string>
|
||||||
<string name="pref_password_and_account_settings">Mot de passe et compte</string>
|
<string name="pref_password_and_account_settings">Mot de passe et compte</string>
|
||||||
<string name="pref_who_can_see_profile_explain">L\'image et le nom de votre profil seront affichés à côté de vos messages lorsque vous communiquez avec d\'autres utilisateurs. Les informations déjà envoyées ne peuvent pas être effacées ou supprimées.</string>
|
<string name="pref_who_can_see_profile_explain">L\'image et le nom de votre profil seront affichés à côté de vos messages lorsque vous communiquez avec d\'autres utilisateurs. Les informations déjà envoyées ne peuvent pas être effacées ou supprimées.</string>
|
||||||
|
@ -523,11 +524,11 @@
|
||||||
<string name="emoji_search_results">Résultats de la recherche</string>
|
<string name="emoji_search_results">Résultats de la recherche</string>
|
||||||
<string name="emoji_not_found">Pas d\'emoji trouvé</string>
|
<string name="emoji_not_found">Pas d\'emoji trouvé</string>
|
||||||
<string name="emoji_recent">Récemment utilisés</string>
|
<string name="emoji_recent">Récemment utilisés</string>
|
||||||
<string name="emoji_people">Personnes & corps</string>
|
<string name="emoji_people">Personnes & corps</string>
|
||||||
<string name="emoji_nature">Animaux & nature</string>
|
<string name="emoji_nature">Animaux & nature</string>
|
||||||
<string name="emoji_foods">Nourriture & boisson</string>
|
<string name="emoji_foods">Nourriture & boisson</string>
|
||||||
<string name="emoji_activity">Activités</string>
|
<string name="emoji_activity">Activités</string>
|
||||||
<string name="emoji_places">Voyage & lieux</string>
|
<string name="emoji_places">Voyage & lieux</string>
|
||||||
<string name="emoji_objects">Objets</string>
|
<string name="emoji_objects">Objets</string>
|
||||||
<string name="emoji_symbols">Symboles</string>
|
<string name="emoji_symbols">Symboles</string>
|
||||||
<string name="emoji_flags">Drapeaux</string>
|
<string name="emoji_flags">Drapeaux</string>
|
||||||
|
|
|
@ -11,3 +11,6 @@ grep --include='strings.xml' -r ' \$' .
|
||||||
# - allow only `\n`, `\"`, `\'` and `\’`
|
# - allow only `\n`, `\"`, `\'` and `\’`
|
||||||
# (`’` might not be escaped, but it is done often eg. in "sq", so we allow that for now)
|
# (`’` might not be escaped, but it is done often eg. in "sq", so we allow that for now)
|
||||||
grep --include='strings.xml' -r "\\\\[^n\"'’]" .
|
grep --include='strings.xml' -r "\\\\[^n\"'’]" .
|
||||||
|
|
||||||
|
# check for usage of a single `&` - this has to be an `&`
|
||||||
|
grep --include='strings.xml' -r "&[^a]" .
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue