@@ -, +, @@ default to yes - As with the previous patches in the series, except that the translations would be automatically updated upon installing the new package. --- debian/koha-common.postinst | 4 ++-- debian/templates/koha-common.conf | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) --- a/debian/koha-common.postinst +++ a/debian/koha-common.postinst @@ -2,8 +2,8 @@ set -e -# Default to "no" -AUTOMATIC_TRANSLATIONS_UPDATE="no" +# Default to "yes" +AUTOMATIC_TRANSLATIONS_UPDATE="yes" . /usr/share/debconf/confmodule --- a/debian/templates/koha-common.conf +++ a/debian/templates/koha-common.conf @@ -9,9 +9,9 @@ # # This variable controls whether template translations should # be updated automatically on koha-common package upgrades. -# Options: 'yes' -# 'no' (default) +# Options: 'yes' (default) +# 'no' # Note: if you choose 'no' then you will have to issue # $ koha-translate --update # -#AUTOMATIC_TRANSLATIONS_UPDATE="no" +#AUTOMATIC_TRANSLATIONS_UPDATE="yes" --