mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
ce2f642093
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
30 lines
666 B
Plaintext
30 lines
666 B
Plaintext
|
|
== Pre-requirements ==
|
|
|
|
=== List of required apps ===
|
|
|
|
* tx (A transifex client. http://help.transifex.com/features/client/#user-client-08-install)
|
|
* po4a (A tool maintaining translations anywhere. http://alioth.debian.org/projects/po4a/)
|
|
|
|
|
|
=== An artifacts configuration ===
|
|
|
|
Put in the ~/.transifexrc file these lines:
|
|
|
|
[https://www.transifex.net]
|
|
hostname = https://www.transifex.net
|
|
username = YourTxLogin
|
|
password = YourTxPassword
|
|
token =
|
|
|
|
== Interact with Transifex via scripts ==
|
|
|
|
To get all translations from Transifex run:
|
|
|
|
find ./ -name '*-fromTransifex.*' -exec {} \;
|
|
|
|
To put source files to Transifex run:
|
|
|
|
find ./ -name '*-toTransifex.*' -exec {} \;
|
|
|