diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-03-20 08:31:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-20 08:31:07 +0100 |
| commit | 3201aa1b3fe855b6332ccb63644a62ce2d6312b6 (patch) | |
| tree | 839d8d93643883dcc238583a41b4d0be730a7df6 /manage | |
| parent | bc303099397b793bc4441e5b0db84a367ac201d7 (diff) | |
| parent | 9622dbbc6b7a3999fc439ab8b800118498d2c8ba (diff) | |
Merge pull request #859 from return42/fix-814
[mod] add i18n infrastructure for SearXNG message files (searxng.msg)
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=() |