mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
648 B
30 lines
648 B
3 years ago
|
`xgettext` command for extracting translation
|
||
|
===
|
||
|
|
||
|
```
|
||
|
xgettext --omit-header -ctr: -ktr -ktr:1,2 daemon/HTTPServer.cpp libi2pd_client/HTTPProxy.cpp
|
||
|
```
|
||
|
|
||
|
Regex for transforming gettext translations to our format:
|
||
|
===
|
||
|
|
||
|
```
|
||
|
in: msgid\ \"(.*)\"\nmsgid_plural\ \"(.*)\"\nmsgstr\[0\]\ \"(.*)\"\nmsgstr\[1\]\ \"(.*)\"\n(msgstr\[2\]\ \"(.*)\"\n)?(msgstr\[3\]\ \"(.*)\"\n)?(msgstr\[4\]\ \"(.*)\"\n)?(msgstr\[5\]\ \"(.*)\"\n)?
|
||
|
out: #{"$2", {"$3", "$4", "$6", "$8", "$10"}},\n
|
||
|
```
|
||
|
|
||
|
```
|
||
|
in: msgid\ \"(.*)\"\nmsgstr\ \"(.*)\"\n
|
||
|
out: {"$1", "$2"},\n
|
||
|
```
|
||
|
|
||
|
```
|
||
|
in: ^#[:.](.*)$\n
|
||
|
out: <to empty line>
|
||
|
```
|
||
|
|
||
|
```
|
||
|
in: \n\n
|
||
|
out: \n
|
||
|
```
|