diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2022-02-03 16:25:35 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2022-03-16 09:55:53 +0100 |
commit | b9cf3c82a18a4782a3aa543c91392c6483f5d2a4 (patch) | |
tree | c072b9a295e6538b500bd93eed2109247824573a /manage | |
parent | cd92a7eacdd6b4c333e57111e1503b8455628067 (diff) | |
download | searxng-b9cf3c82a18a4782a3aa543c91392c6483f5d2a4.tar.gz searxng-b9cf3c82a18a4782a3aa543c91392c6483f5d2a4.zip |
[mod] add i18n infrastructure for SearXNG message files (searxng.msg)
With this patch ``searxng.msg`` files can be added to SearXNG. In
``searxng.msg`` files messages can be defined which are not captured by babel's
gettext, like the generic names of the categories or messages that are stored in
constants.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'manage')
-rwxr-xr-x | manage | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,7 +30,7 @@ GECKODRIVER_VERSION="v0.30.0" export NODE_MINIMUM_VERSION="16.13.0" # SPHINXOPTS= BLACK_OPTIONS=("--target-version" "py37" "--line-length" "120" "--skip-string-normalization") -BLACK_TARGETS=("--exclude" "searx/static,searx/languages.py" "searx" "searxng_extra" "tests") +BLACK_TARGETS=("--exclude" "searx/static,searx/languages.py" "--include" "searxng.msg" "searx" "searxng_extra" "tests") pylint.FILES() { @@ -41,6 +41,7 @@ pylint.FILES() { # These py files are linted by test.pylint() grep -l -r --include \*.py '^#[[:blank:]]*lint:[[:blank:]]*pylint' searx searxng_extra tests + find . -name searxng.msg } YAMLLINT_FILES=() |