update translations, add a fix for unescaped '&' entity

This commit is contained in:
B. Petersen 2020-12-01 11:44:25 +01:00
parent c75622605a
commit f99d9daa49
No known key found for this signature in database
GPG key ID: 3B88E92DEA8E9AFC
2 changed files with 8 additions and 4 deletions

View file

@ -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 &amp; corps</string>
<string name="emoji_nature">Animaux & nature</string> <string name="emoji_nature">Animaux &amp; nature</string>
<string name="emoji_foods">Nourriture & boisson</string> <string name="emoji_foods">Nourriture &amp; 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 &amp; 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>

View file

@ -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 `&amp;`
grep --include='strings.xml' -r "&[^a]" .