We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 594ebc8 commit 7a1a8a9Copy full SHA for 7a1a8a9
Makefile
@@ -884,10 +884,15 @@ update-translations:
884
mv ./translations/*.ini ./options/locale/
885
rmdir ./translations
886
887
-.PHONY: check-locales
888
-check-locales:
889
- @echo "Checking translations..."
890
- $(GO) run build/check-locales.go
+.PHONY: i18n-backport
+i18n-backport:
+ @echo "Backport translations ..."
+ $(GO) run tools/i18n/backport.go
891
+
892
+.PHONY: i18n-cleanup
893
+i18n-cleanup:
894
+ @echo "Checking and Cleanup translations..."
895
+ $(GO) run tools/i18n/cleanup.go
896
897
.PHONY: generate-gitignore
898
generate-gitignore: ## update gitignore files
build/backport-locales.go renamed to tools/i18n/backport.go
build/check-locales.go renamed to tools/i18n/cleanup.go
0 commit comments