Changes between Version 1 and Version 2 of the_docs_strikes_back
- Timestamp:
- 12/28/17 11:56:11 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
the_docs_strikes_back
v1 v2 13 13 = Installing Transifex client = 14 14 15 {{{sudo pip install transifex-client 15 {{{ 16 sudo pip install transifex-client 16 17 17 18 # check it is working … … 20 21 If you followed the previous part [https://github.com/cvvergara/OSGeoLive-doc/wiki/Building-the-docs Building the docs], the pot files are already made. 21 22 22 {{{# pot files of the source language (english) 23 {{{ 24 # pot files of the source language (english) 23 25 ls -R locale/pot 24 26 25 27 # po file for the locales (e.g. Spanish) 26 ls -R locale/es}}} 28 ls -R locale/es 29 }}} 30 27 31 The pot files are pushes to the repository (see this file for change it). 28 32 … … 33 37 see the [https://github.com/cvvergara/OSGeoLive-doc/blob/cm_fix_header/doc/CMakeLists.txt#L101 locale command] 34 38 35 {{{sphinx-intl update-txconfig-resources --pot-dir locales/pot --transifex-project-name osgeolive 39 {{{ 40 sphinx-intl update-txconfig-resources --pot-dir locales/pot --transifex-project-name osgeolive 36 41 }}} 37 42 = Pushing to Transifex = … … 55 60 Build the pot/po files 56 61 57 {{{cd build 62 {{{ 63 cd build 58 64 cmake -DLOCALE=ON .. 59 65 make locale > locale_log.txt 60 cd ..}}} 66 cd .. 67 }}} 61 68 List .pot files 62 69