From 9a7e084b159b8c68548dafc1fde15302365be484 Mon Sep 17 00:00:00 2001 From: michaelroytman Date: Fri, 9 Feb 2024 16:34:26 -0500 Subject: [PATCH] fix: remove unused translations Make targets The edx-proctoring translations job has been removed. This commit removes the push_translations and pull_translations Make targets, which are no longer in use. Please see OEP-58: https://docs.openedx.org/en/latest/developers/concepts/oep58.html. --- Makefile | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index b24161a4de..28b6b9c5d5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: help upgrade requirements clean quality requirements \ requirements-test coverage pii_check \ compile_translations dummy_translations extract_translations \ - fake_translations pull_translations push_translations test test-python \ + fake_translations test test-python \ test-js quality-python quality-js .DEFAULT_GOAL := help @@ -122,22 +122,16 @@ diff_cover: test ## Localization targets -extract_translations: ## extract strings to be translated, outputting .mo files +extract_translations: ## extract strings to be translated, outputting .po files cd edx_proctoring && django-admin makemessages -l en -v1 -d django cd edx_proctoring && django-admin makemessages -l en -v1 -d djangojs -compile_translations: ## compile translation files, outputting .po files for each supported language +compile_translations: ## compile translation files, outputting .mo files for each supported language cd edx_proctoring && django-admin compilemessages detect_changed_source_translations: cd edx_proctoring && i18n_tool changed -pull_translations: ## pull translations from Transifex - tx pull -a -f -t --mode reviewed --minimum-perc=1 - -push_translations: ## push source translation files (.po) from Transifex - tx push -s - validate_translations: ## Test translation files cd edx_proctoring && i18n_tool validate -v