mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
Merge branch 'searxng:master' into master
This commit is contained in:
commit
0c5266e2d4
195 changed files with 17329 additions and 7107 deletions
4
.devcontainer/Dockerfile
Normal file
4
.devcontainer/Dockerfile
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
FROM mcr.microsoft.com/devcontainers/base:debian
|
||||||
|
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get -y install python3 python3-venv redis firefox-esr graphviz imagemagick librsvg2-bin fonts-dejavu shellcheck
|
||||||
31
.devcontainer/devcontainer.json
Normal file
31
.devcontainer/devcontainer.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"build": {
|
||||||
|
"dockerfile": "Dockerfile"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/github-cli": {}
|
||||||
|
},
|
||||||
|
"customizations": {
|
||||||
|
"vscode": {
|
||||||
|
"extensions": [
|
||||||
|
"ms-python.python",
|
||||||
|
"ms-azuretools.vscode-docker"
|
||||||
|
],
|
||||||
|
"remote.otherPortsAttributes": {
|
||||||
|
"protocol": "https"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"files.autoSave": "off",
|
||||||
|
"python.defaultInterpreterPath": "/workspaces/searxng/local/py3/bin/python3",
|
||||||
|
"python.formatting.blackPath": "/workspaces/searxng/local/py3/bin/black",
|
||||||
|
"python.linting.pylintPath": "/workspaces/searxng/local/py3/bin/pylint"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"forwardPorts": [8000, 8888],
|
||||||
|
"portsAttributes": {
|
||||||
|
"8000": {"label": "Sphinx documentation"},
|
||||||
|
"8888": {"label": "SearXNG"}
|
||||||
|
},
|
||||||
|
"postCreateCommand": "git pull && make install"
|
||||||
|
}
|
||||||
|
|
@ -3,18 +3,23 @@
|
||||||
;; Per-Directory Local Variables:
|
;; Per-Directory Local Variables:
|
||||||
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html
|
;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.html
|
||||||
;;
|
;;
|
||||||
;; .. hint::
|
;; For full fledge developer tools install emacs packages:
|
||||||
;;
|
;;
|
||||||
;; If you get ``*** EPC Error ***`` (even after a jedi:install-server) in
|
;; M-x package-install ...
|
||||||
;; your emacs session, mostly you have jedi-mode enabled but the python
|
|
||||||
;; environment is missed. The python environment has to be next to the
|
|
||||||
;; ``<repo>/.dir-locals.el`` in::
|
|
||||||
;;
|
;;
|
||||||
;; ./local/py3
|
;; magit gitconfig
|
||||||
|
;; nvm lsp-mode lsp-pyright lsp-eslint
|
||||||
|
;; pyvenv pylint pip-requirements
|
||||||
|
;; jinja2-mode
|
||||||
|
;; json-mode
|
||||||
|
;; company company-jedi company-quickhelp company-shell
|
||||||
|
;; realgud
|
||||||
|
;; sphinx-doc markdown-mode graphviz-dot-mode
|
||||||
|
;; apache-mode nginx-mode
|
||||||
;;
|
;;
|
||||||
;; To setup such an environment, build target::
|
;; To setup a developer environment, build target::
|
||||||
;;
|
;;
|
||||||
;; $ make pyenv.install
|
;; $ make node.env.dev pyenv.install
|
||||||
;;
|
;;
|
||||||
;; Some buffer locals are referencing the project environment:
|
;; Some buffer locals are referencing the project environment:
|
||||||
;;
|
;;
|
||||||
|
|
@ -29,26 +34,11 @@
|
||||||
;; (setq python-shell-virtualenv-root "/path/to/env/")
|
;; (setq python-shell-virtualenv-root "/path/to/env/")
|
||||||
;; - python-shell-interpreter --> <repo>/local/py3/bin/python
|
;; - python-shell-interpreter --> <repo>/local/py3/bin/python
|
||||||
;;
|
;;
|
||||||
|
;; Python development:
|
||||||
|
;;
|
||||||
;; Jedi, flycheck & other python stuff should use the 'python-shell-interpreter'
|
;; Jedi, flycheck & other python stuff should use the 'python-shell-interpreter'
|
||||||
;; from the local py3 environment.
|
;; from the local py3 environment.
|
||||||
;;
|
;;
|
||||||
;; For pyright support you need to install::
|
|
||||||
;;
|
|
||||||
;; M-x package-install lsp-pyright
|
|
||||||
;;
|
|
||||||
;; Other useful jedi stuff you might add to your ~/.emacs::
|
|
||||||
;;
|
|
||||||
;; (global-set-key [f6] 'flycheck-mode)
|
|
||||||
;; (add-hook 'python-mode-hook 'my:python-mode-hook)
|
|
||||||
;;
|
|
||||||
;; (defun my:python-mode-hook ()
|
|
||||||
;; (add-to-list 'company-backends 'company-jedi)
|
|
||||||
;; (require 'jedi-core)
|
|
||||||
;; (jedi:setup)
|
|
||||||
;; (define-key python-mode-map (kbd "C-c C-d") 'jedi:show-doc)
|
|
||||||
;; (define-key python-mode-map (kbd "M-.") 'jedi:goto-definition)
|
|
||||||
;; (define-key python-mode-map (kbd "M-,") 'jedi:goto-definition-pop-marker)
|
|
||||||
;; )
|
|
||||||
|
|
||||||
((nil
|
((nil
|
||||||
. ((fill-column . 80)
|
. ((fill-column . 80)
|
||||||
|
|
@ -67,6 +57,12 @@
|
||||||
;; to get in use of NVM environment, install https://github.com/rejeep/nvm.el
|
;; to get in use of NVM environment, install https://github.com/rejeep/nvm.el
|
||||||
(setq-local nvm-dir (expand-file-name "./.nvm" prj-root))
|
(setq-local nvm-dir (expand-file-name "./.nvm" prj-root))
|
||||||
|
|
||||||
|
;; use nodejs from the (local) NVM environment (see nvm-dir)
|
||||||
|
(nvm-use-for-buffer)
|
||||||
|
(ignore-errors (require 'lsp))
|
||||||
|
(setq-local lsp-server-install-dir (car (cdr nvm-current-version)))
|
||||||
|
(setq-local lsp-enable-file-watchers nil)
|
||||||
|
|
||||||
;; use 'py3' environment as default
|
;; use 'py3' environment as default
|
||||||
(setq-local python-environment-default-root-name
|
(setq-local python-environment-default-root-name
|
||||||
"py3")
|
"py3")
|
||||||
|
|
@ -100,22 +96,22 @@
|
||||||
|
|
||||||
(js-mode
|
(js-mode
|
||||||
. ((eval . (progn
|
. ((eval . (progn
|
||||||
;; use nodejs from the (local) NVM environment (see nvm-dir)
|
(ignore-errors (require 'lsp-eslint))
|
||||||
(nvm-use-for-buffer)
|
|
||||||
(setq-local js-indent-level 2)
|
(setq-local js-indent-level 2)
|
||||||
;; flycheck should use the eslint checker from developer tools
|
;; flycheck should use the eslint checker from developer tools
|
||||||
(setq-local flycheck-javascript-eslint-executable
|
(setq-local flycheck-javascript-eslint-executable
|
||||||
(expand-file-name "node_modules/.bin/eslint" prj-root))
|
(expand-file-name "node_modules/.bin/eslint" prj-root))
|
||||||
|
;; (flycheck-mode)
|
||||||
|
|
||||||
(flycheck-mode)
|
(if (featurep 'lsp-eslint)
|
||||||
|
(lsp))
|
||||||
))))
|
))))
|
||||||
|
|
||||||
(python-mode
|
(python-mode
|
||||||
. ((eval . (progn
|
. ((eval . (progn
|
||||||
;; use nodejs from the (local) NVM environment (see nvm-dir)
|
(ignore-errors (require 'jedi-core))
|
||||||
(nvm-use-for-buffer)
|
(ignore-errors (require 'lsp-pyright))
|
||||||
(if (featurep 'lsp-pyright)
|
(ignore-errors (sphinx-doc-mode))
|
||||||
(lsp))
|
|
||||||
(setq-local python-environment-virtualenv
|
(setq-local python-environment-virtualenv
|
||||||
(list (expand-file-name "bin/virtualenv" python-shell-virtualenv-root)
|
(list (expand-file-name "bin/virtualenv" python-shell-virtualenv-root)
|
||||||
;;"--system-site-packages"
|
;;"--system-site-packages"
|
||||||
|
|
@ -124,6 +120,9 @@
|
||||||
(setq-local pylint-command
|
(setq-local pylint-command
|
||||||
(expand-file-name "bin/pylint" python-shell-virtualenv-root))
|
(expand-file-name "bin/pylint" python-shell-virtualenv-root))
|
||||||
|
|
||||||
|
(if (featurep 'lsp-pyright)
|
||||||
|
(lsp))
|
||||||
|
|
||||||
;; pylint will find the '.pylintrc' file next to the CWD
|
;; pylint will find the '.pylintrc' file next to the CWD
|
||||||
;; https://pylint.readthedocs.io/en/latest/user_guide/run.html#command-line-options
|
;; https://pylint.readthedocs.io/en/latest/user_guide/run.html#command-line-options
|
||||||
(setq-local flycheck-pylintrc
|
(setq-local flycheck-pylintrc
|
||||||
|
|
|
||||||
40
.editorconfig
Normal file
40
.editorconfig
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
# https://editorconfig.org/
|
||||||
|
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
|
||||||
|
[*.py]
|
||||||
|
max_line_length = 119
|
||||||
|
|
||||||
|
[*.html]
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
[*.json]
|
||||||
|
indent_size = 4
|
||||||
|
insert_final_newline = ignore
|
||||||
|
|
||||||
|
# Minified JavaScript files shouldn't be changed
|
||||||
|
[**.min.js]
|
||||||
|
indent_style = ignore
|
||||||
|
insert_final_newline = ignore
|
||||||
|
|
||||||
|
# Makefiles always use tabs for indentation
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
||||||
|
|
||||||
|
# Batch files use tabs for indentation
|
||||||
|
[*.bat]
|
||||||
|
indent_style = tab
|
||||||
|
|
||||||
|
[docs/**.rst]
|
||||||
|
max_line_length = 79
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
|
indent_size = 2
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -21,3 +21,5 @@ gh-pages/
|
||||||
/node_modules/
|
/node_modules/
|
||||||
|
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
|
searx/version_frozen.py
|
||||||
|
|
|
||||||
|
|
@ -404,4 +404,4 @@ known-third-party=enchant
|
||||||
|
|
||||||
# Exceptions that will emit a warning when being caught. Defaults to
|
# Exceptions that will emit a warning when being caught. Defaults to
|
||||||
# "Exception"
|
# "Exception"
|
||||||
overgeneral-exceptions=Exception
|
overgeneral-exceptions=builtins.Exception
|
||||||
|
|
|
||||||
23
.vscode/launch.json
vendored
Normal file
23
.vscode/launch.json
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "SearXNG",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "searx.webapp",
|
||||||
|
"env": {
|
||||||
|
"FLASK_APP": "webapp",
|
||||||
|
"FLASK_DEBUG": "1",
|
||||||
|
"SEARXNG_DEBUG": "1",
|
||||||
|
},
|
||||||
|
"args": [
|
||||||
|
"run"
|
||||||
|
],
|
||||||
|
"jinja": true,
|
||||||
|
"justMyCode": true,
|
||||||
|
"python": "${workspaceFolder}/local/py3/bin/python",
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
11
.vscode/settings.json
vendored
Normal file
11
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"python.testing.unittestArgs": [
|
||||||
|
"-v",
|
||||||
|
"-s",
|
||||||
|
"./tests",
|
||||||
|
"-p",
|
||||||
|
"test_*.py"
|
||||||
|
],
|
||||||
|
"python.testing.pytestEnabled": false,
|
||||||
|
"python.testing.unittestEnabled": true,
|
||||||
|
}
|
||||||
36
.vscode/tasks.json
vendored
Normal file
36
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "make run",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make run",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"isBackground": true,
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "dedicated"
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "make docs.live",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "make docs.live",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"isBackground": true,
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "always",
|
||||||
|
"panel": "dedicated"
|
||||||
|
},
|
||||||
|
"group": {
|
||||||
|
"kind": "build"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
2
.weblate
2
.weblate
|
|
@ -1,3 +1,3 @@
|
||||||
[weblate]
|
[weblate]
|
||||||
url = https://weblate.bubu1.eu/api/
|
url = https://translate.codeberg.org/api/
|
||||||
translation = searxng/searxng
|
translation = searxng/searxng
|
||||||
|
|
|
||||||
|
|
@ -167,3 +167,5 @@ features or generally made searx better:
|
||||||
- @XavierHorwood
|
- @XavierHorwood
|
||||||
- Ahmad Alkadri `<https://github.com/ahmad-alkadri>`_
|
- Ahmad Alkadri `<https://github.com/ahmad-alkadri>`_
|
||||||
- Milad Laly @Milad-Laly
|
- Milad Laly @Milad-Laly
|
||||||
|
- @llmII
|
||||||
|
- @blob42 `<https://blob42.xyz>`_
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,7 @@ RUN su searxng -c "/usr/bin/python3 -m compileall -q searx" \
|
||||||
ARG LABEL_DATE=
|
ARG LABEL_DATE=
|
||||||
ARG GIT_URL=unknown
|
ARG GIT_URL=unknown
|
||||||
ARG SEARXNG_GIT_VERSION=unknown
|
ARG SEARXNG_GIT_VERSION=unknown
|
||||||
|
ARG SEARXNG_DOCKER_TAG=unknown
|
||||||
ARG LABEL_VCS_REF=
|
ARG LABEL_VCS_REF=
|
||||||
ARG LABEL_VCS_URL=
|
ARG LABEL_VCS_URL=
|
||||||
LABEL maintainer="searxng <${GIT_URL}>" \
|
LABEL maintainer="searxng <${GIT_URL}>" \
|
||||||
|
|
@ -79,7 +80,7 @@ LABEL maintainer="searxng <${GIT_URL}>" \
|
||||||
org.label-schema.build-date="${LABEL_DATE}" \
|
org.label-schema.build-date="${LABEL_DATE}" \
|
||||||
org.label-schema.usage="https://github.com/searxng/searxng-docker" \
|
org.label-schema.usage="https://github.com/searxng/searxng-docker" \
|
||||||
org.opencontainers.image.title="searxng" \
|
org.opencontainers.image.title="searxng" \
|
||||||
org.opencontainers.image.version="${SEARXNG_GIT_VERSION}" \
|
org.opencontainers.image.version="${SEARXNG_DOCKER_TAG}" \
|
||||||
org.opencontainers.image.url="${LABEL_VCS_URL}" \
|
org.opencontainers.image.url="${LABEL_VCS_URL}" \
|
||||||
org.opencontainers.image.revision=${LABEL_VCS_REF} \
|
org.opencontainers.image.revision=${LABEL_VCS_REF} \
|
||||||
org.opencontainers.image.source=${LABEL_VCS_URL} \
|
org.opencontainers.image.source=${LABEL_VCS_URL} \
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -80,7 +80,7 @@ MANAGE += data.all data.languages data.useragents data.osm_keys_tags
|
||||||
MANAGE += docs.html docs.live docs.gh-pages docs.prebuild docs.clean
|
MANAGE += docs.html docs.live docs.gh-pages docs.prebuild docs.clean
|
||||||
MANAGE += docker.build docker.push docker.buildx
|
MANAGE += docker.build docker.push docker.buildx
|
||||||
MANAGE += gecko.driver
|
MANAGE += gecko.driver
|
||||||
MANAGE += node.env node.clean
|
MANAGE += node.env node.env.dev node.clean
|
||||||
MANAGE += py.build py.clean
|
MANAGE += py.build py.clean
|
||||||
MANAGE += pyenv pyenv.install pyenv.uninstall
|
MANAGE += pyenv pyenv.install pyenv.uninstall
|
||||||
MANAGE += pypi.upload pypi.upload.test
|
MANAGE += pypi.upload pypi.upload.test
|
||||||
|
|
|
||||||
106
README.rst
106
README.rst
|
|
@ -12,9 +12,9 @@
|
||||||
|
|
||||||
Privacy-respecting, hackable `metasearch engine`_
|
Privacy-respecting, hackable `metasearch engine`_
|
||||||
|
|
||||||
If you are looking for running instances, ready to use, then visit searx.space_.
|
Searx.space_ lists ready-to-use running instances.
|
||||||
Otherwise jump to the user_, admin_ and developer_ handbooks you will find on
|
|
||||||
our homepage_.
|
A user_, admin_ and developer_ handbook is available on the homepage_.
|
||||||
|
|
||||||
|SearXNG install|
|
|SearXNG install|
|
||||||
|SearXNG homepage|
|
|SearXNG homepage|
|
||||||
|
|
@ -59,27 +59,26 @@ our homepage_.
|
||||||
.. |commits| image:: https://img.shields.io/github/commit-activity/y/searxng/searxng?color=yellow&label=commits
|
.. |commits| image:: https://img.shields.io/github/commit-activity/y/searxng/searxng?color=yellow&label=commits
|
||||||
:target: https://github.com/searxng/searxng/commits/master
|
:target: https://github.com/searxng/searxng/commits/master
|
||||||
|
|
||||||
.. |weblate| image:: https://weblate.bubu1.eu/widgets/searxng/-/searxng/svg-badge.svg
|
.. |weblate| image:: https://translate.codeberg.org/widgets/searxng/-/searxng/svg-badge.svg
|
||||||
:target: https://weblate.bubu1.eu/projects/searxng/
|
:target: https://translate.codeberg.org/projects/searxng/
|
||||||
|
|
||||||
|
|
||||||
Contact
|
Contact
|
||||||
=======
|
=======
|
||||||
|
|
||||||
Come join us if you have questions or just want to chat about SearXNG.
|
Ask questions or just chat about SearXNG on
|
||||||
|
|
||||||
Matrix
|
|
||||||
`#searxng:matrix.org <https://matrix.to/#/#searxng:matrix.org>`_
|
|
||||||
|
|
||||||
IRC
|
IRC
|
||||||
`#searxng on libera.chat <https://web.libera.chat/?channel=#searxng>`_
|
`#searxng on libera.chat <https://web.libera.chat/?channel=#searxng>`_
|
||||||
which is bridged to Matrix.
|
which is bridged to Matrix.
|
||||||
|
|
||||||
|
Matrix
|
||||||
|
`#searxng:matrix.org <https://matrix.to/#/#searxng:matrix.org>`_
|
||||||
|
|
||||||
Differences to searx
|
Differences to searx
|
||||||
====================
|
====================
|
||||||
|
|
||||||
SearXNG is a fork of `searx`_. Here are some of the changes:
|
SearXNG is a fork of `searx`_, with notable changes:
|
||||||
|
|
||||||
.. _searx: https://github.com/searx/searx
|
.. _searx: https://github.com/searx/searx
|
||||||
|
|
||||||
|
|
@ -87,69 +86,88 @@ SearXNG is a fork of `searx`_. Here are some of the changes:
|
||||||
User experience
|
User experience
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
- Huge update of the simple theme:
|
- Reworked (and still simple) theme:
|
||||||
|
|
||||||
* usable on desktop, tablet and mobile
|
* Usable on desktop, tablet and mobile.
|
||||||
* light and dark versions (you can choose in the preferences)
|
* Light and dark versions (available in the preferences).
|
||||||
* support right-to-left languages
|
* Right-to-left language support.
|
||||||
* `see the screenshots <https://dev.searxng.org/screenshots.html>`_
|
* `Screenshots <https://dev.searxng.org/screenshots.html>`_
|
||||||
|
|
||||||
- the translations are up to date, you can contribute on `Weblate`_
|
- The translations are up to date, you can contribute on `Weblate`_
|
||||||
- the preferences page has been updated:
|
- The preferences page has been updated:
|
||||||
|
|
||||||
* you can see which engines are reliable or not
|
* Browse which engines are reliable or not.
|
||||||
* engines are grouped inside each tab
|
* Engines are grouped inside each tab.
|
||||||
* each engine has a description
|
* Each engine has a description.
|
||||||
|
|
||||||
- thanks to the anonymous metrics, it is easier to report a bug of an engine and
|
- Thanks to the anonymous metrics, it is easier to report malfunctioning engines,
|
||||||
thus engines get fixed more quickly
|
so they get fixed quicker
|
||||||
|
|
||||||
- if you don't want any metrics to be recorded, you can `disable them on the server
|
- `Turn off metrics on the server
|
||||||
<https://docs.searxng.org/admin/engines/settings.html#general>`_
|
<https://docs.searxng.org/admin/engines/settings.html#general>`_ if you don't want them recorded.
|
||||||
|
|
||||||
- administrator can `block and/or replace the URLs in the search results
|
- Administrators can `block and/or replace the URLs in the search results
|
||||||
<https://github.com/searxng/searxng/blob/5c1c0817c3996c5670a545d05831d234d21e6217/searx/settings.yml#L191-L199>`_
|
<https://github.com/searxng/searxng/blob/5c1c0817c3996c5670a545d05831d234d21e6217/searx/settings.yml#L191-L199>`_
|
||||||
|
|
||||||
|
|
||||||
Setup
|
Setup
|
||||||
-----
|
-----
|
||||||
|
|
||||||
- you don't need `Morty`_ to proxy the images even on a public instance
|
- No need for `Morty`_ to proxy images, even on a public instance.
|
||||||
- you don't need `Filtron`_ to block bots, we implemented the builtin `limiter`_
|
- No need for `Filtron`_ to block bots, as there is now a built-in `limiter`_.
|
||||||
- you get a well maintained `Docker image`_, now also built for ARM64 and ARM/v7 architectures
|
- A well maintained `Docker image`_, now also built for ARM64 and ARM/v7 architectures.
|
||||||
- alternatively we have up to date installation scripts
|
(Alternatively there are up to date installation scripts.)
|
||||||
|
|
||||||
.. _Docker image: https://github.com/searxng/searxng-docker
|
.. _Docker image: https://github.com/searxng/searxng-docker
|
||||||
|
|
||||||
|
|
||||||
Contributing is easier
|
Contributing
|
||||||
----------------------
|
------------
|
||||||
|
|
||||||
- readable debug log
|
- Readable debug log.
|
||||||
- contributions to the themes are made easier, check out our `Development
|
- Contributing is easier, thanks to the `Development Quickstart`_ guide.
|
||||||
Quickstart`_ guide
|
- A lot of code cleanup and bugfixes.
|
||||||
- a lot of code cleanup and bug fixes
|
- Up to date list dependencies.
|
||||||
- the dependencies are up to date
|
|
||||||
|
|
||||||
.. _Morty: https://github.com/asciimoo/morty
|
.. _Morty: https://github.com/asciimoo/morty
|
||||||
.. _Filtron: https://github.com/searxng/filtron
|
.. _Filtron: https://github.com/searxng/filtron
|
||||||
.. _limiter: https://docs.searxng.org/src/searx.plugins.limiter.html
|
.. _limiter: https://docs.searxng.org/src/searx.plugins.limiter.html
|
||||||
.. _Weblate: https://weblate.bubu1.eu/projects/searxng/searxng/
|
.. _Weblate: https://translate.codeberg.org/projects/searxng/searxng/
|
||||||
.. _Development Quickstart: https://docs.searxng.org/dev/quickstart.html
|
.. _Development Quickstart: https://docs.searxng.org/dev/quickstart.html
|
||||||
|
|
||||||
|
|
||||||
Translations
|
Translations
|
||||||
============
|
============
|
||||||
|
|
||||||
We need translators, suggestions are welcome at
|
Help translate SearXNG at `Weblate`_
|
||||||
https://weblate.bubu1.eu/projects/searxng/searxng/
|
|
||||||
|
|
||||||
.. figure:: https://weblate.bubu1.eu/widgets/searxng/-/multi-auto.svg
|
.. figure:: https://translate.codeberg.org/widgets/searxng/-/multi-auto.svg
|
||||||
:target: https://weblate.bubu1.eu/projects/searxng/
|
:target: https://translate.codeberg.org/projects/searxng/
|
||||||
|
|
||||||
|
|
||||||
Make a donation
|
Codespaces
|
||||||
===============
|
==========
|
||||||
|
|
||||||
You can support the SearXNG project by clicking on the donation page:
|
You can contribute from your browser using `GitHub Codespaces`_:
|
||||||
|
|
||||||
|
- Fork the repository
|
||||||
|
- Click on the ``<> Code`` green button
|
||||||
|
- Click on the ``Codespaces`` tab instead of ``Local``
|
||||||
|
- Click on ``Create codespace on master``
|
||||||
|
- VSCode is going to start in the browser
|
||||||
|
- Wait for ``git pull && make install`` to appears and then to disapear
|
||||||
|
- You have `120 hours per month`_ (see also your `list of existing Codespaces`_)
|
||||||
|
- You can start SearXNG using ``make run`` in the terminal or by pressing ``Ctrl+Shift+B``.
|
||||||
|
|
||||||
|
.. _GitHub Codespaces: https://docs.github.com/en/codespaces/overview
|
||||||
|
.. _120 hours per month: https://github.com/settings/billing
|
||||||
|
.. _list of existing Codespaces: https://github.com/codespaces
|
||||||
|
|
||||||
|
|
||||||
|
Donations
|
||||||
|
=========
|
||||||
|
|
||||||
|
Support the SearXNG project by clicking the donation page:
|
||||||
https://docs.searxng.org/donate.html
|
https://docs.searxng.org/donate.html
|
||||||
|
|
||||||
|
Thank you :)
|
||||||
|
|
|
||||||
|
|
@ -110,6 +110,13 @@ Global Settings
|
||||||
default_lang: ""
|
default_lang: ""
|
||||||
ban_time_on_fail: 5
|
ban_time_on_fail: 5
|
||||||
max_ban_time_on_fail: 120
|
max_ban_time_on_fail: 120
|
||||||
|
suspended_times:
|
||||||
|
SearxEngineAccessDenied: 86400
|
||||||
|
SearxEngineCaptcha: 86400
|
||||||
|
SearxEngineTooManyRequests: 3600
|
||||||
|
cf_SearxEngineCaptcha: 1296000
|
||||||
|
cf_SearxEngineAccessDenied: 86400
|
||||||
|
recaptcha_SearxEngineCaptcha: 604800
|
||||||
formats:
|
formats:
|
||||||
- html
|
- html
|
||||||
|
|
||||||
|
|
@ -159,6 +166,25 @@ Global Settings
|
||||||
``max_ban_time_on_fail``:
|
``max_ban_time_on_fail``:
|
||||||
Max ban time in seconds after engine errors.
|
Max ban time in seconds after engine errors.
|
||||||
|
|
||||||
|
``suspended_times``:
|
||||||
|
Engine suspension time after error (in seconds; set to 0 to disable)
|
||||||
|
|
||||||
|
``SearxEngineAccessDenied``: 86400
|
||||||
|
For error "Access denied" and "HTTP error [402, 403]"
|
||||||
|
|
||||||
|
``SearxEngineCaptcha``: 86400
|
||||||
|
For error "CAPTCHA"
|
||||||
|
|
||||||
|
``SearxEngineTooManyRequests``: 3600
|
||||||
|
For error "Too many request" and "HTTP error 429"
|
||||||
|
|
||||||
|
Cloudflare CAPTCHA:
|
||||||
|
- ``cf_SearxEngineCaptcha``: 1296000
|
||||||
|
- ``cf_SearxEngineAccessDenied``: 86400
|
||||||
|
|
||||||
|
Google CAPTCHA:
|
||||||
|
- ``recaptcha_SearxEngineCaptcha``: 604800
|
||||||
|
|
||||||
``formats``:
|
``formats``:
|
||||||
Result formats available from web, remove format to deny access (use lower
|
Result formats available from web, remove format to deny access (use lower
|
||||||
case).
|
case).
|
||||||
|
|
@ -168,6 +194,7 @@ Global Settings
|
||||||
- ``json``
|
- ``json``
|
||||||
- ``rss``
|
- ``rss``
|
||||||
|
|
||||||
|
|
||||||
.. _settings server:
|
.. _settings server:
|
||||||
|
|
||||||
``server:``
|
``server:``
|
||||||
|
|
@ -176,12 +203,12 @@ Global Settings
|
||||||
.. code:: yaml
|
.. code:: yaml
|
||||||
|
|
||||||
server:
|
server:
|
||||||
base_url: false # set custom base_url (or false)
|
base_url: http://example.org/location # change this!
|
||||||
port: 8888
|
port: 8888
|
||||||
bind_address: "127.0.0.1" # address to listen on
|
bind_address: "127.0.0.1"
|
||||||
secret_key: "ultrasecretkey" # change this!
|
secret_key: "ultrasecretkey" # change this!
|
||||||
limiter: false
|
limiter: false
|
||||||
image_proxy: false # proxying image results through SearXNG
|
image_proxy: false
|
||||||
default_http_headers:
|
default_http_headers:
|
||||||
X-Content-Type-Options : nosniff
|
X-Content-Type-Options : nosniff
|
||||||
X-XSS-Protection : 1; mode=block
|
X-XSS-Protection : 1; mode=block
|
||||||
|
|
@ -189,20 +216,18 @@ Global Settings
|
||||||
X-Robots-Tag : noindex, nofollow
|
X-Robots-Tag : noindex, nofollow
|
||||||
Referrer-Policy : no-referrer
|
Referrer-Policy : no-referrer
|
||||||
|
|
||||||
.. sidebar:: buildenv
|
|
||||||
|
|
||||||
Changing a value tagged by :ref:`buildenv <make buildenv>`, needs to
|
``base_url`` : ``$SEARXNG_URL`` :ref:`buildenv <make buildenv>`
|
||||||
rebuild instance's environment :ref:`utils/brand.env <make buildenv>`.
|
|
||||||
|
|
||||||
``base_url`` : :ref:`buildenv SEARXNG_URL <make buildenv>`
|
|
||||||
The base URL where SearXNG is deployed. Used to create correct inbound links.
|
The base URL where SearXNG is deployed. Used to create correct inbound links.
|
||||||
If you change the value, don't forget to rebuild instance's environment
|
If you change the value, don't forget to rebuild instance's environment
|
||||||
(:ref:`utils/brand.env <make buildenv>`)
|
(:ref:`utils/brand.env <make buildenv>`)
|
||||||
|
|
||||||
``port`` & ``bind_address``: :ref:`buildenv SEARXNG_PORT & SEARXNG_BIND_ADDRESS <make buildenv>`
|
``port`` & ``bind_address``: ``$SEARXNG_PORT`` & ``$SEARXNG_BIND_ADDRESS`` :ref:`buildenv <make buildenv>`
|
||||||
Port number and *bind address* of the SearXNG web application if you run it
|
Port number and *bind address* of the SearXNG web application if you run it
|
||||||
directly using ``python searx/webapp.py``. Doesn't apply to SearXNG running on
|
directly using ``python searx/webapp.py``. Doesn't apply to a SearXNG
|
||||||
Apache or Nginx.
|
services running behind a proxy and using socket communications. If you
|
||||||
|
change the value, don't forget to rebuild instance's environment
|
||||||
|
(:ref:`utils/brand.env <make buildenv>`)
|
||||||
|
|
||||||
``secret_key`` : ``$SEARXNG_SECRET``
|
``secret_key`` : ``$SEARXNG_SECRET``
|
||||||
Used for cryptography purpose.
|
Used for cryptography purpose.
|
||||||
|
|
@ -630,8 +655,9 @@ and can relied on the default configuration :origin:`searx/settings.yml` using:
|
||||||
``engines:``
|
``engines:``
|
||||||
With ``use_default_settings: true``, each settings can be override in a
|
With ``use_default_settings: true``, each settings can be override in a
|
||||||
similar way, the ``engines`` section is merged according to the engine
|
similar way, the ``engines`` section is merged according to the engine
|
||||||
``name``. In this example, SearXNG will load all the engine and the arch linux
|
``name``. In this example, SearXNG will load all the default engines, will
|
||||||
wiki engine has a :ref:`token <private engines>`:
|
enable the ``bing`` engine and define a :ref:`token <private engines>` for
|
||||||
|
the arch linux engine:
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
|
@ -641,6 +667,9 @@ and can relied on the default configuration :origin:`searx/settings.yml` using:
|
||||||
engines:
|
engines:
|
||||||
- name: arch linux wiki
|
- name: arch linux wiki
|
||||||
tokens: ['$ecretValue']
|
tokens: ['$ecretValue']
|
||||||
|
- name: bing
|
||||||
|
disabled: false
|
||||||
|
|
||||||
|
|
||||||
``engines:`` / ``remove:``
|
``engines:`` / ``remove:``
|
||||||
It is possible to remove some engines from the default settings. The following
|
It is possible to remove some engines from the default settings. The following
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
.. _searxng maintenance:
|
||||||
|
|
||||||
===================
|
===================
|
||||||
SearXNG maintenance
|
SearXNG maintenance
|
||||||
===================
|
===================
|
||||||
|
|
|
||||||
|
|
@ -90,15 +90,23 @@ Rebuild instance's environment with the modified settings from the
|
||||||
:ref:`settings brand` and :ref:`settings server` section of your
|
:ref:`settings brand` and :ref:`settings server` section of your
|
||||||
:ref:`settings.yml <settings location>`.
|
:ref:`settings.yml <settings location>`.
|
||||||
|
|
||||||
We have all SearXNG setups are centralized in the :ref:`settings.yml` file.
|
What is the :origin:`utils/brand.env` needed for and why do you need to rebuild
|
||||||
This setup is available as long we are in a *installed instance*. E.g. the
|
it if necessary?
|
||||||
*installed instance* on the server or the *installed developer instance* at
|
|
||||||
``./local`` (the later one is created by a :ref:`make install <make
|
|
||||||
install>` or :ref:`make run <make run>`).
|
|
||||||
|
|
||||||
Tasks running outside of an *installed instance*, especially those tasks and
|
Short answer: :ref:`installation and maintenance <searxng maintenance>`
|
||||||
scripts running at (pre-) installation time do not have access to the SearXNG
|
scripts are running outside of instance's runtime environment and need some
|
||||||
setup (from a *installed instance*). Those tasks need a *build environment*.
|
values defined in the runtime environment.
|
||||||
|
|
||||||
|
All the SearXNG setups are centralized in the :ref:`settings.yml` file. This
|
||||||
|
setup is available as long we are in a *installed instance*. E.g. the
|
||||||
|
*installed instance* on the server or the *installed developer instance* at
|
||||||
|
``./local`` (the later one is created by a :ref:`make install <make install>` or
|
||||||
|
:ref:`make run <make run>`).
|
||||||
|
|
||||||
|
Tasks running outside of an *installed instance*, especially :ref:`installation
|
||||||
|
and maintenance <searxng maintenance>` tasks running at (pre-) installation time
|
||||||
|
do not have access to the SearXNG setup (from a *installed instance*). Those
|
||||||
|
tasks need a *build environment*.
|
||||||
|
|
||||||
The ``make buildenv`` target will update the *build environment* in:
|
The ``make buildenv`` target will update the *build environment* in:
|
||||||
|
|
||||||
|
|
@ -112,6 +120,28 @@ from the YAML configuration:
|
||||||
- ``SEARXNG_BIND_ADDRESS`` from :ref:`server.bind_address <settings server>`
|
- ``SEARXNG_BIND_ADDRESS`` from :ref:`server.bind_address <settings server>`
|
||||||
- ``SEARXNG_PORT`` from :ref:`server.port <settings server>`
|
- ``SEARXNG_PORT`` from :ref:`server.port <settings server>`
|
||||||
|
|
||||||
|
The ``GIT_URL`` and ``GIT_BRANCH`` in the origin:`utils/brand.env` file, are
|
||||||
|
readed from the git VCS and the branch that is checked out when ``make
|
||||||
|
buildenv`` command runs.
|
||||||
|
|
||||||
|
.. _brand:
|
||||||
|
|
||||||
|
**I would like to create my own brand, how should I proceed?**
|
||||||
|
|
||||||
|
Create a remote branch (``example.org``), checkout the remote branch (on your
|
||||||
|
local developer desktop) and in the :origin:`searx/settings.yml` file in the
|
||||||
|
:ref:`settings server` section set ``base_url``. Run ``make buildenv`` and
|
||||||
|
create a commit for your brand.
|
||||||
|
|
||||||
|
On your server you clone the branch (``example.org``) into your HOME folder
|
||||||
|
``~`` from where you run the :ref:`installation <installation>` and
|
||||||
|
:ref:`maintenance <searxng maintenance>` task.
|
||||||
|
|
||||||
|
To upgrade you brand, rebase on SearXNG's master branch (on your local
|
||||||
|
developer desktop), force push it to your remote branch. Go to your server, do
|
||||||
|
a force pull and run :ref:`sudo -H ./utils/searxng.sh instance update <update
|
||||||
|
searxng>`.
|
||||||
|
|
||||||
.. _make node.env:
|
.. _make node.env:
|
||||||
|
|
||||||
Node.js environment (``make node.env``)
|
Node.js environment (``make node.env``)
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,15 @@
|
||||||
Translation
|
Translation
|
||||||
===========
|
===========
|
||||||
|
|
||||||
.. _weblate.bubu1.eu: https://weblate.bubu1.eu/projects/searxng/
|
.. _translate.codeberg.org: https://translate.codeberg.org/projects/searxng/
|
||||||
.. _Weblate: https://docs.weblate.org
|
.. _Weblate: https://docs.weblate.org
|
||||||
.. _translations branch: https://github.com/searxng/searxng/tree/translations
|
.. _translations branch: https://github.com/searxng/searxng/tree/translations
|
||||||
.. _orphan branch: https://git-scm.com/docs/git-checkout#Documentation/git-checkout.txt---orphanltnewbranchgt
|
.. _orphan branch: https://git-scm.com/docs/git-checkout#Documentation/git-checkout.txt---orphanltnewbranchgt
|
||||||
.. _Weblate repository: https://weblate.bubu1.eu/projects/searxng/searxng/#repository
|
.. _Weblate repository: https://translate.codeberg.org/projects/searxng/searxng/#repository
|
||||||
.. _wlc: https://docs.weblate.org/en/latest/wlc.html
|
.. _wlc: https://docs.weblate.org/en/latest/wlc.html
|
||||||
|
|
||||||
.. |translated| image:: https://weblate.bubu1.eu/widgets/searxng/-/searxng/svg-badge.svg
|
.. |translated| image:: https://translate.codeberg.org/widgets/searxng/-/searxng/svg-badge.svg
|
||||||
:target: https://weblate.bubu1.eu/projects/searxng/
|
:target: https://translate.codeberg.org/projects/searxng/
|
||||||
|
|
||||||
.. sidebar:: |translated|
|
.. sidebar:: |translated|
|
||||||
|
|
||||||
|
|
@ -24,11 +24,11 @@ Translation
|
||||||
- Babel Command-Line: `pybabel <http://babel.pocoo.org/en/latest/cmdline.html>`_
|
- Babel Command-Line: `pybabel <http://babel.pocoo.org/en/latest/cmdline.html>`_
|
||||||
- `weblate workflow <https://docs.weblate.org/en/latest/workflows.html>`_
|
- `weblate workflow <https://docs.weblate.org/en/latest/workflows.html>`_
|
||||||
|
|
||||||
Translation takes place on weblate.bubu1.eu_.
|
Translation takes place on translate.codeberg.org_.
|
||||||
|
|
||||||
Translations which has been added by translators on the weblate.bubu1.eu_ UI are
|
Translations which has been added by translators on the translate.codeberg.org_ UI are
|
||||||
committed to Weblate's counterpart of the SearXNG *origin* repository which is
|
committed to Weblate's counterpart of the SearXNG *origin* repository which is
|
||||||
located at ``https://weblate.bubu1.eu/git/searxng/searxng``.
|
located at ``https://translate.codeberg.org/git/searxng/searxng``.
|
||||||
|
|
||||||
There is no need to clone this repository, :ref:`SearXNG Weblate workflow` take
|
There is no need to clone this repository, :ref:`SearXNG Weblate workflow` take
|
||||||
care of the synchronization with the *origin*. To avoid merging commits from
|
care of the synchronization with the *origin*. To avoid merging commits from
|
||||||
|
|
@ -68,7 +68,7 @@ wlc
|
||||||
===
|
===
|
||||||
|
|
||||||
.. _wlc configuration: https://docs.weblate.org/en/latest/wlc.html#wlc-config
|
.. _wlc configuration: https://docs.weblate.org/en/latest/wlc.html#wlc-config
|
||||||
.. _API key: https://weblate.bubu1.eu/accounts/profile/#api
|
.. _API key: https://translate.codeberg.org/accounts/profile/#api
|
||||||
|
|
||||||
All weblate integration is done by GitHub workflows, but if you want to use wlc_,
|
All weblate integration is done by GitHub workflows, but if you want to use wlc_,
|
||||||
copy this content into `wlc configuration`_ in your HOME ``~/.config/weblate``
|
copy this content into `wlc configuration`_ in your HOME ``~/.config/weblate``
|
||||||
|
|
@ -76,6 +76,6 @@ copy this content into `wlc configuration`_ in your HOME ``~/.config/weblate``
|
||||||
.. code-block:: ini
|
.. code-block:: ini
|
||||||
|
|
||||||
[keys]
|
[keys]
|
||||||
https://weblate.bubu1.eu/api/ = APIKEY
|
https://translate.codeberg.org/api/ = APIKEY
|
||||||
|
|
||||||
Replace ``APIKEY`` by your `API key`_.
|
Replace ``APIKEY`` by your `API key`_.
|
||||||
|
|
|
||||||
8
docs/src/searx.exceptions.rst
Normal file
8
docs/src/searx.exceptions.rst
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
.. _searx.exceptions:
|
||||||
|
|
||||||
|
==================
|
||||||
|
SearXNG Exceptions
|
||||||
|
==================
|
||||||
|
|
||||||
|
.. automodule:: searx.exceptions
|
||||||
|
:members:
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
.. _autodetect search language:
|
|
||||||
|
|
||||||
======================
|
|
||||||
Search language plugin
|
|
||||||
======================
|
|
||||||
|
|
||||||
.. automodule:: searx.plugins.autodetect_search_language
|
|
||||||
:members:
|
|
||||||
27
manage
27
manage
|
|
@ -97,7 +97,8 @@ redis:
|
||||||
install : create user (${REDIS_USER}) and install systemd service (${REDIS_SERVICE_NAME})
|
install : create user (${REDIS_USER}) and install systemd service (${REDIS_SERVICE_NAME})
|
||||||
help : show more redis commands
|
help : show more redis commands
|
||||||
node.:
|
node.:
|
||||||
env : download & install npm dependencies locally
|
env : download & install SearXNG's npm dependencies locally
|
||||||
|
env.dev : download & install developer and CI tools
|
||||||
clean : drop locally npm installations
|
clean : drop locally npm installations
|
||||||
py.:
|
py.:
|
||||||
build : Build python packages at ./${PYDIST}
|
build : Build python packages at ./${PYDIST}
|
||||||
|
|
@ -190,11 +191,11 @@ weblate.translations.worktree() {
|
||||||
# 'translations' from Weblate's counterpart (weblate) of the SearXNG
|
# 'translations' from Weblate's counterpart (weblate) of the SearXNG
|
||||||
# (origin).
|
# (origin).
|
||||||
#
|
#
|
||||||
# remote weblate https://weblate.bubu1.eu/git/searxng/searxng/
|
# remote weblate https://translate.codeberg.org/git/searxng/searxng/
|
||||||
|
|
||||||
( set -e
|
( set -e
|
||||||
if ! git remote get-url weblate 2> /dev/null; then
|
if ! git remote get-url weblate 2> /dev/null; then
|
||||||
git remote add weblate https://weblate.bubu1.eu/git/searxng/searxng/
|
git remote add weblate https://translate.codeberg.org/git/searxng/searxng/
|
||||||
fi
|
fi
|
||||||
if [ -d "${TRANSLATIONS_WORKTREE}" ]; then
|
if [ -d "${TRANSLATIONS_WORKTREE}" ]; then
|
||||||
pushd .
|
pushd .
|
||||||
|
|
@ -478,7 +479,7 @@ docker.build() {
|
||||||
eval "$(python -m searx.version)"
|
eval "$(python -m searx.version)"
|
||||||
|
|
||||||
# Get the last git commit id
|
# Get the last git commit id
|
||||||
VERSION_GITCOMMIT=$(echo "$VERSION_STRING" | cut -d- -f3)
|
VERSION_GITCOMMIT=$(echo "$VERSION_TAG" | cut -d+ -f2)
|
||||||
build_msg DOCKER "Last commit : $VERSION_GITCOMMIT"
|
build_msg DOCKER "Last commit : $VERSION_GITCOMMIT"
|
||||||
|
|
||||||
# define the docker image name
|
# define the docker image name
|
||||||
|
|
@ -500,6 +501,7 @@ docker.build() {
|
||||||
docker $BUILD \
|
docker $BUILD \
|
||||||
--build-arg BASE_IMAGE="${DEPENDENCIES_IMAGE_NAME}" \
|
--build-arg BASE_IMAGE="${DEPENDENCIES_IMAGE_NAME}" \
|
||||||
--build-arg GIT_URL="${GIT_URL}" \
|
--build-arg GIT_URL="${GIT_URL}" \
|
||||||
|
--build-arg SEARXNG_DOCKER_TAG="${DOCKER_TAG}" \
|
||||||
--build-arg SEARXNG_GIT_VERSION="${VERSION_STRING}" \
|
--build-arg SEARXNG_GIT_VERSION="${VERSION_STRING}" \
|
||||||
--build-arg VERSION_GITCOMMIT="${VERSION_GITCOMMIT}" \
|
--build-arg VERSION_GITCOMMIT="${VERSION_GITCOMMIT}" \
|
||||||
--build-arg LABEL_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
|
--build-arg LABEL_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
|
||||||
|
|
@ -507,11 +509,11 @@ docker.build() {
|
||||||
--build-arg LABEL_VCS_URL="${GIT_URL}" \
|
--build-arg LABEL_VCS_URL="${GIT_URL}" \
|
||||||
--build-arg TIMESTAMP_SETTINGS="$(git log -1 --format="%cd" --date=unix -- searx/settings.yml)" \
|
--build-arg TIMESTAMP_SETTINGS="$(git log -1 --format="%cd" --date=unix -- searx/settings.yml)" \
|
||||||
--build-arg TIMESTAMP_UWSGI="$(git log -1 --format="%cd" --date=unix -- dockerfiles/uwsgi.ini)" \
|
--build-arg TIMESTAMP_UWSGI="$(git log -1 --format="%cd" --date=unix -- dockerfiles/uwsgi.ini)" \
|
||||||
-t "${SEARXNG_IMAGE_NAME}:latest" -t "${SEARXNG_IMAGE_NAME}:${VERSION_STRING}" .
|
-t "${SEARXNG_IMAGE_NAME}:latest" -t "${SEARXNG_IMAGE_NAME}:${DOCKER_TAG}" .
|
||||||
|
|
||||||
if [ "$1" = "push" ]; then
|
if [ "$1" = "push" ]; then
|
||||||
docker push "${SEARXNG_IMAGE_NAME}:latest"
|
docker push "${SEARXNG_IMAGE_NAME}:latest"
|
||||||
docker push "${SEARXNG_IMAGE_NAME}:${SEARXNG_GIT_VERSION}"
|
docker push "${SEARXNG_IMAGE_NAME}:${DOCKER_TAG}"
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
dump_return $?
|
dump_return $?
|
||||||
|
|
@ -562,16 +564,15 @@ nodejs.ensure() {
|
||||||
node.env() {
|
node.env() {
|
||||||
nodejs.ensure
|
nodejs.ensure
|
||||||
( set -e
|
( set -e
|
||||||
|
build_msg INSTALL "./searx/static/themes/simple/package.json"
|
||||||
build_msg INSTALL "searx/static/themes/simple/package.json"
|
|
||||||
npm --prefix searx/static/themes/simple install
|
npm --prefix searx/static/themes/simple install
|
||||||
)
|
)
|
||||||
dump_return $?
|
dump_return $?
|
||||||
}
|
}
|
||||||
|
|
||||||
node.env.devtools() {
|
node.env.dev() {
|
||||||
nodejs.ensure
|
nodejs.ensure
|
||||||
build_msg INSTALL "package.json: developer and CI tools"
|
build_msg INSTALL "./package.json: developer and CI tools"
|
||||||
npm install
|
npm install
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -584,6 +585,10 @@ node.clean() {
|
||||||
( set -e
|
( set -e
|
||||||
npm --prefix searx/static/themes/simple run clean
|
npm --prefix searx/static/themes/simple run clean
|
||||||
)
|
)
|
||||||
|
build_msg CLEAN "locally installed developer and CI tools"
|
||||||
|
( set -e
|
||||||
|
npm --prefix . run clean
|
||||||
|
)
|
||||||
dump_return $?
|
dump_return $?
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -701,7 +706,7 @@ test.pylint() {
|
||||||
|
|
||||||
test.pyright() {
|
test.pyright() {
|
||||||
build_msg TEST "[pyright] static type check of python sources"
|
build_msg TEST "[pyright] static type check of python sources"
|
||||||
node.env.devtools
|
node.env.dev
|
||||||
# We run Pyright in the virtual environment because Pyright
|
# We run Pyright in the virtual environment because Pyright
|
||||||
# executes "python" to determine the Python version.
|
# executes "python" to determine the Python version.
|
||||||
build_msg TEST "[pyright] suppress warnings related to intentional monkey patching"
|
build_msg TEST "[pyright] suppress warnings related to intentional monkey patching"
|
||||||
|
|
|
||||||
|
|
@ -2,5 +2,8 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"eslint": "^8.18.0",
|
"eslint": "^8.18.0",
|
||||||
"pyright": "^1.1.255"
|
"pyright": "^1.1.255"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"clean": "rm -Rf node_modules package-lock.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
mock==5.0.0
|
mock==5.0.1
|
||||||
nose2[coverage_plugin]==0.12.0
|
nose2[coverage_plugin]==0.12.0
|
||||||
cov-core==1.15.0
|
cov-core==1.15.0
|
||||||
black==22.12.0
|
black==22.12.0
|
||||||
pylint==2.15.9
|
pylint==2.17.1
|
||||||
splinter==0.18.1
|
splinter==0.19.0
|
||||||
selenium==4.7.2
|
selenium==4.8.2
|
||||||
twine==4.0.2
|
twine==4.0.2
|
||||||
Pallets-Sphinx-Themes==2.0.3
|
Pallets-Sphinx-Themes==2.0.3
|
||||||
Sphinx==5.3.0
|
Sphinx==5.3.0
|
||||||
|
|
@ -14,9 +14,9 @@ sphinx-tabs==3.4.1
|
||||||
sphinxcontrib-programoutput==0.17
|
sphinxcontrib-programoutput==0.17
|
||||||
sphinx-autobuild==2021.3.14
|
sphinx-autobuild==2021.3.14
|
||||||
sphinx-notfound-page==0.8.3
|
sphinx-notfound-page==0.8.3
|
||||||
myst-parser==0.18.1
|
myst-parser==1.0.0
|
||||||
linuxdoc==20221127
|
linuxdoc==20230321
|
||||||
aiounittest==1.4.2
|
aiounittest==1.4.2
|
||||||
yamllint==1.28.0
|
yamllint==1.30.0
|
||||||
wlc==1.13
|
wlc==1.13
|
||||||
coloredlogs==15.0.1
|
coloredlogs==15.0.1
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
certifi==2022.12.7
|
certifi==2022.12.7
|
||||||
babel==2.11.0
|
babel==2.11.0
|
||||||
flask-babel==2.0.0
|
flask-babel==3.0.1
|
||||||
flask==2.2.2
|
flask==2.2.3
|
||||||
jinja2==3.1.2
|
jinja2==3.1.2
|
||||||
lxml==4.9.2
|
lxml==4.9.2
|
||||||
pygments==2.14.0
|
pygments==2.14.0
|
||||||
|
|
@ -12,7 +12,7 @@ Brotli==1.0.9
|
||||||
uvloop==0.17.0
|
uvloop==0.17.0
|
||||||
httpx-socks[asyncio]==0.7.2
|
httpx-socks[asyncio]==0.7.2
|
||||||
setproctitle==1.3.2
|
setproctitle==1.3.2
|
||||||
redis==4.4.2
|
redis==4.5.1
|
||||||
markdown-it-py==2.1.0
|
markdown-it-py==2.2.0
|
||||||
typing_extensions==4.4.0
|
typing_extensions==4.5.0
|
||||||
fasttext-predict==0.9.2.1
|
fasttext-predict==0.9.2.1
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
"""This module implements functions needed for the autocompleter.
|
"""This module implements functions needed for the autocompleter.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=use-dict-literal
|
||||||
|
|
||||||
from json import loads
|
from json import loads
|
||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -603,7 +603,7 @@
|
||||||
"брунейский доллар": "BND",
|
"брунейский доллар": "BND",
|
||||||
"брунејски долар": "BND",
|
"брунејски долар": "BND",
|
||||||
"bruneisk dollar": "BND",
|
"bruneisk dollar": "BND",
|
||||||
"புருனே டாலர்": "BND",
|
"புரூணை டாலர்": "BND",
|
||||||
"ดอลลาร์บรูไน": "BND",
|
"ดอลลาร์บรูไน": "BND",
|
||||||
"brunei doları": "BND",
|
"brunei doları": "BND",
|
||||||
"брунейський долар": "BND",
|
"брунейський долар": "BND",
|
||||||
|
|
@ -752,13 +752,12 @@
|
||||||
"רובל בלארוסי": "BYN",
|
"רובל בלארוסי": "BYN",
|
||||||
"bjeloruski rubalj": "BYN",
|
"bjeloruski rubalj": "BYN",
|
||||||
"belarusz rubel": "BYN",
|
"belarusz rubel": "BYN",
|
||||||
"rubel belarusia": "BYN",
|
"rubel belarus": "BYN",
|
||||||
"rublo bielorusso": "BYN",
|
"rublo bielorusso": "BYN",
|
||||||
"ベラルーシ・ルーブル": "BYN",
|
"ベラルーシ・ルーブル": "BYN",
|
||||||
"벨라루스 루블": "BYN",
|
"벨라루스 루블": "BYN",
|
||||||
"baltarusijos rublis": "BYN",
|
"baltarusijos rublis": "BYN",
|
||||||
"baltkrievijas rublis": "BYN",
|
"baltkrievijas rublis": "BYN",
|
||||||
"rubel belarus": "BYN",
|
|
||||||
"wit russische roebel": "BYN",
|
"wit russische roebel": "BYN",
|
||||||
"ਬੈਲਾਰੂਸੀ ਰੂਬਲ": "BYN",
|
"ਬੈਲਾਰੂਸੀ ਰੂਬਲ": "BYN",
|
||||||
"rubel białoruski": "BYN",
|
"rubel białoruski": "BYN",
|
||||||
|
|
@ -1314,10 +1313,7 @@
|
||||||
"ethiopische birr": "ETB",
|
"ethiopische birr": "ETB",
|
||||||
"эфиопский быр": "ETB",
|
"эфиопский быр": "ETB",
|
||||||
"ефіопський бир": "ETB",
|
"ефіопський бир": "ETB",
|
||||||
"euro": [
|
"euro": "EUR",
|
||||||
"HRK",
|
|
||||||
"EUR"
|
|
||||||
],
|
|
||||||
"يورو": "EUR",
|
"يورو": "EUR",
|
||||||
"евро": "EUR",
|
"евро": "EUR",
|
||||||
"ইউরো": "EUR",
|
"ইউরো": "EUR",
|
||||||
|
|
@ -1659,34 +1655,6 @@
|
||||||
"гондурасская лемпира": "HNL",
|
"гондурасская лемпира": "HNL",
|
||||||
"honduras lempirası": "HNL",
|
"honduras lempirası": "HNL",
|
||||||
"гондураська лемпіра": "HNL",
|
"гондураська лемпіра": "HNL",
|
||||||
"كونا كرواتية": "HRK",
|
|
||||||
"хърватска куна": "HRK",
|
|
||||||
"kuna": "HRK",
|
|
||||||
"chorvatská kuna": "HRK",
|
|
||||||
"kroatiske kuna": "HRK",
|
|
||||||
"kroatische kuna": "HRK",
|
|
||||||
"croatian kuna": "HRK",
|
|
||||||
"kroata kunao": "HRK",
|
|
||||||
"kuna croata": "HRK",
|
|
||||||
"kroatian kuna": "HRK",
|
|
||||||
"kuna croate": "HRK",
|
|
||||||
"קונה": "HRK",
|
|
||||||
"hrvatska kuna": "HRK",
|
|
||||||
"horvát kuna": "HRK",
|
|
||||||
"kuna kroasia": "HRK",
|
|
||||||
"クーナ": "HRK",
|
|
||||||
"크로아티아 쿠나": "HRK",
|
|
||||||
"kroatijos kuna": "HRK",
|
|
||||||
"horvātijas kuna": "HRK",
|
|
||||||
"ਕ੍ਰੋਏਸ਼ੀਆਈ ਕੂਨਾ": "HRK",
|
|
||||||
"хорватская куна": "HRK",
|
|
||||||
"chorvátska kuna": "HRK",
|
|
||||||
"hrvaška kuna": "HRK",
|
|
||||||
"хрватска куна": "HRK",
|
|
||||||
"kroatisk kuna": "HRK",
|
|
||||||
"குனா": "HRK",
|
|
||||||
"hırvat kunası": "HRK",
|
|
||||||
"хорватська куна": "HRK",
|
|
||||||
"جوردة هايتية": "HTG",
|
"جوردة هايتية": "HTG",
|
||||||
"gourde": "HTG",
|
"gourde": "HTG",
|
||||||
"haitský gourde": "HTG",
|
"haitský gourde": "HTG",
|
||||||
|
|
@ -1841,6 +1809,7 @@
|
||||||
"индијска рупија": "INR",
|
"индијска рупија": "INR",
|
||||||
"indisk rupie": "INR",
|
"indisk rupie": "INR",
|
||||||
"இந்திய ரூபாய்": "INR",
|
"இந்திய ரூபாய்": "INR",
|
||||||
|
"எண்ணிம ரூபாய்": "INR",
|
||||||
"రూపాయి": "INR",
|
"రూపాయి": "INR",
|
||||||
"รูปีอินเดีย": "INR",
|
"รูปีอินเดีย": "INR",
|
||||||
"hindistan rupisi": "INR",
|
"hindistan rupisi": "INR",
|
||||||
|
|
@ -2192,6 +2161,7 @@
|
||||||
"lõuna korea vonn": "KRW",
|
"lõuna korea vonn": "KRW",
|
||||||
"etelä korean won": "KRW",
|
"etelä korean won": "KRW",
|
||||||
"won sud coréen": "KRW",
|
"won sud coréen": "KRW",
|
||||||
|
"וון דרום קוריאני": "KRW",
|
||||||
"južnokorejski von": "KRW",
|
"južnokorejski von": "KRW",
|
||||||
"dél koreai von": "KRW",
|
"dél koreai von": "KRW",
|
||||||
"won korea selatan": "KRW",
|
"won korea selatan": "KRW",
|
||||||
|
|
@ -3292,7 +3262,7 @@
|
||||||
"PLZ",
|
"PLZ",
|
||||||
"PLN"
|
"PLN"
|
||||||
],
|
],
|
||||||
"ซวอตือโปแลนด์": [
|
"ซวอตือ": [
|
||||||
"PLZ",
|
"PLZ",
|
||||||
"PLN"
|
"PLN"
|
||||||
],
|
],
|
||||||
|
|
@ -3887,6 +3857,7 @@
|
||||||
"добра сан томе і принсіпі": "STN",
|
"добра сан томе і принсіпі": "STN",
|
||||||
"ليرة سورية": "SYP",
|
"ليرة سورية": "SYP",
|
||||||
"сирийска лира": "SYP",
|
"сирийска лира": "SYP",
|
||||||
|
"সিরীয় পাউন্ড": "SYP",
|
||||||
"lliura siriana": "SYP",
|
"lliura siriana": "SYP",
|
||||||
"syrská libra": "SYP",
|
"syrská libra": "SYP",
|
||||||
"syrische lira": "SYP",
|
"syrische lira": "SYP",
|
||||||
|
|
@ -4200,7 +4171,7 @@
|
||||||
"フリヴニャ": "UAH",
|
"フリヴニャ": "UAH",
|
||||||
"우크라이나 흐리우냐": "UAH",
|
"우크라이나 흐리우냐": "UAH",
|
||||||
"grivina": "UAH",
|
"grivina": "UAH",
|
||||||
"ukrainas grivna": "UAH",
|
"ukrainas hrivna": "UAH",
|
||||||
"hryvnia ukraine": "UAH",
|
"hryvnia ukraine": "UAH",
|
||||||
"oekraïense hryvnia": "UAH",
|
"oekraïense hryvnia": "UAH",
|
||||||
"ਯੂਕਰੇਨੀ ਹਰੀਵਨਾ": "UAH",
|
"ਯੂਕਰੇਨੀ ਹਰੀਵਨਾ": "UAH",
|
||||||
|
|
@ -4212,7 +4183,7 @@
|
||||||
"ukrajinska grivna": "UAH",
|
"ukrajinska grivna": "UAH",
|
||||||
"украјинска гривна": "UAH",
|
"украјинска гривна": "UAH",
|
||||||
"ஹிருன்யா": "UAH",
|
"ஹிருன்யா": "UAH",
|
||||||
"ฮริฟเนียยูเครน": "UAH",
|
"ฮรึวญา": "UAH",
|
||||||
"ukrayna grivnası": "UAH",
|
"ukrayna grivnası": "UAH",
|
||||||
"гривня": "UAH",
|
"гривня": "UAH",
|
||||||
"ugandese sjieling": "UGX",
|
"ugandese sjieling": "UGX",
|
||||||
|
|
@ -4299,7 +4270,6 @@
|
||||||
"uruguaanse peso": "UYU",
|
"uruguaanse peso": "UYU",
|
||||||
"بيزو أوروغواي": "UYU",
|
"بيزو أوروغواي": "UYU",
|
||||||
"уругвайско песо": "UYU",
|
"уругвайско песо": "UYU",
|
||||||
"peso uruguaià": "UYU",
|
|
||||||
"uruguayské peso": "UYU",
|
"uruguayské peso": "UYU",
|
||||||
"uruguayischer peso": "UYU",
|
"uruguayischer peso": "UYU",
|
||||||
"uruguayan peso": "UYU",
|
"uruguayan peso": "UYU",
|
||||||
|
|
@ -4437,7 +4407,7 @@
|
||||||
"самоанская тала": "WST",
|
"самоанская тала": "WST",
|
||||||
"самоанска тала": "WST",
|
"самоанска тала": "WST",
|
||||||
"самоанська тала": "WST",
|
"самоанська тала": "WST",
|
||||||
"فرنك وسط أفريقي": "XAF",
|
"فرنك وسط إفريقي": "XAF",
|
||||||
"централноафрикански cfa франк": "XAF",
|
"централноафрикански cfa франк": "XAF",
|
||||||
"franc cfa de l'àfrica central": "XAF",
|
"franc cfa de l'àfrica central": "XAF",
|
||||||
"středoafrický frank": "XAF",
|
"středoafrický frank": "XAF",
|
||||||
|
|
@ -4546,7 +4516,7 @@
|
||||||
"özel çekme hakları": "XDR",
|
"özel çekme hakları": "XDR",
|
||||||
"спеціальні права запозичення": "XDR",
|
"спеціальні права запозичення": "XDR",
|
||||||
"quyền rút vốn đặc biệt": "XDR",
|
"quyền rút vốn đặc biệt": "XDR",
|
||||||
"فرنك غرب أفريقي": "XOF",
|
"فرنك غرب إفريقي": "XOF",
|
||||||
"западноафрикански cfa франк": "XOF",
|
"западноафрикански cfa франк": "XOF",
|
||||||
"franc cfa de l'àfrica occidental": "XOF",
|
"franc cfa de l'àfrica occidental": "XOF",
|
||||||
"cfa franc bceao": "XOF",
|
"cfa franc bceao": "XOF",
|
||||||
|
|
@ -4620,7 +4590,7 @@
|
||||||
"yemen riyali": "YER",
|
"yemen riyali": "YER",
|
||||||
"єменський ріал": "YER",
|
"єменський ріал": "YER",
|
||||||
"suid afrikaanse rand": "ZAR",
|
"suid afrikaanse rand": "ZAR",
|
||||||
"راند جنوب أفريقي": "ZAR",
|
"راند جنوب إفريقي": "ZAR",
|
||||||
"южноафрикански ранд": "ZAR",
|
"южноафрикански ранд": "ZAR",
|
||||||
"rand": "ZAR",
|
"rand": "ZAR",
|
||||||
"jihoafrický rand": "ZAR",
|
"jihoafrický rand": "ZAR",
|
||||||
|
|
@ -4676,6 +4646,7 @@
|
||||||
"real time gross settlement dollar": "ZWL",
|
"real time gross settlement dollar": "ZWL",
|
||||||
"dollaro rtgs": "ZWL",
|
"dollaro rtgs": "ZWL",
|
||||||
"rtgsドル": "ZWL",
|
"rtgsドル": "ZWL",
|
||||||
|
"dólar do zimbábue": "ZWL",
|
||||||
"درهم": "AED",
|
"درهم": "AED",
|
||||||
"DH": [
|
"DH": [
|
||||||
"MAD",
|
"MAD",
|
||||||
|
|
@ -5165,6 +5136,8 @@
|
||||||
"dolar de barbados": "BBD",
|
"dolar de barbados": "BBD",
|
||||||
"dolar barbadense": "BBD",
|
"dolar barbadense": "BBD",
|
||||||
"dollar de la barbade": "BBD",
|
"dollar de la barbade": "BBD",
|
||||||
|
"bbd$": "BBD",
|
||||||
|
"bds": "BBD",
|
||||||
"dollaro": [
|
"dollaro": [
|
||||||
"BZD",
|
"BZD",
|
||||||
"BBD"
|
"BBD"
|
||||||
|
|
@ -5514,6 +5487,7 @@
|
||||||
"$can": "CAD",
|
"$can": "CAD",
|
||||||
"$ca": "CAD",
|
"$ca": "CAD",
|
||||||
"huard canadien": "CAD",
|
"huard canadien": "CAD",
|
||||||
|
"cdn$": "CAD",
|
||||||
"dollar kanada": "CAD",
|
"dollar kanada": "CAD",
|
||||||
"カナダ・ドル": "CAD",
|
"カナダ・ドル": "CAD",
|
||||||
"加ドル": "CAD",
|
"加ドル": "CAD",
|
||||||
|
|
@ -6047,6 +6021,7 @@
|
||||||
"dollar des îles fidji": "FJD",
|
"dollar des îles fidji": "FJD",
|
||||||
"dollar fidjien": "FJD",
|
"dollar fidjien": "FJD",
|
||||||
"דולר פיג'י": "FJD",
|
"דולר פיג'י": "FJD",
|
||||||
|
"fj$": "FJD",
|
||||||
"피지달러": "FJD",
|
"피지달러": "FJD",
|
||||||
"dólar das fiji": "FJD",
|
"dólar das fiji": "FJD",
|
||||||
"dolarul fijian": "FJD",
|
"dolarul fijian": "FJD",
|
||||||
|
|
@ -6347,31 +6322,6 @@
|
||||||
"lempira hondurenha": "HNL",
|
"lempira hondurenha": "HNL",
|
||||||
"валюта гондураса": "HNL",
|
"валюта гондураса": "HNL",
|
||||||
"хондурашка лемпира": "HNL",
|
"хондурашка лемпира": "HNL",
|
||||||
"kn": "HRK",
|
|
||||||
"hrk": "HRK",
|
|
||||||
"lipa": "HRK",
|
|
||||||
"kuna croatia": "HRK",
|
|
||||||
"kroatia kunao": "HRK",
|
|
||||||
"kunao": "HRK",
|
|
||||||
"lipao": "HRK",
|
|
||||||
"cuna croata": "HRK",
|
|
||||||
"horvaatia kuna": "HRK",
|
|
||||||
"ליפה": "HRK",
|
|
||||||
"クロアチアの通貨": "HRK",
|
|
||||||
"クロアチア・クナ": "HRK",
|
|
||||||
"クロアチア・クーナ": "HRK",
|
|
||||||
"쿠나": "HRK",
|
|
||||||
"kuna chorwacka": "HRK",
|
|
||||||
"kuny": "HRK",
|
|
||||||
"lipy": "HRK",
|
|
||||||
"kuna da croácia": "HRK",
|
|
||||||
"валюта хорватии": "HRK",
|
|
||||||
"куна": "HRK",
|
|
||||||
"липа": "HRK",
|
|
||||||
"குரோவாசிய குனா": "HRK",
|
|
||||||
"குரோஷிய குனா": "HRK",
|
|
||||||
"hırvatistan kunası": "HRK",
|
|
||||||
"куна хорватська": "HRK",
|
|
||||||
"Gde.": "HTG",
|
"Gde.": "HTG",
|
||||||
"gde.": "HTG",
|
"gde.": "HTG",
|
||||||
"haitianische gourde": "HTG",
|
"haitianische gourde": "HTG",
|
||||||
|
|
@ -6842,7 +6792,6 @@
|
||||||
"sud korea vono": "KRW",
|
"sud korea vono": "KRW",
|
||||||
"jeon": "KRW",
|
"jeon": "KRW",
|
||||||
"lõuna korea won": "KRW",
|
"lõuna korea won": "KRW",
|
||||||
"וון דרום קוריאני": "KRW",
|
|
||||||
"韓国ウォン": "KRW",
|
"韓国ウォン": "KRW",
|
||||||
"대한민국 전": "KRW",
|
"대한민국 전": "KRW",
|
||||||
"대한민국 화폐": "KRW",
|
"대한민국 화폐": "KRW",
|
||||||
|
|
@ -7027,11 +6976,12 @@
|
||||||
"lib$": "LRD",
|
"lib$": "LRD",
|
||||||
"dolar liberiano": "LRD",
|
"dolar liberiano": "LRD",
|
||||||
"dollar liberien": "LRD",
|
"dollar liberien": "LRD",
|
||||||
|
"l$": "LRD",
|
||||||
|
"ld$": "LRD",
|
||||||
|
"lrd": "LRD",
|
||||||
"リベリアドル": "LRD",
|
"リベリアドル": "LRD",
|
||||||
"dolar liberian": "LRD",
|
"dolar liberian": "LRD",
|
||||||
"валюта либерии": "LRD",
|
"валюта либерии": "LRD",
|
||||||
"l$": "LRD",
|
|
||||||
"lrd": "LRD",
|
|
||||||
"liberisk dollar": "LRD",
|
"liberisk dollar": "LRD",
|
||||||
"L$": "LRD",
|
"L$": "LRD",
|
||||||
"لوتي": "LSL",
|
"لوتي": "LSL",
|
||||||
|
|
@ -7637,6 +7587,7 @@
|
||||||
"dollar de nouvelle zélande": "NZD",
|
"dollar de nouvelle zélande": "NZD",
|
||||||
"dollar néozélandais": "NZD",
|
"dollar néozélandais": "NZD",
|
||||||
"דולר ניו זילנד": "NZD",
|
"דולר ניו זילנד": "NZD",
|
||||||
|
"$nz": "NZD",
|
||||||
"dollar selandia baru": "NZD",
|
"dollar selandia baru": "NZD",
|
||||||
"nzドル": "NZD",
|
"nzドル": "NZD",
|
||||||
"ニュージーランドドル": "NZD",
|
"ニュージーランドドル": "NZD",
|
||||||
|
|
@ -7843,10 +7794,6 @@
|
||||||
"PLZ",
|
"PLZ",
|
||||||
"PLN"
|
"PLN"
|
||||||
],
|
],
|
||||||
"sloti": [
|
|
||||||
"PLZ",
|
|
||||||
"PLN"
|
|
||||||
],
|
|
||||||
"zloty polaco": [
|
"zloty polaco": [
|
||||||
"PLZ",
|
"PLZ",
|
||||||
"PLN"
|
"PLN"
|
||||||
|
|
@ -7971,6 +7918,10 @@
|
||||||
"PLZ",
|
"PLZ",
|
||||||
"PLN"
|
"PLN"
|
||||||
],
|
],
|
||||||
|
"ซวอตือโปแลนด์": [
|
||||||
|
"PLZ",
|
||||||
|
"PLN"
|
||||||
|
],
|
||||||
"польський злотий": [
|
"польський злотий": [
|
||||||
"PLZ",
|
"PLZ",
|
||||||
"PLN"
|
"PLN"
|
||||||
|
|
@ -8163,6 +8114,7 @@
|
||||||
"dolar salomonense": "SBD",
|
"dolar salomonense": "SBD",
|
||||||
"dólar salomonense": "SBD",
|
"dólar salomonense": "SBD",
|
||||||
"dollar des iles salomon": "SBD",
|
"dollar des iles salomon": "SBD",
|
||||||
|
"si$": "SBD",
|
||||||
"dollaro delle isole salomone": "SBD",
|
"dollaro delle isole salomone": "SBD",
|
||||||
"ソロモン諸島・ドル": "SBD",
|
"ソロモン諸島・ドル": "SBD",
|
||||||
"솔로몬제도 달러": "SBD",
|
"솔로몬제도 달러": "SBD",
|
||||||
|
|
@ -8170,7 +8122,6 @@
|
||||||
"dolar de las illas salamon": "SBD",
|
"dolar de las illas salamon": "SBD",
|
||||||
"валюта соломоновых островов": "SBD",
|
"валюта соломоновых островов": "SBD",
|
||||||
"долар соломонских острва": "SBD",
|
"долар соломонских острва": "SBD",
|
||||||
"si$": "SBD",
|
|
||||||
"SI$": "SBD",
|
"SI$": "SBD",
|
||||||
"SRe": "SCR",
|
"SRe": "SCR",
|
||||||
"seychellisk rupee": "SCR",
|
"seychellisk rupee": "SCR",
|
||||||
|
|
@ -8346,6 +8297,8 @@
|
||||||
"dólar surinames": "SRD",
|
"dólar surinames": "SRD",
|
||||||
"dollar du surinam": "SRD",
|
"dollar du surinam": "SRD",
|
||||||
"dollar surinamien": "SRD",
|
"dollar surinamien": "SRD",
|
||||||
|
"sr$": "SRD",
|
||||||
|
"sur$": "SRD",
|
||||||
"dollaro del suriname": "SRD",
|
"dollaro del suriname": "SRD",
|
||||||
"スリナムドル": "SRD",
|
"スリナムドル": "SRD",
|
||||||
"dólar surinamense": "SRD",
|
"dólar surinamense": "SRD",
|
||||||
|
|
@ -8353,7 +8306,6 @@
|
||||||
"валюта суринама": "SRD",
|
"валюта суринама": "SRD",
|
||||||
"суринамски гилдер": "SRD",
|
"суринамски гилдер": "SRD",
|
||||||
"суринамски гулден": "SRD",
|
"суринамски гулден": "SRD",
|
||||||
"sr$": "SRD",
|
|
||||||
"Db": [
|
"Db": [
|
||||||
"STN",
|
"STN",
|
||||||
"SSP"
|
"SSP"
|
||||||
|
|
@ -8402,6 +8354,7 @@
|
||||||
"الليره السورية": "SYP",
|
"الليره السورية": "SYP",
|
||||||
"ليرات سورية": "SYP",
|
"ليرات سورية": "SYP",
|
||||||
"ليره سوريه": "SYP",
|
"ليره سوريه": "SYP",
|
||||||
|
"সিরিয়ান পাউন্ড": "SYP",
|
||||||
"lira de síria": "SYP",
|
"lira de síria": "SYP",
|
||||||
"lira síria": "SYP",
|
"lira síria": "SYP",
|
||||||
"lliura de síria": "SYP",
|
"lliura de síria": "SYP",
|
||||||
|
|
@ -8668,6 +8621,7 @@
|
||||||
"trinidad ja tobagon dollari": "TTD",
|
"trinidad ja tobagon dollari": "TTD",
|
||||||
"dollar de trinidad et tobago": "TTD",
|
"dollar de trinidad et tobago": "TTD",
|
||||||
"dollar trinidadien": "TTD",
|
"dollar trinidadien": "TTD",
|
||||||
|
"ttd": "TTD",
|
||||||
"trinidad en tobago dollar": "TTD",
|
"trinidad en tobago dollar": "TTD",
|
||||||
"dolar trynidadzki": "TTD",
|
"dolar trynidadzki": "TTD",
|
||||||
"dólar de trindade e tabago": "TTD",
|
"dólar de trindade e tabago": "TTD",
|
||||||
|
|
@ -8680,7 +8634,6 @@
|
||||||
"тринидадский доллар": "TTD",
|
"тринидадский доллар": "TTD",
|
||||||
"trinidadsko tobažský dolár": "TTD",
|
"trinidadsko tobažský dolár": "TTD",
|
||||||
"тринидад и тобаго долар": "TTD",
|
"тринидад и тобаго долар": "TTD",
|
||||||
"ttd": "TTD",
|
|
||||||
"долар тринідаду та тобаго": "TTD",
|
"долар тринідаду та тобаго": "TTD",
|
||||||
"NT$": "TWD",
|
"NT$": "TWD",
|
||||||
"nt$": "TWD",
|
"nt$": "TWD",
|
||||||
|
|
@ -8792,6 +8745,7 @@
|
||||||
"우크라이나 흐리브냐": "UAH",
|
"우크라이나 흐리브냐": "UAH",
|
||||||
"흐리브냐": "UAH",
|
"흐리브냐": "UAH",
|
||||||
"흐리우냐": "UAH",
|
"흐리우냐": "UAH",
|
||||||
|
"ukrainas grivna": "UAH",
|
||||||
"ukrainas grivnas": "UAH",
|
"ukrainas grivnas": "UAH",
|
||||||
"grivnas": "UAH",
|
"grivnas": "UAH",
|
||||||
"ukraiņu grivna": "UAH",
|
"ukraiņu grivna": "UAH",
|
||||||
|
|
@ -8814,6 +8768,7 @@
|
||||||
"karbovanet": "UAH",
|
"karbovanet": "UAH",
|
||||||
"உக்ரைனிய ஹிரீவ்னியா": "UAH",
|
"உக்ரைனிய ஹிரீவ்னியா": "UAH",
|
||||||
"உக்ரைனிய ஹிருன்யா": "UAH",
|
"உக்ரைனிய ஹிருன்யா": "UAH",
|
||||||
|
"ฮริฟเนียยูเครน": "UAH",
|
||||||
"українська гривня": "UAH",
|
"українська гривня": "UAH",
|
||||||
"гривні": "UAH",
|
"гривні": "UAH",
|
||||||
"грн.": "UAH",
|
"грн.": "UAH",
|
||||||
|
|
@ -8831,7 +8786,7 @@
|
||||||
"우간다실링": "UGX",
|
"우간다실링": "UGX",
|
||||||
"ugandese shilling": "UGX",
|
"ugandese shilling": "UGX",
|
||||||
"валюта уганды": "UGX",
|
"валюта уганды": "UGX",
|
||||||
"US$": "USD",
|
"щ.д.": "USD",
|
||||||
"usd": "USD",
|
"usd": "USD",
|
||||||
"us $": "USD",
|
"us $": "USD",
|
||||||
"american dollar": "USD",
|
"american dollar": "USD",
|
||||||
|
|
@ -8849,6 +8804,8 @@
|
||||||
"דולר אמריקני": "USD",
|
"דולר אמריקני": "USD",
|
||||||
"דולר ארה\"ב": "USD",
|
"דולר ארה\"ב": "USD",
|
||||||
"דולר ארצות הברית": "USD",
|
"דולר ארצות הברית": "USD",
|
||||||
|
"u$": "USD",
|
||||||
|
"usa dollár": "USD",
|
||||||
"ドル": "USD",
|
"ドル": "USD",
|
||||||
"米ドル": "USD",
|
"米ドル": "USD",
|
||||||
"dollar merikano": "USD",
|
"dollar merikano": "USD",
|
||||||
|
|
@ -8872,12 +8829,14 @@
|
||||||
"đôla mỹ": "USD",
|
"đôla mỹ": "USD",
|
||||||
"đồng bạc mĩ": "USD",
|
"đồng bạc mĩ": "USD",
|
||||||
"đồng bạc mỹ": "USD",
|
"đồng bạc mỹ": "USD",
|
||||||
|
"US$": "USD",
|
||||||
"us dollar [next day]": "USN",
|
"us dollar [next day]": "USN",
|
||||||
"uruguay peso en unidades indexadas": "UYI",
|
"uruguay peso en unidades indexadas": "UYI",
|
||||||
"ui": "UYI",
|
"ui": "UYI",
|
||||||
"uyi": "UYI",
|
"uyi": "UYI",
|
||||||
"$U": "UYU",
|
"$U": "UYU",
|
||||||
"بيزو أوروغواني": "UYU",
|
"بيزو أوروغواني": "UYU",
|
||||||
|
"peso uruguaià": "UYU",
|
||||||
"peso d'uruguai": "UYU",
|
"peso d'uruguai": "UYU",
|
||||||
"peso de l'uruguai": "UYU",
|
"peso de l'uruguai": "UYU",
|
||||||
"$u": "UYU",
|
"$u": "UYU",
|
||||||
|
|
@ -9025,6 +8984,7 @@
|
||||||
"тала": "WST",
|
"тала": "WST",
|
||||||
"samoansk tala": "WST",
|
"samoansk tala": "WST",
|
||||||
"فرنك س ف ا وسط أفريقيا": "XAF",
|
"فرنك س ف ا وسط أفريقيا": "XAF",
|
||||||
|
"فرنك وسط أفريقي": "XAF",
|
||||||
"xaf": "XAF",
|
"xaf": "XAF",
|
||||||
"frank beac/cfa": "XAF",
|
"frank beac/cfa": "XAF",
|
||||||
"ffranc canol affrica": "XAF",
|
"ffranc canol affrica": "XAF",
|
||||||
|
|
@ -9146,6 +9106,7 @@
|
||||||
"спз": "XDR",
|
"спз": "XDR",
|
||||||
"zpč": "XDR",
|
"zpč": "XDR",
|
||||||
"special drawings right": "XDR",
|
"special drawings right": "XDR",
|
||||||
|
"فرنك غرب أفريقي": "XOF",
|
||||||
"فرنك س ف ا غرب أفريقيا": "XOF",
|
"فرنك س ف ا غرب أفريقيا": "XOF",
|
||||||
"F": "XOF",
|
"F": "XOF",
|
||||||
"xof": "XOF",
|
"xof": "XOF",
|
||||||
|
|
@ -9244,6 +9205,7 @@
|
||||||
"јеменски риал": "YER",
|
"јеменски риал": "YER",
|
||||||
"yemenitisk rial": "YER",
|
"yemenitisk rial": "YER",
|
||||||
"R": "ZAR",
|
"R": "ZAR",
|
||||||
|
"راند": "ZAR",
|
||||||
"rand de sud àfrica": "ZAR",
|
"rand de sud àfrica": "ZAR",
|
||||||
"rand sud africà": "ZAR",
|
"rand sud africà": "ZAR",
|
||||||
"rand de affrica": "ZAR",
|
"rand de affrica": "ZAR",
|
||||||
|
|
@ -9287,9 +9249,12 @@
|
||||||
"квача замбии": "ZMW",
|
"квача замбии": "ZMW",
|
||||||
"zambiya kwachası": "ZMW",
|
"zambiya kwachası": "ZMW",
|
||||||
"ZK": "ZMW",
|
"ZK": "ZMW",
|
||||||
"zimbabwe dollar": "ZWL",
|
"Z$": "ZWL",
|
||||||
"rtgs": "ZWL",
|
|
||||||
"rtgs$": "ZWL",
|
"rtgs$": "ZWL",
|
||||||
|
"z$": "ZWL",
|
||||||
|
"zwl": "ZWL",
|
||||||
|
"zimdollar": "ZWL",
|
||||||
|
"fifth zimbabwean dollar": "ZWL",
|
||||||
"pesos": [
|
"pesos": [
|
||||||
"MXN"
|
"MXN"
|
||||||
]
|
]
|
||||||
|
|
@ -9996,7 +9961,7 @@
|
||||||
"ru": "брунейский доллар",
|
"ru": "брунейский доллар",
|
||||||
"sr": "брунејски долар",
|
"sr": "брунејски долар",
|
||||||
"sv": "Bruneisk dollar",
|
"sv": "Bruneisk dollar",
|
||||||
"ta": "புருனே டாலர்",
|
"ta": "புரூணை டாலர்",
|
||||||
"th": "ดอลลาร์บรูไน",
|
"th": "ดอลลาร์บรูไน",
|
||||||
"tr": "Brunei doları",
|
"tr": "Brunei doları",
|
||||||
"uk": "Брунейський долар",
|
"uk": "Брунейський долар",
|
||||||
|
|
@ -10212,7 +10177,7 @@
|
||||||
"he": "רובל בלארוסי",
|
"he": "רובל בלארוסי",
|
||||||
"hr": "Bjeloruski rubalj",
|
"hr": "Bjeloruski rubalj",
|
||||||
"hu": "belarusz rubel",
|
"hu": "belarusz rubel",
|
||||||
"id": "Rubel Belarusia",
|
"id": "rubel Belarus",
|
||||||
"it": "Rublo bielorusso",
|
"it": "Rublo bielorusso",
|
||||||
"ja": "ベラルーシ・ルーブル",
|
"ja": "ベラルーシ・ルーブル",
|
||||||
"ko": "벨라루스 루블",
|
"ko": "벨라루스 루블",
|
||||||
|
|
@ -10454,7 +10419,7 @@
|
||||||
"bn": "রেন্মিন্বি",
|
"bn": "রেন্মিন্বি",
|
||||||
"bo": "མི་དམངས་ཤོག་དངུལ",
|
"bo": "མི་དམངས་ཤོག་དངུལ",
|
||||||
"ca": "renminbi",
|
"ca": "renminbi",
|
||||||
"cs": "Čínský jüan",
|
"cs": "čínský jüan",
|
||||||
"cy": "Renminbi",
|
"cy": "Renminbi",
|
||||||
"da": "Renminbi",
|
"da": "Renminbi",
|
||||||
"de": "Renminbi",
|
"de": "Renminbi",
|
||||||
|
|
@ -11057,7 +11022,7 @@
|
||||||
"id": "pound sterling",
|
"id": "pound sterling",
|
||||||
"it": "sterlina britannica",
|
"it": "sterlina britannica",
|
||||||
"ja": "スターリング・ポンド",
|
"ja": "スターリング・ポンド",
|
||||||
"ko": "영국 파운드",
|
"ko": "파운드 스털링",
|
||||||
"lt": "Svaras sterlingų",
|
"lt": "Svaras sterlingų",
|
||||||
"lv": "sterliņu mārciņa",
|
"lv": "sterliņu mārciņa",
|
||||||
"ms": "paun sterling",
|
"ms": "paun sterling",
|
||||||
|
|
@ -11394,47 +11359,6 @@
|
||||||
"uk": "Гондураська лемпіра",
|
"uk": "Гондураська лемпіра",
|
||||||
"cy": "Lempira Hondwraidd"
|
"cy": "Lempira Hondwraidd"
|
||||||
},
|
},
|
||||||
"HRK": {
|
|
||||||
"ar": "كونا كرواتية",
|
|
||||||
"bg": "Хърватска куна",
|
|
||||||
"ca": "kuna",
|
|
||||||
"cs": "Chorvatská kuna",
|
|
||||||
"da": "Kuna",
|
|
||||||
"de": "kroatische Kuna",
|
|
||||||
"en": "Croatian kuna",
|
|
||||||
"eo": "kroata kunao",
|
|
||||||
"es": "kuna croata",
|
|
||||||
"et": "Kuna",
|
|
||||||
"fi": "Kroatian kuna",
|
|
||||||
"fr": "kuna croate",
|
|
||||||
"gl": "Kuna croata",
|
|
||||||
"he": "קונה",
|
|
||||||
"hr": "hrvatska kuna",
|
|
||||||
"hu": "horvát kuna",
|
|
||||||
"id": "Kuna Kroasia",
|
|
||||||
"it": "kuna croata",
|
|
||||||
"ja": "クーナ",
|
|
||||||
"ko": "크로아티아 쿠나",
|
|
||||||
"lt": "Kroatijos kuna",
|
|
||||||
"lv": "Horvātijas kuna",
|
|
||||||
"nl": "Kroatische kuna",
|
|
||||||
"pa": "ਕ੍ਰੋਏਸ਼ੀਆਈ ਕੂਨਾ",
|
|
||||||
"pl": "kuna",
|
|
||||||
"pt": "kuna croata",
|
|
||||||
"ro": "Euro",
|
|
||||||
"ru": "хорватская куна",
|
|
||||||
"sk": "Chorvátska kuna",
|
|
||||||
"sl": "hrvaška kuna",
|
|
||||||
"sr": "хрватска куна",
|
|
||||||
"sv": "Kroatisk kuna",
|
|
||||||
"ta": "குனா",
|
|
||||||
"tr": "Hırvatistan kunası",
|
|
||||||
"uk": "хорватська куна",
|
|
||||||
"cy": "kuna Croatia",
|
|
||||||
"ia": "kuna croate",
|
|
||||||
"oc": "kuna",
|
|
||||||
"vi": "Kuna Croatia"
|
|
||||||
},
|
|
||||||
"HTG": {
|
"HTG": {
|
||||||
"ar": "جوردة هايتية",
|
"ar": "جوردة هايتية",
|
||||||
"ca": "gourde",
|
"ca": "gourde",
|
||||||
|
|
@ -12031,7 +11955,7 @@
|
||||||
"ar": "وون كوري جنوبي",
|
"ar": "وون كوري جنوبي",
|
||||||
"bg": "Южнокорейски вон",
|
"bg": "Южнокорейски вон",
|
||||||
"ca": "won sud-coreà",
|
"ca": "won sud-coreà",
|
||||||
"cs": "Jihokorejský won",
|
"cs": "jihokorejský won",
|
||||||
"da": "Sydkoreanske won",
|
"da": "Sydkoreanske won",
|
||||||
"de": "südkoreanischer Won",
|
"de": "südkoreanischer Won",
|
||||||
"en": "South Korean won",
|
"en": "South Korean won",
|
||||||
|
|
@ -12041,6 +11965,7 @@
|
||||||
"fi": "Etelä-Korean won",
|
"fi": "Etelä-Korean won",
|
||||||
"fr": "won sud-coréen",
|
"fr": "won sud-coréen",
|
||||||
"gl": "Won surcoreano",
|
"gl": "Won surcoreano",
|
||||||
|
"he": "וון דרום קוריאני",
|
||||||
"hr": "Južnokorejski von",
|
"hr": "Južnokorejski von",
|
||||||
"hu": "dél-koreai von",
|
"hu": "dél-koreai von",
|
||||||
"id": "Won Korea Selatan",
|
"id": "Won Korea Selatan",
|
||||||
|
|
@ -12064,7 +11989,6 @@
|
||||||
"uk": "південнокорейська вона",
|
"uk": "південнокорейська вона",
|
||||||
"vi": "Won Hàn Quốc",
|
"vi": "Won Hàn Quốc",
|
||||||
"bn": "দক্ষিণ কোরীয় উয়ন",
|
"bn": "দক্ষিণ কোরীয় উয়ন",
|
||||||
"he": "וון דרום קוריאני",
|
|
||||||
"oc": "Won sud-corean"
|
"oc": "Won sud-corean"
|
||||||
},
|
},
|
||||||
"KWD": {
|
"KWD": {
|
||||||
|
|
@ -12287,7 +12211,7 @@
|
||||||
"de": "Liberianischer Dollar",
|
"de": "Liberianischer Dollar",
|
||||||
"en": "Liberian dollar",
|
"en": "Liberian dollar",
|
||||||
"eo": "liberia dolaro",
|
"eo": "liberia dolaro",
|
||||||
"es": "Dólar liberiano",
|
"es": "dólar liberiano",
|
||||||
"fi": "Liberian dollari",
|
"fi": "Liberian dollari",
|
||||||
"fr": "dollar libérien",
|
"fr": "dollar libérien",
|
||||||
"gl": "Dólar liberiano",
|
"gl": "Dólar liberiano",
|
||||||
|
|
@ -13154,7 +13078,7 @@
|
||||||
"de": "Panamaischer Balboa",
|
"de": "Panamaischer Balboa",
|
||||||
"en": "Panamanian balboa",
|
"en": "Panamanian balboa",
|
||||||
"eo": "panama balboo",
|
"eo": "panama balboo",
|
||||||
"es": "Balboa",
|
"es": "balboa",
|
||||||
"eu": "Balboa",
|
"eu": "Balboa",
|
||||||
"fi": "Panaman balboa",
|
"fi": "Panaman balboa",
|
||||||
"fr": "Balboa",
|
"fr": "Balboa",
|
||||||
|
|
@ -13223,9 +13147,9 @@
|
||||||
"de": "Kina",
|
"de": "Kina",
|
||||||
"en": "kina",
|
"en": "kina",
|
||||||
"eo": "papuonovgvinea kinao",
|
"eo": "papuonovgvinea kinao",
|
||||||
"es": "Kina",
|
"es": "kina",
|
||||||
"fi": "Papua-Uuden-Guinean kina",
|
"fi": "Papua-Uuden-Guinean kina",
|
||||||
"fr": "Kina",
|
"fr": "kina",
|
||||||
"gl": "Kina",
|
"gl": "Kina",
|
||||||
"hr": "Papuanska kina",
|
"hr": "Papuanska kina",
|
||||||
"hu": "pápua új-guineai kina",
|
"hu": "pápua új-guineai kina",
|
||||||
|
|
@ -13356,7 +13280,7 @@
|
||||||
"sr": "пољски злот",
|
"sr": "пољски злот",
|
||||||
"sv": "Złoty",
|
"sv": "Złoty",
|
||||||
"ta": "ஸ்வாட்டெ",
|
"ta": "ஸ்வாட்டெ",
|
||||||
"th": "ซวอตือโปแลนด์",
|
"th": "ซวอตือ",
|
||||||
"tr": "Złoty",
|
"tr": "Złoty",
|
||||||
"uk": "злотий",
|
"uk": "злотий",
|
||||||
"vi": "Złoty Ba Lan",
|
"vi": "Złoty Ba Lan",
|
||||||
|
|
@ -13399,7 +13323,7 @@
|
||||||
"sr": "пољски злот",
|
"sr": "пољски злот",
|
||||||
"sv": "Złoty",
|
"sv": "Złoty",
|
||||||
"ta": "ஸ்வாட்டெ",
|
"ta": "ஸ்வாட்டெ",
|
||||||
"th": "ซวอตือโปแลนด์",
|
"th": "ซวอตือ",
|
||||||
"tr": "Złoty",
|
"tr": "Złoty",
|
||||||
"uk": "злотий",
|
"uk": "злотий",
|
||||||
"vi": "Złoty Ba Lan",
|
"vi": "Złoty Ba Lan",
|
||||||
|
|
@ -14068,6 +13992,7 @@
|
||||||
"SYP": {
|
"SYP": {
|
||||||
"ar": "ليرة سورية",
|
"ar": "ليرة سورية",
|
||||||
"bg": "Сирийска лира",
|
"bg": "Сирийска лира",
|
||||||
|
"bn": "সিরীয় পাউন্ড",
|
||||||
"ca": "lliura siriana",
|
"ca": "lliura siriana",
|
||||||
"cs": "Syrská libra",
|
"cs": "Syrská libra",
|
||||||
"de": "syrische Lira",
|
"de": "syrische Lira",
|
||||||
|
|
@ -14311,7 +14236,7 @@
|
||||||
"bg": "Турска лира",
|
"bg": "Турска лира",
|
||||||
"bn": "তুর্কি লিরা",
|
"bn": "তুর্কি লিরা",
|
||||||
"ca": "lira turca",
|
"ca": "lira turca",
|
||||||
"cs": "Turecká lira",
|
"cs": "turecká lira",
|
||||||
"cy": "Lira Twrcaidd",
|
"cy": "Lira Twrcaidd",
|
||||||
"da": "tyrkisk lira",
|
"da": "tyrkisk lira",
|
||||||
"de": "türkische Lira",
|
"de": "türkische Lira",
|
||||||
|
|
@ -14470,7 +14395,7 @@
|
||||||
"ja": "フリヴニャ",
|
"ja": "フリヴニャ",
|
||||||
"ko": "우크라이나 흐리우냐",
|
"ko": "우크라이나 흐리우냐",
|
||||||
"lt": "Grivina",
|
"lt": "Grivina",
|
||||||
"lv": "Ukrainas grivna",
|
"lv": "Ukrainas hrivna",
|
||||||
"ms": "Hryvnia",
|
"ms": "Hryvnia",
|
||||||
"nl": "Oekraïense hryvnja",
|
"nl": "Oekraïense hryvnja",
|
||||||
"oc": "Hryvnia",
|
"oc": "Hryvnia",
|
||||||
|
|
@ -14484,7 +14409,7 @@
|
||||||
"sr": "украјинска хривња",
|
"sr": "украјинска хривња",
|
||||||
"sv": "Hryvnja",
|
"sv": "Hryvnja",
|
||||||
"ta": "ஹிருன்யா",
|
"ta": "ஹிருன்யா",
|
||||||
"th": "ฮริฟเนียยูเครน",
|
"th": "ฮรึวญา",
|
||||||
"tr": "Grivna",
|
"tr": "Grivna",
|
||||||
"uk": "гривня",
|
"uk": "гривня",
|
||||||
"vi": "Hryvnia Ukraina",
|
"vi": "Hryvnia Ukraina",
|
||||||
|
|
@ -14576,7 +14501,6 @@
|
||||||
"af": "Uruguaanse Peso",
|
"af": "Uruguaanse Peso",
|
||||||
"ar": "بيزو أوروغواني",
|
"ar": "بيزو أوروغواني",
|
||||||
"bg": "Уругвайско песо",
|
"bg": "Уругвайско песо",
|
||||||
"ca": "peso uruguaià",
|
|
||||||
"cs": "Uruguayské peso",
|
"cs": "Uruguayské peso",
|
||||||
"de": "uruguayischer Peso",
|
"de": "uruguayischer Peso",
|
||||||
"en": "Uruguayan peso",
|
"en": "Uruguayan peso",
|
||||||
|
|
@ -14603,6 +14527,7 @@
|
||||||
"sv": "Uruguayansk peso",
|
"sv": "Uruguayansk peso",
|
||||||
"tr": "Uruguay pesosu",
|
"tr": "Uruguay pesosu",
|
||||||
"uk": "Уругвайський песо",
|
"uk": "Уругвайський песо",
|
||||||
|
"ca": "peso uruguaià",
|
||||||
"he": "פסו של אורוגוואי",
|
"he": "פסו של אורוגוואי",
|
||||||
"oc": "Peso uruguaian"
|
"oc": "Peso uruguaian"
|
||||||
},
|
},
|
||||||
|
|
@ -14757,7 +14682,7 @@
|
||||||
"oc": "Tala"
|
"oc": "Tala"
|
||||||
},
|
},
|
||||||
"XAF": {
|
"XAF": {
|
||||||
"ar": "فرنك وسط أفريقي",
|
"ar": "فرنك وسط إفريقي",
|
||||||
"bg": "Централноафрикански CFA франк",
|
"bg": "Централноафрикански CFA франк",
|
||||||
"ca": "franc CFA de l'Àfrica Central",
|
"ca": "franc CFA de l'Àfrica Central",
|
||||||
"cs": "Středoafrický frank",
|
"cs": "Středoafrický frank",
|
||||||
|
|
@ -15018,7 +14943,7 @@
|
||||||
},
|
},
|
||||||
"ZAR": {
|
"ZAR": {
|
||||||
"af": "Suid-Afrikaanse Rand",
|
"af": "Suid-Afrikaanse Rand",
|
||||||
"ar": "راند جنوب أفريقي",
|
"ar": "راند جنوب إفريقي",
|
||||||
"bg": "Южноафрикански ранд",
|
"bg": "Южноафрикански ранд",
|
||||||
"ca": "rand",
|
"ca": "rand",
|
||||||
"cs": "Jihoafrický rand",
|
"cs": "Jihoafrický rand",
|
||||||
|
|
@ -15086,11 +15011,12 @@
|
||||||
"oc": "Kwacha zambian"
|
"oc": "Kwacha zambian"
|
||||||
},
|
},
|
||||||
"ZWL": {
|
"ZWL": {
|
||||||
"en": "Zimbabwe dollar",
|
"en": "Zimbabwean dollar",
|
||||||
"es": "Dólar RTGS",
|
"es": "Dólar RTGS",
|
||||||
"fr": "Real Time Gross Settlement dollar",
|
"fr": "Real Time Gross Settlement dollar",
|
||||||
"it": "dollaro RTGS",
|
"it": "dollaro RTGS",
|
||||||
"ja": "RTGSドル"
|
"ja": "RTGSドル",
|
||||||
|
"pt": "Dólar do Zimbábue (2019–presente)"
|
||||||
},
|
},
|
||||||
"CHE": {
|
"CHE": {
|
||||||
"en": "WIR Euro"
|
"en": "WIR Euro"
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
"108.0",
|
"110.0",
|
||||||
"107.0"
|
"109.0"
|
||||||
],
|
],
|
||||||
"os": [
|
"os": [
|
||||||
"Windows NT 10.0; Win64; x64",
|
"Windows NT 10.0; Win64; x64",
|
||||||
|
|
|
||||||
|
|
@ -216,18 +216,11 @@
|
||||||
"Q1137675": "cr",
|
"Q1137675": "cr",
|
||||||
"Q114002440": "𒄀",
|
"Q114002440": "𒄀",
|
||||||
"Q114002534": "𒃻",
|
"Q114002534": "𒃻",
|
||||||
"Q114002568": "𒂠",
|
|
||||||
"Q114002639": "𒈨𒊑",
|
"Q114002639": "𒈨𒊑",
|
||||||
"Q114002688": "𒋗𒋛",
|
|
||||||
"Q114002734": "𒊺",
|
|
||||||
"Q114002796": "𒂆",
|
"Q114002796": "𒂆",
|
||||||
"Q114002897": "𒊬",
|
|
||||||
"Q114002930": "𒀺",
|
"Q114002930": "𒀺",
|
||||||
"Q114002955": "𒀹𒃷",
|
"Q114002955": "𒀹𒃷",
|
||||||
"Q114002974": "𒃷",
|
"Q114002974": "𒃷",
|
||||||
"Q114002998": "𒁓",
|
|
||||||
"Q114018694": "𒄥",
|
|
||||||
"Q114018781": "𒁀𒌷𒂵",
|
|
||||||
"Q1140444": "Zb",
|
"Q1140444": "Zb",
|
||||||
"Q1140577": "Yb",
|
"Q1140577": "Yb",
|
||||||
"Q114589269": "A",
|
"Q114589269": "A",
|
||||||
|
|
@ -243,6 +236,9 @@
|
||||||
"Q115533751": "rm",
|
"Q115533751": "rm",
|
||||||
"Q115533764": "qm",
|
"Q115533764": "qm",
|
||||||
"Q115533776": "Qm",
|
"Q115533776": "Qm",
|
||||||
|
"Q116432446": "ᵐ",
|
||||||
|
"Q116432563": "ˢ",
|
||||||
|
"Q116443090": "ʰ",
|
||||||
"Q1165799": "mil",
|
"Q1165799": "mil",
|
||||||
"Q11776930": "Mg",
|
"Q11776930": "Mg",
|
||||||
"Q11830636": "psf",
|
"Q11830636": "psf",
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
# lint: pylint
|
# lint: pylint
|
||||||
"""Semantic Scholar (Science)
|
"""Semantic Scholar (Science)
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=use-dict-literal
|
||||||
|
|
||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
from searx.utils import html_to_text
|
from searx.utils import html_to_text
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
"""Docker Hub (IT)
|
"""Docker Hub (IT)
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=use-dict-literal
|
||||||
|
|
||||||
from json import loads
|
from json import loads
|
||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@ def request(query, params):
|
||||||
# link again and again ..
|
# link again and again ..
|
||||||
|
|
||||||
params['headers']['Content-Type'] = 'application/x-www-form-urlencoded'
|
params['headers']['Content-Type'] = 'application/x-www-form-urlencoded'
|
||||||
params['headers']['Referer'] = 'https://lite.duckduckgo.com/'
|
params['headers']['Referer'] = 'https://google.com/'
|
||||||
|
|
||||||
# initial page does not have an offset
|
# initial page does not have an offset
|
||||||
if params['pageno'] == 2:
|
if params['pageno'] == 2:
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"""
|
"""
|
||||||
Gigablast (Web)
|
Gigablast (Web)
|
||||||
"""
|
"""
|
||||||
# pylint: disable=invalid-name
|
# pylint: disable=invalid-name, use-dict-literal
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from time import time
|
from time import time
|
||||||
|
|
|
||||||
|
|
@ -22,9 +22,7 @@ about = {
|
||||||
categories = ["videos"]
|
categories = ["videos"]
|
||||||
paging = True
|
paging = True
|
||||||
base_url = "https://peer.tube"
|
base_url = "https://peer.tube"
|
||||||
supported_languages_url = (
|
supported_languages_url = 'https://peer.tube/api/v1/videos/languages'
|
||||||
'https://framagit.org/framasoft/peertube/search-index/-/raw/master/client/src/views/Search.vue'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
# do search-request
|
# do search-request
|
||||||
|
|
@ -84,9 +82,6 @@ def response(resp):
|
||||||
|
|
||||||
|
|
||||||
def _fetch_supported_languages(resp):
|
def _fetch_supported_languages(resp):
|
||||||
import re
|
videolanguages = resp.json()
|
||||||
|
peertube_languages = list(videolanguages.keys())
|
||||||
# https://docs.python.org/3/howto/regex.html#greedy-versus-non-greedy
|
|
||||||
videolanguages = re.search(r"videoLanguages \(\)[^\n]+(.*?)\]", resp.text, re.DOTALL)
|
|
||||||
peertube_languages = [m.group(1) for m in re.finditer(r"\{ id: '([a-z]+)', label:", videolanguages.group(1))]
|
|
||||||
return peertube_languages
|
return peertube_languages
|
||||||
|
|
|
||||||
|
|
@ -62,8 +62,7 @@ sc_code = ''
|
||||||
def raise_captcha(resp):
|
def raise_captcha(resp):
|
||||||
|
|
||||||
if str(resp.url).startswith('https://www.startpage.com/sp/captcha'):
|
if str(resp.url).startswith('https://www.startpage.com/sp/captcha'):
|
||||||
# suspend CAPTCHA for 7 days
|
raise SearxEngineCaptchaException()
|
||||||
raise SearxEngineCaptchaException(suspended_time=7 * 24 * 3600)
|
|
||||||
|
|
||||||
|
|
||||||
def get_sc_code(headers):
|
def get_sc_code(headers):
|
||||||
|
|
|
||||||
|
|
@ -260,7 +260,7 @@ def get_results(attribute_result, attributes, language):
|
||||||
infobox_urls.append({'title': attribute.get_label(language), 'url': url, **attribute.kwargs})
|
infobox_urls.append({'title': attribute.get_label(language), 'url': url, **attribute.kwargs})
|
||||||
# "normal" results (not infobox) include official website and Wikipedia links.
|
# "normal" results (not infobox) include official website and Wikipedia links.
|
||||||
if attribute.kwargs.get('official') or attribute_type == WDArticle:
|
if attribute.kwargs.get('official') or attribute_type == WDArticle:
|
||||||
results.append({'title': infobox_title, 'url': url})
|
results.append({'title': infobox_title, 'url': url, "content": infobox_content})
|
||||||
# update the infobox_id with the wikipedia URL
|
# update the infobox_id with the wikipedia URL
|
||||||
# first the local wikipedia URL, and as fallback the english wikipedia URL
|
# first the local wikipedia URL, and as fallback the english wikipedia URL
|
||||||
if attribute_type == WDArticle and (
|
if attribute_type == WDArticle and (
|
||||||
|
|
|
||||||
|
|
@ -106,9 +106,9 @@ def _fetch_supported_languages(resp):
|
||||||
for tr in trs:
|
for tr in trs:
|
||||||
td = tr.xpath('./td')
|
td = tr.xpath('./td')
|
||||||
code = td[3].xpath('./a')[0].text
|
code = td[3].xpath('./a')[0].text
|
||||||
name = td[2].xpath('./a')[0].text
|
name = td[1].xpath('./a')[0].text
|
||||||
english_name = td[1].xpath('./a')[0].text
|
english_name = td[1].xpath('./a')[0].text
|
||||||
articles = int(td[4].xpath('./a/b')[0].text.replace(',', ''))
|
articles = int(td[4].xpath('./a')[0].text.replace(',', ''))
|
||||||
# exclude languages with too few articles
|
# exclude languages with too few articles
|
||||||
if articles >= 100:
|
if articles >= 100:
|
||||||
supported_languages[code] = {"name": name, "english_name": english_name}
|
supported_languages[code] = {"name": name, "english_name": english_name}
|
||||||
|
|
|
||||||
|
|
@ -1,29 +1,19 @@
|
||||||
'''
|
# -*- coding: utf-8 -*-
|
||||||
searx is free software: you can redistribute it and/or modify
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
it under the terms of the GNU Affero General Public License as published by
|
# lint: pylint
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
"""Exception types raised by SearXNG modules.
|
||||||
(at your option) any later version.
|
"""
|
||||||
|
|
||||||
searx is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU Affero General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Affero General Public License
|
|
||||||
along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
|
||||||
|
|
||||||
(C) 2017- by Alexandre Flament, <alex@al-f.net>
|
|
||||||
'''
|
|
||||||
|
|
||||||
|
|
||||||
from typing import Optional, Union
|
from typing import Optional, Union
|
||||||
|
|
||||||
|
|
||||||
class SearxException(Exception):
|
class SearxException(Exception):
|
||||||
pass
|
"""Base SearXNG exception."""
|
||||||
|
|
||||||
|
|
||||||
class SearxParameterException(SearxException):
|
class SearxParameterException(SearxException):
|
||||||
|
"""Raised when query miss a required paramater"""
|
||||||
|
|
||||||
def __init__(self, name, value):
|
def __init__(self, name, value):
|
||||||
if value == '' or value is None:
|
if value == '' or value is None:
|
||||||
message = 'Empty ' + name + ' parameter'
|
message = 'Empty ' + name + ' parameter'
|
||||||
|
|
@ -69,19 +59,38 @@ class SearxEngineAPIException(SearxEngineResponseException):
|
||||||
class SearxEngineAccessDeniedException(SearxEngineResponseException):
|
class SearxEngineAccessDeniedException(SearxEngineResponseException):
|
||||||
"""The website is blocking the access"""
|
"""The website is blocking the access"""
|
||||||
|
|
||||||
def __init__(self, suspended_time=24 * 3600, message='Access denied'):
|
SUSPEND_TIME_SETTING = "search.suspended_times.SearxEngineAccessDenied"
|
||||||
|
"""This settings contains the default suspended time (default 86400 sec / 1
|
||||||
|
day)."""
|
||||||
|
|
||||||
|
def __init__(self, suspended_time: int = None, message: str = 'Access denied'):
|
||||||
|
"""Generic exception to raise when an engine denies access to the results.
|
||||||
|
|
||||||
|
:param suspended_time: How long the engine is going to be suspended in
|
||||||
|
second. Defaults to None.
|
||||||
|
:type suspended_time: int, None
|
||||||
|
:param message: Internal message. Defaults to ``Access denied``
|
||||||
|
:type message: str
|
||||||
|
"""
|
||||||
|
suspended_time = suspended_time or self._get_default_suspended_time()
|
||||||
super().__init__(message + ', suspended_time=' + str(suspended_time))
|
super().__init__(message + ', suspended_time=' + str(suspended_time))
|
||||||
self.suspended_time = suspended_time
|
self.suspended_time = suspended_time
|
||||||
self.message = message
|
self.message = message
|
||||||
|
|
||||||
|
def _get_default_suspended_time(self):
|
||||||
|
from searx import get_setting # pylint: disable=C0415
|
||||||
|
|
||||||
|
return get_setting(self.SUSPEND_TIME_SETTING)
|
||||||
|
|
||||||
|
|
||||||
class SearxEngineCaptchaException(SearxEngineAccessDeniedException):
|
class SearxEngineCaptchaException(SearxEngineAccessDeniedException):
|
||||||
"""The website has returned a CAPTCHA
|
"""The website has returned a CAPTCHA."""
|
||||||
|
|
||||||
By default, searx stops sending requests to this engine for 1 day.
|
SUSPEND_TIME_SETTING = "search.suspended_times.SearxEngineCaptcha"
|
||||||
"""
|
"""This settings contains the default suspended time (default 86400 sec / 1
|
||||||
|
day)."""
|
||||||
|
|
||||||
def __init__(self, suspended_time=24 * 3600, message='CAPTCHA'):
|
def __init__(self, suspended_time=None, message='CAPTCHA'):
|
||||||
super().__init__(message=message, suspended_time=suspended_time)
|
super().__init__(message=message, suspended_time=suspended_time)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -91,7 +100,11 @@ class SearxEngineTooManyRequestsException(SearxEngineAccessDeniedException):
|
||||||
By default, searx stops sending requests to this engine for 1 hour.
|
By default, searx stops sending requests to this engine for 1 hour.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, suspended_time=3600, message='Too many request'):
|
SUSPEND_TIME_SETTING = "search.suspended_times.SearxEngineTooManyRequests"
|
||||||
|
"""This settings contains the default suspended time (default 3660 sec / 1
|
||||||
|
hour)."""
|
||||||
|
|
||||||
|
def __init__(self, suspended_time=None, message='Too many request'):
|
||||||
super().__init__(message=message, suspended_time=suspended_time)
|
super().__init__(message=message, suspended_time=suspended_time)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -79,7 +79,7 @@ machen. Je dezentraler das Internet ist, desto mehr Freiheit haben wir!
|
||||||
[SearXNG Dokumentation]: {{get_setting('brand.docs_url')}}
|
[SearXNG Dokumentation]: {{get_setting('brand.docs_url')}}
|
||||||
[searx]: https://github.com/searx/searx
|
[searx]: https://github.com/searx/searx
|
||||||
[Metasuchmaschine]: https://de.wikipedia.org/wiki/Metasuchmaschine
|
[Metasuchmaschine]: https://de.wikipedia.org/wiki/Metasuchmaschine
|
||||||
[Weblate]: https://weblate.bubu1.eu/projects/searxng/
|
[Weblate]: https://translate.codeberg.org/projects/searxng/
|
||||||
[Seeks-Projekt]: https://beniz.github.io/seeks/
|
[Seeks-Projekt]: https://beniz.github.io/seeks/
|
||||||
[OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
|
[OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
|
||||||
[Firefox]: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox
|
[Firefox]: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ internet is, the more freedom we have!
|
||||||
[SearXNG docs]: {{get_setting('brand.docs_url')}}
|
[SearXNG docs]: {{get_setting('brand.docs_url')}}
|
||||||
[searx]: https://github.com/searx/searx
|
[searx]: https://github.com/searx/searx
|
||||||
[metasearch engine]: https://en.wikipedia.org/wiki/Metasearch_engine
|
[metasearch engine]: https://en.wikipedia.org/wiki/Metasearch_engine
|
||||||
[Weblate]: https://weblate.bubu1.eu/projects/searxng/
|
[Weblate]: https://translate.codeberg.org/projects/searxng/
|
||||||
[Seeks project]: https://beniz.github.io/seeks/
|
[Seeks project]: https://beniz.github.io/seeks/
|
||||||
[OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
|
[OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
|
||||||
[Firefox]: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox
|
[Firefox]: https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ terdesentralisasinya internet, lebih banyak kebebasan yang kita punya!
|
||||||
[dokumentasi SearXNG]: {{get_setting('brand.docs_url')}}
|
[dokumentasi SearXNG]: {{get_setting('brand.docs_url')}}
|
||||||
[searx]: https://github.com/searx/searx
|
[searx]: https://github.com/searx/searx
|
||||||
[mesin pencari meta]: https://id.wikipedia.org/wiki/Mesin_pencari_web#Mesin_Pencari_dan_Mesin_Pencari-meta
|
[mesin pencari meta]: https://id.wikipedia.org/wiki/Mesin_pencari_web#Mesin_Pencari_dan_Mesin_Pencari-meta
|
||||||
[Weblate]: https://weblate.bubu1.eu/projects/searxng/
|
[Weblate]: https://translate.codeberg.org/projects/searxng/
|
||||||
[proyek Seeks]: https://beniz.github.io/seeks/
|
[proyek Seeks]: https://beniz.github.io/seeks/
|
||||||
[OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
|
[OpenSearch]: https://github.com/dewitt/opensearch/blob/master/opensearch-1-1-draft-6.md
|
||||||
[Firefox]: https://support.mozilla.org/id/kb/add-or-remove-search-engine-firefox
|
[Firefox]: https://support.mozilla.org/id/kb/add-or-remove-search-engine-firefox
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ def get_translations():
|
||||||
use_translation = flask.request.form.get('use-translation')
|
use_translation = flask.request.form.get('use-translation')
|
||||||
if use_translation in ADDITIONAL_TRANSLATIONS:
|
if use_translation in ADDITIONAL_TRANSLATIONS:
|
||||||
babel_ext = flask_babel.current_app.extensions['babel']
|
babel_ext = flask_babel.current_app.extensions['babel']
|
||||||
return Translations.load(next(babel_ext.translation_directories), use_translation)
|
return Translations.load(babel_ext.translation_directories[0], use_translation)
|
||||||
return _flask_babel_get_translations()
|
return _flask_babel_get_translations()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
|
import random
|
||||||
from ssl import SSLContext
|
from ssl import SSLContext
|
||||||
import threading
|
import threading
|
||||||
from typing import Any, Dict
|
from typing import Any, Dict
|
||||||
|
|
@ -28,10 +29,34 @@ LOOP = None
|
||||||
SSLCONTEXTS: Dict[Any, SSLContext] = {}
|
SSLCONTEXTS: Dict[Any, SSLContext] = {}
|
||||||
|
|
||||||
|
|
||||||
|
def shuffle_ciphers(ssl_context):
|
||||||
|
"""Shuffle httpx's default ciphers of a SSL context randomly.
|
||||||
|
|
||||||
|
From `What Is TLS Fingerprint and How to Bypass It`_
|
||||||
|
|
||||||
|
> When implementing TLS fingerprinting, servers can't operate based on a
|
||||||
|
> locked-in whitelist database of fingerprints. New fingerprints appear
|
||||||
|
> when web clients or TLS libraries release new versions. So, they have to
|
||||||
|
> live off a blocklist database instead.
|
||||||
|
> ...
|
||||||
|
> It's safe to leave the first three as is but shuffle the remaining ciphers
|
||||||
|
> and you can bypass the TLS fingerprint check.
|
||||||
|
|
||||||
|
.. _What Is TLS Fingerprint and How to Bypass It:
|
||||||
|
https://www.zenrows.com/blog/what-is-tls-fingerprint#how-to-bypass-tls-fingerprinting
|
||||||
|
|
||||||
|
"""
|
||||||
|
c_list = httpx._config.DEFAULT_CIPHERS.split(':') # pylint: disable=protected-access
|
||||||
|
sc_list, c_list = c_list[:3], c_list[3:]
|
||||||
|
random.shuffle(c_list)
|
||||||
|
ssl_context.set_ciphers(":".join(sc_list + c_list))
|
||||||
|
|
||||||
|
|
||||||
def get_sslcontexts(proxy_url=None, cert=None, verify=True, trust_env=True, http2=False):
|
def get_sslcontexts(proxy_url=None, cert=None, verify=True, trust_env=True, http2=False):
|
||||||
key = (proxy_url, cert, verify, trust_env, http2)
|
key = (proxy_url, cert, verify, trust_env, http2)
|
||||||
if key not in SSLCONTEXTS:
|
if key not in SSLCONTEXTS:
|
||||||
SSLCONTEXTS[key] = httpx.create_ssl_context(cert, verify, trust_env, http2)
|
SSLCONTEXTS[key] = httpx.create_ssl_context(cert, verify, trust_env, http2)
|
||||||
|
shuffle_ciphers(SSLCONTEXTS[key])
|
||||||
return SSLCONTEXTS[key]
|
return SSLCONTEXTS[key]
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ from searx.exceptions import (
|
||||||
SearxEngineTooManyRequestsException,
|
SearxEngineTooManyRequestsException,
|
||||||
SearxEngineAccessDeniedException,
|
SearxEngineAccessDeniedException,
|
||||||
)
|
)
|
||||||
|
from searx import get_setting
|
||||||
|
|
||||||
|
|
||||||
def is_cloudflare_challenge(resp):
|
def is_cloudflare_challenge(resp):
|
||||||
|
|
@ -33,15 +34,22 @@ def raise_for_cloudflare_captcha(resp):
|
||||||
if is_cloudflare_challenge(resp):
|
if is_cloudflare_challenge(resp):
|
||||||
# https://support.cloudflare.com/hc/en-us/articles/200170136-Understanding-Cloudflare-Challenge-Passage-Captcha-
|
# https://support.cloudflare.com/hc/en-us/articles/200170136-Understanding-Cloudflare-Challenge-Passage-Captcha-
|
||||||
# suspend for 2 weeks
|
# suspend for 2 weeks
|
||||||
raise SearxEngineCaptchaException(message='Cloudflare CAPTCHA', suspended_time=3600 * 24 * 15)
|
raise SearxEngineCaptchaException(
|
||||||
|
message='Cloudflare CAPTCHA', suspended_time=get_setting('search.suspended_times.cf_SearxEngineCaptcha')
|
||||||
|
)
|
||||||
|
|
||||||
if is_cloudflare_firewall(resp):
|
if is_cloudflare_firewall(resp):
|
||||||
raise SearxEngineAccessDeniedException(message='Cloudflare Firewall', suspended_time=3600 * 24)
|
raise SearxEngineAccessDeniedException(
|
||||||
|
message='Cloudflare Firewall',
|
||||||
|
suspended_time=get_setting('search.suspended_times.cf_SearxEngineAccessDenied'),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def raise_for_recaptcha(resp):
|
def raise_for_recaptcha(resp):
|
||||||
if resp.status_code == 503 and '"https://www.google.com/recaptcha/' in resp.text:
|
if resp.status_code == 503 and '"https://www.google.com/recaptcha/' in resp.text:
|
||||||
raise SearxEngineCaptchaException(message='ReCAPTCHA', suspended_time=3600 * 24 * 7)
|
raise SearxEngineCaptchaException(
|
||||||
|
message='ReCAPTCHA', suspended_time=get_setting('search.suspended_times.recaptcha_SearxEngineCaptcha')
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def raise_for_captcha(resp):
|
def raise_for_captcha(resp):
|
||||||
|
|
@ -64,9 +72,7 @@ def raise_for_httperror(resp):
|
||||||
if resp.status_code and resp.status_code >= 400:
|
if resp.status_code and resp.status_code >= 400:
|
||||||
raise_for_captcha(resp)
|
raise_for_captcha(resp)
|
||||||
if resp.status_code in (402, 403):
|
if resp.status_code in (402, 403):
|
||||||
raise SearxEngineAccessDeniedException(
|
raise SearxEngineAccessDeniedException(message='HTTP error ' + str(resp.status_code))
|
||||||
message='HTTP error ' + str(resp.status_code), suspended_time=3600 * 24
|
|
||||||
)
|
|
||||||
if resp.status_code == 429:
|
if resp.status_code == 429:
|
||||||
raise SearxEngineTooManyRequestsException()
|
raise SearxEngineTooManyRequestsException()
|
||||||
resp.raise_for_status()
|
resp.raise_for_status()
|
||||||
|
|
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
||||||
# lint: pylint
|
|
||||||
"""Plugin to detect the search language from the search query.
|
|
||||||
|
|
||||||
The language detection is done by using the fastText_ library (`python
|
|
||||||
fasttext`_). fastText_ distributes the `language identification model`_, for
|
|
||||||
reference:
|
|
||||||
|
|
||||||
- `FastText.zip: Compressing text classification models`_
|
|
||||||
- `Bag of Tricks for Efficient Text Classification`_
|
|
||||||
|
|
||||||
The `language identification model`_ support the language codes (ISO-639-3)::
|
|
||||||
|
|
||||||
af als am an ar arz as ast av az azb ba bar bcl be bg bh bn bo bpy br bs bxr
|
|
||||||
ca cbk ce ceb ckb co cs cv cy da de diq dsb dty dv el eml en eo es et eu fa
|
|
||||||
fi fr frr fy ga gd gl gn gom gu gv he hi hif hr hsb ht hu hy ia id ie ilo io
|
|
||||||
is it ja jbo jv ka kk km kn ko krc ku kv kw ky la lb lez li lmo lo lrc lt lv
|
|
||||||
mai mg mhr min mk ml mn mr mrj ms mt mwl my myv mzn nah nap nds ne new nl nn
|
|
||||||
no oc or os pa pam pfl pl pms pnb ps pt qu rm ro ru rue sa sah sc scn sco sd
|
|
||||||
sh si sk sl so sq sr su sv sw ta te tg th tk tl tr tt tyv ug uk ur uz vec vep
|
|
||||||
vi vls vo wa war wuu xal xmf yi yo yue zh
|
|
||||||
|
|
||||||
The `language identification model`_ is harmonized with the SearXNG's language
|
|
||||||
(locale) model. General conditions of SearXNG's locale model are:
|
|
||||||
|
|
||||||
a. SearXNG's locale of a query is passed to the
|
|
||||||
:py:obj:`searx.locales.get_engine_locale` to get a language and/or region
|
|
||||||
code that is used by an engine.
|
|
||||||
|
|
||||||
b. SearXNG and most of the engines do not support all the languages from
|
|
||||||
language model and there might be also a discrepancy in the ISO-639-3 and
|
|
||||||
ISO-639-2 handling (:py:obj:`searx.locales.get_engine_locale`). Further
|
|
||||||
more, in SearXNG the locales like ``zh-TH`` (``zh-CN``) are mapped to
|
|
||||||
``zh_Hant`` (``zh_Hans``).
|
|
||||||
|
|
||||||
Conclusion: This plugin does only auto-detect the languages a user can select in
|
|
||||||
the language menu (:py:obj:`supported_langs`).
|
|
||||||
|
|
||||||
SearXNG's locale of a query comes from (*highest wins*):
|
|
||||||
|
|
||||||
1. The ``Accept-Language`` header from user's HTTP client.
|
|
||||||
2. The user select a locale in the preferences.
|
|
||||||
3. The user select a locale from the menu in the query form (e.g. ``:zh-TW``)
|
|
||||||
4. This plugin is activated in the preferences and the locale (only the language
|
|
||||||
code / none region code) comes from the fastText's language detection.
|
|
||||||
|
|
||||||
Conclusion: There is a conflict between the language selected by the user and
|
|
||||||
the language from language detection of this plugin. For example, the user
|
|
||||||
explicitly selects the German locale via the search syntax to search for a term
|
|
||||||
that is identified as an English term (try ``:de-DE thermomix``, for example).
|
|
||||||
|
|
||||||
.. hint::
|
|
||||||
|
|
||||||
To SearXNG maintainers; please take into account: under some circumstances
|
|
||||||
the auto-detection of the language of this plugin could be detrimental to
|
|
||||||
users expectations. Its not recommended to activate this plugin by
|
|
||||||
default. It should always be the user's decision whether to activate this
|
|
||||||
plugin or not.
|
|
||||||
|
|
||||||
.. _fastText: https://fasttext.cc/
|
|
||||||
.. _python fasttext: https://pypi.org/project/fasttext/
|
|
||||||
.. _language identification model: https://fasttext.cc/docs/en/language-identification.html
|
|
||||||
.. _Bag of Tricks for Efficient Text Classification: https://arxiv.org/abs/1607.01759
|
|
||||||
.. _`FastText.zip: Compressing text classification models`: https://arxiv.org/abs/1612.03651
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
from flask_babel import gettext
|
|
||||||
import babel
|
|
||||||
|
|
||||||
from searx.utils import detect_language
|
|
||||||
from searx.languages import language_codes
|
|
||||||
|
|
||||||
name = gettext('Autodetect search language')
|
|
||||||
description = gettext('Automatically detect the query search language and switch to it.')
|
|
||||||
preference_section = 'general'
|
|
||||||
default_on = False
|
|
||||||
|
|
||||||
supported_langs = set()
|
|
||||||
"""Languages supported by most searxng engines (:py:obj:`searx.languages.language_codes`)."""
|
|
||||||
|
|
||||||
|
|
||||||
def pre_search(request, search): # pylint: disable=unused-argument
|
|
||||||
lang = detect_language(search.search_query.query, min_probability=0)
|
|
||||||
if lang in supported_langs:
|
|
||||||
search.search_query.lang = lang
|
|
||||||
try:
|
|
||||||
search.search_query.locale = babel.Locale.parse(lang)
|
|
||||||
except babel.core.UnknownLocaleError:
|
|
||||||
pass
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
def init(app, settings): # pylint: disable=unused-argument
|
|
||||||
for searxng_locale in language_codes:
|
|
||||||
supported_langs.add(searxng_locale[0].split('-')[0])
|
|
||||||
return True
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
# lint: pylint
|
# lint: pylint
|
||||||
"""A plugin to check if the ip address of the request is a TOR exit node if the
|
"""A plugin to check if the ip address of the request is a Tor exit-node if the
|
||||||
user searches for ``tor-check``. It fetches the tor exit node list from
|
user searches for ``tor-check``. It fetches the tor exit node list from
|
||||||
https://check.torproject.org/exit-addresses and parses all the IPs into a list,
|
https://check.torproject.org/exit-addresses and parses all the IPs into a list,
|
||||||
then checks if the user's IP address is in it.
|
then checks if the user's IP address is in it.
|
||||||
|
|
@ -26,8 +26,8 @@ name = gettext("Tor check plugin")
|
||||||
'''Translated name of the plugin'''
|
'''Translated name of the plugin'''
|
||||||
|
|
||||||
description = gettext(
|
description = gettext(
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and"
|
"This plugin checks if the address of the request is a Tor exit-node, and"
|
||||||
" informs the user if it is, like check.torproject.org but from searxng."
|
" informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
)
|
)
|
||||||
'''Translated description of the plugin.'''
|
'''Translated description of the plugin.'''
|
||||||
|
|
||||||
|
|
@ -60,7 +60,7 @@ def post_search(request, search):
|
||||||
# No answer, return error
|
# No answer, return error
|
||||||
search.result_container.answers["tor"] = {
|
search.result_container.answers["tor"] = {
|
||||||
"answer": gettext(
|
"answer": gettext(
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is unreachable."
|
"Could not download the list of Tor exit-nodes from: https://check.torproject.org/exit-addresses"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return True
|
return True
|
||||||
|
|
@ -75,13 +75,17 @@ def post_search(request, search):
|
||||||
if ip_address in node_list:
|
if ip_address in node_list:
|
||||||
search.result_container.answers["tor"] = {
|
search.result_container.answers["tor"] = {
|
||||||
"answer": gettext(
|
"answer": gettext(
|
||||||
"You are using TOR. Your IP address seems to be: {ip_address}.".format(ip_address=ip_address)
|
"You are using Tor and it looks like you have this external IP address: {ip_address}".format(
|
||||||
|
ip_address=ip_address
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
else:
|
else:
|
||||||
search.result_container.answers["tor"] = {
|
search.result_container.answers["tor"] = {
|
||||||
"answer": gettext(
|
"answer": gettext(
|
||||||
"You are not using TOR. Your IP address seems to be: {ip_address}.".format(ip_address=ip_address)
|
"You are not using Tor and you have this external IP address: {ip_address}".format(
|
||||||
|
ip_address=ip_address
|
||||||
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -154,7 +154,7 @@ class SearchLanguageSetting(EnumStringSetting):
|
||||||
"""Available choices may change, so user's value may not be in choices anymore"""
|
"""Available choices may change, so user's value may not be in choices anymore"""
|
||||||
|
|
||||||
def _validate_selection(self, selection):
|
def _validate_selection(self, selection):
|
||||||
if selection != '' and not VALID_LANGUAGE_CODE.match(selection):
|
if selection != '' and selection != 'auto' and not VALID_LANGUAGE_CODE.match(selection):
|
||||||
raise ValidationException('Invalid language code: "{0}"'.format(selection))
|
raise ValidationException('Invalid language code: "{0}"'.format(selection))
|
||||||
|
|
||||||
def parse(self, data: str):
|
def parse(self, data: str):
|
||||||
|
|
|
||||||
|
|
@ -104,7 +104,7 @@ class LanguageParser(QueryPartParser):
|
||||||
break
|
break
|
||||||
|
|
||||||
# user may set a valid, yet not selectable language
|
# user may set a valid, yet not selectable language
|
||||||
if VALID_LANGUAGE_CODE.match(value):
|
if VALID_LANGUAGE_CODE.match(value) or value == 'auto':
|
||||||
lang_parts = value.split('-')
|
lang_parts = value.split('-')
|
||||||
if len(lang_parts) > 1:
|
if len(lang_parts) > 1:
|
||||||
value = lang_parts[0].lower() + '-' + lang_parts[1].upper()
|
value = lang_parts[0].lower() + '-' + lang_parts[1].upper()
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,12 @@
|
||||||
# pylint: disable=missing-module-docstring, too-few-public-methods
|
# pylint: disable=missing-module-docstring, too-few-public-methods
|
||||||
|
|
||||||
import threading
|
import threading
|
||||||
|
from copy import copy
|
||||||
from timeit import default_timer
|
from timeit import default_timer
|
||||||
from uuid import uuid4
|
from uuid import uuid4
|
||||||
|
|
||||||
import flask
|
import flask
|
||||||
|
import babel
|
||||||
|
|
||||||
from searx import settings
|
from searx import settings
|
||||||
from searx.answerers import ask
|
from searx.answerers import ask
|
||||||
|
|
@ -20,6 +22,7 @@ from searx.network import initialize as initialize_network, check_network_config
|
||||||
from searx.metrics import initialize as initialize_metrics, counter_inc, histogram_observe_time
|
from searx.metrics import initialize as initialize_metrics, counter_inc, histogram_observe_time
|
||||||
from searx.search.processors import PROCESSORS, initialize as initialize_processors
|
from searx.search.processors import PROCESSORS, initialize as initialize_processors
|
||||||
from searx.search.checker import initialize as initialize_checker
|
from searx.search.checker import initialize as initialize_checker
|
||||||
|
from searx.utils import detect_language
|
||||||
|
|
||||||
|
|
||||||
logger = logger.getChild('search')
|
logger = logger.getChild('search')
|
||||||
|
|
@ -37,18 +40,57 @@ def initialize(settings_engines=None, enable_checker=False, check_network=False,
|
||||||
initialize_checker()
|
initialize_checker()
|
||||||
|
|
||||||
|
|
||||||
|
def replace_auto_language(search_query: SearchQuery):
|
||||||
|
"""
|
||||||
|
Do nothing except if `search_query.lang` is "auto".
|
||||||
|
In this case:
|
||||||
|
* the value "auto" is replaced by the detected language of the query.
|
||||||
|
The default value is "all" when no language is detected.
|
||||||
|
* `search_query.locale` is updated accordingly
|
||||||
|
|
||||||
|
Use :py:obj:`searx.utils.detect_language` with `only_search_languages=True` to keep
|
||||||
|
only languages supported by the engines.
|
||||||
|
"""
|
||||||
|
if search_query.lang != 'auto':
|
||||||
|
return
|
||||||
|
|
||||||
|
detected_lang = detect_language(search_query.query, threshold=0.3, only_search_languages=True)
|
||||||
|
if detected_lang is None:
|
||||||
|
# fallback to 'all' if no language has been detected
|
||||||
|
search_query.lang = 'all'
|
||||||
|
search_query.locale = None
|
||||||
|
return
|
||||||
|
search_query.lang = detected_lang
|
||||||
|
try:
|
||||||
|
search_query.locale = babel.Locale.parse(search_query.lang)
|
||||||
|
except babel.core.UnknownLocaleError:
|
||||||
|
search_query.locale = None
|
||||||
|
|
||||||
|
|
||||||
class Search:
|
class Search:
|
||||||
"""Search information container"""
|
"""Search information container"""
|
||||||
|
|
||||||
__slots__ = "search_query", "result_container", "start_time", "actual_timeout"
|
__slots__ = "search_query", "result_container", "start_time", "actual_timeout"
|
||||||
|
|
||||||
def __init__(self, search_query: SearchQuery):
|
def __init__(self, search_query: SearchQuery):
|
||||||
|
"""Initialize the Search
|
||||||
|
|
||||||
|
search_query is copied
|
||||||
|
"""
|
||||||
# init vars
|
# init vars
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.search_query = search_query
|
|
||||||
self.result_container = ResultContainer()
|
self.result_container = ResultContainer()
|
||||||
self.start_time = None
|
self.start_time = None
|
||||||
self.actual_timeout = None
|
self.actual_timeout = None
|
||||||
|
self.search_query = copy(search_query)
|
||||||
|
self.update_search_query(self.search_query)
|
||||||
|
|
||||||
|
def update_search_query(self, search_query: SearchQuery):
|
||||||
|
"""Update search_query.
|
||||||
|
|
||||||
|
call replace_auto_language to replace the "auto" language
|
||||||
|
"""
|
||||||
|
replace_auto_language(search_query)
|
||||||
|
|
||||||
def search_external_bang(self):
|
def search_external_bang(self):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -109,3 +109,16 @@ class SearchQuery:
|
||||||
self.external_bang,
|
self.external_bang,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def __copy__(self):
|
||||||
|
return SearchQuery(
|
||||||
|
self.query,
|
||||||
|
self.engineref_list,
|
||||||
|
self.lang,
|
||||||
|
self.safesearch,
|
||||||
|
self.pageno,
|
||||||
|
self.time_range,
|
||||||
|
self.timeout_limit,
|
||||||
|
self.external_bang,
|
||||||
|
self.engine_data,
|
||||||
|
)
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
"""Processores for engine-type: ``online``
|
"""Processores for engine-type: ``online``
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=use-dict-literal
|
||||||
|
|
||||||
from timeit import default_timer
|
from timeit import default_timer
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
general:
|
general:
|
||||||
# Debug mode, only for development
|
# Debug mode, only for development. Is overwritten by ${SEARXNG_DEBUG}
|
||||||
debug: false
|
debug: false
|
||||||
# displayed name
|
# displayed name
|
||||||
instance_name: "SpicerHome"
|
instance_name: "SpicerHome"
|
||||||
|
|
@ -45,6 +45,20 @@ search:
|
||||||
ban_time_on_fail: 5
|
ban_time_on_fail: 5
|
||||||
# max ban time in seconds after engine errors
|
# max ban time in seconds after engine errors
|
||||||
max_ban_time_on_fail: 120
|
max_ban_time_on_fail: 120
|
||||||
|
suspended_times:
|
||||||
|
# Engine suspension time after error (in seconds; set to 0 to disable)
|
||||||
|
# For error "Access denied" and "HTTP error [402, 403]"
|
||||||
|
SearxEngineAccessDenied: 86400
|
||||||
|
# For error "CAPTCHA"
|
||||||
|
SearxEngineCaptcha: 86400
|
||||||
|
# For error "Too many request" and "HTTP error 429"
|
||||||
|
SearxEngineTooManyRequests: 3600
|
||||||
|
# Cloudflare CAPTCHA
|
||||||
|
cf_SearxEngineCaptcha: 1296000
|
||||||
|
cf_SearxEngineAccessDenied: 86400
|
||||||
|
# ReCAPTCHA
|
||||||
|
recaptcha_SearxEngineCaptcha: 604800
|
||||||
|
|
||||||
# remove format to deny access, use lower case.
|
# remove format to deny access, use lower case.
|
||||||
# formats: [html, csv, json, rss]
|
# formats: [html, csv, json, rss]
|
||||||
formats:
|
formats:
|
||||||
|
|
@ -52,16 +66,19 @@ search:
|
||||||
|
|
||||||
server:
|
server:
|
||||||
# If you change port, bind_address or base_url don't forget to rebuild
|
# If you change port, bind_address or base_url don't forget to rebuild
|
||||||
# instance's environment (make buildenv)
|
# instance's environment (make buildenv). Is overwritten by ${SEARXNG_PORT}
|
||||||
|
# and ${SEARXNG_BIND_ADDRESS}
|
||||||
port: 8888
|
port: 8888
|
||||||
bind_address: "127.0.0.1"
|
bind_address: "127.0.0.1"
|
||||||
base_url: false # Possible values: false or "https://example.org/location".
|
# public URL of the instance, to ensure correct inbound links. Is overwritten
|
||||||
|
# by ${SEARXNG_URL}.
|
||||||
|
base_url: false # "http://example.com/location"
|
||||||
limiter: false # rate limit the number of request on the instance, block some bots
|
limiter: false # rate limit the number of request on the instance, block some bots
|
||||||
|
|
||||||
# If your instance owns a /etc/searxng/settings.yml file, then set the following
|
# If your instance owns a /etc/searxng/settings.yml file, then set the following
|
||||||
# values there.
|
# values there.
|
||||||
|
|
||||||
secret_key: "ultrasecretkey" # change this!
|
secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
|
||||||
# Proxying image results through searx
|
# Proxying image results through searx
|
||||||
image_proxy: false
|
image_proxy: false
|
||||||
# 1.0 and 1.1 are supported
|
# 1.0 and 1.1 are supported
|
||||||
|
|
@ -77,6 +94,7 @@ server:
|
||||||
Referrer-Policy: no-referrer
|
Referrer-Policy: no-referrer
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
|
# URL to connect redis database. Is overwritten by ${SEARXNG_REDIS_URL}.
|
||||||
# https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url
|
# https://redis-py.readthedocs.io/en/stable/connections.html#redis.client.Redis.from_url
|
||||||
url: false
|
url: false
|
||||||
|
|
||||||
|
|
@ -569,6 +587,7 @@ engines:
|
||||||
engine: tineye
|
engine: tineye
|
||||||
shortcut: tin
|
shortcut: tin
|
||||||
timeout: 9.0
|
timeout: 9.0
|
||||||
|
disabled: true
|
||||||
|
|
||||||
- name: etymonline
|
- name: etymonline
|
||||||
engine: xpath
|
engine: xpath
|
||||||
|
|
@ -662,6 +681,7 @@ engines:
|
||||||
- name: gentoo
|
- name: gentoo
|
||||||
engine: gentoo
|
engine: gentoo
|
||||||
shortcut: ge
|
shortcut: ge
|
||||||
|
timeout: 10.0
|
||||||
|
|
||||||
- name: gitlab
|
- name: gitlab
|
||||||
engine: json_engine
|
engine: json_engine
|
||||||
|
|
@ -988,38 +1008,6 @@ engines:
|
||||||
# collection: 'reviews' # name of the db collection
|
# collection: 'reviews' # name of the db collection
|
||||||
# key: 'name' # key in the collection to search for
|
# key: 'name' # key in the collection to search for
|
||||||
|
|
||||||
- name: neeva
|
|
||||||
engine: xpath
|
|
||||||
shortcut: nv
|
|
||||||
time_range_support: true
|
|
||||||
time_range_url: '&alf%5Bfreshness%5D={time_range_val}'
|
|
||||||
time_range_map:
|
|
||||||
day: 'Day'
|
|
||||||
week: 'Week'
|
|
||||||
month: 'Month'
|
|
||||||
year: 'Year'
|
|
||||||
search_url: https://neeva.com/search?q={query}&c=All&src=Pagination&page={pageno}{time_range}
|
|
||||||
results_xpath: //div[@class="web-index__component-2rKiM"] | //li[@class="web-rich-deep-links__deepLink-SIbD4"]
|
|
||||||
url_xpath: .//a[@class="lib-doc-title__link-1b9rC"]/@href | ./h2/a/@href
|
|
||||||
title_xpath: .//a[@class="lib-doc-title__link-1b9rC"] | ./h2/a
|
|
||||||
content_xpath: >
|
|
||||||
.//div[@class="lib-doc-snippet__component-3ewW6"]/text() |
|
|
||||||
.//div[@class="lib-doc-snippet__component-3ewW6"]/*[not(self::a)] |
|
|
||||||
./p
|
|
||||||
content_html_to_text: true
|
|
||||||
suggestion_xpath: //span[@class="result-related-searches__link-2ho_u"]
|
|
||||||
paging: true
|
|
||||||
disabled: true
|
|
||||||
categories: [general, web]
|
|
||||||
timeout: 5.0
|
|
||||||
soft_max_redirects: 2
|
|
||||||
about:
|
|
||||||
website: https://neeva.com
|
|
||||||
official_api_documentation:
|
|
||||||
use_official_api: false
|
|
||||||
require_api_key: false
|
|
||||||
results: HTML
|
|
||||||
|
|
||||||
- name: npm
|
- name: npm
|
||||||
engine: json_engine
|
engine: json_engine
|
||||||
paging: true
|
paging: true
|
||||||
|
|
@ -1507,7 +1495,8 @@ engines:
|
||||||
|
|
||||||
- name: wiby
|
- name: wiby
|
||||||
engine: json_engine
|
engine: json_engine
|
||||||
search_url: https://wiby.me/json/?q={query}
|
paging: true
|
||||||
|
search_url: https://wiby.me/json/?q={query}&p={pageno}
|
||||||
url_query: URL
|
url_query: URL
|
||||||
title_query: Title
|
title_query: Title
|
||||||
content_query: Snippet
|
content_query: Snippet
|
||||||
|
|
@ -1892,13 +1881,15 @@ engines:
|
||||||
engine: xpath
|
engine: xpath
|
||||||
paging: true
|
paging: true
|
||||||
search_url: https://petalsearch.com/search?query={query}&pn={pageno}
|
search_url: https://petalsearch.com/search?query={query}&pn={pageno}
|
||||||
results_xpath: //div[@class="webpage-content"]/div[@class="title-cont"]/a
|
url_xpath: //div[@class='card-source']
|
||||||
url_xpath: ./@href
|
title_xpath: //div[@class='title-name']
|
||||||
title_xpath: .
|
content_xpath: //div[@class='webpage-text']
|
||||||
content_xpath: ../../div[@class="webpage-text"]
|
|
||||||
suggestion_xpath: //div[@class="related-search-items"]/a
|
|
||||||
first_page_num: 1
|
first_page_num: 1
|
||||||
disabled: true
|
disabled: true
|
||||||
|
headers:
|
||||||
|
User-Agent: Mozilla/5.0 (Linux; Android 7.0;) \
|
||||||
|
AppleWebKit/537.36 (KHTML, like Gecko) \
|
||||||
|
Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)
|
||||||
about:
|
about:
|
||||||
website: https://petalsearch.com/
|
website: https://petalsearch.com/
|
||||||
wikidata_id: Q104399280
|
wikidata_id: Q104399280
|
||||||
|
|
@ -1912,26 +1903,6 @@ engines:
|
||||||
disabled: true
|
disabled: true
|
||||||
timeout: 3.0
|
timeout: 3.0
|
||||||
|
|
||||||
- name: petalsearch news
|
|
||||||
shortcut: ptsn
|
|
||||||
categories: news
|
|
||||||
engine: xpath
|
|
||||||
paging: true
|
|
||||||
search_url: https://petalsearch.com/search?channel=news&query={query}&pn={pageno}
|
|
||||||
results_xpath: //div[@class="news-container"]/div/div/div/a
|
|
||||||
url_xpath: ./@href
|
|
||||||
title_xpath: ./div
|
|
||||||
content_xpath: ../div[@class="news-text"]
|
|
||||||
thumbnail_xpath: ../../../../img/@src
|
|
||||||
first_page_num: 1
|
|
||||||
disabled: true
|
|
||||||
about:
|
|
||||||
website: https://petalsearch.com/
|
|
||||||
wikidata_id: Q104399280
|
|
||||||
use_official_api: false
|
|
||||||
require_api_key: false
|
|
||||||
results: HTML
|
|
||||||
|
|
||||||
- name: lib.rs
|
- name: lib.rs
|
||||||
shortcut: lrs
|
shortcut: lrs
|
||||||
engine: xpath
|
engine: xpath
|
||||||
|
|
@ -1969,6 +1940,26 @@ engines:
|
||||||
require_api_key: false
|
require_api_key: false
|
||||||
results: HTML
|
results: HTML
|
||||||
|
|
||||||
|
- name: goo
|
||||||
|
shortcut: goo
|
||||||
|
engine: xpath
|
||||||
|
paging: true
|
||||||
|
search_url: https://search.goo.ne.jp/web.jsp?MT={query}&FR={pageno}0
|
||||||
|
url_xpath: //div[@class="result"]/p[@class='title fsL1']/a/@href
|
||||||
|
title_xpath: //div[@class="result"]/p[@class='title fsL1']/a
|
||||||
|
content_xpath: //p[contains(@class,'url fsM')]/following-sibling::p
|
||||||
|
first_page_num: 0
|
||||||
|
categories: [general, web]
|
||||||
|
disabled: true
|
||||||
|
timeout: 4.0
|
||||||
|
about:
|
||||||
|
website: https://search.goo.ne.jp
|
||||||
|
wikidata_id: Q249044
|
||||||
|
use_official_api: false
|
||||||
|
require_api_key: false
|
||||||
|
results: HTML
|
||||||
|
language: ja
|
||||||
|
|
||||||
# Doku engine lets you access to any Doku wiki instance:
|
# Doku engine lets you access to any Doku wiki instance:
|
||||||
# A public one or a privete/corporate one.
|
# A public one or a privete/corporate one.
|
||||||
# - name: ubuntuwiki
|
# - name: ubuntuwiki
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ searx_dir = abspath(dirname(__file__))
|
||||||
|
|
||||||
logger = logging.getLogger('searx')
|
logger = logging.getLogger('searx')
|
||||||
OUTPUT_FORMATS = ['html', 'csv', 'json', 'rss']
|
OUTPUT_FORMATS = ['html', 'csv', 'json', 'rss']
|
||||||
LANGUAGE_CODES = ['all'] + list(l[0] for l in languages)
|
LANGUAGE_CODES = ['all', 'auto'] + list(l[0] for l in languages)
|
||||||
SIMPLE_STYLE = ('auto', 'light', 'dark')
|
SIMPLE_STYLE = ('auto', 'light', 'dark')
|
||||||
CATEGORIES_AS_TABS = {
|
CATEGORIES_AS_TABS = {
|
||||||
'general': {},
|
'general': {},
|
||||||
|
|
@ -160,6 +160,14 @@ SCHEMA = {
|
||||||
'languages': SettingSublistValue(LANGUAGE_CODES, LANGUAGE_CODES),
|
'languages': SettingSublistValue(LANGUAGE_CODES, LANGUAGE_CODES),
|
||||||
'ban_time_on_fail': SettingsValue(numbers.Real, 5),
|
'ban_time_on_fail': SettingsValue(numbers.Real, 5),
|
||||||
'max_ban_time_on_fail': SettingsValue(numbers.Real, 120),
|
'max_ban_time_on_fail': SettingsValue(numbers.Real, 120),
|
||||||
|
'suspended_times': {
|
||||||
|
'SearxEngineAccessDenied': SettingsValue(numbers.Real, 86400),
|
||||||
|
'SearxEngineCaptcha': SettingsValue(numbers.Real, 86400),
|
||||||
|
'SearxEngineTooManyRequests': SettingsValue(numbers.Real, 3600),
|
||||||
|
'cf_SearxEngineCaptcha': SettingsValue(numbers.Real, 1296000),
|
||||||
|
'cf_SearxEngineAccessDenied': SettingsValue(numbers.Real, 86400),
|
||||||
|
'recaptcha_SearxEngineCaptcha': SettingsValue(numbers.Real, 604800),
|
||||||
|
},
|
||||||
'formats': SettingsValue(list, OUTPUT_FORMATS),
|
'formats': SettingsValue(list, OUTPUT_FORMATS),
|
||||||
},
|
},
|
||||||
'server': {
|
'server': {
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
|
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
|
||||||
"curly": ["error", "multi-line"],
|
"curly": ["error", "multi-line"],
|
||||||
"block-spacing": ["error", "always"],
|
"block-spacing": ["error", "always"],
|
||||||
"comma-spacing": ["error", { "before": false, "after": true }],
|
|
||||||
"dot-location": ["error", "property"],
|
"dot-location": ["error", "property"],
|
||||||
"key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
|
"key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
|
||||||
"spaced-comment": ["error", "always", {
|
"spaced-comment": ["error", "always", {
|
||||||
|
|
|
||||||
|
|
@ -423,11 +423,8 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
||||||
.leaflet-control-attribution a:focus {
|
.leaflet-control-attribution a:focus {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
.leaflet-attribution-flag {
|
.leaflet-control-attribution svg {
|
||||||
display: inline !important;
|
display: inline !important;
|
||||||
vertical-align: baseline !important;
|
|
||||||
width: 1em;
|
|
||||||
height: 0.6669em;
|
|
||||||
}
|
}
|
||||||
.leaflet-left .leaflet-control-scale {
|
.leaflet-left .leaflet-control-scale {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
@ -441,10 +438,12 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
||||||
line-height: 1.1;
|
line-height: 1.1;
|
||||||
padding: 2px 5px 1px;
|
padding: 2px 5px 1px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background: rgba(255, 255, 255, 0.8);
|
|
||||||
text-shadow: 1px 1px #fff;
|
background: #fff;
|
||||||
|
background: rgba(255, 255, 255, 0.5);
|
||||||
}
|
}
|
||||||
.leaflet-control-scale-line:not(:first-child) {
|
.leaflet-control-scale-line:not(:first-child) {
|
||||||
border-top: 2px solid #777;
|
border-top: 2px solid #777;
|
||||||
|
|
@ -538,6 +537,8 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
||||||
}
|
}
|
||||||
.leaflet-popup-scrolled {
|
.leaflet-popup-scrolled {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
border-bottom: 1px solid #ddd;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
.leaflet-oldie .leaflet-popup-content-wrapper {
|
.leaflet-oldie .leaflet-popup-content-wrapper {
|
||||||
|
|
@ -651,6 +652,6 @@ svg.leaflet-image-layer.leaflet-interactive path {
|
||||||
/* Prevent printers from removing background-images of controls. */
|
/* Prevent printers from removing background-images of controls. */
|
||||||
.leaflet-control {
|
.leaflet-control {
|
||||||
-webkit-print-color-adjust: exact;
|
-webkit-print-color-adjust: exact;
|
||||||
print-color-adjust: exact;
|
color-adjust: exact;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"searxng.head.min.js","sources":["../src/js/head/00_init.js"],"sourcesContent":["/* SPDX-License-Identifier: AGPL-3.0-or-later */\n(function (w, d) {\n 'use strict';\n\n // add data- properties\n var script = d.currentScript || (function () {\n var scripts = d.getElementsByTagName('script');\n return scripts[scripts.length - 1];\n })();\n\n w.searxng = {\n settings: JSON.parse(atob(script.getAttribute('client_settings')))\n };\n\n // update the css\n var hmtlElement = d.getElementsByTagName(\"html\")[0];\n hmtlElement.classList.remove('no-js');\n hmtlElement.classList.add('js');\n\n})(window, document);\n"],"names":["w","d","script","currentScript","scripts","getElementsByTagName","length","searxng","settings","JSON","parse","atob","getAttribute","hmtlElement","classList","remove","add","window","document"],"mappings":"CACA,SAAWA,EAAGC,GACZ,aAGA,IAAIC,EAASD,EAAEE,eAAkB,WAC/B,IAAIC,EAAUH,EAAEI,qBAAqB,QAAQ,EAC7C,OAAOD,EAAQA,EAAQE,OAAS,EACjC,EAAE,EAEHN,EAAEO,QAAU,CACVC,SAAUC,KAAKC,MAAMC,KAAKT,EAAOU,aAAa,iBAAiB,CAAC,CAAC,CACnE,EAGA,IAAIC,EAAcZ,EAAEI,qBAAqB,MAAM,EAAE,GACjDQ,EAAYC,UAAUC,OAAO,OAAO,EACpCF,EAAYC,UAAUE,IAAI,IAAI,CAE/B,GAAEC,OAAQC,QAAQ"}
|
{"version":3,"file":"searxng.head.min.js","sources":["../src/js/head/00_init.js"],"sourcesContent":["/* SPDX-License-Identifier: AGPL-3.0-or-later */\n(function (w, d) {\n 'use strict';\n\n // add data- properties\n var script = d.currentScript || (function () {\n var scripts = d.getElementsByTagName('script');\n return scripts[scripts.length - 1];\n })();\n\n w.searxng = {\n settings: JSON.parse(atob(script.getAttribute('client_settings')))\n };\n\n // update the css\n var hmtlElement = d.getElementsByTagName(\"html\")[0];\n hmtlElement.classList.remove('no-js');\n hmtlElement.classList.add('js');\n\n})(window, document);\n"],"names":["w","d","script","currentScript","scripts","getElementsByTagName","length","searxng","settings","JSON","parse","atob","getAttribute","hmtlElement","classList","remove","add","window","document"],"mappings":"CACA,SAAWA,EAAGC,gBAIZ,IAAIC,EAASD,EAAEE,eAAkB,WAC/B,IAAIC,EAAUH,EAAEI,qBAAqB,UACrC,OAAOD,EAAQA,EAAQE,OAAS,GAFD,GAKjCN,EAAEO,QAAU,CACVC,SAAUC,KAAKC,MAAMC,KAAKT,EAAOU,aAAa,sBAIhD,IAAIC,EAAcZ,EAAEI,qBAAqB,QAAQ,GACjDQ,EAAYC,UAAUC,OAAO,SAC7BF,EAAYC,UAAUE,IAAI,OAhB5B,CAkBGC,OAAQC"}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^8.18.0",
|
"eslint": "^8.18.0",
|
||||||
"grunt": "~1.5.3",
|
"grunt": "~1.6.1",
|
||||||
"grunt-contrib-copy": "^1.0.0",
|
"grunt-contrib-copy": "^1.0.0",
|
||||||
"grunt-contrib-cssmin": "^4.0.0",
|
"grunt-contrib-cssmin": "^4.0.0",
|
||||||
"grunt-contrib-less": "~3.0.0",
|
"grunt-contrib-less": "~3.0.0",
|
||||||
|
|
|
||||||
|
|
@ -362,7 +362,7 @@ article[data-vim-selected].category-social {
|
||||||
.category-files,
|
.category-files,
|
||||||
.category-social {
|
.category-social {
|
||||||
border: 1px solid var(--color-result-border);
|
border: 1px solid var(--color-result-border);
|
||||||
margin: 1rem @results-tablet-offset 0 @results-tablet-offset !important;
|
margin: 0 @results-tablet-offset 1rem @results-tablet-offset !important;
|
||||||
.rounded-corners;
|
.rounded-corners;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -734,6 +734,26 @@ article[data-vim-selected].category-social {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.numbered_pagination {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page_number {
|
||||||
|
background: transparent !important;
|
||||||
|
color: var(--color-result-link-font) !important;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page_number_current {
|
||||||
|
background: transparent;
|
||||||
|
color: var(--color-result-link-visited-font);
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
#apis {
|
#apis {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
|
@ -1009,6 +1029,10 @@ article[data-vim-selected].category-social {
|
||||||
background-color: var(--color-sidebar-background);
|
background-color: var(--color-sidebar-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.numbered_pagination {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.result-paper {
|
.result-paper {
|
||||||
.attributes {
|
.attributes {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
<select class="language" id="language" name="language" aria-label="{{ _('Search language') }}">{{- '' -}}
|
<select class="language" id="language" name="language" aria-label="{{ _('Search language') }}">{{- '' -}}
|
||||||
<option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option>
|
<option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option>
|
||||||
|
<option value="auto" {% if current_language == 'auto' %}selected="selected"{% endif %}>
|
||||||
|
{{- _('Auto-detect') -}}
|
||||||
|
{%- if current_language == 'auto' %} ({{ search_language }}){%- endif -%}
|
||||||
|
</option>
|
||||||
{%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%}
|
{%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%}
|
||||||
<option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>
|
<option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>
|
||||||
{% if flag %}{{ flag }} {% endif%} {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}
|
{% if flag %}{{ flag }} {% endif%} {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}
|
||||||
|
|
|
||||||
|
|
@ -116,12 +116,15 @@
|
||||||
<p class="value">{{- '' -}}
|
<p class="value">{{- '' -}}
|
||||||
<select name='language' aria-labelledby="pref_language" aria-describedby="desc_language">{{- '' -}}
|
<select name='language' aria-labelledby="pref_language" aria-describedby="desc_language">{{- '' -}}
|
||||||
<option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option>
|
<option value="all" {% if current_language == 'all' %}selected="selected"{% endif %}>{{ _('Default language') }}</option>
|
||||||
|
<option value="auto" {% if current_language == 'auto' %}selected="selected"{% endif %}>{{ _('Auto-detect') }}</option>
|
||||||
{%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%}
|
{%- for lang_id,lang_name,country_name,english_name,flag in language_codes | sort(attribute=1) -%}
|
||||||
<option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>{% if flag %}{{ flag }} {% endif%} {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}</option>
|
<option value="{{ lang_id }}" {% if lang_id == current_language %}selected="selected"{% endif %}>{% if flag %}{{ flag }} {% endif%} {{- lang_name }} {% if country_name %}({{ country_name }}) {% endif %}</option>
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
</select>{{- '' -}}
|
</select>{{- '' -}}
|
||||||
</p>
|
</p>
|
||||||
<div class="description" id="desc_language">{{ _('What language do you prefer for search?') }}</div>
|
<div class="description" id="desc_language">
|
||||||
|
{{- _('What language do you prefer for search?') }} {{ _('Choose Auto-detect to let SearXNG detect the language of your query.') -}}
|
||||||
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if 'autocomplete' not in locked_preferences %}
|
{% if 'autocomplete' not in locked_preferences %}
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
|
|
||||||
{% if suggestions %}
|
{% if suggestions %}
|
||||||
<div id="suggestions" role="complementary" aria-labelledby="suggestions-title">
|
<div id="suggestions" role="complementary" aria-labelledby="suggestions-title">
|
||||||
<h4 class="title" id="suggestions-title">{{ _('Suggestions') }} : </h4>
|
<h4 class="title" id="suggestions-title">{{ _('Suggestions') }}: </h4>
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
{% for suggestion in suggestions %}
|
{% for suggestion in suggestions %}
|
||||||
<form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
|
<form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
|
||||||
|
|
@ -187,6 +187,35 @@
|
||||||
<button role="link" type="submit">{{ _('Next page') }} {{ icon_small('chevron-right') }}</button>
|
<button role="link" type="submit">{{ _('Next page') }} {{ icon_small('chevron-right') }}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
{% set pstart = 1 %}
|
||||||
|
{% set pend = 11 %}
|
||||||
|
{% if pageno > 5 %}
|
||||||
|
{% set pstart = pageno - 4 %}
|
||||||
|
{% set pend = pageno + 6 %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="numbered_pagination">
|
||||||
|
{% for x in range(pstart, pend) %}
|
||||||
|
<form method="{{ method or 'POST' }}" action="{{ url_for('search') }}" class="page_number">
|
||||||
|
<input type="hidden" name="q" value="{{ q|e }}" >
|
||||||
|
{% for category in selected_categories %}
|
||||||
|
<input type="hidden" name="category_{{ category }}" value="1" >
|
||||||
|
{% endfor %}
|
||||||
|
<input type="hidden" name="pageno" value="{{ x }}" >
|
||||||
|
<input type="hidden" name="language" value="{{ current_language }}" >
|
||||||
|
<input type="hidden" name="time_range" value="{{ time_range }}" >
|
||||||
|
<input type="hidden" name="safesearch" value="{{ safesearch }}" >
|
||||||
|
<input type="hidden" name="theme" value="{{ theme }}" >
|
||||||
|
{% if timeout_limit %}<input type="hidden" name="timeout_limit" value="{{ timeout_limit|e }}" >{% endif %}
|
||||||
|
{{- engine_data_form(engine_data) -}}
|
||||||
|
{% if pageno == x %}
|
||||||
|
<input role="link" class="page_number_current" type="button" value="{{ x }}">
|
||||||
|
{% else %}
|
||||||
|
<input role="link" class="page_number" type="submit" value="{{ x }}">
|
||||||
|
{% endif %}
|
||||||
|
</form>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -5,21 +5,21 @@
|
||||||
# Edrean Ernst <edrean@allesbeste.com>, 2022.
|
# Edrean Ernst <edrean@allesbeste.com>, 2022.
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
# Sean Botha <seanbotha@gmail.com>, 2022.
|
# Sean Botha <seanbotha@gmail.com>, 2022.
|
||||||
|
# jestie <jestie@gmail.com>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-12-30 07:14+0000\n"
|
"PO-Revision-Date: 2023-02-14 09:56+0000\n"
|
||||||
"Last-Translator: Sean Botha <seanbotha@gmail.com>\n"
|
"Last-Translator: jestie <jestie@gmail.com>\n"
|
||||||
"Language-Team: Afrikaans <https://weblate.bubu1.eu/projects/searxng/searxng/"
|
|
||||||
"af/>\n"
|
|
||||||
"Language: af\n"
|
"Language: af\n"
|
||||||
|
"Language-Team: Afrikaans "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/af/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 4.14.1\n"
|
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -199,40 +199,40 @@ msgstr "toegang geweier"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "bediener API fout"
|
msgstr "bediener API fout"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Geen item gevind"
|
msgstr "Geen item gevind"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Bron"
|
msgstr "Bron"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Fout met die laai van die volgende bladsy"
|
msgstr "Fout met die laai van die volgende bladsy"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Ongeldige opstellings, redigeer asb jou voorkeure"
|
msgstr "Ongeldige opstellings, redigeer asb jou voorkeure"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ongeldige opstellings"
|
msgstr "Ongeldige opstellings"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "soekfout"
|
msgstr "soekfout"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Opgehef"
|
msgstr "Opgehef"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "{minutes} minute terug"
|
msgstr "{minutes} minute terug"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ure, {minutes} minute terug"
|
msgstr "{hours} ure, {minutes} minute terug"
|
||||||
|
|
||||||
|
|
@ -273,6 +273,8 @@ msgid ""
|
||||||
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
||||||
"{lastCitationVelocityYear}"
|
"{lastCitationVelocityYear}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{numCitations} aanhalings vanaf die jaar {firstCitationVelocityYear} tot "
|
||||||
|
"{lastCitationVelocityYear}"
|
||||||
|
|
||||||
#: searx/engines/tineye.py:40
|
#: searx/engines/tineye.py:40
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -313,29 +315,23 @@ msgstr "aand"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Nag"
|
msgstr "Nag"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr "Outo-bespeur soektog taal"
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr ""
|
msgstr "Skakel snare om na verskillende hash digests."
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:52
|
#: searx/plugins/hash_plugin.py:52
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr "hash digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:9
|
#: searx/plugins/hostname_replace.py:9
|
||||||
msgid "Hostname replace"
|
msgid "Hostname replace"
|
||||||
msgstr ""
|
msgstr "vervang Gasheernaam"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:10
|
#: searx/plugins/hostname_replace.py:10
|
||||||
msgid "Rewrite result hostnames or remove results based on the hostname"
|
msgid "Rewrite result hostnames or remove results based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Herskryf resultaatgasheername of verwyder resultate op grond van die "
|
||||||
|
"gasheernaam"
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:9
|
#: searx/plugins/oa_doi_rewrite.py:9
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
|
@ -363,7 +359,7 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:20
|
#: searx/plugins/self_info.py:20
|
||||||
msgid "Self Information"
|
msgid "Self Information"
|
||||||
msgstr ""
|
msgstr "Self-inligting"
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:21
|
#: searx/plugins/self_info.py:21
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -379,40 +375,37 @@ msgstr "Tor toets inprop"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Hierdie inprop toepassing kontroleer of die adres van die versoek 'n TOR "
|
|
||||||
"uitgang nodus is en stel die gebruiker in kennis indien wel, soos "
|
|
||||||
"check.torproject.org maar vanaf searxng."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Die TOR uitgang nodus lys (https://check.torproject.org/exit-addresses) "
|
|
||||||
"is nie bereikbaar nie."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Jy gebruik tans TOR. Jou IP adres lyk na : {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Jy gebruik nie tans TOR nie. Jou IP adres lyk na: {ip_address}."
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
msgstr ""
|
msgstr "Spoorsnyer URL verwyderaar"
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:30
|
#: searx/plugins/tracker_url_remover.py:30
|
||||||
msgid "Remove trackers arguments from the returned URL"
|
msgid "Remove trackers arguments from the returned URL"
|
||||||
msgstr ""
|
msgstr "Verwyder spoorsnyersargumente van die teruggestuurde URL"
|
||||||
|
|
||||||
#: searx/plugins/vim_hotkeys.py:3
|
#: searx/plugins/vim_hotkeys.py:3
|
||||||
msgid "Vim-like hotkeys"
|
msgid "Vim-like hotkeys"
|
||||||
msgstr ""
|
msgstr "Soortgelyke-VIM kortpad sleutels"
|
||||||
|
|
||||||
#: searx/plugins/vim_hotkeys.py:4
|
#: searx/plugins/vim_hotkeys.py:4
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -573,15 +566,24 @@ msgstr "Soek taal"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Verstek taal"
|
msgstr "Verstek taal"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Watter taal verkies jy vir soek?"
|
msgstr "Watter taal verkies jy vir soek?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Outovoltooi"
|
msgstr "Outovoltooi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Vind goed soos jy tik"
|
msgstr "Vind goed soos jy tik"
|
||||||
|
|
||||||
|
|
@ -589,152 +591,152 @@ msgstr "Vind goed soos jy tik"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "VeiligeSoek"
|
msgstr "VeiligeSoek"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Streng"
|
msgstr "Streng"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Matig"
|
msgstr "Matig"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Geen"
|
msgstr "Geen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filter inhoud"
|
msgstr "Filter inhoud"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Verander die uitleg taal"
|
msgstr "Verander die uitleg taal"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Tema"
|
msgstr "Tema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Verander SearXNG uitleg"
|
msgstr "Verander SearXNG uitleg"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Tema styl"
|
msgstr "Tema styl"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Kies outo om jou blaaier verstellings te volg"
|
msgstr "Kies outo om jou blaaier verstellings te volg"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Aan"
|
msgstr "Aan"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Af"
|
msgstr "Af"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Vertoon resultate in die middel van die bladsy (Oscar uitleg)."
|
msgstr "Vertoon resultate in die middel van die bladsy (Oscar uitleg)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Resultate op nuwe oortjies"
|
msgstr "Resultate op nuwe oortjies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Maak resultaat skakels oop in nuwe blaaier oortjies"
|
msgstr "Maak resultaat skakels oop in nuwe blaaier oortjies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Oneindige blaai"
|
msgstr "Oneindige blaai"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Laai die volgende bladsy outomaties wanneer blaai na die onderkant van "
|
"Laai die volgende bladsy outomaties wanneer blaai na die onderkant van "
|
||||||
"die huidige bladsy"
|
"die huidige bladsy"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privaatheid"
|
msgstr "Privaatheid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP Metode"
|
msgstr "HTTP Metode"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Beeld proksie"
|
msgstr "Beeld proksie"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Geaktiveer"
|
msgstr "Geaktiveer"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Gedeaktiveer"
|
msgstr "Gedeaktiveer"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Proksie beeld resultate deur SearXNG"
|
msgstr "Proksie beeld resultate deur SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Navraag in die bladsy se titel"
|
msgstr "Navraag in die bladsy se titel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -742,148 +744,148 @@ msgstr ""
|
||||||
"Wanneer geaktiveer sal die resultaat se bladsy titel jou navraag bevat. "
|
"Wanneer geaktiveer sal die resultaat se bladsy titel jou navraag bevat. "
|
||||||
"Jou blaaier kan hierdie titel opneem"
|
"Jou blaaier kan hierdie titel opneem"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Enjins"
|
msgstr "Enjins"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Huidige gebruikte soekenjins"
|
msgstr "Huidige gebruikte soekenjins"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Laat toe"
|
msgstr "Laat toe"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Enjin naam"
|
msgstr "Enjin naam"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Kortpad"
|
msgstr "Kortpad"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Ondersteun gekose taal"
|
msgstr "Ondersteun gekose taal"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Tydreeks"
|
msgstr "Tydreeks"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Reaksietyd"
|
msgstr "Reaksietyd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Maks tyd"
|
msgstr "Maks tyd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Betroubaarheid"
|
msgstr "Betroubaarheid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Spesiale Navrae"
|
msgstr "Spesiale Navrae"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Sleutelwoorde"
|
msgstr "Sleutelwoorde"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Naam"
|
msgstr "Naam"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrywing"
|
msgstr "Beskrywing"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Voorbeelde"
|
msgstr "Voorbeelde"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Koekies"
|
msgstr "Koekies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1224,3 +1226,53 @@ msgstr ""
|
||||||
#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
#~ " rel=\"external\"> leer meer oor versoek"
|
#~ " rel=\"external\"> leer meer oor versoek"
|
||||||
#~ " metodes</a>"
|
#~ " metodes</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Hierdie inprop toepassing kontroleer of "
|
||||||
|
#~ "die adres van die versoek 'n TOR"
|
||||||
|
#~ " uitgang nodus is en stel die "
|
||||||
|
#~ "gebruiker in kennis indien wel, soos "
|
||||||
|
#~ "check.torproject.org maar vanaf searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Die TOR uitgang nodus lys "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is nie"
|
||||||
|
#~ " bereikbaar nie."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Jy gebruik tans TOR. Jou IP adres lyk na : {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Jy gebruik nie tans TOR nie. Jou IP adres lyk na: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "Outo-bespeur soektog taal"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr "Spoor die navraagsoektaal outomaties op en skakel daaroor oor."
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -10,22 +10,24 @@
|
||||||
# ken kailer <kenkailer@yahoo.com>, 2022.
|
# ken kailer <kenkailer@yahoo.com>, 2022.
|
||||||
# George Kashkosh <kash.george@gmail.com>, 2022.
|
# George Kashkosh <kash.george@gmail.com>, 2022.
|
||||||
# Droid <droidpy587@gmail.com>, 2022.
|
# Droid <droidpy587@gmail.com>, 2022.
|
||||||
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
|
# Cavemanly <k.adel.2m@protonmail.com>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2023-01-13 07:14+0000\n"
|
"PO-Revision-Date: 2023-03-13 18:37+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: Cavemanly <k.adel.2m@protonmail.com>\n"
|
||||||
"Language-Team: Arabic <https://weblate.bubu1.eu/projects/searxng/searxng/ar/>"
|
"Language-Team: Arabic <https://translate.codeberg.org/projects/searxng/"
|
||||||
"\n"
|
"searxng/ar/>\n"
|
||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||||
"X-Generator: Weblate 4.14.1\n"
|
"X-Generator: Weblate 4.16.2\n"
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -46,7 +48,7 @@ msgstr "ملفات"
|
||||||
#. CATEGORY_NAMES['GENERAL']
|
#. CATEGORY_NAMES['GENERAL']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "general"
|
msgid "general"
|
||||||
msgstr "عامة"
|
msgstr "عام"
|
||||||
|
|
||||||
#. CATEGORY_NAMES['MUSIC']
|
#. CATEGORY_NAMES['MUSIC']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
|
@ -56,7 +58,7 @@ msgstr "موسيقى"
|
||||||
#. CATEGORY_NAMES['SOCIAL_MEDIA']
|
#. CATEGORY_NAMES['SOCIAL_MEDIA']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "social media"
|
msgid "social media"
|
||||||
msgstr "الشبكات التواصل الإجتماعية"
|
msgstr "شبكات التواصل الإجتماعي"
|
||||||
|
|
||||||
#. CATEGORY_NAMES['IMAGES']
|
#. CATEGORY_NAMES['IMAGES']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
|
@ -66,7 +68,7 @@ msgstr "صور"
|
||||||
#. CATEGORY_NAMES['VIDEOS']
|
#. CATEGORY_NAMES['VIDEOS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "videos"
|
msgid "videos"
|
||||||
msgstr "فيديوهات"
|
msgstr "ڤيديوهات"
|
||||||
|
|
||||||
#. CATEGORY_NAMES['IT']
|
#. CATEGORY_NAMES['IT']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
|
@ -205,40 +207,40 @@ msgstr "الدخول مرفوض"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "خطأ في API الخادم"
|
msgstr "خطأ في API الخادم"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "تعذر العثور على عناصر"
|
msgstr "تعذر العثور على عناصر"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "المصدر"
|
msgstr "المصدر"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
|
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
|
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "إعدادات غير صالحة"
|
msgstr "إعدادات غير صالحة"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "خطأ في البحث"
|
msgstr "خطأ في البحث"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "معلق"
|
msgstr "معلق"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "قبل دقائق"
|
msgstr "قبل دقائق"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "قبل {hours} ساعات، {minutes} دقائق"
|
msgstr "قبل {hours} ساعات، {minutes} دقائق"
|
||||||
|
|
||||||
|
|
@ -256,7 +258,7 @@ msgstr "الدالات الإحصائية"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:48
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "حوسبة معطيات ال{العملية}"
|
msgstr "حوسبة معطيات ال{functions}"
|
||||||
|
|
||||||
#: searx/engines/openstreetmap.py:160
|
#: searx/engines/openstreetmap.py:160
|
||||||
msgid "Get directions"
|
msgid "Get directions"
|
||||||
|
|
@ -319,14 +321,6 @@ msgstr "مساء"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "ليلا"
|
msgstr "ليلا"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr "كشف تلقائي عن لغة البحث"
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr "كشف تلقائي عن لغة البحث والتبديل إليها."
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "يحول السلسلة إلى ملخص التجزئة."
|
msgstr "يحول السلسلة إلى ملخص التجزئة."
|
||||||
|
|
@ -385,27 +379,29 @@ msgstr "فحص المكون الإضافي ل Tor"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"يتحقق هذا المكون الإضافي مما إذا كان عنوان الطلب هو عقدة خروج TOR ، ويبلغ"
|
"يتحقق هذا المكون الإضافي مما إذا كان عنوان الطلب هو عقدة خروج TOR ، ويبلغ"
|
||||||
" المستخدم إذا كان كذلك ، مثل check.torproject.org ولكن من searxng."
|
" المستخدم إذا كان كذلك ، مثل check.torproject.org ولكن من SearXNG."
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"لا يمكن الوصول إلى قائمة عقدة الخروج TOR (https://check.torproject.org"
|
"لم يمكن تنزيل قائمة Tor exit-nodes من عناوين: "
|
||||||
"/exit-addresses)."
|
"https://check.torproject.org/exit-addresses"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "انك تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr "انت تستعمل Tor ويبدو انه لديك هذا الIP: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "انك لا تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}."
|
msgstr "أنت لا تستعمل Tor حالياً وهذا هو عنوان الـIP الخاص بك: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -583,15 +579,24 @@ msgstr "لغة البحث"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "اللغة الإفتراضية"
|
msgstr "اللغة الإفتراضية"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr "الاكتشاف التلقائي"
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "ما هي لغتك المفضلة للبحث ؟"
|
msgstr "ما هي لغتك المفضلة للبحث ؟"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr "اختر الاكتشاف التلقائي للسماح لـ SearXNG باكتشاف لغة استعلامك."
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "تكملة تلقائية"
|
msgstr "تكملة تلقائية"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "العثور على نتائج أثناء الكتابة"
|
msgstr "العثور على نتائج أثناء الكتابة"
|
||||||
|
|
||||||
|
|
@ -599,35 +604,35 @@ msgstr "العثور على نتائج أثناء الكتابة"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "البحث المؤمَّن"
|
msgstr "البحث المؤمَّن"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "صارم"
|
msgstr "صارم"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "معتدل"
|
msgstr "معتدل"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "لا شيء"
|
msgstr "لا شيء"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "فلترة المحتوى"
|
msgstr "فلترة المحتوى"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "فتح الوصول إلى محلل DOI"
|
msgstr "فتح الوصول إلى محلل DOI"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -635,87 +640,87 @@ msgstr ""
|
||||||
"إعادة التوجيه إلى إصدارات مفتوحة الوصول من المنشورات حيثما أمكن ذلك (يلزم"
|
"إعادة التوجيه إلى إصدارات مفتوحة الوصول من المنشورات حيثما أمكن ذلك (يلزم"
|
||||||
" وجود مكون إضافي)"
|
" وجود مكون إضافي)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "الرمز المميز للمحرك"
|
msgstr "الرمز المميز للمحرك"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "رمز الوصول إلى المحرك الخاص"
|
msgstr "رمز الوصول إلى المحرك الخاص"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "واجهة المستخدم"
|
msgstr "واجهة المستخدم"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "لغة الواجهة"
|
msgstr "لغة الواجهة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "تغيير لغة واجهة البحث"
|
msgstr "تغيير لغة واجهة البحث"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "السمة"
|
msgstr "السمة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "تغيير مظهر سيركس"
|
msgstr "تغيير مظهر سيركس"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "نمط"
|
msgstr "نمط"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "اختر تلقائي لاحترام إعدادات متصفحك"
|
msgstr "اختر تلقائي لاحترام إعدادات متصفحك"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "محاذاة المركز"
|
msgstr "محاذاة المركز"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "يشتغل"
|
msgstr "يشتغل"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "مُعطَّل"
|
msgstr "مُعطَّل"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "اعرض النتائج في منتصف الصفحة (تخطيط Oscar)."
|
msgstr "اعرض النتائج في منتصف الصفحة (تخطيط Oscar)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "عرض نتائج البحث في ألسنة جديدة"
|
msgstr "عرض نتائج البحث في ألسنة جديدة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "عرض روابط نتائج البحث في ألسنة جديدة للمتصفح"
|
msgstr "عرض روابط نتائج البحث في ألسنة جديدة للمتصفح"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "تمرير الصفحات بلا حدود"
|
msgstr "تمرير الصفحات بلا حدود"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr "حمّل تلقائيا الصفحة التالية عن السحب إلى أسفل النتائج"
|
msgstr "حمّل تلقائيا الصفحة التالية عن السحب إلى أسفل النتائج"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "الخصوصية"
|
msgstr "الخصوصية"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "أسلوب HTTP"
|
msgstr "أسلوب HTTP"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -725,29 +730,29 @@ msgstr ""
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">إعرف المزيد عن طرق الطلب</a>"
|
" rel=\"external\">إعرف المزيد عن طرق الطلب</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "وكيل بروكسي الصور"
|
msgstr "وكيل بروكسي الصور"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "مُفَعَّل"
|
msgstr "مُفَعَّل"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "غير مُفَعَّل"
|
msgstr "غير مُفَعَّل"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "تمرير نتائج البحث عن الصور عبر بروكسي SearXNG"
|
msgstr "تمرير نتائج البحث عن الصور عبر بروكسي SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "طلب بحث في عنوان الصفحة"
|
msgstr "طلب بحث في عنوان الصفحة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -755,15 +760,15 @@ msgstr ""
|
||||||
"عند التمكين ، يحتوي عنوان صفحة النتائج على كلمات البحث الرئيسية الخاصة "
|
"عند التمكين ، يحتوي عنوان صفحة النتائج على كلمات البحث الرئيسية الخاصة "
|
||||||
"بك. يمكن لمتصفحك تسجيل هذا العنوان"
|
"بك. يمكن لمتصفحك تسجيل هذا العنوان"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "المحركات"
|
msgstr "المحركات"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "محركات البحث المُستخدَمة حاليًا"
|
msgstr "محركات البحث المُستخدَمة حاليًا"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -771,76 +776,76 @@ msgstr ""
|
||||||
"لا تظهر علامة التبويب هذه في نتائج البحث ، ولكن يمكنك البحث في المحركات "
|
"لا تظهر علامة التبويب هذه في نتائج البحث ، ولكن يمكنك البحث في المحركات "
|
||||||
"المدرجة هنا عبر bangs."
|
"المدرجة هنا عبر bangs."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "تمكين"
|
msgstr "تمكين"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "إسم المحرك"
|
msgstr "إسم المحرك"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "الإختصار"
|
msgstr "الإختصار"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "يدعم اللغة المختارة"
|
msgstr "يدعم اللغة المختارة"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "الفترة"
|
msgstr "الفترة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "مدة الإستجابة"
|
msgstr "مدة الإستجابة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "أقصى مدّة"
|
msgstr "أقصى مدّة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "إمكانية الإشتغال"
|
msgstr "إمكانية الإشتغال"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "استفسارات خاصة"
|
msgstr "استفسارات خاصة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "الكلمات الرمزية"
|
msgstr "الكلمات الرمزية"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "التسمية"
|
msgstr "التسمية"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "الوصف"
|
msgstr "الوصف"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "أمثلة"
|
msgstr "أمثلة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "هذه قائمة وحدات الرد الفوري في SearXNG."
|
msgstr "هذه قائمة وحدات الرد الفوري في SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "هذه قائمة المكونات الإضافية."
|
msgstr "هذه قائمة المكونات الإضافية."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "كعكات الكوكيز"
|
msgstr "كعكات الكوكيز"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -848,23 +853,23 @@ msgstr ""
|
||||||
"هذه قائمة ملفات تعريف الارتباط وقيمها التي يخزنها SearXNG على جهاز "
|
"هذه قائمة ملفات تعريف الارتباط وقيمها التي يخزنها SearXNG على جهاز "
|
||||||
"الكمبيوتر الخاص بك."
|
"الكمبيوتر الخاص بك."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "باستخدام هذه القائمة ، يمكنك تقييم شفافية SearXNG."
|
msgstr "باستخدام هذه القائمة ، يمكنك تقييم شفافية SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "إسم الكوكي"
|
msgstr "إسم الكوكي"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "القيمة"
|
msgstr "القيمة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "ابحث عن عنوان URL للتفضيلات المحفوظة حاليًا"
|
msgstr "ابحث عن عنوان URL للتفضيلات المحفوظة حاليًا"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -872,11 +877,11 @@ msgstr ""
|
||||||
"ملاحظة: يمكن أن يؤدي تحديد إعدادات مخصصة في عنوان URL للبحث إلى تقليل "
|
"ملاحظة: يمكن أن يؤدي تحديد إعدادات مخصصة في عنوان URL للبحث إلى تقليل "
|
||||||
"الخصوصية عن طريق تسريب البيانات إلى مواقع النتائج التي تم النقر عليها."
|
"الخصوصية عن طريق تسريب البيانات إلى مواقع النتائج التي تم النقر عليها."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL لاستعادة تفضيلاتك في متصفح آخر"
|
msgstr "URL لاستعادة تفضيلاتك في متصفح آخر"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -884,7 +889,7 @@ msgstr ""
|
||||||
"يمكن استخدام تحديد الإعدادات المخصصة في تفضيلات URL لمزامنة التفضيلات عبر"
|
"يمكن استخدام تحديد الإعدادات المخصصة في تفضيلات URL لمزامنة التفضيلات عبر"
|
||||||
" الأجهزة."
|
" الأجهزة."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -892,7 +897,7 @@ msgstr ""
|
||||||
"يتم تخزين هذه الإعدادات في ملفات تعريف الارتباط الخاصة بك ، وهذا يسمح لنا"
|
"يتم تخزين هذه الإعدادات في ملفات تعريف الارتباط الخاصة بك ، وهذا يسمح لنا"
|
||||||
" بعدم تخزين هذه البيانات عنك."
|
" بعدم تخزين هذه البيانات عنك."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -900,15 +905,15 @@ msgstr ""
|
||||||
"تخدم ملفات تعريف الارتباط هذه راحتك وحدك ، فنحن لا نستخدم ملفات تعريف "
|
"تخدم ملفات تعريف الارتباط هذه راحتك وحدك ، فنحن لا نستخدم ملفات تعريف "
|
||||||
"الارتباط هذه لتتبعك."
|
"الارتباط هذه لتتبعك."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "حفظ"
|
msgstr "حفظ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "إعاد التعيين إلى الإعدادات الإفتراضية"
|
msgstr "إعاد التعيين إلى الإعدادات الإفتراضية"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "الخلف"
|
msgstr "الخلف"
|
||||||
|
|
||||||
|
|
@ -978,7 +983,7 @@ msgstr "بحث"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:21
|
#: searx/templates/simple/stats.html:21
|
||||||
msgid "There is currently no data available. "
|
msgid "There is currently no data available. "
|
||||||
msgstr "لم يتم العثور على أية بيانات بعد."
|
msgstr "لم يتم العثور على أية بيانات في الوقت الحالي. "
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:26
|
#: searx/templates/simple/stats.html:26
|
||||||
msgid "Scores"
|
msgid "Scores"
|
||||||
|
|
@ -1495,3 +1500,52 @@ msgstr "إخفاء الفيديو"
|
||||||
#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
#~ " rel=\"external\"> تعرف على المزيد حول "
|
#~ " rel=\"external\"> تعرف على المزيد حول "
|
||||||
#~ "طرق الطلب </a>"
|
#~ "طرق الطلب </a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "يتحقق هذا المكون الإضافي مما إذا "
|
||||||
|
#~ "كان عنوان الطلب هو عقدة خروج TOR"
|
||||||
|
#~ " ، ويبلغ المستخدم إذا كان كذلك "
|
||||||
|
#~ "، مثل check.torproject.org ولكن من "
|
||||||
|
#~ "searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "لا يمكن الوصول إلى قائمة عقدة "
|
||||||
|
#~ "الخروج TOR (https://check.torproject.org/exit-"
|
||||||
|
#~ "addresses)."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "انك تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "انك لا تستخدم شبكة TOR. ان IP Adress الخاص بك يبدو انه: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "كشف تلقائي عن لغة البحث"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr "كشف تلقائي عن لغة البحث والتبديل إليها."
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -12,7 +12,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-11-11 07:18+0000\n"
|
"PO-Revision-Date: 2022-11-11 07:18+0000\n"
|
||||||
"Last-Translator: vynaaa <stefanovpower@abv.bg>\n"
|
"Last-Translator: vynaaa <stefanovpower@abv.bg>\n"
|
||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
|
|
@ -201,40 +201,40 @@ msgstr "отказан достъп"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "грешка в API на сървъра"
|
msgstr "грешка в API на сървъра"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Не е намерен артикул"
|
msgstr "Не е намерен артикул"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Източник"
|
msgstr "Източник"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Грешка при зареждането на следващата страница"
|
msgstr "Грешка при зареждането на следващата страница"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Неправилни настройки, моля проверете предпочитанията си"
|
msgstr "Неправилни настройки, моля проверете предпочитанията си"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "невалидни настройки"
|
msgstr "невалидни настройки"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "грешка при търсенето"
|
msgstr "грешка при търсенето"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "преустановен"
|
msgstr "преустановен"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "преди {minutes} минута(минути)"
|
msgstr "преди {minutes} минута(минути)"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "преди {hours} час(ове), {minutes} минута(минути)"
|
msgstr "преди {hours} час(ове), {minutes} минута(минути)"
|
||||||
|
|
||||||
|
|
@ -317,14 +317,6 @@ msgstr "Вечер"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Нощ"
|
msgstr "Нощ"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Преобразува низове в различни хаш-извлечение."
|
msgstr "Преобразува низове в различни хаш-извлечение."
|
||||||
|
|
@ -383,27 +375,25 @@ msgstr "Проверка на Tor приставката"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Тази добавка проверява дали адресът на заявката е изходен възел на TOR и "
|
|
||||||
"осведомява потребителя ако е - като check.torproject.org, но от searxng."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Листа с изходните възли на TOR (https://check.torproject.org/exit-"
|
|
||||||
"addresses) е недостижим."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Използвате TOR. Вашият IP адрес изглежда е: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Не използвате TOR. Вашият IP адрес изглежда е: {ip_address}."
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -583,15 +573,24 @@ msgstr "Език на търсене"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Основен език"
|
msgstr "Основен език"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Кой език предпочитате за търсене?"
|
msgstr "Кой език предпочитате за търсене?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Автоматично допълване"
|
msgstr "Автоматично допълване"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Намери докато пишеш"
|
msgstr "Намери докато пишеш"
|
||||||
|
|
||||||
|
|
@ -599,35 +598,35 @@ msgstr "Намери докато пишеш"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Безопасно търсене"
|
msgstr "Безопасно търсене"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Стриктно"
|
msgstr "Стриктно"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Умерено"
|
msgstr "Умерено"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Нищо"
|
msgstr "Нищо"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Филтрирай съдържание"
|
msgstr "Филтрирай съдържание"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Дигитален идентификатор на обекти с отворен достъп"
|
msgstr "Дигитален идентификатор на обекти с отворен достъп"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -635,87 +634,87 @@ msgstr ""
|
||||||
"Пренасочване към версий на публикации с отворен достъп, когато са "
|
"Пренасочване към версий на публикации с отворен достъп, когато са "
|
||||||
"достъпни (Изисква допълнение)"
|
"достъпни (Изисква допълнение)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Жетони на търсачката"
|
msgstr "Жетони на търсачката"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Жетони за достъп до частни търсачки"
|
msgstr "Жетони за достъп до частни търсачки"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Потребителски интерфейс"
|
msgstr "Потребителски интерфейс"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Език на интерфейса"
|
msgstr "Език на интерфейса"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Промени езика на оформлението"
|
msgstr "Промени езика на оформлението"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Тема"
|
msgstr "Тема"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Смяна на оформлението на SearXNG"
|
msgstr "Смяна на оформлението на SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Тематичен стил"
|
msgstr "Тематичен стил"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Изберете автоматични настойки, за да следвате настройките на браузъра си"
|
msgstr "Изберете автоматични настойки, за да следвате настройките на браузъра си"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Централно подреждане"
|
msgstr "Централно подреждане"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Включено"
|
msgstr "Включено"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Изключено"
|
msgstr "Изключено"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Показване на резултатите в средата на страницата (Оскарово оформление)."
|
msgstr "Показване на резултатите в средата на страницата (Оскарово оформление)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Резултати на нови раздели"
|
msgstr "Резултати на нови раздели"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Отвори връзките в нов раздел"
|
msgstr "Отвори връзките в нов раздел"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Списък без страници"
|
msgstr "Списък без страници"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr "Автоматично зареждане на следващата страница"
|
msgstr "Автоматично зареждане на следващата страница"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Поверителност"
|
msgstr "Поверителност"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP Метод"
|
msgstr "HTTP Метод"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -725,29 +724,29 @@ msgstr ""
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">научете повече за методите на заявка</a>"
|
" rel=\"external\">научете повече за методите на заявка</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Прокси на изображения"
|
msgstr "Прокси на изображения"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Включено"
|
msgstr "Включено"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Изключено"
|
msgstr "Изключено"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Прекарване на получените изображения през прокси на SearXNG"
|
msgstr "Прекарване на получените изображения през прокси на SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Запитване в заглавието на страницата"
|
msgstr "Запитване в заглавието на страницата"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -755,15 +754,15 @@ msgstr ""
|
||||||
"Когато включено, резултата от заглавието на страницата съдържа вашето "
|
"Когато включено, резултата от заглавието на страницата съдържа вашето "
|
||||||
"запитване. Браузърът ви може да записва това"
|
"запитване. Браузърът ви може да записва това"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Търсачки"
|
msgstr "Търсачки"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Използвани търсачки в момента"
|
msgstr "Използвани търсачки в момента"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -771,76 +770,76 @@ msgstr ""
|
||||||
"Този раздел не се показва за резултатите от търсенето, но можете да "
|
"Този раздел не се показва за резултатите от търсенето, но можете да "
|
||||||
"прегледате търсачките, изброени тук."
|
"прегледате търсачките, изброени тук."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Позволи"
|
msgstr "Позволи"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Име на търсачка"
|
msgstr "Име на търсачка"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Пряк път"
|
msgstr "Пряк път"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Поддържка на избраният език"
|
msgstr "Поддържка на избраният език"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Времева зона"
|
msgstr "Времева зона"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Време за отговор"
|
msgstr "Време за отговор"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Максимално време"
|
msgstr "Максимално време"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Надеждност"
|
msgstr "Надеждност"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Специялни Запитвания"
|
msgstr "Специялни Запитвания"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ключови думи"
|
msgstr "Ключови думи"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Име"
|
msgstr "Име"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Описание"
|
msgstr "Описание"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Примери"
|
msgstr "Примери"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Това е листа, съдържащ моментално-отговарящите модули на SearXNG."
|
msgstr "Това е листа, съдържащ моментално-отговарящите модули на SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Това е листа с добавки."
|
msgstr "Това е листа с добавки."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Бисквитки"
|
msgstr "Бисквитки"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -848,23 +847,23 @@ msgstr ""
|
||||||
"Това е листът с бисквитките и техните стойност които SearXNG запазва на "
|
"Това е листът с бисквитките и техните стойност които SearXNG запазва на "
|
||||||
"компютъра ви."
|
"компютъра ви."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "С този лист можете да оцените прозрачността на SearXNG."
|
msgstr "С този лист можете да оцените прозрачността на SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Име на бисквитката"
|
msgstr "Име на бисквитката"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Стойност"
|
msgstr "Стойност"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Потърсете URL на запазените предпочитания"
|
msgstr "Потърсете URL на запазените предпочитания"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -873,11 +872,11 @@ msgstr ""
|
||||||
"да намалят поверителността Ви като издадат данни към кликнатите сайтове "
|
"да намалят поверителността Ви като издадат данни към кликнатите сайтове "
|
||||||
"при търсене."
|
"при търсене."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL да възстановите предпочитанията си в друг браузър"
|
msgstr "URL да възстановите предпочитанията си в друг браузър"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -885,7 +884,7 @@ msgstr ""
|
||||||
"Специфицирането на персонализирани настройки в URL-то за предпочитания "
|
"Специфицирането на персонализирани настройки в URL-то за предпочитания "
|
||||||
"може да позволи синхронизация между различни устройства."
|
"може да позволи синхронизация между различни устройства."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -893,7 +892,7 @@ msgstr ""
|
||||||
"Тези настройки се съхраняват във вашите бисквитки. Това ни позволява да "
|
"Тези настройки се съхраняват във вашите бисквитки. Това ни позволява да "
|
||||||
"не съхраняваме тази информация за вас."
|
"не съхраняваме тази информация за вас."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -901,15 +900,15 @@ msgstr ""
|
||||||
"Тези бисквитки служат за ваше удобство. Ние не ги използваме, за да ви "
|
"Тези бисквитки служат за ваше удобство. Ние не ги използваме, за да ви "
|
||||||
"следим."
|
"следим."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Запази"
|
msgstr "Запази"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Върни първоначалните"
|
msgstr "Върни първоначалните"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Назад"
|
msgstr "Назад"
|
||||||
|
|
||||||
|
|
@ -1496,3 +1495,51 @@ msgstr "скрий видеото"
|
||||||
#~ " rel=\"external\">learn more about request "
|
#~ " rel=\"external\">learn more about request "
|
||||||
#~ "methods</a>"
|
#~ "methods</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Тази добавка проверява дали адресът на"
|
||||||
|
#~ " заявката е изходен възел на TOR "
|
||||||
|
#~ "и осведомява потребителя ако е - "
|
||||||
|
#~ "като check.torproject.org, но от searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Листа с изходните възли на TOR "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) е "
|
||||||
|
#~ "недостижим."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Използвате TOR. Вашият IP адрес изглежда е: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Не използвате TOR. Вашият IP адрес изглежда е: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -10,7 +10,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-11-25 07:16+0000\n"
|
"PO-Revision-Date: 2022-11-25 07:16+0000\n"
|
||||||
"Last-Translator: MSI Shafik <shafik.te@gmail.com>\n"
|
"Last-Translator: MSI Shafik <shafik.te@gmail.com>\n"
|
||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
|
|
@ -199,40 +199,40 @@ msgstr "অ্যাক্সেস অমান্য"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "সার্ভার এপিআই ত্রুটি"
|
msgstr "সার্ভার এপিআই ত্রুটি"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "কোন আইটেম পাওয়া যায়নি"
|
msgstr "কোন আইটেম পাওয়া যায়নি"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "উৎস"
|
msgstr "উৎস"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "পরবর্তী পৃষ্ঠাটি লোড করার সময় ত্রুটি৷."
|
msgstr "পরবর্তী পৃষ্ঠাটি লোড করার সময় ত্রুটি৷."
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "অবৈধ সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন৷"
|
msgstr "অবৈধ সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন৷"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "অবৈধ সেটিংস"
|
msgstr "অবৈধ সেটিংস"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "অনুসন্ধানের ত্রুটি"
|
msgstr "অনুসন্ধানের ত্রুটি"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "স্থগিত"
|
msgstr "স্থগিত"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "{minutes} মিনিট আগে"
|
msgstr "{minutes} মিনিট আগে"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে"
|
msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে"
|
||||||
|
|
||||||
|
|
@ -314,14 +314,6 @@ msgstr "রাত"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "রাত"
|
msgstr "রাত"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "স্ট্রিংগুলিকে বিভিন্ন হ্যাশ ডাইজেস্টে রূপান্তর করে।"
|
msgstr "স্ট্রিংগুলিকে বিভিন্ন হ্যাশ ডাইজেস্টে রূপান্তর করে।"
|
||||||
|
|
@ -380,28 +372,25 @@ msgstr "টর চেক প্লাগইন"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"এই প্লাগইনটি চেক করে যে অনুরোধের ঠিকানাটি একটি TOR প্রস্থান নোড কিনা এবং "
|
|
||||||
"ব্যবহারকারীকে জানিয়ে দেয় যে এটি কিনা, যেমন check.torproject.org কিন্তু "
|
|
||||||
"searxng থেকে।"
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"TOR প্রস্থান নোড তালিকা (https://check.torproject.org/exit-addresses) "
|
|
||||||
"পৌঁছানো যায় না।"
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "আপনি TOR ব্যবহার করছেন। আপনার আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।"
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "আপনি TOR ব্যবহার করছেন না। আপনার আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।"
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -580,15 +569,24 @@ msgstr "অনুসন্ধানের ভাষা"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "পূর্বনির্ধারিত ভাষা"
|
msgstr "পূর্বনির্ধারিত ভাষা"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "আপনি অনুসন্ধানের জন্য কোন ভাষা পছন্দ করেন?"
|
msgstr "আপনি অনুসন্ধানের জন্য কোন ভাষা পছন্দ করেন?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "স্বয়ংক্রিয়ভাবে পূরণ"
|
msgstr "স্বয়ংক্রিয়ভাবে পূরণ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "টাইপ করার সময় শব্দগুলো খুঁজুন"
|
msgstr "টাইপ করার সময় শব্দগুলো খুঁজুন"
|
||||||
|
|
||||||
|
|
@ -596,35 +594,35 @@ msgstr "টাইপ করার সময় শব্দগুলো খু
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "নিরাপদ অনুসন্ধান"
|
msgstr "নিরাপদ অনুসন্ধান"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "কঠোর"
|
msgstr "কঠোর"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "মধ্যম"
|
msgstr "মধ্যম"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "নেই"
|
msgstr "নেই"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "বাছাইকৃত উপাত্ত"
|
msgstr "বাছাইকৃত উপাত্ত"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "উন্মুক্ত প্রবেশাধিকারযুক্ত DOI সমাধানদাতা"
|
msgstr "উন্মুক্ত প্রবেশাধিকারযুক্ত DOI সমাধানদাতা"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -632,263 +630,263 @@ msgstr ""
|
||||||
"যখন এভেইলেবল হবে তখন উন্মুক্ত প্রবেশাধিকার ভার্সনে ফিরিয়ে নিন (প্লাগিন "
|
"যখন এভেইলেবল হবে তখন উন্মুক্ত প্রবেশাধিকার ভার্সনে ফিরিয়ে নিন (প্লাগিন "
|
||||||
"বাধ্যতামূলক)"
|
"বাধ্যতামূলক)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "ইঞ্জিন টোকেন"
|
msgstr "ইঞ্জিন টোকেন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "প্রাইভেট ইঞ্জিনের জন্য প্রবেশাধিকার টোকেন"
|
msgstr "প্রাইভেট ইঞ্জিনের জন্য প্রবেশাধিকার টোকেন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "ব্যবহারকারীর সম্মুখে প্রদর্শিত"
|
msgstr "ব্যবহারকারীর সম্মুখে প্রদর্শিত"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "ইন্টারফেসের ভাষা"
|
msgstr "ইন্টারফেসের ভাষা"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "লে আউটের ভাষা পরিবর্তন করুন"
|
msgstr "লে আউটের ভাষা পরিবর্তন করুন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "রঙ"
|
msgstr "রঙ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "SearXNG এর লেআউট পরিবর্তন করুন"
|
msgstr "SearXNG এর লেআউট পরিবর্তন করুন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "থিমের ধরণ"
|
msgstr "থিমের ধরণ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "আপনার ব্রাউজার সেটিংস অনুসরণ করার জন্য auto সিলেক্ট করুন"
|
msgstr "আপনার ব্রাউজার সেটিংস অনুসরণ করার জন্য auto সিলেক্ট করুন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "মধ্যবর্তী বিন্যাস"
|
msgstr "মধ্যবর্তী বিন্যাস"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "চালু"
|
msgstr "চালু"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "বন্ধ"
|
msgstr "বন্ধ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "পেইজের মাঝখানে রেজাল্ট দেখান (অস্কার লেআউট)।"
|
msgstr "পেইজের মাঝখানে রেজাল্ট দেখান (অস্কার লেআউট)।"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "নতুন ট্যাবে রেজাল্ট রয়েছে"
|
msgstr "নতুন ট্যাবে রেজাল্ট রয়েছে"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "গোপনীয়তা"
|
msgstr "গোপনীয়তা"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "সক্রিয়"
|
msgstr "সক্রিয়"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "নিষ্ক্রিয়"
|
msgstr "নিষ্ক্রিয়"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "ইঞ্জিন"
|
msgstr "ইঞ্জিন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "অনুমোদন"
|
msgstr "অনুমোদন"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "শর্টকাট"
|
msgstr "শর্টকাট"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "নির্ভরযোগ্যতা"
|
msgstr "নির্ভরযোগ্যতা"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "মূলশব্দ"
|
msgstr "মূলশব্দ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "নাম"
|
msgstr "নাম"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "বর্ণনা"
|
msgstr "বর্ণনা"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "উদাহরণ"
|
msgstr "উদাহরণ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "কুকি"
|
msgstr "কুকি"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "মান"
|
msgstr "মান"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "সংরক্ষণ"
|
msgstr "সংরক্ষণ"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "পিছনে"
|
msgstr "পিছনে"
|
||||||
|
|
||||||
|
|
@ -1235,3 +1233,54 @@ msgstr "ভিডিও লুকিয়ে ফেলুন"
|
||||||
#~ "methods</a>"
|
#~ "methods</a>"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "এই প্লাগইনটি চেক করে যে অনুরোধের "
|
||||||
|
#~ "ঠিকানাটি একটি TOR প্রস্থান নোড কিনা "
|
||||||
|
#~ "এবং ব্যবহারকারীকে জানিয়ে দেয় যে এটি"
|
||||||
|
#~ " কিনা, যেমন check.torproject.org কিন্তু "
|
||||||
|
#~ "searxng থেকে।"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "TOR প্রস্থান নোড তালিকা "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) পৌঁছানো "
|
||||||
|
#~ "যায় না।"
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "আপনি TOR ব্যবহার করছেন। আপনার আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।"
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "আপনি TOR ব্যবহার করছেন না। আপনার "
|
||||||
|
#~ "আইপি ঠিকানা বলে মনে হচ্ছে: {ip_address}।"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -9,7 +9,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2021-12-17 07:17+0000\n"
|
"PO-Revision-Date: 2021-12-17 07:17+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
||||||
"Language: bo\n"
|
"Language: bo\n"
|
||||||
|
|
@ -198,40 +198,40 @@ msgstr ""
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
|
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
|
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
|
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
|
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "སྐར་མ་ {minutes} སྔོན་ལ།"
|
msgstr "སྐར་མ་ {minutes} སྔོན་ལ།"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
|
msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
|
||||||
|
|
||||||
|
|
@ -306,14 +306,6 @@ msgstr ""
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -370,22 +362,24 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
|
|
@ -559,15 +553,24 @@ msgstr "འཚོལ་བཤེར་ནང་དོན་མཚོན་བྱ
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "གཞི་བཞག་སྐད་རིགས།"
|
msgstr "གཞི་བཞག་སྐད་རིགས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "ཁྱེད་ཀྱིས་ཆེས་སྤྱོད་བདེ་པའི་འཚོལ་བཤེར་སྐད་རིགས་གང་ཡིན་ནམ།"
|
msgstr "ཁྱེད་ཀྱིས་ཆེས་སྤྱོད་བདེ་པའི་འཚོལ་བཤེར་སྐད་རིགས་གང་ཡིན་ནམ།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "རང་ཤུགས་ཀྱིས་སྒྲུབ།"
|
msgstr "རང་ཤུགས་ཀྱིས་སྒྲུབ།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "འཚོལ་བྱ་གཏགས་པ་ཇི་བཞིན་བཙལ།"
|
msgstr "འཚོལ་བྱ་གཏགས་པ་ཇི་བཞིན་བཙལ།"
|
||||||
|
|
||||||
|
|
@ -575,297 +578,297 @@ msgstr "འཚོལ་བྱ་གཏགས་པ་ཇི་བཞིན་བ
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "བདེ་འཇགས་འཚོལ་བཤེར།"
|
msgstr "བདེ་འཇགས་འཚོལ་བཤེར།"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "ནན་ཏན།"
|
msgstr "ནན་ཏན།"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "འབྲིང་ཙམ།"
|
msgstr "འབྲིང་ཙམ།"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "གང་ཡང་མེད།"
|
msgstr "གང་ཡང་མེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "ནང་དོན་བཙག་བྱེད།"
|
msgstr "ནང་དོན་བཙག་བྱེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "མདུན་ངོས།"
|
msgstr "མདུན་ངོས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "དྲ་ངོས་སྐད་རིགས།"
|
msgstr "དྲ་ངོས་སྐད་རིགས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "སྐད་རིགས་གདམ་གསེས་ཀྱི་དྲ་ངོས་བརྗེ་བསྒྱུར།"
|
msgstr "སྐད་རིགས་གདམ་གསེས་ཀྱི་དྲ་ངོས་བརྗེ་བསྒྱུར།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "ཁ་ཕྱེས།"
|
msgstr "ཁ་ཕྱེས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "ཁ་རྒྱབ།"
|
msgstr "ཁ་རྒྱབ།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "ཤོག་ངོས་གསར་བ་ནས་འཚོལ་འབྲས་འཆར།"
|
msgstr "ཤོག་ངོས་གསར་བ་ནས་འཚོལ་འབྲས་འཆར།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "ཤོག་ངོས་གསར་བ་ཞིག་ནས་དྲ་ངོས་འཆར་པར་བྱེད།"
|
msgstr "ཤོག་ངོས་གསར་བ་ཞིག་ནས་དྲ་ངོས་འཆར་པར་བྱེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "མཐའ་མེད་པའི་འཆར་ངོས།"
|
msgstr "མཐའ་མེད་པའི་འཆར་ངོས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr "དྲ་ངོས་མར་འདྲུད་ནས་ཞབས་ལ་སླེབས་དུས་རང་འགུལ་སྒོས་འཕྲོ་མའི་ནང་དོན་འཆར་པར་བྱེད།"
|
msgstr "དྲ་ངོས་མར་འདྲུད་ནས་ཞབས་ལ་སླེབས་དུས་རང་འགུལ་སྒོས་འཕྲོ་མའི་ནང་དོན་འཆར་པར་བྱེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "མི་སྒེར་གསང་དོན།"
|
msgstr "མི་སྒེར་གསང་དོན།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "རི་མོ་མངག་བཅོལ་གྱི་ཞབས་ཞུ་སྒྲིག་ཆས།"
|
msgstr "རི་མོ་མངག་བཅོལ་གྱི་ཞབས་ཞུ་སྒྲིག་ཆས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "ཁ་འབྱེད་ཟིན།"
|
msgstr "ཁ་འབྱེད་ཟིན།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "ཁ་རྒྱབ་ཟིན།"
|
msgstr "ཁ་རྒྱབ་ཟིན།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "སྒུལ་བྱེད།"
|
msgstr "སྒུལ་བྱེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "ཉེ་ལམ་སྤྱད་ཟིན་པའི་འཚོལ་བྱེད་སྒུལ་བྱེད།"
|
msgstr "ཉེ་ལམ་སྤྱད་ཟིན་པའི་འཚོལ་བྱེད་སྒུལ་བྱེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "ཆོག་མཆན།"
|
msgstr "ཆོག་མཆན།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "སྒུལ་བྱེད་ཀྱི་མིང་།"
|
msgstr "སྒུལ་བྱེད་ཀྱི་མིང་།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "མགྱོགས་མྱུར་མཐེབ་གཞོང་།"
|
msgstr "མགྱོགས་མྱུར་མཐེབ་གཞོང་།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "རྒྱབ་སྐྱོར་ཐོབ་པའི་སྐད་རིགས་གདམ་གསེས།"
|
msgstr "རྒྱབ་སྐྱོར་ཐོབ་པའི་སྐད་རིགས་གདམ་གསེས།"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "དུས་ཀྱི་ཁྱབ་ཁོངས།"
|
msgstr "དུས་ཀྱི་ཁྱབ་ཁོངས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "མང་མཐའི་དུས་ཚོད།"
|
msgstr "མང་མཐའི་དུས་ཚོད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "ཐ་སྙད་གཙོ་བོ།"
|
msgstr "ཐ་སྙད་གཙོ་བོ།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "མིང་།"
|
msgstr "མིང་།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "འབྲེལ་ཡོད་ངོ་སྤྲོད།"
|
msgstr "འབྲེལ་ཡོད་ངོ་སྤྲོད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "དཔེ་བརྗོད།"
|
msgstr "དཔེ་བརྗོད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "རྐང་རྗེས།"
|
msgstr "རྐང་རྗེས།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "རྗེས་འདེད་ཀྱི་ཡིག་ཆའི་མིང་།"
|
msgstr "རྗེས་འདེད་ཀྱི་ཡིག་ཆའི་མིང་།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "ཚད་གཞི།"
|
msgstr "ཚད་གཞི།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "ཉེ་ལམ་རང་མོས་སྒྲིག་འགོད་ཁྲོད་དུ་གསོག་འཇོག་བྱས་ཟིན་པའི་དྲ་གནས་འཚོལ་བཤེར།"
|
msgstr "ཉེ་ལམ་རང་མོས་སྒྲིག་འགོད་ཁྲོད་དུ་གསོག་འཇོག་བྱས་ཟིན་པའི་དྲ་གནས་འཚོལ་བཤེར།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "གཞི་བཞག་གི་རྣམ་པར་སྒྲིག་བཀོད་བྱེད།"
|
msgstr "གཞི་བཞག་གི་རྣམ་པར་སྒྲིག་བཀོད་བྱེད།"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1451,3 +1454,44 @@ msgstr "རྙན་ཟློས་སྦས།"
|
||||||
#~ "methods</a>"
|
#~ "methods</a>"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -11,16 +11,17 @@
|
||||||
# alexfs2015 <alex04fs@gmail.com>, 2022.
|
# alexfs2015 <alex04fs@gmail.com>, 2022.
|
||||||
# Joan Montané <joan@montane.cat>, 2022.
|
# Joan Montané <joan@montane.cat>, 2022.
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
|
"PO-Revision-Date: 2023-02-19 11:39+0000\n"
|
||||||
"Last-Translator: alexfs2015 <alex04fs@gmail.com>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"Language-Team: Catalan "
|
"Language-Team: Catalan "
|
||||||
"<https://weblate.bubu1.eu/projects/searxng/searxng/ca/>\n"
|
"<https://translate.codeberg.org/projects/searxng/searxng/ca/>\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
|
@ -204,40 +205,40 @@ msgstr "accés denegat"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "error en l'API del servidor"
|
msgstr "error en l'API del servidor"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "No s'ha trobat cap element"
|
msgstr "No s'ha trobat cap element"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Origen"
|
msgstr "Origen"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "S'ha produït un error en carregar la pàgina següent"
|
msgstr "S'ha produït un error en carregar la pàgina següent"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "La configuració no és vàlida, editeu-la"
|
msgstr "La configuració no és vàlida, editeu-la"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "La configuració no és vàlida"
|
msgstr "La configuració no és vàlida"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "error en la cerca"
|
msgstr "error en la cerca"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Suspès"
|
msgstr "Suspès"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "fa {minutes} minuts"
|
msgstr "fa {minutes} minuts"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "fa {hours} hores i {minutes} minuts"
|
msgstr "fa {hours} hores i {minutes} minuts"
|
||||||
|
|
||||||
|
|
@ -320,14 +321,6 @@ msgstr "Vespre"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Nit"
|
msgstr "Nit"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Converteix cadenes a diferent formats de resum."
|
msgstr "Converteix cadenes a diferent formats de resum."
|
||||||
|
|
@ -388,28 +381,25 @@ msgstr "Plugin de comprovació de Tor"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aquest plugin comprova si l'adreça de la sol·licitud és un node de "
|
|
||||||
"sortida TOR i informa a l'usuari si ho és, com check.torproject.org però "
|
|
||||||
"des de searxng."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"No es pot accedir a la llista de nodes de sortida TOR "
|
|
||||||
"(https://check.torproject.org/exit-addresses)."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "No esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}."
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -585,15 +575,24 @@ msgstr "Llengua de cerca"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Llengua predeterminada"
|
msgstr "Llengua predeterminada"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "En quina llengua preferiu cercar?"
|
msgstr "En quina llengua preferiu cercar?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Compleció automàtica"
|
msgstr "Compleció automàtica"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Troba coses tal com escriu"
|
msgstr "Troba coses tal com escriu"
|
||||||
|
|
||||||
|
|
@ -601,35 +600,35 @@ msgstr "Troba coses tal com escriu"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Cerca segura"
|
msgstr "Cerca segura"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Estricta"
|
msgstr "Estricta"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Moderada"
|
msgstr "Moderada"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Cap"
|
msgstr "Cap"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filtra el contingut"
|
msgstr "Filtra el contingut"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Solucionador de l'Open Access DOI"
|
msgstr "Solucionador de l'Open Access DOI"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -637,89 +636,89 @@ msgstr ""
|
||||||
"Redirigeix cap a versions d'accés obert de les publicacions si són "
|
"Redirigeix cap a versions d'accés obert de les publicacions si són "
|
||||||
"disponibles (cal un connector)"
|
"disponibles (cal un connector)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Claus de motors"
|
msgstr "Claus de motors"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Claus d'accés per a motors privats"
|
msgstr "Claus d'accés per a motors privats"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Interfície d'usuari"
|
msgstr "Interfície d'usuari"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Llengua de la interfície"
|
msgstr "Llengua de la interfície"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Canvia la llengua de la disposició"
|
msgstr "Canvia la llengua de la disposició"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Tema"
|
msgstr "Tema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Canvia la interfície del SearXNG"
|
msgstr "Canvia la interfície del SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Estil del tema"
|
msgstr "Estil del tema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Trieu automàtic per a mantenir la configuració del navegador"
|
msgstr "Trieu automàtic per a mantenir la configuració del navegador"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Centrat central"
|
msgstr "Centrat central"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Activat"
|
msgstr "Activat"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Desactivat"
|
msgstr "Desactivat"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Mostrar els resultats en el centre de la pàgina (disseny Oscar)."
|
msgstr "Mostrar els resultats en el centre de la pàgina (disseny Oscar)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Resultats en pestanyes noves"
|
msgstr "Resultats en pestanyes noves"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Obre els enllaços de resultats en una pestanya nova"
|
msgstr "Obre els enllaços de resultats en una pestanya nova"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Desplaçament infinit"
|
msgstr "Desplaçament infinit"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Carrega automàticament la pàgina següent en desplaçar-se al final de la "
|
"Carrega automàticament la pàgina següent en desplaçar-se al final de la "
|
||||||
"pàgina actual"
|
"pàgina actual"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privadesa"
|
msgstr "Privadesa"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "Mètode HTTP"
|
msgstr "Mètode HTTP"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -729,29 +728,29 @@ msgstr ""
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">més informació sobre els mètodes de petició</a>"
|
" rel=\"external\">més informació sobre els mètodes de petició</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Servidor intermediari d'imatges"
|
msgstr "Servidor intermediari d'imatges"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Activat"
|
msgstr "Activat"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Desactivat"
|
msgstr "Desactivat"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Les imatges es carreguen via un servidor intermediari SearXNG"
|
msgstr "Les imatges es carreguen via un servidor intermediari SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Consulta en el títol de la pàgina"
|
msgstr "Consulta en el títol de la pàgina"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -759,15 +758,15 @@ msgstr ""
|
||||||
"Si està activat, el títol de la pàgina conté la consulta. El navegador "
|
"Si està activat, el títol de la pàgina conté la consulta. El navegador "
|
||||||
"pot enregistrar aquest títol"
|
"pot enregistrar aquest títol"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Motors"
|
msgstr "Motors"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Motors de cerca usats actualment"
|
msgstr "Motors de cerca usats actualment"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -775,76 +774,76 @@ msgstr ""
|
||||||
"Aquesta pestanya no es mostra per als resultats de la cerca, però podeu "
|
"Aquesta pestanya no es mostra per als resultats de la cerca, però podeu "
|
||||||
"cercar en els motors llistats aquí amb els bangs."
|
"cercar en els motors llistats aquí amb els bangs."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Permet"
|
msgstr "Permet"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Nom del motor"
|
msgstr "Nom del motor"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Drecera"
|
msgstr "Drecera"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Suporta la llengua seleccionada"
|
msgstr "Suporta la llengua seleccionada"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Interval de temps"
|
msgstr "Interval de temps"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Temps de resposta"
|
msgstr "Temps de resposta"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Temps màxim"
|
msgstr "Temps màxim"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Fiabilitat"
|
msgstr "Fiabilitat"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Consultes especials"
|
msgstr "Consultes especials"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Paraules clau"
|
msgstr "Paraules clau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nom"
|
msgstr "Nom"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripció"
|
msgstr "Descripció"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Exemples"
|
msgstr "Exemples"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Aquesta és la llista dels mòduls de resposta instantània de SearXNG."
|
msgstr "Aquesta és la llista dels mòduls de resposta instantània de SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Això és la llista dels connectors."
|
msgstr "Això és la llista dels connectors."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Galetes"
|
msgstr "Galetes"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -852,23 +851,23 @@ msgstr ""
|
||||||
"Això és la llista de les galetes, i els seus valors, que el SearXNG "
|
"Això és la llista de les galetes, i els seus valors, que el SearXNG "
|
||||||
"emmagatzema en el vostre ordinador."
|
"emmagatzema en el vostre ordinador."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Amb aquesta llista, podeu comprovar la transparència de SearXNG."
|
msgstr "Amb aquesta llista, podeu comprovar la transparència de SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Nom de la galeta"
|
msgstr "Nom de la galeta"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "URL de cerca de les preferències desades actualment"
|
msgstr "URL de cerca de les preferències desades actualment"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -877,11 +876,11 @@ msgstr ""
|
||||||
" reduir-ne la privadesa i filtrar dades, en fer clic en els llocs dels "
|
" reduir-ne la privadesa i filtrar dades, en fer clic en els llocs dels "
|
||||||
"resultats."
|
"resultats."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL per a recuperar les preferències en un altre navegador"
|
msgstr "URL per a recuperar les preferències en un altre navegador"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -889,7 +888,7 @@ msgstr ""
|
||||||
"Indicar els paràmetres personalitzats en l'URL de preferències pot usar-"
|
"Indicar els paràmetres personalitzats en l'URL de preferències pot usar-"
|
||||||
"se per a sincronitzar preferències entre aparells."
|
"se per a sincronitzar preferències entre aparells."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -897,7 +896,7 @@ msgstr ""
|
||||||
"Aquesta configuració es desa en les galetes. Això ens permet no "
|
"Aquesta configuració es desa en les galetes. Això ens permet no "
|
||||||
"emmagatzemar les vostres dades."
|
"emmagatzemar les vostres dades."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -905,15 +904,15 @@ msgstr ""
|
||||||
"Aquestes galetes només són per a la vostra comoditat. No les usem per a "
|
"Aquestes galetes només són per a la vostra comoditat. No les usem per a "
|
||||||
"rastrejar-vos."
|
"rastrejar-vos."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Desa"
|
msgstr "Desa"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Restaura els valors predeterminats"
|
msgstr "Restaura els valors predeterminats"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Enrere"
|
msgstr "Enrere"
|
||||||
|
|
||||||
|
|
@ -983,7 +982,7 @@ msgstr "cerca"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:21
|
#: searx/templates/simple/stats.html:21
|
||||||
msgid "There is currently no data available. "
|
msgid "There is currently no data available. "
|
||||||
msgstr "Actualment, no hi ha dades disponibles."
|
msgstr "Actualment no hi ha dades disponibles. "
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:26
|
#: searx/templates/simple/stats.html:26
|
||||||
msgid "Scores"
|
msgid "Scores"
|
||||||
|
|
@ -1510,3 +1509,52 @@ msgstr "amaga el vídeo"
|
||||||
#~ " rel=\"external\">més informació sobre els "
|
#~ " rel=\"external\">més informació sobre els "
|
||||||
#~ "mètodes de petició</a>"
|
#~ "mètodes de petició</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Aquest plugin comprova si l'adreça de"
|
||||||
|
#~ " la sol·licitud és un node de "
|
||||||
|
#~ "sortida TOR i informa a l'usuari "
|
||||||
|
#~ "si ho és, com check.torproject.org però"
|
||||||
|
#~ " des de searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "No es pot accedir a la llista "
|
||||||
|
#~ "de nodes de sortida TOR "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses)."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "No esteu utilitzant TOR. La vostra adreça IP sembla ser: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "Detecta automàticament la llengua de cerca"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -10,22 +10,22 @@
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
# Masterix <masterix@duck.com>, 2022.
|
# Masterix <masterix@duck.com>, 2022.
|
||||||
# LagManCZ <lagmen@post.cz>, 2022.
|
# LagManCZ <lagmen@post.cz>, 2022.
|
||||||
|
# zenobit <zen@osowoso.xyz>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-12-23 07:14+0000\n"
|
"PO-Revision-Date: 2023-02-12 09:56+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: zenobit <zen@osowoso.xyz>\n"
|
||||||
"Language-Team: Czech <https://weblate.bubu1.eu/projects/searxng/searxng/cs/>"
|
|
||||||
"\n"
|
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
|
"Language-Team: Czech "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/cs/>\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && "
|
||||||
|
"n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
|
||||||
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
|
||||||
"X-Generator: Weblate 4.14.1\n"
|
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -205,40 +205,40 @@ msgstr "přístup odepřen"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "chyba API serveru"
|
msgstr "chyba API serveru"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nic nenalezeno"
|
msgstr "Nic nenalezeno"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "zdroj"
|
msgstr "zdroj"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Chyba při načítání další stránky"
|
msgstr "Chyba při načítání další stránky"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Neplatné nastavení, upravte své předvolby"
|
msgstr "Neplatné nastavení, upravte své předvolby"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Neplatné nastavení"
|
msgstr "Neplatné nastavení"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "chyba vyhledávání"
|
msgstr "chyba vyhledávání"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Pozastaveno"
|
msgstr "Pozastaveno"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "před {minutes} minutami"
|
msgstr "před {minutes} minutami"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "před {hours} hodinami, {minutes} minutami"
|
msgstr "před {hours} hodinami, {minutes} minutami"
|
||||||
|
|
||||||
|
|
@ -320,14 +320,6 @@ msgstr "Večer"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Noc"
|
msgstr "Noc"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr "Automaticky rozpoznaný jazyk vyhledávání"
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr "Automaticky detekuj jazyk vyhledávaného dotazu a přepni se do něj."
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Převádí řetězce na různé hash hodnoty."
|
msgstr "Převádí řetězce na různé hash hodnoty."
|
||||||
|
|
@ -386,27 +378,25 @@ msgstr "Plugin kontroly TORu"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tento plugin kontroluje, jestli adresa požadavku je výstupní uzel TORu, a"
|
|
||||||
" infromuje uživatele pokud je, jako check.torproject.org ale od searxng."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Seznam výstupních uzlů TOR (https://check.torproject.org/exit-addresses) "
|
|
||||||
"je nedostupný."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Používáte TOR. Zdá se, že vaše IP adresa je: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Nepoužíváte TOR. Zdá se, že vaše IP adresa je: {ip_address}."
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -584,15 +574,24 @@ msgstr "Jazyk hledání"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Výchozí jazyk"
|
msgstr "Výchozí jazyk"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Jaký jazyk vyhledávání upřednostňujete?"
|
msgstr "Jaký jazyk vyhledávání upřednostňujete?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Našeptávač"
|
msgstr "Našeptávač"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Vyhledávat během psaní"
|
msgstr "Vyhledávat během psaní"
|
||||||
|
|
||||||
|
|
@ -600,35 +599,35 @@ msgstr "Vyhledávat během psaní"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Bezpečné vyhledávání"
|
msgstr "Bezpečné vyhledávání"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Přísné"
|
msgstr "Přísné"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Střední"
|
msgstr "Střední"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Vypnuto"
|
msgstr "Vypnuto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filtrovat obsah"
|
msgstr "Filtrovat obsah"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Web pro přesměrování na Open Access DOI"
|
msgstr "Web pro přesměrování na Open Access DOI"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -636,87 +635,87 @@ msgstr ""
|
||||||
"Přesměrovat na volně přístupné verze publikací, pokud jsou k dispozici "
|
"Přesměrovat na volně přístupné verze publikací, pokud jsou k dispozici "
|
||||||
"(vyžaduje zásuvný modul)"
|
"(vyžaduje zásuvný modul)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Tokeny vyhledávačů"
|
msgstr "Tokeny vyhledávačů"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Přístupové tokeny pro soukromé vyhledávače"
|
msgstr "Přístupové tokeny pro soukromé vyhledávače"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Uživatelské rozhraní"
|
msgstr "Uživatelské rozhraní"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Jazyk rozhraní"
|
msgstr "Jazyk rozhraní"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Nastavit jazyk rozhraní"
|
msgstr "Nastavit jazyk rozhraní"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Vzhled"
|
msgstr "Vzhled"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Změnit vzhled SearXNG"
|
msgstr "Změnit vzhled SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Styl vzhledu"
|
msgstr "Styl vzhledu"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Zvolte automaticky pro sledování nastavení vašeho prohlížeče"
|
msgstr "Zvolte automaticky pro sledování nastavení vašeho prohlížeče"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Zarovnání na střed"
|
msgstr "Zarovnání na střed"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Zapnuto"
|
msgstr "Zapnuto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Vypnuto"
|
msgstr "Vypnuto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Zobrazí výsledky uprostřed stránky (rozložení Oscar)."
|
msgstr "Zobrazí výsledky uprostřed stránky (rozložení Oscar)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Výsledky na novém panelu"
|
msgstr "Výsledky na novém panelu"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Otevírat výsledky na novém panelu prohlížeče"
|
msgstr "Otevírat výsledky na novém panelu prohlížeče"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Nekonečné výsledky"
|
msgstr "Nekonečné výsledky"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr "Automaticky načítat další výsledky při rolování"
|
msgstr "Automaticky načítat další výsledky při rolování"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Soukromí"
|
msgstr "Soukromí"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "Metoda HTTP"
|
msgstr "Metoda HTTP"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -726,29 +725,29 @@ msgstr ""
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">naočit se více o metodách žádání</a>"
|
" rel=\"external\">naočit se více o metodách žádání</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Nepřímé vyhledávání obrázků"
|
msgstr "Nepřímé vyhledávání obrázků"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Zapnuto"
|
msgstr "Zapnuto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Vypnuto"
|
msgstr "Vypnuto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Používat SearXNG jako prostředníka pro vyhledávání obrázků"
|
msgstr "Používat SearXNG jako prostředníka pro vyhledávání obrázků"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Dotaz v titulku stránky"
|
msgstr "Dotaz v titulku stránky"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -756,15 +755,15 @@ msgstr ""
|
||||||
"Titulek stránky s výsledky bude obsahovat váš vyhledávací dotaz, pokud "
|
"Titulek stránky s výsledky bude obsahovat váš vyhledávací dotaz, pokud "
|
||||||
"toto zapnete. Váš prohlížeč může tento titulek zaznamenat"
|
"toto zapnete. Váš prohlížeč může tento titulek zaznamenat"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Vyhledávače"
|
msgstr "Vyhledávače"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Aktuálně používané vyhledávače"
|
msgstr "Aktuálně používané vyhledávače"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -772,76 +771,76 @@ msgstr ""
|
||||||
"Tato záložka se nezobrazuje ve výsledcích vyhledávání, ale můžete použít "
|
"Tato záložka se nezobrazuje ve výsledcích vyhledávání, ale můžete použít "
|
||||||
"vyhledávače zde uvedené pomocí vykřičníku."
|
"vyhledávače zde uvedené pomocí vykřičníku."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Povolit"
|
msgstr "Povolit"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Jméno vyhledávače"
|
msgstr "Jméno vyhledávače"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Zkratka"
|
msgstr "Zkratka"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Podporuje vybraný jazyk"
|
msgstr "Podporuje vybraný jazyk"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Čásový interval"
|
msgstr "Čásový interval"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Čas odpovědi"
|
msgstr "Čas odpovědi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Max. čas"
|
msgstr "Max. čas"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Spolehlivost"
|
msgstr "Spolehlivost"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Zvláštní dotazy"
|
msgstr "Zvláštní dotazy"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Klíčová slova"
|
msgstr "Klíčová slova"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Název"
|
msgstr "Název"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Popis"
|
msgstr "Popis"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Příklady"
|
msgstr "Příklady"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Toto je seznam našeptávačů SearXNG."
|
msgstr "Toto je seznam našeptávačů SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Toto je seznam doplňků."
|
msgstr "Toto je seznam doplňků."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Cookies"
|
msgstr "Cookies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -849,23 +848,23 @@ msgstr ""
|
||||||
"Toto je seznam cookies a jejich hodnoty, které si SearXNG ukládá na vašem"
|
"Toto je seznam cookies a jejich hodnoty, které si SearXNG ukládá na vašem"
|
||||||
" počítači."
|
" počítači."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "S pomocí tohoto seznamu můžete určit transparentnost SearXNG."
|
msgstr "S pomocí tohoto seznamu můžete určit transparentnost SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Název cookie"
|
msgstr "Název cookie"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Hodnota"
|
msgstr "Hodnota"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "URL pro vyhledávání s aktuálně uloženými předvolbami"
|
msgstr "URL pro vyhledávání s aktuálně uloženými předvolbami"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -873,11 +872,11 @@ msgstr ""
|
||||||
"Poznámka: zadaní vlastních nastavení v URL může snížit soukromí "
|
"Poznámka: zadaní vlastních nastavení v URL může snížit soukromí "
|
||||||
"prozrazením dat při kliknutí na výsledky hledání."
|
"prozrazením dat při kliknutí na výsledky hledání."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL k obnovení vašich preferencí v jiném prohlížeči"
|
msgstr "URL k obnovení vašich preferencí v jiném prohlížeči"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -885,7 +884,7 @@ msgstr ""
|
||||||
"Zadání vlastních nastavení v URL předvoleb lze použít k synchronizaci "
|
"Zadání vlastních nastavení v URL předvoleb lze použít k synchronizaci "
|
||||||
"předvoleb mezi zařízeními."
|
"předvoleb mezi zařízeními."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -893,7 +892,7 @@ msgstr ""
|
||||||
"Tato nastavení jsou uložena ve vašich cookies, což nám umožňuje tyto data"
|
"Tato nastavení jsou uložena ve vašich cookies, což nám umožňuje tyto data"
|
||||||
" neuchovávat nikde jinde."
|
" neuchovávat nikde jinde."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -901,15 +900,15 @@ msgstr ""
|
||||||
"Tyto cookies existují výhradně pro vaše pohodlí, nepoužíváme je ke "
|
"Tyto cookies existují výhradně pro vaše pohodlí, nepoužíváme je ke "
|
||||||
"sledování."
|
"sledování."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Uložit"
|
msgstr "Uložit"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "obnovit výchozí"
|
msgstr "obnovit výchozí"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Zpět"
|
msgstr "Zpět"
|
||||||
|
|
||||||
|
|
@ -979,7 +978,7 @@ msgstr "vyhledat"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:21
|
#: searx/templates/simple/stats.html:21
|
||||||
msgid "There is currently no data available. "
|
msgid "There is currently no data available. "
|
||||||
msgstr "Aktuálně nejsou k dispozici žádná data."
|
msgstr "Aktuálně nejsou k dispozici žádná data. "
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:26
|
#: searx/templates/simple/stats.html:26
|
||||||
msgid "Scores"
|
msgid "Scores"
|
||||||
|
|
@ -1502,3 +1501,52 @@ msgstr "skrýt video"
|
||||||
#~ " o dotazovacích metodách <a "
|
#~ " o dotazovacích metodách <a "
|
||||||
#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
#~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
#~ " rel=\"external\">viz Wikipedie</a>"
|
#~ " rel=\"external\">viz Wikipedie</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Tento plugin kontroluje, jestli adresa "
|
||||||
|
#~ "požadavku je výstupní uzel TORu, a "
|
||||||
|
#~ "infromuje uživatele pokud je, jako "
|
||||||
|
#~ "check.torproject.org ale od searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Seznam výstupních uzlů TOR "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) je "
|
||||||
|
#~ "nedostupný."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Používáte TOR. Zdá se, že vaše IP adresa je: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Nepoužíváte TOR. Zdá se, že vaše IP adresa je: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "Automaticky rozpoznaný jazyk vyhledávání"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr "Automaticky detekuj jazyk vyhledávaného dotazu a přepni se do něj."
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -6,21 +6,23 @@
|
||||||
# Cymrodor <aled@aledpowell.cymru>, 2019
|
# Cymrodor <aled@aledpowell.cymru>, 2019
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
# CJ <charl.cj.monke@gmail.com>, 2022.
|
# CJ <charl.cj.monke@gmail.com>, 2022.
|
||||||
|
# RhysJones <proladrhys123@outlook.com>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-09-28 07:29+0000\n"
|
"PO-Revision-Date: 2023-03-15 15:37+0000\n"
|
||||||
"Last-Translator: CJ <charl.cj.monke@gmail.com>\n"
|
"Last-Translator: RhysJones <proladrhys123@outlook.com>\n"
|
||||||
|
"Language-Team: Welsh <https://translate.codeberg.org/projects/searxng/"
|
||||||
|
"searxng/cy/>\n"
|
||||||
"Language: cy\n"
|
"Language: cy\n"
|
||||||
"Language-Team: Welsh "
|
|
||||||
"<https://weblate.bubu1.eu/projects/searxng/searxng/cy/>\n"
|
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n "
|
|
||||||
"!= 11) ? 2 : 3;\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
|
||||||
|
"11) ? 2 : 3;\n"
|
||||||
|
"X-Generator: Weblate 4.16.2\n"
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -91,7 +93,7 @@ msgstr "gwyddoniaeth"
|
||||||
#. CATEGORY_GROUPS['APPS']
|
#. CATEGORY_GROUPS['APPS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "apps"
|
msgid "apps"
|
||||||
msgstr "apps"
|
msgstr "apiau"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['DICTIONARIES']
|
#. CATEGORY_GROUPS['DICTIONARIES']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
|
@ -116,7 +118,7 @@ msgstr "q&a"
|
||||||
#. CATEGORY_GROUPS['REPOS']
|
#. CATEGORY_GROUPS['REPOS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "repos"
|
msgid "repos"
|
||||||
msgstr "repos"
|
msgstr "Gorffwys"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
|
@ -166,7 +168,7 @@ msgstr "gwall rhwydwaith"
|
||||||
|
|
||||||
#: searx/webapp.py:169
|
#: searx/webapp.py:169
|
||||||
msgid "SSL error: certificate validation has failed"
|
msgid "SSL error: certificate validation has failed"
|
||||||
msgstr ""
|
msgstr "Gwall SSL: dilysu tystysgrif wedi methu"
|
||||||
|
|
||||||
#: searx/webapp.py:171
|
#: searx/webapp.py:171
|
||||||
msgid "unexpected crash"
|
msgid "unexpected crash"
|
||||||
|
|
@ -200,80 +202,82 @@ msgstr "mynediad wedi ei wrthod"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "gwall API gweinydd"
|
msgstr "gwall API gweinydd"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Ni chanfuwyd eitem"
|
msgstr "Ni chanfuwyd eitem"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Ffynhonnell"
|
msgstr "Ffynhonnell"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Gwall wrth lwytho'r dudalen nesaf"
|
msgstr "Gwall wrth lwytho'r dudalen nesaf"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Gosodiadau annilys. Addasa dy ddewisiadau."
|
msgstr "Gosodiadau annilys, golygu eich dewisiadau"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Gosodiadau annilys"
|
msgstr "Gosodiadau annilys"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "gwall chwilio"
|
msgstr "gwall chwilio"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr ""
|
msgstr "Atal"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "{minutes} munud yn ôl"
|
msgstr "{minutes} munud yn ôl"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} awr, {minutes} munud yn ôl"
|
msgstr "{hours} awr, {minutes} munud yn ôl"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:67
|
#: searx/answerers/random/answerer.py:67
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr ""
|
msgstr "Generadur gwerth ar hap"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:68
|
#: searx/answerers/random/answerer.py:68
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr ""
|
msgstr "Cynhyrchu gwahanol werthoedd ar hap"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:47
|
#: searx/answerers/statistics/answerer.py:47
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr ""
|
msgstr "Swyddogaethau ystadegau"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:48
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr ""
|
msgstr "Compute {functions} o'r dadleuon"
|
||||||
|
|
||||||
#: searx/engines/openstreetmap.py:160
|
#: searx/engines/openstreetmap.py:160
|
||||||
msgid "Get directions"
|
msgid "Get directions"
|
||||||
msgstr ""
|
msgstr "Cael cyfarwyddiadau"
|
||||||
|
|
||||||
#: searx/engines/pdbe.py:96
|
#: searx/engines/pdbe.py:96
|
||||||
msgid "{title} (OBSOLETE)"
|
msgid "{title} (OBSOLETE)"
|
||||||
msgstr ""
|
msgstr "{title} (OBSOLETE)"
|
||||||
|
|
||||||
#: searx/engines/pdbe.py:103
|
#: searx/engines/pdbe.py:103
|
||||||
msgid "This entry has been superseded by"
|
msgid "This entry has been superseded by"
|
||||||
msgstr ""
|
msgstr "Mae'r cofnod hwn wedi ei ddisodli gan"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:219
|
#: searx/engines/qwant.py:219
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr "Sianel"
|
||||||
|
|
||||||
#: searx/engines/semantic_scholar.py:81
|
#: searx/engines/semantic_scholar.py:81
|
||||||
msgid ""
|
msgid ""
|
||||||
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
||||||
"{lastCitationVelocityYear}"
|
"{lastCitationVelocityYear}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"{numCitations} dyfyniadau o'r flwyddyn {firstCitationVelocityYear} i "
|
||||||
|
"{lastCitationVelocityYear}"
|
||||||
|
|
||||||
#: searx/engines/tineye.py:40
|
#: searx/engines/tineye.py:40
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -281,48 +285,45 @@ msgid ""
|
||||||
"format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
|
"format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
|
||||||
" WebP."
|
" WebP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Allai ddim darllen yr url delwedd hwnnw. Gall hyn fod oherwydd fformat ffeil "
|
||||||
|
"heb gymorth. Mae TinEye yn cefnogi delweddau yn unig sy'n JPEG, PNG, GIF, "
|
||||||
|
"BMP, TIFF neu WebP."
|
||||||
|
|
||||||
#: searx/engines/tineye.py:46
|
#: searx/engines/tineye.py:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"The image is too simple to find matches. TinEye requires a basic level of"
|
"The image is too simple to find matches. TinEye requires a basic level of"
|
||||||
" visual detail to successfully identify matches."
|
" visual detail to successfully identify matches."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Mae'r ddelwedd yn rhy syml i ddod o hyd i gemau. Mae TinEye angen lefel "
|
||||||
|
"sylfaenol o fanylion gweledol i adnabod gemau yn llwyddiannus."
|
||||||
|
|
||||||
#: searx/engines/tineye.py:52
|
#: searx/engines/tineye.py:52
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr ""
|
msgstr "Doedd dim modd lawrlwytho'r ddelwedd."
|
||||||
|
|
||||||
#: searx/engines/wttr.py:101
|
#: searx/engines/wttr.py:101
|
||||||
msgid "Morning"
|
msgid "Morning"
|
||||||
msgstr ""
|
msgstr "Bore"
|
||||||
|
|
||||||
#: searx/engines/wttr.py:101
|
#: searx/engines/wttr.py:101
|
||||||
msgid "Noon"
|
msgid "Noon"
|
||||||
msgstr ""
|
msgstr "Canol Dydd"
|
||||||
|
|
||||||
#: searx/engines/wttr.py:101
|
#: searx/engines/wttr.py:101
|
||||||
msgid "Evening"
|
msgid "Evening"
|
||||||
msgstr ""
|
msgstr "Noswaith"
|
||||||
|
|
||||||
#: searx/engines/wttr.py:101
|
#: searx/engines/wttr.py:101
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr ""
|
msgstr "Nos"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr ""
|
msgstr "Trosi llinynnau i wahanol dreuliadau hash."
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:52
|
#: searx/plugins/hash_plugin.py:52
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr "Digon o hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:9
|
#: searx/plugins/hostname_replace.py:9
|
||||||
msgid "Hostname replace"
|
msgid "Hostname replace"
|
||||||
|
|
@ -368,22 +369,24 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
|
|
@ -557,15 +560,24 @@ msgstr "Iaith chwilio"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Iaith arferol"
|
msgstr "Iaith arferol"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Ym mha iaith wyt ti'n ffafrio chwilio?"
|
msgstr "Ym mha iaith wyt ti'n ffafrio chwilio?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Awto-gwblhau"
|
msgstr "Awto-gwblhau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Darganfod pethau wrth i chi deipio"
|
msgstr "Darganfod pethau wrth i chi deipio"
|
||||||
|
|
||||||
|
|
@ -573,297 +585,297 @@ msgstr "Darganfod pethau wrth i chi deipio"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Caeth"
|
msgstr "Caeth"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Cymhedrol"
|
msgstr "Cymhedrol"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Dim"
|
msgstr "Dim"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Rhyngwyneb defnyddiwr"
|
msgstr "Rhyngwyneb defnyddiwr"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Iaith y rhyngwyneb"
|
msgstr "Iaith y rhyngwyneb"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Newid iaith rhyngwyneb searX"
|
msgstr "Newid iaith rhyngwyneb searX"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Ymlaen"
|
msgstr "Ymlaen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "I ffwrdd"
|
msgstr "I ffwrdd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Canlyniadau mewn tabiau newydd"
|
msgstr "Canlyniadau mewn tabiau newydd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Agor dolenni canlyniadau mewn tabiau newydd yn y porwr"
|
msgstr "Agor dolenni canlyniadau mewn tabiau newydd yn y porwr"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Preifatrwydd"
|
msgstr "Preifatrwydd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Galluogwyd"
|
msgstr "Galluogwyd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Analluogwyd"
|
msgstr "Analluogwyd"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Peiriannau"
|
msgstr "Peiriannau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Caniatáu"
|
msgstr "Caniatáu"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Llwybr Byr"
|
msgstr "Llwybr Byr"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Cefnogir yr iaith a ddewiswyd"
|
msgstr "Cefnogir yr iaith a ddewiswyd"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Cyfnod amser"
|
msgstr "Cyfnod amser"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Allweddeiriau"
|
msgstr "Allweddeiriau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Enw"
|
msgstr "Enw"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Disgrifiad"
|
msgstr "Disgrifiad"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Enghreifftiau"
|
msgstr "Enghreifftiau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Cwcis"
|
msgstr "Cwcis"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Enw cwci"
|
msgstr "Enw cwci"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Gwerth"
|
msgstr "Gwerth"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Ailosod rhagosodiadau"
|
msgstr "Ailosod rhagosodiadau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1450,3 +1462,43 @@ msgstr "cuddio fideo"
|
||||||
#~ "methods</a>"
|
#~ "methods</a>"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -6,20 +6,22 @@
|
||||||
# Mikkel Kirkgaard Nielsen <memb_transifex@mikini.dk>, 2018
|
# Mikkel Kirkgaard Nielsen <memb_transifex@mikini.dk>, 2018
|
||||||
# Morten Krogh Andersen <spam1@krogh.net>, 2017
|
# Morten Krogh Andersen <spam1@krogh.net>, 2017
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-12-07 16:11+0000\n"
|
"PO-Revision-Date: 2023-03-21 17:37+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
|
"Language-Team: Danish <https://translate.codeberg.org/projects/searxng/"
|
||||||
|
"searxng/da/>\n"
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"Language-Team: Danish "
|
|
||||||
"<https://weblate.bubu1.eu/projects/searxng/searxng/da/>\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: Weblate 4.16.4\n"
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -199,40 +201,40 @@ msgstr "adgang nægtet"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "server-API-fejl"
|
msgstr "server-API-fejl"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Intet fundet"
|
msgstr "Intet fundet"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Kilde"
|
msgstr "Kilde"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Fejl ved indlæsning af den næste side"
|
msgstr "Fejl ved indlæsning af den næste side"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Ugyldige indstillinger, redigér venligst dine valg"
|
msgstr "Ugyldige indstillinger, redigér venligst dine valg"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ugyldig indstilling"
|
msgstr "Ugyldig indstilling"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "søgefejl"
|
msgstr "søgefejl"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Suspenderet"
|
msgstr "Suspenderet"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "for {minutes} minut(ter) siden"
|
msgstr "for {minutes} minut(ter) siden"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "for {hours} time(r) og {minutes} minut(ter) siden"
|
msgstr "for {hours} time(r) og {minutes} minut(ter) siden"
|
||||||
|
|
||||||
|
|
@ -315,14 +317,6 @@ msgstr "Aften"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Nat"
|
msgstr "Nat"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Konverterer strenge til forskellige hash-digests."
|
msgstr "Konverterer strenge til forskellige hash-digests."
|
||||||
|
|
@ -383,28 +377,25 @@ msgstr "Tor undersøg plugin"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dette plugin tjekker, om adressen på anmodningen er en TOR-exit-node, og "
|
|
||||||
"informerer brugeren, hvis den er, som check.torproject.org, men fra "
|
|
||||||
"searxng i stedet."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"TOR exit node listen (https://check.torproject.org/exit-addresses) er "
|
|
||||||
"ikke tilgængelig."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Du bruger TOR. Din IP-adresse ser ud til at være: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr "Du bruger ikke Tor og du har denne eksterne IP adresse: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Du bruger ikke TOR. Din IP-adresse ser ud til at være: {ip_address}."
|
msgstr "Du bruger ikke Tor og du har denne eksterne IP adresse: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -583,15 +574,24 @@ msgstr "Søgesprog"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Standardsprog"
|
msgstr "Standardsprog"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Hvilket sprog foretrækker du til søgninger?"
|
msgstr "Hvilket sprog foretrækker du til søgninger?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Automatisk fuldførelse"
|
msgstr "Automatisk fuldførelse"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Find under indtastning"
|
msgstr "Find under indtastning"
|
||||||
|
|
||||||
|
|
@ -599,35 +599,35 @@ msgstr "Find under indtastning"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Sikker Søgning"
|
msgstr "Sikker Søgning"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Stringent"
|
msgstr "Stringent"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Moderat"
|
msgstr "Moderat"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Ingen"
|
msgstr "Ingen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filtrér indhold"
|
msgstr "Filtrér indhold"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Open Access DOI-forløser"
|
msgstr "Open Access DOI-forløser"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -635,89 +635,89 @@ msgstr ""
|
||||||
"Omdiriger til open-access-udgaver af publikationer hvis tilgængelig "
|
"Omdiriger til open-access-udgaver af publikationer hvis tilgængelig "
|
||||||
"(plugin påkrævet)"
|
"(plugin påkrævet)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Maskinmærker"
|
msgstr "Maskinmærker"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Adgangstokens til private søgemaskiner"
|
msgstr "Adgangstokens til private søgemaskiner"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Brugerinterface"
|
msgstr "Brugerinterface"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Sprog i brugergrænsefladen"
|
msgstr "Sprog i brugergrænsefladen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Ændring af layout-sproget"
|
msgstr "Ændring af layout-sproget"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Tema"
|
msgstr "Tema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Ændr SearXNG layout"
|
msgstr "Ændr SearXNG layout"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Tema stil"
|
msgstr "Tema stil"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Vælg auto for at følge dine browserindstillinger"
|
msgstr "Vælg auto for at følge dine browserindstillinger"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Centeret"
|
msgstr "Centeret"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Til"
|
msgstr "Til"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Fra"
|
msgstr "Fra"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Viser resultater på midten af siden."
|
msgstr "Viser resultater på midten af siden."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Resultater på nye tabs"
|
msgstr "Resultater på nye tabs"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Åben resultat-link i en ny browser-tab"
|
msgstr "Åben resultat-link i en ny browser-tab"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Uendelig scrolling"
|
msgstr "Uendelig scrolling"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Indlæs automatisk næste side, når der scrolles til bunden af den "
|
"Indlæs automatisk næste side, når der scrolles til bunden af den "
|
||||||
"nuværende side"
|
"nuværende side"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privatliv"
|
msgstr "Privatliv"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP-metode"
|
msgstr "HTTP-metode"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -727,29 +727,29 @@ msgstr ""
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">Lær mere om anmodningsmetoder</a>"
|
" rel=\"external\">Lær mere om anmodningsmetoder</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Billede-proxy"
|
msgstr "Billede-proxy"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Slået til"
|
msgstr "Slået til"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Slået fra"
|
msgstr "Slået fra"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Bearbejder billedresulter gennem SearXNG"
|
msgstr "Bearbejder billedresulter gennem SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Søgning i sidens titel"
|
msgstr "Søgning i sidens titel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -757,15 +757,15 @@ msgstr ""
|
||||||
"Når denne er aktiveret, indeholder titlen på resultatsiden din søgning. "
|
"Når denne er aktiveret, indeholder titlen på resultatsiden din søgning. "
|
||||||
"Din browser kan registrere denne titel"
|
"Din browser kan registrere denne titel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Søgemaskiner"
|
msgstr "Søgemaskiner"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Pt. anvendte søgemaskiner"
|
msgstr "Pt. anvendte søgemaskiner"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -773,76 +773,76 @@ msgstr ""
|
||||||
"Denne fane vises ikke i søgeresultaterne, men du kan søge i de "
|
"Denne fane vises ikke i søgeresultaterne, men du kan søge i de "
|
||||||
"søgemaskiner, der er anført her, via bangs."
|
"søgemaskiner, der er anført her, via bangs."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Tillad"
|
msgstr "Tillad"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Søgemaskinenavn"
|
msgstr "Søgemaskinenavn"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Genvej"
|
msgstr "Genvej"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Undstøtter valgte sprog"
|
msgstr "Undstøtter valgte sprog"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Tidsinterval"
|
msgstr "Tidsinterval"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Svartid"
|
msgstr "Svartid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Maks-tid"
|
msgstr "Maks-tid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Driftsikkerhed"
|
msgstr "Driftsikkerhed"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Specielle Forespørgsler"
|
msgstr "Specielle Forespørgsler"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Nøgleord"
|
msgstr "Nøgleord"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Navn"
|
msgstr "Navn"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beskrivelse"
|
msgstr "Beskrivelse"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Eksempler"
|
msgstr "Eksempler"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Dette er en liste over SearXNG's hurtig-svar moduler."
|
msgstr "Dette er en liste over SearXNG's hurtig-svar moduler."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Dette er listen over plugins."
|
msgstr "Dette er listen over plugins."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Cookies"
|
msgstr "Cookies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -850,23 +850,23 @@ msgstr ""
|
||||||
"Dette er listen over de cookies og deres værdier, som SearXNG gemmer på "
|
"Dette er listen over de cookies og deres værdier, som SearXNG gemmer på "
|
||||||
"din computer."
|
"din computer."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Med denne liste kan du vurdere SearXNG's åbenhed."
|
msgstr "Med denne liste kan du vurdere SearXNG's åbenhed."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Cookie-navn"
|
msgstr "Cookie-navn"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Værdi"
|
msgstr "Værdi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Søge-URL for den nuværende gemte indstilling"
|
msgstr "Søge-URL for den nuværende gemte indstilling"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -875,11 +875,11 @@ msgstr ""
|
||||||
"af beskyttelse ved at lække data til de sider der klikkes på i "
|
"af beskyttelse ved at lække data til de sider der klikkes på i "
|
||||||
"resultatet."
|
"resultatet."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL til at restaurere dine præferencer i en anden browser"
|
msgstr "URL til at restaurere dine præferencer i en anden browser"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -887,7 +887,7 @@ msgstr ""
|
||||||
"Specificere brugertilpassede indstillinger i præference-URL'en kan bruges"
|
"Specificere brugertilpassede indstillinger i præference-URL'en kan bruges"
|
||||||
" til at synkronisere præference over flere enheder."
|
" til at synkronisere præference over flere enheder."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -895,7 +895,7 @@ msgstr ""
|
||||||
"Disse indstillnger gemmes cookies på din enhed. Dette gør, at vi ikke "
|
"Disse indstillnger gemmes cookies på din enhed. Dette gør, at vi ikke "
|
||||||
"behøver at gemme data om dig."
|
"behøver at gemme data om dig."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -903,15 +903,15 @@ msgstr ""
|
||||||
"Disse cookies er kun til dine data. Vi benytter ikke disse til at spore "
|
"Disse cookies er kun til dine data. Vi benytter ikke disse til at spore "
|
||||||
"dig."
|
"dig."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Gem"
|
msgstr "Gem"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Nustil til standard"
|
msgstr "Nustil til standard"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Tilbage"
|
msgstr "Tilbage"
|
||||||
|
|
||||||
|
|
@ -981,7 +981,7 @@ msgstr "søg"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:21
|
#: searx/templates/simple/stats.html:21
|
||||||
msgid "There is currently no data available. "
|
msgid "There is currently no data available. "
|
||||||
msgstr "Der er pt. ingen tilgængelige data"
|
msgstr "Der er pt. ingen tilgængelige data. "
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:26
|
#: searx/templates/simple/stats.html:26
|
||||||
msgid "Scores"
|
msgid "Scores"
|
||||||
|
|
@ -1077,7 +1077,7 @@ msgstr "Information!"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_cookies.html:4
|
#: searx/templates/simple/messages/no_cookies.html:4
|
||||||
msgid "currently, there are no cookies defined."
|
msgid "currently, there are no cookies defined."
|
||||||
msgstr "der er pt. ingen cookies defineret"
|
msgstr "der er pt. ingen cookies defineret."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:6
|
#: searx/templates/simple/messages/no_results.html:6
|
||||||
msgid "Engines cannot retrieve results."
|
msgid "Engines cannot retrieve results."
|
||||||
|
|
@ -1501,3 +1501,51 @@ msgstr "skjul video"
|
||||||
#~ " rel=\"external\">lær mere om request-"
|
#~ " rel=\"external\">lær mere om request-"
|
||||||
#~ "metoder</a>"
|
#~ "metoder</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Dette plugin tjekker, om adressen på "
|
||||||
|
#~ "anmodningen er en TOR-exit-node, "
|
||||||
|
#~ "og informerer brugeren, hvis den er, "
|
||||||
|
#~ "som check.torproject.org, men fra searxng "
|
||||||
|
#~ "i stedet."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "TOR exit node listen "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) er "
|
||||||
|
#~ "ikke tilgængelig."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Du bruger TOR. Din IP-adresse ser ud til at være: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Du bruger ikke TOR. Din IP-adresse ser ud til at være: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "Autodetekter søgesprog"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr "Registrer automatisk søgesproget og skift til det."
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -19,21 +19,22 @@
|
||||||
# Thomas Pointhuber, 2016-2017
|
# Thomas Pointhuber, 2016-2017
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
# Peter Martin <weblate@pe7er.com>, 2022.
|
# Peter Martin <weblate@pe7er.com>, 2022.
|
||||||
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-12-30 07:14+0000\n"
|
"PO-Revision-Date: 2023-02-24 07:07+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: German <https://weblate.bubu1.eu/projects/searxng/searxng/de/>"
|
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
|
||||||
"\n"
|
"searxng/de/>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.14.1\n"
|
"X-Generator: Weblate 4.15.2\n"
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -213,40 +214,40 @@ msgstr "Zugriff verweigert"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "Server-API-Fehler"
|
msgstr "Server-API-Fehler"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Keine Einträge gefunden"
|
msgstr "Keine Einträge gefunden"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Quelle"
|
msgstr "Quelle"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Fehler beim Laden der nächsten Seite"
|
msgstr "Fehler beim Laden der nächsten Seite"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Ungültige Einstellungen, bitte Einstellungen ändern"
|
msgstr "Ungültige Einstellungen, bitte Einstellungen ändern"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ungültige Einstellungen"
|
msgstr "Ungültige Einstellungen"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "Suchfehler"
|
msgstr "Suchfehler"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Ausgesetzt"
|
msgstr "Ausgesetzt"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "vor {minutes} Minute(n)"
|
msgstr "vor {minutes} Minute(n)"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "vor {hours} Stunde(n), {minutes} Minute(n)"
|
msgstr "vor {hours} Stunde(n), {minutes} Minute(n)"
|
||||||
|
|
||||||
|
|
@ -329,15 +330,6 @@ msgstr "Abends"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Nachts"
|
msgstr "Nachts"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr "Automatische Erkennung der Suchsprache"
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
"Automatische Erkennung der Suchsprache und Umschaltung auf diese Sprache."
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Konvertiert Zeichenketten in verschiedene Hashwerte."
|
msgstr "Konvertiert Zeichenketten in verschiedene Hashwerte."
|
||||||
|
|
@ -399,28 +391,34 @@ msgstr "Tor Prüf-Plugin"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dieses Plugin prüft, ob es sich bei der Adresse der Anfrage um einen TOR-"
|
"Dieses Plugin prüft, ob die Adresse der Anfrage ein Tor-Exit-Node ist, "
|
||||||
"Exit-Knoten handelt und informiert den Benutzer, wenn dies der Fall ist. "
|
"und informiert den Benutzer, wenn dies der Fall ist; wie "
|
||||||
"Vergleichbar mit check.torproject.org aber innerhalb von SearXNG."
|
"check.torproject.org, aber von SearXNG."
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Die Liste der TOR Exit-Nodes kann nicht geladen werden "
|
"Die Liste der Tor-Exit-Nodes konnte nicht heruntergeladen werden von: "
|
||||||
"(https://check.torproject.org/exit-addresses)."
|
"https://check.torproject.org/exit-addresses"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Sie verwenden TOR. Die IP Adresse ist: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
"Du benutzt Tor und es sieht so aus, als hättest du diese externe IP-"
|
||||||
|
"Adresse: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Sie verwenden kein TOR. Die IP Adresse ist: {ip_address}."
|
msgstr ""
|
||||||
|
"Du benutzt Tor und es sieht so aus, als hättest du diese externe IP-"
|
||||||
|
"Adresse: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -530,7 +528,7 @@ msgstr "Fehlerbericht auf GitHub erstellen"
|
||||||
|
|
||||||
#: searx/templates/simple/new_issue.html:66
|
#: searx/templates/simple/new_issue.html:66
|
||||||
msgid "Please check for existing bugs about this engine on GitHub"
|
msgid "Please check for existing bugs about this engine on GitHub"
|
||||||
msgstr "Zuvor überprüfe bitte bereits existierende Fehlereinträge auf GitHub"
|
msgstr "Überprüfe bitte auf bereits existierende Fehlereinträge auf GitHub"
|
||||||
|
|
||||||
#: searx/templates/simple/new_issue.html:69
|
#: searx/templates/simple/new_issue.html:69
|
||||||
msgid "I confirm there is no existing bug about the issue I encounter"
|
msgid "I confirm there is no existing bug about the issue I encounter"
|
||||||
|
|
@ -602,15 +600,26 @@ msgstr "Such-Sprache/-Region"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Standardsprache"
|
msgstr "Standardsprache"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr "Spracherkennung"
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Welche Sprache oder Region soll bei der Suche bevorzugt werden?"
|
msgstr "Welche Sprache oder Region soll bei der Suche bevorzugt werden?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
"Welche Sprache oder Region soll bei der Suche bevorzugt werden? Mit der "
|
||||||
|
"Spracherkennung wird die Sprache automatisch erkannt."
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Autovervollständigung"
|
msgstr "Autovervollständigung"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "zeige Vorschläge während der Eingabe an"
|
msgstr "zeige Vorschläge während der Eingabe an"
|
||||||
|
|
||||||
|
|
@ -618,35 +627,35 @@ msgstr "zeige Vorschläge während der Eingabe an"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Sichere Suche"
|
msgstr "Sichere Suche"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Streng"
|
msgstr "Streng"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Moderat"
|
msgstr "Moderat"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Keine"
|
msgstr "Keine"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Inhalte filtern"
|
msgstr "Inhalte filtern"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Open Access DOI resolver"
|
msgstr "Open Access DOI resolver"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -654,89 +663,89 @@ msgstr ""
|
||||||
"Weiterleitung zu frei zugänglichen Versionen von Veröffentlichungen, wenn"
|
"Weiterleitung zu frei zugänglichen Versionen von Veröffentlichungen, wenn"
|
||||||
" verfügbar (Plugin benötigt)"
|
" verfügbar (Plugin benötigt)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Maschinentoken"
|
msgstr "Maschinentoken"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Zugangstoken für private Suchmaschinen"
|
msgstr "Zugangstoken für private Suchmaschinen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Benutzeroberfläche"
|
msgstr "Benutzeroberfläche"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Oberflächensprache"
|
msgstr "Oberflächensprache"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "ändere die Sprache des Layouts"
|
msgstr "ändere die Sprache des Layouts"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Design"
|
msgstr "Design"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Ändere das Aussehen von SearXNG"
|
msgstr "Ändere das Aussehen von SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Designstil"
|
msgstr "Designstil"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Wähle auto um die Browsereinstellungen zu übernehmen"
|
msgstr "Wähle auto um die Browsereinstellungen zu übernehmen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Mittig"
|
msgstr "Mittig"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Ein"
|
msgstr "Ein"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Aus"
|
msgstr "Aus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Zeigt die Ergebnisse in der Mitte der Seite an."
|
msgstr "Zeigt die Ergebnisse in der Mitte der Seite an."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Ergebnisse in neuem Tab"
|
msgstr "Ergebnisse in neuem Tab"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Links in einem neuen Browser-Tab öffnen"
|
msgstr "Links in einem neuen Browser-Tab öffnen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Unendliches Scrollen"
|
msgstr "Unendliches Scrollen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Lädt automatisch die nächste Seite, wenn das Ende der aktuellen Seite "
|
"Lädt automatisch die nächste Seite, wenn das Ende der aktuellen Seite "
|
||||||
"erreicht wurde"
|
"erreicht wurde"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privatsphäre"
|
msgstr "Privatsphäre"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP Methode"
|
msgstr "HTTP Methode"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -746,29 +755,29 @@ msgstr ""
|
||||||
"href=\"https://de.wikipedia.org/wiki/Hypertext_Transfer_Protocol#HTTP-"
|
"href=\"https://de.wikipedia.org/wiki/Hypertext_Transfer_Protocol#HTTP-"
|
||||||
"Anfragemethoden\" rel=\"external\">lerne mehr über Anfragemethoden</a>"
|
"Anfragemethoden\" rel=\"external\">lerne mehr über Anfragemethoden</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Bilder-Proxy"
|
msgstr "Bilder-Proxy"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Aktiviert"
|
msgstr "Aktiviert"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Deaktiviert"
|
msgstr "Deaktiviert"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Bilder über den Proxy von SearXNG laden"
|
msgstr "Bilder über den Proxy von SearXNG laden"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Suchbegriff im Titel anzeigen"
|
msgstr "Suchbegriff im Titel anzeigen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -776,15 +785,15 @@ msgstr ""
|
||||||
"Bei Aktivierung wird der Suchbegriff im Titel und der Historie des "
|
"Bei Aktivierung wird der Suchbegriff im Titel und der Historie des "
|
||||||
"Browsers angezeigt"
|
"Browsers angezeigt"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Suchmaschinen"
|
msgstr "Suchmaschinen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Aktuell benutzte Suchmaschinen"
|
msgstr "Aktuell benutzte Suchmaschinen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -792,76 +801,76 @@ msgstr ""
|
||||||
"Auf dieser Registerkarte werden keine Suchergebnisse angezeigt, aber Sie "
|
"Auf dieser Registerkarte werden keine Suchergebnisse angezeigt, aber Sie "
|
||||||
"können die hier aufgelisteten Suchmaschinen über bangs durchsuchen."
|
"können die hier aufgelisteten Suchmaschinen über bangs durchsuchen."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Erlauben"
|
msgstr "Erlauben"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Suchmaschinenname"
|
msgstr "Suchmaschinenname"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Abkürzung"
|
msgstr "Abkürzung"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Unterstützt die ausgewählten Sprachen"
|
msgstr "Unterstützt die ausgewählten Sprachen"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Zeitbereich"
|
msgstr "Zeitbereich"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Antwortzeit"
|
msgstr "Antwortzeit"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "max. Zeit"
|
msgstr "max. Zeit"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Zuverlässigkeit"
|
msgstr "Zuverlässigkeit"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Besondere Abfragen"
|
msgstr "Besondere Abfragen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Schlüsselwörter"
|
msgstr "Schlüsselwörter"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Beschreibung"
|
msgstr "Beschreibung"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Beispiele"
|
msgstr "Beispiele"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Dies ist die Liste der in SearXNG verfügbaren Module für Sofortantworten."
|
msgstr "Dies ist die Liste der in SearXNG verfügbaren Module für Sofortantworten."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Dies ist die Liste der Plugins."
|
msgstr "Dies ist die Liste der Plugins."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Cookies"
|
msgstr "Cookies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -869,23 +878,23 @@ msgstr ""
|
||||||
"Die nachfolgende Liste zeigt alle Cookies, die SearXNG auf deinem "
|
"Die nachfolgende Liste zeigt alle Cookies, die SearXNG auf deinem "
|
||||||
"Computer speichert."
|
"Computer speichert."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Mit dieser Liste können Sie die Transparenz von SearXNG einschätzen."
|
msgstr "Mit dieser Liste können Sie die Transparenz von SearXNG einschätzen."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Cookie-Name"
|
msgstr "Cookie-Name"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Wert"
|
msgstr "Wert"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Such-URL für die aktuell gespeicherten Einstellungen"
|
msgstr "Such-URL für die aktuell gespeicherten Einstellungen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -894,11 +903,11 @@ msgstr ""
|
||||||
"Privatsphäre reduzieren, weil gegebenenfalls ungewollt Daten an die "
|
"Privatsphäre reduzieren, weil gegebenenfalls ungewollt Daten an die "
|
||||||
"ausgewählten Ergebnisseiten übermittelt werden."
|
"ausgewählten Ergebnisseiten übermittelt werden."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL zur Wiederherstellung der Einstellungen in einem anderen Browser"
|
msgstr "URL zur Wiederherstellung der Einstellungen in einem anderen Browser"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -906,7 +915,7 @@ msgstr ""
|
||||||
"Durch Aufrufen dieses Links in einem anderen Browser werden die aktuellen"
|
"Durch Aufrufen dieses Links in einem anderen Browser werden die aktuellen"
|
||||||
" Einstellungen in dem anderen Browser gespeichert (Cookie)."
|
" Einstellungen in dem anderen Browser gespeichert (Cookie)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -914,7 +923,7 @@ msgstr ""
|
||||||
"Diese Informationen werden in Cookies auf Ihrem Rechner gespeichert, "
|
"Diese Informationen werden in Cookies auf Ihrem Rechner gespeichert, "
|
||||||
"damit wir keine Ihrer persönlichen Daten speichern müssen."
|
"damit wir keine Ihrer persönlichen Daten speichern müssen."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -922,15 +931,15 @@ msgstr ""
|
||||||
"Diese Cookies dienen einzig Ihrem Komfort. Wir verwenden sie nicht, um "
|
"Diese Cookies dienen einzig Ihrem Komfort. Wir verwenden sie nicht, um "
|
||||||
"Sie zu überwachen."
|
"Sie zu überwachen."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Speichern"
|
msgstr "Speichern"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Zurücksetzen"
|
msgstr "Zurücksetzen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Zurück"
|
msgstr "Zurück"
|
||||||
|
|
||||||
|
|
@ -1530,3 +1539,56 @@ msgstr "Video verstecken"
|
||||||
#~ "href=\"https://de.wikipedia.org/wiki/Hypertext_Transfer_Protocol"
|
#~ "href=\"https://de.wikipedia.org/wiki/Hypertext_Transfer_Protocol"
|
||||||
#~ "#HTTP-Anfragemethoden\" rel=\"external\">lerne mehr "
|
#~ "#HTTP-Anfragemethoden\" rel=\"external\">lerne mehr "
|
||||||
#~ "über Anfragemethoden</a>"
|
#~ "über Anfragemethoden</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Dieses Plugin prüft, ob es sich "
|
||||||
|
#~ "bei der Adresse der Anfrage um "
|
||||||
|
#~ "einen TOR-Exit-Knoten handelt und "
|
||||||
|
#~ "informiert den Benutzer, wenn dies der"
|
||||||
|
#~ " Fall ist. Vergleichbar mit "
|
||||||
|
#~ "check.torproject.org aber innerhalb von "
|
||||||
|
#~ "SearXNG."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Die Liste der TOR Exit-Nodes kann"
|
||||||
|
#~ " nicht geladen werden "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses)."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Sie verwenden TOR. Die IP Adresse ist: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Sie verwenden kein TOR. Die IP Adresse ist: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "Automatische Erkennung der Suchsprache"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Automatische Erkennung der Suchsprache und "
|
||||||
|
#~ "Umschaltung auf diese Sprache."
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
|
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
|
||||||
"Last-Translator: Landhoo School Students "
|
"Last-Translator: Landhoo School Students "
|
||||||
"<landhooschoolstudents@gmail.com>\n"
|
"<landhooschoolstudents@gmail.com>\n"
|
||||||
|
|
@ -196,40 +196,40 @@ msgstr ""
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -304,14 +304,6 @@ msgstr ""
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -364,22 +356,24 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
|
|
@ -553,15 +547,24 @@ msgstr ""
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -569,297 +572,297 @@ msgstr ""
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1178,3 +1181,44 @@ msgstr ""
|
||||||
msgid "hide video"
|
msgid "hide video"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -8,21 +8,22 @@
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022, 2023.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022, 2023.
|
||||||
# Constantine Giannopoulos <K.Giannopoulos@acg.edu>, 2022.
|
# Constantine Giannopoulos <K.Giannopoulos@acg.edu>, 2022.
|
||||||
# Alexandre Flament <alex@al-f.net>, 2022.
|
# Alexandre Flament <alex@al-f.net>, 2022.
|
||||||
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2023-01-06 07:14+0000\n"
|
"PO-Revision-Date: 2023-03-24 07:07+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Greek <https://weblate.bubu1.eu/projects/searxng/searxng/el/>"
|
"Language-Team: Greek <https://translate.codeberg.org/projects/searxng/"
|
||||||
"\n"
|
"searxng/el/>\n"
|
||||||
"Language: el_GR\n"
|
"Language: el_GR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.14.1\n"
|
"X-Generator: Weblate 4.16.4\n"
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -202,40 +203,40 @@ msgstr "Άρνηση πρόσβασης"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "Σφάλμα API διακομιστή"
|
msgstr "Σφάλμα API διακομιστή"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Δεν βρέθηκαν αντικείμενα"
|
msgstr "Δεν βρέθηκαν αντικείμενα"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Πηγή"
|
msgstr "Πηγή"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
|
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
|
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Μη έγκυρες ρυθμίσεις"
|
msgstr "Μη έγκυρες ρυθμίσεις"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "σφάλμα αναζήτησης"
|
msgstr "σφάλμα αναζήτησης"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Σε αναστολή"
|
msgstr "Σε αναστολή"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "{minutes} λεπτά πριν"
|
msgstr "{minutes} λεπτά πριν"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
|
msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
|
||||||
|
|
||||||
|
|
@ -318,14 +319,6 @@ msgstr "Βράδι"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Βράδι"
|
msgstr "Βράδι"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Μετατρέπει κείμενο σε διαφορετικές συναρτήσεις κατατεμαχισμού."
|
msgstr "Μετατρέπει κείμενο σε διαφορετικές συναρτήσεις κατατεμαχισμού."
|
||||||
|
|
@ -386,28 +379,34 @@ msgstr "Πρόσθετο ελέγχου Tor"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Αυτό το πρόσθετο ελέγχει αν η διεύθυνση της αίτησης είναι ένας κόμβος "
|
"Αυτό το πρόσθετο ελέγχει εάν η διεύθυνση του χρήστη είναι διεύθυνση εξόδου "
|
||||||
"εξόδου TOR και ενημερώνει τον χρήστη αν είναι, όπως το "
|
"του δικτύου Tor και ενημερώνει τον χρήστη εάν είναι έτσι. Όπως στο "
|
||||||
"check.torproject.org αλλά από το searxng."
|
"check.torproject.org, αλλά από το SearXNG."
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Η λίστα κόμβων εξόδου TOR (https://check.torproject.org/exit-addresses) "
|
"Δεν ήταν δυνατή η λήψη της λίστας διευθύνσεων εξόδου του δικτύου Tor από το: "
|
||||||
"δεν είναι διαθέσιμη."
|
"https://check.torproject.org/exit-addresses"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
"Χρησιμοποιείτε το δίκτυο Tor και φαίνεται πως η εξωτερική σας διεύθυνση "
|
||||||
|
"είναι η: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Δεν χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}."
|
msgstr ""
|
||||||
|
"Δεν χρησιμοποιείτε το δίκτυο Tor. Η εξωτερική σας διεύθυνση είναι: "
|
||||||
|
"{ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -589,15 +588,26 @@ msgstr "Γλώσσα αναζήτησης"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Προεπιλεγμένη γλώσσα"
|
msgstr "Προεπιλεγμένη γλώσσα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr "Αυτόματη αναγνώριση της γλώσσας"
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Τι γλώσσα προτιμάτε για αναζήτηση;"
|
msgstr "Τι γλώσσα προτιμάτε για αναζήτηση;"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
"Επιλέξτε αυτόματη αναγνώριση για να αφήσετε το SearXNG να αναγνωρίσει την "
|
||||||
|
"γλώσσα του ερωτήματος σας αυτόματα."
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Αυτόματη συμπλήρωση"
|
msgstr "Αυτόματη συμπλήρωση"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Εύρεση όρων κατά την πληκτρολόγηση"
|
msgstr "Εύρεση όρων κατά την πληκτρολόγηση"
|
||||||
|
|
||||||
|
|
@ -605,35 +615,35 @@ msgstr "Εύρεση όρων κατά την πληκτρολόγηση"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Ασφαλής Αναζήτηση"
|
msgstr "Ασφαλής Αναζήτηση"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Αυστηρό"
|
msgstr "Αυστηρό"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Μέτριο"
|
msgstr "Μέτριο"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Κανένα"
|
msgstr "Κανένα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Φιλτράρισμα περιεχομένου"
|
msgstr "Φιλτράρισμα περιεχομένου"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Επιλυτής DOI ανοικτής πρόσβασης"
|
msgstr "Επιλυτής DOI ανοικτής πρόσβασης"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -641,91 +651,91 @@ msgstr ""
|
||||||
"Ανακατεύθυνση σε εκδόσεις ανοικτής πρόσβασης των δημοσιεύσεων όταν είναι "
|
"Ανακατεύθυνση σε εκδόσεις ανοικτής πρόσβασης των δημοσιεύσεων όταν είναι "
|
||||||
"διαθέσιμες (απαιτείται πρόσθετο)"
|
"διαθέσιμες (απαιτείται πρόσθετο)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Tokens μηχανών αναζήτησης"
|
msgstr "Tokens μηχανών αναζήτησης"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Tokens πρόσβασης για ιδιωτικές μηχανές"
|
msgstr "Tokens πρόσβασης για ιδιωτικές μηχανές"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Διεπαφή χρήστη"
|
msgstr "Διεπαφή χρήστη"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Γλώσσα διεπαφής"
|
msgstr "Γλώσσα διεπαφής"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Αλλαγή γλώσσας της διάταξης"
|
msgstr "Αλλαγή γλώσσας της διάταξης"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Θέμα"
|
msgstr "Θέμα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Τροποποίηση διάταξης του SearXNG"
|
msgstr "Τροποποίηση διάταξης του SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Στυλ θέματος"
|
msgstr "Στυλ θέματος"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Επιλέξτε αυτόματο για να τηρήσετε τις ρυθμίσεις του προγράμματος "
|
"Επιλέξτε αυτόματο για να τηρήσετε τις ρυθμίσεις του προγράμματος "
|
||||||
"περιήγησης"
|
"περιήγησης"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Κεντρική ευθυγράμμιση"
|
msgstr "Κεντρική ευθυγράμμιση"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Ενεργό"
|
msgstr "Ενεργό"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Ανενεργό"
|
msgstr "Ανενεργό"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Εμφάνιση αποτελεσμάτων στο κέντρο της σελίδας (διάταξη Oscar)."
|
msgstr "Εμφάνιση αποτελεσμάτων στο κέντρο της σελίδας (διάταξη Oscar)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Αποτελέσματα σε νέες καρτέλες"
|
msgstr "Αποτελέσματα σε νέες καρτέλες"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Άνοιξε τους συνδέσμους των αποτελεσμάτων σε νέα καρτέλα περιηγητή"
|
msgstr "Άνοιξε τους συνδέσμους των αποτελεσμάτων σε νέα καρτέλα περιηγητή"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Άπειρη κύλιση"
|
msgstr "Άπειρη κύλιση"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Αυτόματη φόρτωση της επόμενης σελίδας κατά την κύλιση στο κάτω μέρος της "
|
"Αυτόματη φόρτωση της επόμενης σελίδας κατά την κύλιση στο κάτω μέρος της "
|
||||||
"τρέχουσας σελίδας"
|
"τρέχουσας σελίδας"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Ιδιωτικότητα"
|
msgstr "Ιδιωτικότητα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "Μέθοδος HTTP"
|
msgstr "Μέθοδος HTTP"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -735,29 +745,29 @@ msgstr ""
|
||||||
"href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\""
|
"href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\""
|
||||||
" rel=\"external\">μάθετε περισσότερα για τις μεθόδους αίτησης</a>"
|
" rel=\"external\">μάθετε περισσότερα για τις μεθόδους αίτησης</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Διακομιστής μεσολάβησης εικόνων"
|
msgstr "Διακομιστής μεσολάβησης εικόνων"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Ενεργοποιημένο"
|
msgstr "Ενεργοποιημένο"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Απενεργοποιημένο"
|
msgstr "Απενεργοποιημένο"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Διαμεσολάβιση φόρτωσης αποτελεσμάτων εικόνων μέσω του SearXNG"
|
msgstr "Διαμεσολάβιση φόρτωσης αποτελεσμάτων εικόνων μέσω του SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Ερώτημα στον τίτλο της σελίδας"
|
msgstr "Ερώτημα στον τίτλο της σελίδας"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -765,15 +775,15 @@ msgstr ""
|
||||||
"Όταν ενεργό, ο τίτλος της σελίδας αποτελεσμάτων περιέχει το ερώτημά σας. "
|
"Όταν ενεργό, ο τίτλος της σελίδας αποτελεσμάτων περιέχει το ερώτημά σας. "
|
||||||
"Το πρόγραμμα περιήγησής σας μπορεί να καταγράψει αυτόν τον τίτλο"
|
"Το πρόγραμμα περιήγησής σας μπορεί να καταγράψει αυτόν τον τίτλο"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Μηχανές"
|
msgstr "Μηχανές"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Μηχανές αναζήτησης που χρησιμοποιούνται"
|
msgstr "Μηχανές αναζήτησης που χρησιμοποιούνται"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -781,76 +791,76 @@ msgstr ""
|
||||||
"Αυτή η καρτέλα δεν εμφανίζεται για τα αποτελέσματα αναζήτησης, αλλά "
|
"Αυτή η καρτέλα δεν εμφανίζεται για τα αποτελέσματα αναζήτησης, αλλά "
|
||||||
"μπορείτε να αναζητήσετε τις μηχανές που παρατίθενται εδώ μέσω bangs."
|
"μπορείτε να αναζητήσετε τις μηχανές που παρατίθενται εδώ μέσω bangs."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Επέτρεψε"
|
msgstr "Επέτρεψε"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Όνομα μηχανής"
|
msgstr "Όνομα μηχανής"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Συντόμευση"
|
msgstr "Συντόμευση"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Υποστηρίζει την επιλεγμένη γλώσσα"
|
msgstr "Υποστηρίζει την επιλεγμένη γλώσσα"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Εύρος χρόνου"
|
msgstr "Εύρος χρόνου"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Χρόνος απόκρισης"
|
msgstr "Χρόνος απόκρισης"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Μέγιστος χρόνος"
|
msgstr "Μέγιστος χρόνος"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Αξιοπιστία"
|
msgstr "Αξιοπιστία"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Ειδικά Ερωτήματα"
|
msgstr "Ειδικά Ερωτήματα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Λέξεις κλειδιά"
|
msgstr "Λέξεις κλειδιά"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Όνομα"
|
msgstr "Όνομα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Περιγραφή"
|
msgstr "Περιγραφή"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Παραδείγματα"
|
msgstr "Παραδείγματα"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Αυτός είναι ο κατάλογος των ενοτήτων άμεσης απάντησης του SearXNG."
|
msgstr "Αυτός είναι ο κατάλογος των ενοτήτων άμεσης απάντησης του SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Αυτός είναι ο κατάλογος των πρόσθετων."
|
msgstr "Αυτός είναι ο κατάλογος των πρόσθετων."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Cookies"
|
msgstr "Cookies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -858,23 +868,23 @@ msgstr ""
|
||||||
"Αυτός είναι ο κατάλογος των cookies και των τιμών τους που αποθηκεύει η "
|
"Αυτός είναι ο κατάλογος των cookies και των τιμών τους που αποθηκεύει η "
|
||||||
"SearXNG στον υπολογιστή σας."
|
"SearXNG στον υπολογιστή σας."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Με αυτόν τον κατάλογο, μπορείτε να αξιολογήσετε τη διαφάνεια του SearXNG."
|
msgstr "Με αυτόν τον κατάλογο, μπορείτε να αξιολογήσετε τη διαφάνεια του SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Όνομα cookie"
|
msgstr "Όνομα cookie"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Τιμή"
|
msgstr "Τιμή"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Σύνδεσμος αναζήτησης των αποθηκευμένων προτιμήσεων"
|
msgstr "Σύνδεσμος αναζήτησης των αποθηκευμένων προτιμήσεων"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -883,11 +893,11 @@ msgstr ""
|
||||||
"αναζήτησης μπορεί να μειώσει την ιδιωτικότητα διαρρέοντας δεδομένα στους "
|
"αναζήτησης μπορεί να μειώσει την ιδιωτικότητα διαρρέοντας δεδομένα στους "
|
||||||
"ιστότοπους των αποτελεσμάτων που εσείς κάνετε κλίκ."
|
"ιστότοπους των αποτελεσμάτων που εσείς κάνετε κλίκ."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "Σύνδεσμος για επαναφορά προτιμήσεων σε διαφορετικό περιηγητή"
|
msgstr "Σύνδεσμος για επαναφορά προτιμήσεων σε διαφορετικό περιηγητή"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -896,7 +906,7 @@ msgstr ""
|
||||||
" χρησιμοποιηθεί για το συγχρονισμό των προτιμήσεων σας σε όλες τις "
|
" χρησιμοποιηθεί για το συγχρονισμό των προτιμήσεων σας σε όλες τις "
|
||||||
"συσκευές."
|
"συσκευές."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -904,7 +914,7 @@ msgstr ""
|
||||||
"Αυτές οι ρυθμίσεις αποθηκεύονται στα cookies σας, με αυτόν τον τρόπο δεν "
|
"Αυτές οι ρυθμίσεις αποθηκεύονται στα cookies σας, με αυτόν τον τρόπο δεν "
|
||||||
"χρειάζεται να αποθηκέυονται στους δικούς μας διακομιστές."
|
"χρειάζεται να αποθηκέυονται στους δικούς μας διακομιστές."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -912,15 +922,15 @@ msgstr ""
|
||||||
"Αυτά τα cookies υπάρχουν αποκλειστικά για την εξυπηρέτησή σας, δεν τα "
|
"Αυτά τα cookies υπάρχουν αποκλειστικά για την εξυπηρέτησή σας, δεν τα "
|
||||||
"χρησιμοποιούμε για να σας παρακολουθούμε."
|
"χρησιμοποιούμε για να σας παρακολουθούμε."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Αποθήκευση"
|
msgstr "Αποθήκευση"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Επαναφορά προεπιλογών"
|
msgstr "Επαναφορά προεπιλογών"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Πίσω"
|
msgstr "Πίσω"
|
||||||
|
|
||||||
|
|
@ -990,7 +1000,7 @@ msgstr "αναζήτηση"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:21
|
#: searx/templates/simple/stats.html:21
|
||||||
msgid "There is currently no data available. "
|
msgid "There is currently no data available. "
|
||||||
msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα."
|
msgstr "Δεν υπάρχουν διαθέσιμα δεδομένα. "
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:26
|
#: searx/templates/simple/stats.html:26
|
||||||
msgid "Scores"
|
msgid "Scores"
|
||||||
|
|
@ -1153,7 +1163,7 @@ msgstr "Ημερομηνία δημοσίευσης"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:9
|
#: searx/templates/simple/result_templates/paper.html:9
|
||||||
msgid "Journal"
|
msgid "Journal"
|
||||||
msgstr ""
|
msgstr "Περιοδικό"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:22
|
#: searx/templates/simple/result_templates/paper.html:22
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
|
|
@ -1173,23 +1183,23 @@ msgstr "Σημάνσεις"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:26
|
#: searx/templates/simple/result_templates/paper.html:26
|
||||||
msgid "DOI"
|
msgid "DOI"
|
||||||
msgstr ""
|
msgstr "DOI"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:27
|
#: searx/templates/simple/result_templates/paper.html:27
|
||||||
msgid "ISSN"
|
msgid "ISSN"
|
||||||
msgstr ""
|
msgstr "ISSN"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:28
|
#: searx/templates/simple/result_templates/paper.html:28
|
||||||
msgid "ISBN"
|
msgid "ISBN"
|
||||||
msgstr ""
|
msgstr "ISBN"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:33
|
#: searx/templates/simple/result_templates/paper.html:33
|
||||||
msgid "PDF"
|
msgid "PDF"
|
||||||
msgstr ""
|
msgstr "PDF"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:34
|
#: searx/templates/simple/result_templates/paper.html:34
|
||||||
msgid "HTML"
|
msgid "HTML"
|
||||||
msgstr ""
|
msgstr "HTML"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/torrent.html:6
|
#: searx/templates/simple/result_templates/torrent.html:6
|
||||||
msgid "magnet link"
|
msgid "magnet link"
|
||||||
|
|
@ -1505,3 +1515,52 @@ msgstr "απόκρυψη βίντεο"
|
||||||
#~ "href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\""
|
#~ "href=\"https://el.wikipedia.org/wiki/%CE%A0%CF%81%CF%89%CF%84%CF%8C%CE%BA%CE%BF%CE%BB%CE%BB%CE%BF_%CE%9C%CE%B5%CF%84%CE%B1%CF%86%CE%BF%CF%81%CE%AC%CF%82_%CE%A5%CF%80%CE%B5%CF%81%CE%BA%CE%B5%CE%B9%CE%BC%CE%AD%CE%BD%CE%BF%CF%85#%CE%9C%CE%AD%CE%B8%CE%BF%CE%B4%CE%BF%CE%B9_%CE%B1%CE%AF%CF%84%CE%B7%CF%83%CE%B7%CF%82_%CF%84%CE%BF%CF%85_HTTP\""
|
||||||
#~ " rel=\"external\">μάθετε περισσότερα για τις "
|
#~ " rel=\"external\">μάθετε περισσότερα για τις "
|
||||||
#~ "μεθόδους αίτησης</a>"
|
#~ "μεθόδους αίτησης</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Αυτό το πρόσθετο ελέγχει αν η "
|
||||||
|
#~ "διεύθυνση της αίτησης είναι ένας κόμβος"
|
||||||
|
#~ " εξόδου TOR και ενημερώνει τον χρήστη"
|
||||||
|
#~ " αν είναι, όπως το check.torproject.org "
|
||||||
|
#~ "αλλά από το searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Η λίστα κόμβων εξόδου TOR "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) δεν "
|
||||||
|
#~ "είναι διαθέσιμη."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Δεν χρησιμοποιείτε το TOR. Η διεύθυνση IP σας είναι: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
|
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: en\n"
|
"Language: en\n"
|
||||||
|
|
@ -195,40 +195,40 @@ msgstr ""
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -303,14 +303,6 @@ msgstr ""
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -363,22 +355,24 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
|
|
@ -552,15 +546,24 @@ msgstr ""
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -568,297 +571,297 @@ msgstr ""
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1445,3 +1448,44 @@ msgstr ""
|
||||||
#~ "methods</a>"
|
#~ "methods</a>"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -13,7 +13,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-11-30 15:33+0000\n"
|
"PO-Revision-Date: 2022-11-30 15:33+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
||||||
"Language: eo\n"
|
"Language: eo\n"
|
||||||
|
|
@ -202,40 +202,40 @@ msgstr "aliro rifuzita"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "servilo-API-eraro"
|
msgstr "servilo-API-eraro"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nenio trovita"
|
msgstr "Nenio trovita"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fonto"
|
msgstr "Fonto"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Eraro dum la ŝerĝado de la sekvan paĝon"
|
msgstr "Eraro dum la ŝerĝado de la sekvan paĝon"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Nevalidaj agordoj, bonvolu redakti viajn agordojn"
|
msgstr "Nevalidaj agordoj, bonvolu redakti viajn agordojn"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Nevalidaj agordoj"
|
msgstr "Nevalidaj agordoj"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "serĉa eraro"
|
msgstr "serĉa eraro"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Suspendigita"
|
msgstr "Suspendigita"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "antaŭ {minutes} minuto(j)"
|
msgstr "antaŭ {minutes} minuto(j)"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
|
msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
|
||||||
|
|
||||||
|
|
@ -317,14 +317,6 @@ msgstr "Vespero"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Nokto"
|
msgstr "Nokto"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Konvertas ĉenojn al malsamaj hash-digestoj."
|
msgstr "Konvertas ĉenojn al malsamaj hash-digestoj."
|
||||||
|
|
@ -385,23 +377,25 @@ msgstr "Tor-kontrolo kromprogramo"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Vi uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Vi ne uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -576,15 +570,24 @@ msgstr "Serĉolingvo"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Defaŭlta lingvo"
|
msgstr "Defaŭlta lingvo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Kiun lingvon vi pli ŝatas por serĉi?"
|
msgstr "Kiun lingvon vi pli ŝatas por serĉi?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Aŭtomate kompletigi"
|
msgstr "Aŭtomate kompletigi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Trovi aferojn dum tajpado"
|
msgstr "Trovi aferojn dum tajpado"
|
||||||
|
|
||||||
|
|
@ -592,261 +595,261 @@ msgstr "Trovi aferojn dum tajpado"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "SekuraSerĉo"
|
msgstr "SekuraSerĉo"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Strikta"
|
msgstr "Strikta"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Modera"
|
msgstr "Modera"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Neniu"
|
msgstr "Neniu"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filtri enhavon"
|
msgstr "Filtri enhavon"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Malfermalira COI-solvilo"
|
msgstr "Malfermalira COI-solvilo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
msgstr "Direkti al malfermaliraj versioj de eldonaĵoj, se eblas (aldonaĵo necesas)"
|
msgstr "Direkti al malfermaliraj versioj de eldonaĵoj, se eblas (aldonaĵo necesas)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Motoraj ĵetonoj"
|
msgstr "Motoraj ĵetonoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Alirĵetonoj por privataj motoroj"
|
msgstr "Alirĵetonoj por privataj motoroj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Fasado"
|
msgstr "Fasado"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Fasada lingvo"
|
msgstr "Fasada lingvo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Ŝanĝi lingvon de la fasono"
|
msgstr "Ŝanĝi lingvon de la fasono"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Etoso"
|
msgstr "Etoso"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Ŝanĝu SearXNG-aranĝon"
|
msgstr "Ŝanĝu SearXNG-aranĝon"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Ŝaltita"
|
msgstr "Ŝaltita"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Malŝaltita"
|
msgstr "Malŝaltita"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Rezultoj en novaj langetoj"
|
msgstr "Rezultoj en novaj langetoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Malfermi rezultligilojn en novaj retumilaj langetoj"
|
msgstr "Malfermi rezultligilojn en novaj retumilaj langetoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Senfina rulumado"
|
msgstr "Senfina rulumado"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr "Aŭtomate ŝarĝi sekvan paĝon rulumante al la subo de la nuna paĝo"
|
msgstr "Aŭtomate ŝarĝi sekvan paĝon rulumante al la subo de la nuna paĝo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privateco"
|
msgstr "Privateco"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP-Metodo"
|
msgstr "HTTP-Metodo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Prokurila servilo por bildoj"
|
msgstr "Prokurila servilo por bildoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Ŝaltita"
|
msgstr "Ŝaltita"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Malŝaltita"
|
msgstr "Malŝaltita"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Motoroj"
|
msgstr "Motoroj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Aktuale uzataj serĉiloj"
|
msgstr "Aktuale uzataj serĉiloj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Permesi"
|
msgstr "Permesi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Nomo de la motoro"
|
msgstr "Nomo de la motoro"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Fulmoklavo"
|
msgstr "Fulmoklavo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Subtenas elektitan lingvon"
|
msgstr "Subtenas elektitan lingvon"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Tempa intervalo"
|
msgstr "Tempa intervalo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Maksimuma tempo"
|
msgstr "Maksimuma tempo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Specialaj Demandoj"
|
msgstr "Specialaj Demandoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Ŝlosilvortoj"
|
msgstr "Ŝlosilvortoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nomo"
|
msgstr "Nomo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Priskribo"
|
msgstr "Priskribo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Ekzemploj"
|
msgstr "Ekzemploj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Kuketoj"
|
msgstr "Kuketoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Nomo de kuketo"
|
msgstr "Nomo de kuketo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valoro"
|
msgstr "Valoro"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Serĉo-URL kun aktuale konservitaj agordoj"
|
msgstr "Serĉo-URL kun aktuale konservitaj agordoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -854,17 +857,17 @@ msgstr ""
|
||||||
"Rimarko: Precizigo de propraj agordoj en la serĉo-URL povas malaltigi "
|
"Rimarko: Precizigo de propraj agordoj en la serĉo-URL povas malaltigi "
|
||||||
"privatecon per nevola diskonigo de la datumoj al alklikantaj retejoj."
|
"privatecon per nevola diskonigo de la datumoj al alklikantaj retejoj."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -872,21 +875,21 @@ msgstr ""
|
||||||
"Tiuj ĉi agordoj estas konservitaj en viaj kuketoj, kio ebligas al ni ne "
|
"Tiuj ĉi agordoj estas konservitaj en viaj kuketoj, kio ebligas al ni ne "
|
||||||
"konservi tiujn datumojn pri vi en nia servilo."
|
"konservi tiujn datumojn pri vi en nia servilo."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
msgstr "Tiuj kuketoj estas nur por via plaĉo, ni ne uzas ilin por spuri vin."
|
msgstr "Tiuj kuketoj estas nur por via plaĉo, ni ne uzas ilin por spuri vin."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Konservi"
|
msgstr "Konservi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Reagordi al defaŭlto"
|
msgstr "Reagordi al defaŭlto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1477,3 +1480,44 @@ msgstr "kaŝi videojn"
|
||||||
#~ " rel=\"external\">sciu pli pri peto-"
|
#~ " rel=\"external\">sciu pli pri peto-"
|
||||||
#~ "metodoj</a>"
|
#~ "metodoj</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Vi uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Vi ne uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -23,21 +23,23 @@
|
||||||
# KEINOS <github@keinos.com>, 2022.
|
# KEINOS <github@keinos.com>, 2022.
|
||||||
# Peter Martin <weblate@pe7er.com>, 2022.
|
# Peter Martin <weblate@pe7er.com>, 2022.
|
||||||
# zDylant <dylantfcs@gmail.com>, 2022.
|
# zDylant <dylantfcs@gmail.com>, 2022.
|
||||||
|
# mester <oscarodriguez56@gmail.com>, 2023.
|
||||||
|
# gallegonovato <fran-carro@hotmail.es>, 2023.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-12-23 07:14+0000\n"
|
"PO-Revision-Date: 2023-02-28 22:04+0000\n"
|
||||||
"Last-Translator: zDylant <dylantfcs@gmail.com>\n"
|
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||||
"Language-Team: Spanish <https://weblate.bubu1.eu/projects/searxng/searxng/es/"
|
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
||||||
">\n"
|
"searxng/es/>\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.14.1\n"
|
"X-Generator: Weblate 4.15.2\n"
|
||||||
"Generated-By: Babel 2.11.0\n"
|
"Generated-By: Babel 2.11.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
#. CONSTANT_NAMES['DEFAULT_GROUP_NAME']
|
||||||
|
|
@ -217,40 +219,40 @@ msgstr "acceso denegado"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "error en la API del servidor"
|
msgstr "error en la API del servidor"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Ningún artículo encontrado"
|
msgstr "Ningún artículo encontrado"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fuente"
|
msgstr "Fuente"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Error al cargar la siguiente página"
|
msgstr "Error al cargar la siguiente página"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Parámetros incorrectos, por favor, cambia tus preferencias"
|
msgstr "Parámetros incorrectos, por favor, cambia tus preferencias"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ajustes no válidos"
|
msgstr "Ajustes no válidos"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "error en la búsqueda"
|
msgstr "error en la búsqueda"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Suspendido"
|
msgstr "Suspendido"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "hace {minutes} minuto(s)"
|
msgstr "hace {minutes} minuto(s)"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
|
msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
|
||||||
|
|
||||||
|
|
@ -333,14 +335,6 @@ msgstr "Tarde"
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr "Noche"
|
msgstr "Noche"
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr "Detectar el lenguaje de búsqueda automáticamente"
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr "Detectar el lenguaje de búsqueda automáticamente y usarlo."
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -403,28 +397,30 @@ msgstr "Plugin de comprobación de Tor"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Este plugin verifica si la dirección de la solicitud es un nodo de salida"
|
"Este plug-in comprueba si la dirección de las solicitudes son nodo de salida "
|
||||||
" TOR e informa al usuario si lo es, como check.torproject.org pero desde "
|
"de Tor, como chec.torproject.org, pero desde SearXNG."
|
||||||
"searxng."
|
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Imposible de acceder a la lista de nodos de salida de TOR "
|
"No pudimos descargar la lista de nodos de salida de tor desde: https://check."
|
||||||
"(https://check.torproject.org/exit-addresses)."
|
"torproject.org/exit-addresses"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Estás usando TOR. Tu dirección IP parece ser: {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
"Estás usando Tor y parece que tienes esta dirección IP externa: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "No estás usando TOR. Tu dirección IP parece ser: {ip_address}."
|
msgstr "No estás usando Tor y tienes esta dirección IP externa: {ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -602,15 +598,26 @@ msgstr "Idioma de búsqueda"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Idioma por defecto"
|
msgstr "Idioma por defecto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr "Detección automática"
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "¿Qué idioma prefieres para la búsqueda?"
|
msgstr "¿Qué idioma prefieres para la búsqueda?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
"Seleccione Detección automática para que SearXNG detecte el idioma de su "
|
||||||
|
"consulta."
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Autocompletar"
|
msgstr "Autocompletar"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Buscar mientras escribes"
|
msgstr "Buscar mientras escribes"
|
||||||
|
|
||||||
|
|
@ -618,35 +625,35 @@ msgstr "Buscar mientras escribes"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Búsqueda segura"
|
msgstr "Búsqueda segura"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Estricto"
|
msgstr "Estricto"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Moderado"
|
msgstr "Moderado"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Ninguno"
|
msgstr "Ninguno"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filtro de contenido"
|
msgstr "Filtro de contenido"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Resolutor de DOI de acceso abierto"
|
msgstr "Resolutor de DOI de acceso abierto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -654,89 +661,89 @@ msgstr ""
|
||||||
"Redireccionar a versiones de acceso abierto de las publicaciones cuando "
|
"Redireccionar a versiones de acceso abierto de las publicaciones cuando "
|
||||||
"estén disponibles (se requiere plugin)"
|
"estén disponibles (se requiere plugin)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Llaves de motores"
|
msgstr "Llaves de motores"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Llaves de acceso para motores privados"
|
msgstr "Llaves de acceso para motores privados"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Interfaz de usuario"
|
msgstr "Interfaz de usuario"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Idioma de la interfaz"
|
msgstr "Idioma de la interfaz"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Cambiar idioma de la interfaz"
|
msgstr "Cambiar idioma de la interfaz"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Tema"
|
msgstr "Tema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "Cambiar la interfaz de SearXNG"
|
msgstr "Cambiar la interfaz de SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Estilo del tema"
|
msgstr "Estilo del tema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Escoge automático para seguir la configuración de tu navegador"
|
msgstr "Escoge automático para seguir la configuración de tu navegador"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Alineación central"
|
msgstr "Alineación central"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Activado"
|
msgstr "Activado"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Desactivado"
|
msgstr "Desactivado"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr "Muestra los resultados en el centro de la página (diseño Oscar)."
|
msgstr "Muestra los resultados en el centro de la página (diseño Oscar)."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Resultados en nuevas pestañas"
|
msgstr "Resultados en nuevas pestañas"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Abrir los resultados en nuevas pestañas del navegador"
|
msgstr "Abrir los resultados en nuevas pestañas del navegador"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Deslizamiento infinito"
|
msgstr "Deslizamiento infinito"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cargar automáticamente la siguiente página al deslizarse hasta el final "
|
"Cargar automáticamente la siguiente página al deslizarse hasta el final "
|
||||||
"de la página actual"
|
"de la página actual"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privacidad"
|
msgstr "Privacidad"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "Método HTTP"
|
msgstr "Método HTTP"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
|
|
@ -746,29 +753,29 @@ msgstr ""
|
||||||
"href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\""
|
"href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\""
|
||||||
" rel=\"external\">más información sobre métodos de peticiones</a>"
|
" rel=\"external\">más información sobre métodos de peticiones</a>"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Proxy de imágenes"
|
msgstr "Proxy de imágenes"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Activado"
|
msgstr "Activado"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Desactivado"
|
msgstr "Desactivado"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Cargando los resultados de imágenes a través de SearXNG"
|
msgstr "Cargando los resultados de imágenes a través de SearXNG"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Petición en el titulo de la pagina"
|
msgstr "Petición en el titulo de la pagina"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -776,15 +783,15 @@ msgstr ""
|
||||||
"Cuando se activa, la página de resultados contendrá tu búsqueda. Tu "
|
"Cuando se activa, la página de resultados contendrá tu búsqueda. Tu "
|
||||||
"buscador puede guardar este título"
|
"buscador puede guardar este título"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Motores"
|
msgstr "Motores"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Motores de búsqueda actualmente en uso"
|
msgstr "Motores de búsqueda actualmente en uso"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -792,76 +799,76 @@ msgstr ""
|
||||||
"Esta pestaña no se muestra para los resultados de búsqueda, pero puedes "
|
"Esta pestaña no se muestra para los resultados de búsqueda, pero puedes "
|
||||||
"buscar con los motores aquí listado mediante bangs."
|
"buscar con los motores aquí listado mediante bangs."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Permitir"
|
msgstr "Permitir"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Nombre del motor de búsqueda"
|
msgstr "Nombre del motor de búsqueda"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Atajo"
|
msgstr "Atajo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Soporta el idioma seleccionado"
|
msgstr "Soporta el idioma seleccionado"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Rango de tiempo"
|
msgstr "Rango de tiempo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Tiempo de respuesta"
|
msgstr "Tiempo de respuesta"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Tiempo máximo"
|
msgstr "Tiempo máximo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Fiabilidad"
|
msgstr "Fiabilidad"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Consultas Especiales"
|
msgstr "Consultas Especiales"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Plabras clave"
|
msgstr "Plabras clave"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nombre"
|
msgstr "Nombre"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descripción"
|
msgstr "Descripción"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Ejemplos"
|
msgstr "Ejemplos"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "Esta es la lista de módulos de respuestas instantáneas de SearXNG."
|
msgstr "Esta es la lista de módulos de respuestas instantáneas de SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "Esta es la lista de plugins."
|
msgstr "Esta es la lista de plugins."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Cookies"
|
msgstr "Cookies"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -869,23 +876,23 @@ msgstr ""
|
||||||
"Esta es la lista de cookies y sus valores que SearXNG está almacenando en"
|
"Esta es la lista de cookies y sus valores que SearXNG está almacenando en"
|
||||||
" tu ordenador."
|
" tu ordenador."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Con esa lista, puedes comprobar la transparencia de SearXNG."
|
msgstr "Con esa lista, puedes comprobar la transparencia de SearXNG."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Nombre de la cookie"
|
msgstr "Nombre de la cookie"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Buscar URL de las preferencias guardadas actualmente"
|
msgstr "Buscar URL de las preferencias guardadas actualmente"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -894,11 +901,11 @@ msgstr ""
|
||||||
"puede reducir la privacidad por filtrar datos a los sitios de resultados "
|
"puede reducir la privacidad por filtrar datos a los sitios de resultados "
|
||||||
"en los que se ha hecho clic."
|
"en los que se ha hecho clic."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr "URL para restaurar sus preferencias en otro navegador"
|
msgstr "URL para restaurar sus preferencias en otro navegador"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
|
|
@ -906,7 +913,7 @@ msgstr ""
|
||||||
"Especificar ajustes personalizados en la URL de preferencias puede usarse"
|
"Especificar ajustes personalizados en la URL de preferencias puede usarse"
|
||||||
" para sincronizar las preferencias entre dispositivos."
|
" para sincronizar las preferencias entre dispositivos."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -914,7 +921,7 @@ msgstr ""
|
||||||
"Esta configuración se guarda en sus cookies, lo que nos permite no "
|
"Esta configuración se guarda en sus cookies, lo que nos permite no "
|
||||||
"almacenar dicha información sobre usted."
|
"almacenar dicha información sobre usted."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -922,15 +929,15 @@ msgstr ""
|
||||||
"Estas cookies son para su propia comodidad, no las utilizamos para "
|
"Estas cookies son para su propia comodidad, no las utilizamos para "
|
||||||
"rastrearte."
|
"rastrearte."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Guardar"
|
msgstr "Guardar"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Restablecer configuración por defecto"
|
msgstr "Restablecer configuración por defecto"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Atrás"
|
msgstr "Atrás"
|
||||||
|
|
||||||
|
|
@ -1527,3 +1534,52 @@ msgstr "ocultar video"
|
||||||
#~ "href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\""
|
#~ "href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\""
|
||||||
#~ " rel=\"external\">más información sobre métodos"
|
#~ " rel=\"external\">más información sobre métodos"
|
||||||
#~ " de peticiones</a>"
|
#~ " de peticiones</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Este plugin verifica si la dirección "
|
||||||
|
#~ "de la solicitud es un nodo de "
|
||||||
|
#~ "salida TOR e informa al usuario si"
|
||||||
|
#~ " lo es, como check.torproject.org pero "
|
||||||
|
#~ "desde searxng."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Imposible de acceder a la lista de"
|
||||||
|
#~ " nodos de salida de TOR "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses)."
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Estás usando TOR. Tu dirección IP parece ser: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "No estás usando TOR. Tu dirección IP parece ser: {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr "Detectar el lenguaje de búsqueda automáticamente"
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr "Detectar el lenguaje de búsqueda automáticamente y usarlo."
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -11,7 +11,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2022-12-12 07:18+0000\n"
|
"POT-Creation-Date: 2023-02-20 11:22+0000\n"
|
||||||
"PO-Revision-Date: 2022-10-28 07:18+0000\n"
|
"PO-Revision-Date: 2022-10-28 07:18+0000\n"
|
||||||
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
"Last-Translator: Markus Heiser <markus.heiser@darmarit.de>\n"
|
||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
|
|
@ -200,40 +200,40 @@ msgstr "ligipääs keelatud"
|
||||||
msgid "server API error"
|
msgid "server API error"
|
||||||
msgstr "serveri API viga"
|
msgstr "serveri API viga"
|
||||||
|
|
||||||
#: searx/webapp.py:366
|
#: searx/webapp.py:368
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Üksust ei leitud"
|
msgstr "Üksust ei leitud"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:217
|
#: searx/engines/qwant.py:217
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:368
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:370
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Allikas"
|
msgstr "Allikas"
|
||||||
|
|
||||||
#: searx/webapp.py:370
|
#: searx/webapp.py:372
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Viga järgmise lehekülje laadimisel"
|
msgstr "Viga järgmise lehekülje laadimisel"
|
||||||
|
|
||||||
#: searx/webapp.py:522 searx/webapp.py:954
|
#: searx/webapp.py:524 searx/webapp.py:964
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Sobimatud seaded, palun muuda oma eelistusi"
|
msgstr "Sobimatud seaded, palun muuda oma eelistusi"
|
||||||
|
|
||||||
#: searx/webapp.py:538
|
#: searx/webapp.py:540
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Sobimatud seaded"
|
msgstr "Sobimatud seaded"
|
||||||
|
|
||||||
#: searx/webapp.py:615 searx/webapp.py:691
|
#: searx/webapp.py:617 searx/webapp.py:693
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "otsingu viga"
|
msgstr "otsingu viga"
|
||||||
|
|
||||||
#: searx/webapp.py:853
|
#: searx/webapp.py:863
|
||||||
msgid "Suspended"
|
msgid "Suspended"
|
||||||
msgstr "Peatatud"
|
msgstr "Peatatud"
|
||||||
|
|
||||||
#: searx/webutils.py:161
|
#: searx/webutils.py:198
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "{minutes} minut(it) tagasi"
|
msgstr "{minutes} minut(it) tagasi"
|
||||||
|
|
||||||
#: searx/webutils.py:162
|
#: searx/webutils.py:199
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
|
msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
|
||||||
|
|
||||||
|
|
@ -311,14 +311,6 @@ msgstr ""
|
||||||
msgid "Night"
|
msgid "Night"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:79
|
|
||||||
msgid "Autodetect search language"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/autodetect_search_language.py:80
|
|
||||||
msgid "Automatically detect the query search language and switch to it."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:24
|
#: searx/plugins/hash_plugin.py:24
|
||||||
msgid "Converts strings to different hash digests."
|
msgid "Converts strings to different hash digests."
|
||||||
msgstr "Teisendab stringid erinevateks hash-digestideks."
|
msgstr "Teisendab stringid erinevateks hash-digestideks."
|
||||||
|
|
@ -379,23 +371,25 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:28
|
#: searx/plugins/tor_check.py:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"This plugin checks if the address of the request is a TOR exit node, and "
|
"This plugin checks if the address of the request is a Tor exit-node, and "
|
||||||
"informs the user if it is, like check.torproject.org but from searxng."
|
"informs the user if it is; like check.torproject.org, but from SearXNG."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:62
|
#: searx/plugins/tor_check.py:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"The TOR exit node list (https://check.torproject.org/exit-addresses) is "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"unreachable."
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:78
|
#: searx/plugins/tor_check.py:78
|
||||||
msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
msgid ""
|
||||||
msgstr "Te kasutate TORi. Teie IP aadress paistab olevat : {ip_address}."
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
|
"{ip_address}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:84
|
#: searx/plugins/tor_check.py:86
|
||||||
msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr "Te ei kasuta TORi. Teie IP aadress paistab olevat: {ip_adress}."
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:29
|
#: searx/plugins/tracker_url_remover.py:29
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
|
@ -571,15 +565,24 @@ msgstr "Otsingukeel"
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Vaikimisi keel"
|
msgstr "Vaikimisi keel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:124
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
|
#: searx/templates/simple/preferences.html:119
|
||||||
|
msgid "Auto-detect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:126
|
||||||
msgid "What language do you prefer for search?"
|
msgid "What language do you prefer for search?"
|
||||||
msgstr "Mis keelt sa otsinguks eelistad?"
|
msgstr "Mis keelt sa otsinguks eelistad?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:129
|
#: searx/templates/simple/preferences.html:126
|
||||||
|
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/preferences.html:132
|
||||||
msgid "Autocomplete"
|
msgid "Autocomplete"
|
||||||
msgstr "Automaattäide"
|
msgstr "Automaattäide"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:138
|
#: searx/templates/simple/preferences.html:141
|
||||||
msgid "Find stuff as you type"
|
msgid "Find stuff as you type"
|
||||||
msgstr "Otsi asju kirjutamise ajal"
|
msgstr "Otsi asju kirjutamise ajal"
|
||||||
|
|
||||||
|
|
@ -587,35 +590,35 @@ msgstr "Otsi asju kirjutamise ajal"
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:143
|
#: searx/templates/simple/preferences.html:146
|
||||||
#: searx/templates/simple/preferences.html:311
|
#: searx/templates/simple/preferences.html:314
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Ohutuotsing"
|
msgstr "Ohutuotsing"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences.html:146
|
#: searx/templates/simple/preferences.html:149
|
||||||
msgid "Strict"
|
msgid "Strict"
|
||||||
msgstr "Range"
|
msgstr "Range"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:3
|
#: searx/templates/simple/filters/safesearch.html:3
|
||||||
#: searx/templates/simple/preferences.html:147
|
#: searx/templates/simple/preferences.html:150
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
msgstr "Mõõdukas"
|
msgstr "Mõõdukas"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:4
|
#: searx/templates/simple/filters/safesearch.html:4
|
||||||
#: searx/templates/simple/preferences.html:148
|
#: searx/templates/simple/preferences.html:151
|
||||||
msgid "None"
|
msgid "None"
|
||||||
msgstr "Puudub"
|
msgstr "Puudub"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:151
|
#: searx/templates/simple/preferences.html:154
|
||||||
msgid "Filter content"
|
msgid "Filter content"
|
||||||
msgstr "Filtreeri sisu"
|
msgstr "Filtreeri sisu"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:157
|
#: searx/templates/simple/preferences.html:160
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
msgstr "Open Access DOI resolver"
|
msgstr "Open Access DOI resolver"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:167
|
#: searx/templates/simple/preferences.html:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Redirect to open-access versions of publications when available (plugin "
|
"Redirect to open-access versions of publications when available (plugin "
|
||||||
"required)"
|
"required)"
|
||||||
|
|
@ -623,116 +626,116 @@ msgstr ""
|
||||||
"Suuna võimalusel väljaannete avatud ligipääsuga versioonidele (nõuab "
|
"Suuna võimalusel väljaannete avatud ligipääsuga versioonidele (nõuab "
|
||||||
"pluginat)"
|
"pluginat)"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:171
|
#: searx/templates/simple/preferences.html:174
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Mootori tokenid"
|
msgstr "Mootori tokenid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:175
|
#: searx/templates/simple/preferences.html:178
|
||||||
msgid "Access tokens for private engines"
|
msgid "Access tokens for private engines"
|
||||||
msgstr "Ligipääsutokenid privaatsetele mootoritele"
|
msgstr "Ligipääsutokenid privaatsetele mootoritele"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:179
|
#: searx/templates/simple/preferences.html:182
|
||||||
msgid "User interface"
|
msgid "User interface"
|
||||||
msgstr "Kasutajaliides"
|
msgstr "Kasutajaliides"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:182
|
#: searx/templates/simple/preferences.html:185
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Liidese keel"
|
msgstr "Liidese keel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:190
|
#: searx/templates/simple/preferences.html:193
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
msgstr "Muuda paigutuse keelt"
|
msgstr "Muuda paigutuse keelt"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:195
|
#: searx/templates/simple/preferences.html:198
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr "Teema"
|
msgstr "Teema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:203
|
#: searx/templates/simple/preferences.html:206
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "SearXNG paigutuse muutmine"
|
msgstr "SearXNG paigutuse muutmine"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:206
|
#: searx/templates/simple/preferences.html:209
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
msgstr "Teema stiil"
|
msgstr "Teema stiil"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:214
|
#: searx/templates/simple/preferences.html:217
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Valige automaatne, et järgida oma brauseri seadeid"
|
msgstr "Valige automaatne, et järgida oma brauseri seadeid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:217
|
#: searx/templates/simple/preferences.html:220
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:220
|
#: searx/templates/simple/preferences.html:223
|
||||||
#: searx/templates/simple/preferences.html:232
|
#: searx/templates/simple/preferences.html:235
|
||||||
#: searx/templates/simple/preferences.html:244
|
#: searx/templates/simple/preferences.html:247
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Sees"
|
msgstr "Sees"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:224
|
||||||
#: searx/templates/simple/preferences.html:233
|
#: searx/templates/simple/preferences.html:236
|
||||||
#: searx/templates/simple/preferences.html:245
|
#: searx/templates/simple/preferences.html:248
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Väljas"
|
msgstr "Väljas"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:224
|
#: searx/templates/simple/preferences.html:227
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
msgid "Displays results in the center of the page (Oscar layout)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:229
|
#: searx/templates/simple/preferences.html:232
|
||||||
msgid "Results on new tabs"
|
msgid "Results on new tabs"
|
||||||
msgstr "Tulemused uutel kaartidel"
|
msgstr "Tulemused uutel kaartidel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:236
|
#: searx/templates/simple/preferences.html:239
|
||||||
msgid "Open result links on new browser tabs"
|
msgid "Open result links on new browser tabs"
|
||||||
msgstr "Ava tulemuste lingid uutel brauserikaartidel"
|
msgstr "Ava tulemuste lingid uutel brauserikaartidel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:241
|
#: searx/templates/simple/preferences.html:244
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
msgstr "Lõpmatu kerimine"
|
msgstr "Lõpmatu kerimine"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:248
|
#: searx/templates/simple/preferences.html:251
|
||||||
msgid "Automatically load next page when scrolling to bottom of current page"
|
msgid "Automatically load next page when scrolling to bottom of current page"
|
||||||
msgstr "Laadi lehe lõppu kerimisel järgmine leht automaatselt"
|
msgstr "Laadi lehe lõppu kerimisel järgmine leht automaatselt"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:254
|
#: searx/templates/simple/preferences.html:257
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
msgstr "Privaatsus"
|
msgstr "Privaatsus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:257
|
#: searx/templates/simple/preferences.html:260
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP meetod"
|
msgstr "HTTP meetod"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:264
|
#: searx/templates/simple/preferences.html:267
|
||||||
msgid ""
|
msgid ""
|
||||||
"Change how forms are submitted, <a "
|
"Change how forms are submitted, <a "
|
||||||
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
"href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
|
||||||
" rel=\"external\">learn more about request methods</a>"
|
" rel=\"external\">learn more about request methods</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:269
|
#: searx/templates/simple/preferences.html:272
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
msgstr "Pildiproksi"
|
msgstr "Pildiproksi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:272
|
#: searx/templates/simple/preferences.html:275
|
||||||
#: searx/templates/simple/preferences.html:284
|
#: searx/templates/simple/preferences.html:287
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Lubatud"
|
msgstr "Lubatud"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:273
|
#: searx/templates/simple/preferences.html:276
|
||||||
#: searx/templates/simple/preferences.html:285
|
#: searx/templates/simple/preferences.html:288
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Keelatud"
|
msgstr "Keelatud"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:276
|
#: searx/templates/simple/preferences.html:279
|
||||||
msgid "Proxying image results through SearXNG"
|
msgid "Proxying image results through SearXNG"
|
||||||
msgstr "Pildi tulemuste edastamine SearXNG kaudu"
|
msgstr "Pildi tulemuste edastamine SearXNG kaudu"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:281
|
#: searx/templates/simple/preferences.html:284
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
msgstr "Päring lehekülje pealkirjas"
|
msgstr "Päring lehekülje pealkirjas"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:288
|
#: searx/templates/simple/preferences.html:291
|
||||||
msgid ""
|
msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
|
|
@ -740,15 +743,15 @@ msgstr ""
|
||||||
"Kui see on lubatud, sisaldab tulemuslehe pealkiri teie päringut. Teie "
|
"Kui see on lubatud, sisaldab tulemuslehe pealkiri teie päringut. Teie "
|
||||||
"brauser võib selle pealkirja salvestada"
|
"brauser võib selle pealkirja salvestada"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:294
|
#: searx/templates/simple/preferences.html:297
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Mootorid"
|
msgstr "Mootorid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:295
|
#: searx/templates/simple/preferences.html:298
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
msgstr "Hetkel kasutatud otsingumootorid"
|
msgstr "Hetkel kasutatud otsingumootorid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:302
|
#: searx/templates/simple/preferences.html:305
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not show up for search results, but you can search the "
|
"This tab does not show up for search results, but you can search the "
|
||||||
"engines listed here via bangs."
|
"engines listed here via bangs."
|
||||||
|
|
@ -756,76 +759,76 @@ msgstr ""
|
||||||
"See vahekaart ei näita otsingutulemusi, kuid siin loetletud mootoreid "
|
"See vahekaart ei näita otsingutulemusi, kuid siin loetletud mootoreid "
|
||||||
"saab otsida \"bang\" kaudu."
|
"saab otsida \"bang\" kaudu."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:307
|
#: searx/templates/simple/preferences.html:310
|
||||||
#: searx/templates/simple/preferences.html:358
|
#: searx/templates/simple/preferences.html:361
|
||||||
msgid "Allow"
|
msgid "Allow"
|
||||||
msgstr "Luba"
|
msgstr "Luba"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:308
|
#: searx/templates/simple/preferences.html:311
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Mootori nimi"
|
msgstr "Mootori nimi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:309
|
#: searx/templates/simple/preferences.html:312
|
||||||
msgid "Shortcut"
|
msgid "Shortcut"
|
||||||
msgstr "Otsetee"
|
msgstr "Otsetee"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:310
|
#: searx/templates/simple/preferences.html:313
|
||||||
msgid "Supports selected language"
|
msgid "Supports selected language"
|
||||||
msgstr "Toetab valitud keelt"
|
msgstr "Toetab valitud keelt"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/time_range.html:1
|
#: searx/templates/simple/filters/time_range.html:1
|
||||||
#: searx/templates/simple/preferences.html:312
|
#: searx/templates/simple/preferences.html:315
|
||||||
msgid "Time range"
|
msgid "Time range"
|
||||||
msgstr "Ajavahemik"
|
msgstr "Ajavahemik"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:313
|
#: searx/templates/simple/preferences.html:316
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Reageerimisaeg"
|
msgstr "Reageerimisaeg"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:314
|
#: searx/templates/simple/preferences.html:317
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr "Maksimaalne aeg"
|
msgstr "Maksimaalne aeg"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:315
|
#: searx/templates/simple/preferences.html:318
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
msgid "Reliability"
|
msgid "Reliability"
|
||||||
msgstr "Usaldusväärsus"
|
msgstr "Usaldusväärsus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:353
|
#: searx/templates/simple/preferences.html:356
|
||||||
msgid "Special Queries"
|
msgid "Special Queries"
|
||||||
msgstr "Spetsiaalsed päringud"
|
msgstr "Spetsiaalsed päringud"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:359
|
#: searx/templates/simple/preferences.html:362
|
||||||
msgid "Keywords"
|
msgid "Keywords"
|
||||||
msgstr "Märksõnad"
|
msgstr "Märksõnad"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:360
|
#: searx/templates/simple/preferences.html:363
|
||||||
msgid "Name"
|
msgid "Name"
|
||||||
msgstr "Nimi"
|
msgstr "Nimi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:361
|
#: searx/templates/simple/preferences.html:364
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Kirjeldus"
|
msgstr "Kirjeldus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:362
|
#: searx/templates/simple/preferences.html:365
|
||||||
msgid "Examples"
|
msgid "Examples"
|
||||||
msgstr "Näited"
|
msgstr "Näited"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:365
|
#: searx/templates/simple/preferences.html:368
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "See on SearXNGi kohese vastamise moodulite nimekiri."
|
msgstr "See on SearXNGi kohese vastamise moodulite nimekiri."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:376
|
#: searx/templates/simple/preferences.html:379
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
msgstr "See on pluginate nimekiri."
|
msgstr "See on pluginate nimekiri."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:393
|
#: searx/templates/simple/preferences.html:396
|
||||||
msgid "Cookies"
|
msgid "Cookies"
|
||||||
msgstr "Küpsised"
|
msgstr "Küpsised"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:395
|
#: searx/templates/simple/preferences.html:398
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
|
|
@ -833,23 +836,23 @@ msgstr ""
|
||||||
"See on nimekiri küpsistest ja nende väärtustest, mida SearXNG teie "
|
"See on nimekiri küpsistest ja nende väärtustest, mida SearXNG teie "
|
||||||
"arvutisse salvestab."
|
"arvutisse salvestab."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:396
|
#: searx/templates/simple/preferences.html:399
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Selle loetelu abil saate hinnata SearXNG läbipaistvust."
|
msgstr "Selle loetelu abil saate hinnata SearXNG läbipaistvust."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:401
|
#: searx/templates/simple/preferences.html:404
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
msgstr "Küpsise nimi"
|
msgstr "Küpsise nimi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:402
|
#: searx/templates/simple/preferences.html:405
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Väärtus"
|
msgstr "Väärtus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:414
|
#: searx/templates/simple/preferences.html:417
|
||||||
msgid "Search URL of the currently saved preferences"
|
msgid "Search URL of the currently saved preferences"
|
||||||
msgstr "Otsingu URL hetkel salvestatud eelistuste kohta"
|
msgstr "Otsingu URL hetkel salvestatud eelistuste kohta"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:418
|
#: searx/templates/simple/preferences.html:421
|
||||||
msgid ""
|
msgid ""
|
||||||
"Note: specifying custom settings in the search URL can reduce privacy by "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
|
|
@ -857,17 +860,17 @@ msgstr ""
|
||||||
"Märkus: täpsemate seadete määramine otsingu URLis võib vähendada "
|
"Märkus: täpsemate seadete määramine otsingu URLis võib vähendada "
|
||||||
"privaatsust, lekitades andmed klõpsatud tulemuste saitidele."
|
"privaatsust, lekitades andmed klõpsatud tulemuste saitidele."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:419
|
#: searx/templates/simple/preferences.html:422
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:423
|
#: searx/templates/simple/preferences.html:426
|
||||||
msgid ""
|
msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:428
|
#: searx/templates/simple/preferences.html:431
|
||||||
msgid ""
|
msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
|
|
@ -875,7 +878,7 @@ msgstr ""
|
||||||
"Need seaded salvestatakse sinu küpsistes, see lubab meil sinu kohta "
|
"Need seaded salvestatakse sinu küpsistes, see lubab meil sinu kohta "
|
||||||
"andmeid mitte salvestada."
|
"andmeid mitte salvestada."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:430
|
#: searx/templates/simple/preferences.html:433
|
||||||
msgid ""
|
msgid ""
|
||||||
"These cookies serve your sole convenience, we don't use these cookies to "
|
"These cookies serve your sole convenience, we don't use these cookies to "
|
||||||
"track you."
|
"track you."
|
||||||
|
|
@ -883,15 +886,15 @@ msgstr ""
|
||||||
"Need küpsised on vaid mugavuse tarbeks, me ei kasuta neid sinu "
|
"Need küpsised on vaid mugavuse tarbeks, me ei kasuta neid sinu "
|
||||||
"jälitamiseks."
|
"jälitamiseks."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:433
|
#: searx/templates/simple/preferences.html:436
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Salvesta"
|
msgstr "Salvesta"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:434
|
#: searx/templates/simple/preferences.html:437
|
||||||
msgid "Reset defaults"
|
msgid "Reset defaults"
|
||||||
msgstr "Lähtesta vaikeseaded"
|
msgstr "Lähtesta vaikeseaded"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:435
|
#: searx/templates/simple/preferences.html:438
|
||||||
msgid "Back"
|
msgid "Back"
|
||||||
msgstr "Tagasi"
|
msgstr "Tagasi"
|
||||||
|
|
||||||
|
|
@ -1481,3 +1484,44 @@ msgstr "peida video"
|
||||||
#~ " rel=\"external\">loe taotlusmeetodite kohta "
|
#~ " rel=\"external\">loe taotlusmeetodite kohta "
|
||||||
#~ "lisaks</a>"
|
#~ "lisaks</a>"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "This plugin checks if the address "
|
||||||
|
#~ "of the request is a TOR exit "
|
||||||
|
#~ "node, and informs the user if it"
|
||||||
|
#~ " is, like check.torproject.org but from "
|
||||||
|
#~ "searxng."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The TOR exit node list "
|
||||||
|
#~ "(https://check.torproject.org/exit-addresses) is "
|
||||||
|
#~ "unreachable."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Te kasutate TORi. Teie IP aadress paistab olevat : {ip_address}."
|
||||||
|
|
||||||
|
#~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
|
||||||
|
#~ msgstr "Te ei kasuta TORi. Teie IP aadress paistab olevat: {ip_adress}."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The could not download the list of"
|
||||||
|
#~ " Tor exit-nodes from "
|
||||||
|
#~ "https://check.torproject.org/exit-addresses."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You are using Tor. It looks like"
|
||||||
|
#~ " you have this external IP address:"
|
||||||
|
#~ " {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Autodetect search language"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Automatically detect the query search language and switch to it."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue