[i18n] add Italian translation, update Chinese

Thanks for italian translation to Albano Battistella and Fabio Roman

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2022-08-30 23:59:26 +03:00
parent 9abc4cf359
commit f4e230f1ad
No known key found for this signature in database
GPG key ID: 66F6C87B98EBCFE2
4 changed files with 223 additions and 5 deletions

View file

@ -10,7 +10,7 @@ Regex for transforming gettext translations to our format:
```
in: msgid\ \"(.*)\"\nmsgid_plural\ \"(.*)\"\nmsgstr\[0\]\ \"(.*)\"\n(msgstr\[1\]\ \"(.*)\"\n)?(msgstr\[2\]\ \"(.*)\"\n)?(msgstr\[3\]\ \"(.*)\"\n)?(msgstr\[4\]\ \"(.*)\"\n)?(msgstr\[5\]\ \"(.*)\"\n)?
out: #{"$2", {"$3", "$4", "$6", "$8", "$10"}},\n
out: #{"$2", {"$3", "$5", "$7", "$9", "$11"}},\n
```
```