Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace sync_stores and update_stores with Pootle FS #6767

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docs/server/project_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,9 @@ update the template translations in the Pootle database.

.. code-block:: console

(env) $ pootle update_stores --project=my-project --language=templates
(env) $ pootle fs fetch my-project --fs-path=my-project/templates/*
(env) $ pootle fs resolve my-project --overwrite --fs-path=my-project/templates/*
(env) $ pootle fs sync my-project --update=pootle --fs-path=my-project/templates/*


This command will ensure that new strings are added to the project and any
Expand All @@ -303,7 +305,9 @@ language. The first step is to save all the Pootle translations to disk:

.. code-block:: console

(env) $ pootle sync_stores --project=my-project
(env) $ pootle fs fetch my-project
(env) $ pootle fs resolve my-project --overwrite --pootle-wins
(env) $ pootle fs sync my-project --update=fs


Then update all those translations on disk against the newer templates. We
Expand All @@ -326,7 +330,9 @@ to Pootle:

.. code-block:: console

(env) $ pootle update_stores --project=my-project
(env) $ pootle fs fetch my-project
(env) $ pootle fs resolve my-project --overwrite
(env) $ pootle fs sync my-project --update=pootle


.. note:: If your project languages contain many translations you might want to
Expand Down