aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <aledeg@users.noreply.github.com> 2020-06-22 13:24:55 +0200
committerGravatar GitHub <noreply@github.com> 2020-06-22 13:24:55 +0200
commitd7d39f07368379e7ef1619e52cc50c0920ce8351 (patch)
treeedd4235ab248d284afdcd826d391647c8d62e3f8 /Makefile
parent051f1649f705dd77febd39c8f4a53c97f4c1115f (diff)
Change how updating a key works (#3072)
Before, to update a key from the reference language (en), the key was deleted then created. This way was unproductive for all keys already translated. Now, the key is updated in all untranslated languages. See https://github.com/FreshRSS/FreshRSS/pull/3068#issuecomment-646868894
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d19d40fa6..f69507270 100644
--- a/Makefile
+++ b/Makefile
@@ -125,8 +125,7 @@ endif
ifndef value
$(error To update a key, you need to provide its value in the "value" variable)
endif
- @$(PHP) ./cli/manipulate.translation.php -a delete -k $(key)
- @$(PHP) ./cli/manipulate.translation.php -a add -k $(key) -v "$(value)"
+ @$(PHP) ./cli/manipulate.translation.php -a add -k $(key) -v "$(value)" -l en
@echo Key updated.
.PHONY: i18n-ignore-key