1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00
This commit is contained in:
Kay0u 2021-11-15 12:25:04 +01:00
parent b6160f06fa
commit 230402a42e
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D
3 changed files with 6 additions and 2 deletions

View file

@ -85,6 +85,8 @@ DATABASES = {
# Change connection timeout in case you get MySQL gone away error: # Change connection timeout in case you get MySQL gone away error:
# "connect_timeout": 28800, # "connect_timeout": 28800,
}, },
# Persistent connections
"CONN_MAX_AGE": 0,
} }
} }
@ -733,6 +735,8 @@ CRISPY_TEMPLATE_PACK = "bootstrap3"
# "weblate.checks.format.I18NextInterpolationCheck", # "weblate.checks.format.I18NextInterpolationCheck",
# "weblate.checks.format.ESTemplateLiteralsCheck", # "weblate.checks.format.ESTemplateLiteralsCheck",
# "weblate.checks.angularjs.AngularJSInterpolationCheck", # "weblate.checks.angularjs.AngularJSInterpolationCheck",
# "weblate.checks.icu.ICUMessageFormatCheck",
# "weblate.checks.icu.ICUSourceCheck",
# "weblate.checks.qt.QtFormatCheck", # "weblate.checks.qt.QtFormatCheck",
# "weblate.checks.qt.QtPluralCheck", # "weblate.checks.qt.QtPluralCheck",
# "weblate.checks.ruby.RubyFormatCheck", # "weblate.checks.ruby.RubyFormatCheck",

View file

@ -6,7 +6,7 @@
"en": "Translation platform using Git and Python", "en": "Translation platform using Git and Python",
"fr": "Plateforme de traduction utilisant Git et Python" "fr": "Plateforme de traduction utilisant Git et Python"
}, },
"version": "4.8~ynh1", "version": "4.9~ynh1",
"url": "https://weblate.org", "url": "https://weblate.org",
"upstream": { "upstream": {
"license": "AGPL-3.0", "license": "AGPL-3.0",

View file

@ -12,7 +12,7 @@ pkg_dependencies="libxml2-dev libxslt-dev libfreetype6-dev libjpeg-dev libz-dev
libpq-dev libglib2.0-dev mailutils python-celery-common hub" libpq-dev libglib2.0-dev mailutils python-celery-common hub"
# Weblate's version for PIP and settings file # Weblate's version for PIP and settings file
weblate_version="4.8" weblate_version="4.9"
debian_maj_version=$(sed 's/\..*//' /etc/debian_version) debian_maj_version=$(sed 's/\..*//' /etc/debian_version)