From aa442403023191563fb4a85ec6e0d8b1c2f21304 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 15 Mar 2020 12:24:07 +1000 Subject: [PATCH] split ftl and po pushing up The po changes are noisy due to line numbers in the comments, so it makes sense to push them only when a gettext string has been changed. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4c1d03087..fdfa2c182 100644 --- a/Makefile +++ b/Makefile @@ -155,8 +155,11 @@ pull-i18n: (cd qt/ftl && scripts/fetch-latest-translations) (cd qt/po && scripts/fetch-latest-translations) -.PHONY: push-i18n -push-i18n: pull-i18n +.PHONY: push-i18n-ftl +push-i18n-ftl: pull-i18n (cd rslib/ftl && scripts/upload-latest-templates) (cd qt/ftl && scripts/upload-latest-templates) + +.PHONY: push-i18n-po +push-i18n-po: pull-i18n (cd qt/po && scripts/upload-latest-template)