diff --git a/cookiecutter-django-app/{{cookiecutter.repo_name}}/Makefile b/cookiecutter-django-app/{{cookiecutter.repo_name}}/Makefile index a4f6bd28..cc3b53dd 100644 --- a/cookiecutter-django-app/{{cookiecutter.repo_name}}/Makefile +++ b/cookiecutter-django-app/{{cookiecutter.repo_name}}/Makefile @@ -1,5 +1,5 @@ .PHONY: clean clean_tox compile_translations coverage diff_cover docs dummy_translations \ - extract_translations fake_translations help pii_check pull_translations push_translations \ + extract_translations fake_translations help pii_check pull_translations \ quality requirements selfcheck test test-all upgrade validate install_transifex_client .DEFAULT_GOAL := help @@ -106,9 +106,6 @@ pull_translations: @echo "Translations have been pulled via Atlas and compiled." endif -push_translations: ## push source translation files (.po) from Transifex - tx push -s - dummy_translations: ## generate dummy translation (.po) files cd {{cookiecutter.app_name}} && i18n_tool dummy diff --git a/cookiecutter-django-app/{{cookiecutter.repo_name}}/docs/internationalization.rst b/cookiecutter-django-app/{{cookiecutter.repo_name}}/docs/internationalization.rst index 9b25877c..bb98088b 100644 --- a/cookiecutter-django-app/{{cookiecutter.repo_name}}/docs/internationalization.rst +++ b/cookiecutter-django-app/{{cookiecutter.repo_name}}/docs/internationalization.rst @@ -34,8 +34,6 @@ The `make` targets listed below can be used to push or pull translations. - Description * - pull_translations - Pull translations from Transifex - * - push_translations - - Push source translation files to Transifex Fake Translations ***************** diff --git a/cookiecutter-django-ida/{{cookiecutter.repo_name}}/Makefile b/cookiecutter-django-ida/{{cookiecutter.repo_name}}/Makefile index c7edc4b9..fed2fba0 100644 --- a/cookiecutter-django-ida/{{cookiecutter.repo_name}}/Makefile +++ b/cookiecutter-django-ida/{{cookiecutter.repo_name}}/Makefile @@ -5,7 +5,7 @@ test coverage isort_check isort style lint quality pii_check validate \ migrate html_coverage upgrade extract_translation dummy_translations \ compile_translations fake_translations pull_translations \ - push_translations start-devstack open-devstack pkg-devstack \ + start-devstack open-devstack pkg-devstack \ detect_changed_source_translations validate_translations check_keywords \ install_transifex_client @@ -142,9 +142,6 @@ pull_translations: @echo "Translations have been pulled via Atlas and compiled." endif -push_translations: ## push source translation files (.po) from Transifex - tx push -s - start-devstack: ## run a local development copy of the server docker-compose --x-networking up diff --git a/cookiecutter-django-ida/{{cookiecutter.repo_name}}/docs/internationalization.rst b/cookiecutter-django-ida/{{cookiecutter.repo_name}}/docs/internationalization.rst index 9b25877c..bb98088b 100644 --- a/cookiecutter-django-ida/{{cookiecutter.repo_name}}/docs/internationalization.rst +++ b/cookiecutter-django-ida/{{cookiecutter.repo_name}}/docs/internationalization.rst @@ -34,8 +34,6 @@ The `make` targets listed below can be used to push or pull translations. - Description * - pull_translations - Pull translations from Transifex - * - push_translations - - Push source translation files to Transifex Fake Translations ***************** diff --git a/cookiecutter-xblock/{{cookiecutter.repo_name}}/Makefile b/cookiecutter-xblock/{{cookiecutter.repo_name}}/Makefile index 20802d1d..bc62c5e5 100644 --- a/cookiecutter-xblock/{{cookiecutter.repo_name}}/Makefile +++ b/cookiecutter-xblock/{{cookiecutter.repo_name}}/Makefile @@ -3,7 +3,7 @@ .PHONY: dev.clean dev.build dev.run upgrade help requirements .PHONY: extract_translations compile_translations .PHONY: detect_changed_source_translations dummy_translations build_dummy_translations -.PHONY: validate_translations pull_translations push_translations install_transifex_clients +.PHONY: validate_translations pull_translations install_transifex_clients REPO_NAME := {{cookiecutter.repo_name}} PACKAGE_NAME := {{cookiecutter.package_name}} @@ -86,9 +86,6 @@ validate_translations: build_dummy_translations detect_changed_source_translatio pull_translations: ## pull translations from transifex cd $(PACKAGE_NAME) && i18n_tool transifex pull -push_translations: extract_translations ## push translations to transifex - cd $(PACKAGE_NAME) && i18n_tool transifex push - install_transifex_client: ## Install the Transifex client # Instaling client will skip CHANGELOG and LICENSE files from git changes # so remind the user to commit the change first before installing client. diff --git a/cookiecutter-xblock/{{cookiecutter.repo_name}}/README.rst b/cookiecutter-xblock/{{cookiecutter.repo_name}}/README.rst index 6588afdc..b452e774 100644 --- a/cookiecutter-xblock/{{cookiecutter.repo_name}}/README.rst +++ b/cookiecutter-xblock/{{cookiecutter.repo_name}}/README.rst @@ -127,18 +127,6 @@ The previous command will compile ``.po`` files using After compiling the ``.po`` file(s), ``django-statici18n`` is used to create language specific catalogs. See ``django-statici18n`` `documentation `_ for more information. -To upload translations to transifex use the follow Make target: - -.. code-block:: bash - - make push_translations - -See `config instructions `_ for information on how to set up your -transifex credentials. - -See `transifex documentation `_ for more details about integrating -django with transifex. - **Note:** The ``dev.run`` make target will automatically compile any translations. **Note:** To check if the source translation files (``.po``) are up-to-date run: diff --git a/python-template/{{cookiecutter.placeholder_repo_name}}/docs/internationalization.rst b/python-template/{{cookiecutter.placeholder_repo_name}}/docs/internationalization.rst index 9b25877c..bb98088b 100644 --- a/python-template/{{cookiecutter.placeholder_repo_name}}/docs/internationalization.rst +++ b/python-template/{{cookiecutter.placeholder_repo_name}}/docs/internationalization.rst @@ -34,8 +34,6 @@ The `make` targets listed below can be used to push or pull translations. - Description * - pull_translations - Pull translations from Transifex - * - push_translations - - Push source translation files to Transifex Fake Translations *****************