mirror of https://github.com/searx/searx
Merge pull request #879 from kvch/gh-pages
[doc] bump version to 0.11 && rewrite Translation page
This commit is contained in:
commit
82a016dcb4
|
@ -57,9 +57,9 @@ author = u'Adam Tauber'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.10.0'
|
version = '0.11.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.10.0'
|
release = '0.11.0'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -1,80 +1,61 @@
|
||||||
Translation
|
Translation
|
||||||
===========
|
===========
|
||||||
|
|
||||||
run these commands in the root directory of searx
|
Requirements
|
||||||
|
------------
|
||||||
|
|
||||||
Add new language
|
* Transifex account
|
||||||
~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
.. code:: shell
|
* Installed CLI tool of Transifex
|
||||||
|
|
||||||
pybabel init -i messages.pot -d searx/translations -l it
|
Init Transifex project
|
||||||
|
----------------------
|
||||||
|
|
||||||
Update .po files
|
After installing ``transifex`` using pip, run the following command to initialize the project.
|
||||||
~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
.. code:: shell
|
|
||||||
|
|
||||||
./utils/update-translations.sh
|
|
||||||
|
|
||||||
You may have errors here. In that case, edit the
|
|
||||||
``update-translations.sh`` script to change ``pybabel`` to
|
|
||||||
``pybabel-python2`` or ``pybabel2``
|
|
||||||
|
|
||||||
After this step, you can modify the .po files.
|
|
||||||
|
|
||||||
Compile translations
|
|
||||||
~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
.. code:: shell
|
|
||||||
|
|
||||||
pybabel compile -d searx/translations
|
|
||||||
|
|
||||||
Transifex stuff
|
|
||||||
~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
Init Project
|
|
||||||
^^^^^^^^^^^^
|
|
||||||
|
|
||||||
.. code:: shell
|
.. code:: shell
|
||||||
|
|
||||||
tx init # Transifex instance: https://www.transifex.com/asciimoo/searx/
|
tx init # Transifex instance: https://www.transifex.com/asciimoo/searx/
|
||||||
|
|
||||||
|
|
||||||
|
After ``$HOME/.transifexrc`` is created, get a Transifex API key and insert it into the configuration file.
|
||||||
|
|
||||||
|
Create a configuration file for ``tx`` named ``$HOME/.tx/config``.
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
[main]
|
||||||
|
host = https://www.transifex.com
|
||||||
|
[searx.messagespo]
|
||||||
|
file_filter = searx/translations/<lang>/LC_MESSAGES/messages.po
|
||||||
|
source_file = messages.pot
|
||||||
|
source_lang = en
|
||||||
|
type = PO
|
||||||
|
|
||||||
|
|
||||||
|
Then run ``tx set``:
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
tx set --auto-local -r searx.messagespo 'searx/translations/<lang>/LC_MESSAGES/messages.po' \
|
tx set --auto-local -r searx.messagespo 'searx/translations/<lang>/LC_MESSAGES/messages.po' \
|
||||||
--source-lang en --type PO --source-file messages.pot --execute
|
--source-lang en --type PO --source-file messages.pot --execute
|
||||||
|
|
||||||
http://docs.transifex.com/client/init/
|
|
||||||
|
|
||||||
http://docs.transifex.com/client/set/
|
Update translations
|
||||||
|
-------------------
|
||||||
|
|
||||||
Get translations
|
To retrieve the latest translations, pull it from Transifex.
|
||||||
^^^^^^^^^^^^^^^^
|
|
||||||
|
|
||||||
.. code:: shell
|
.. code:: shell
|
||||||
|
|
||||||
tx pull -a
|
tx pull -a
|
||||||
|
|
||||||
http://docs.transifex.com/client/pull
|
Then check the new languages. If strings translated are not enough, delete those folders, because
|
||||||
|
those should not be compiled. Call the command below to compile the ``.po`` files.
|
||||||
Upload source File
|
|
||||||
^^^^^^^^^^^^^^^^^^
|
|
||||||
|
|
||||||
.. code:: shell
|
.. code:: shell
|
||||||
|
|
||||||
tx push -s
|
pybabel compile -d searx/translations
|
||||||
|
|
||||||
Upload all Translation
|
|
||||||
^^^^^^^^^^^^^^^^^^^^^^
|
|
||||||
|
|
||||||
.. code:: shell
|
After the compilation is finished commit the ``.po`` and ``.mo`` files and create a PR.
|
||||||
|
|
||||||
tx push -s -t
|
|
||||||
|
|
||||||
upload specifc Translation
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
.. code:: shell
|
|
||||||
|
|
||||||
tx push -t -l tr
|
|
||||||
|
|
||||||
http://docs.transifex.com/client/push
|
|
||||||
|
|
Loading…
Reference in New Issue