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

@ -11,3 +11,6 @@ grep --include='strings.xml' -r ' \$' .
# - allow only `\n`, `\"`, `\'` and `\`
# (`` might not be escaped, but it is done often eg. in "sq", so we allow that for now)
grep --include='strings.xml' -r "\\\\[^n\"']" .
# check for usage of a single `&` - this has to be an `&`
grep --include='strings.xml' -r "&[^a]" .