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
faf96ccd78
136 changed files with 1344 additions and 721 deletions
2
.tool-versions
Normal file
2
.tool-versions
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
python 3.12.0
|
||||||
|
shellcheck 0.9.0
|
|
@ -15,7 +15,9 @@ ENV INSTANCE_NAME=searxng \
|
||||||
MORTY_KEY= \
|
MORTY_KEY= \
|
||||||
MORTY_URL= \
|
MORTY_URL= \
|
||||||
SEARXNG_SETTINGS_PATH=/etc/searxng/settings.yml \
|
SEARXNG_SETTINGS_PATH=/etc/searxng/settings.yml \
|
||||||
UWSGI_SETTINGS_PATH=/etc/searxng/uwsgi.ini
|
UWSGI_SETTINGS_PATH=/etc/searxng/uwsgi.ini \
|
||||||
|
UWSGI_WORKERS=%k \
|
||||||
|
UWSGI_THREADS=4
|
||||||
|
|
||||||
WORKDIR /usr/local/searxng
|
WORKDIR /usr/local/searxng
|
||||||
|
|
||||||
|
|
|
@ -4,8 +4,12 @@ uid = searxng
|
||||||
gid = searxng
|
gid = searxng
|
||||||
|
|
||||||
# Number of workers (usually CPU count)
|
# Number of workers (usually CPU count)
|
||||||
workers = %k
|
# default value: %k (= number of CPU core, see Dockerfile)
|
||||||
threads = 4
|
workers = $(UWSGI_WORKERS)
|
||||||
|
|
||||||
|
# Number of threads per worker
|
||||||
|
# default value: 4 (see Dockerfile)
|
||||||
|
threads = $(UWSGI_THREADS)
|
||||||
|
|
||||||
# The right granted on the created socket
|
# The right granted on the created socket
|
||||||
chmod-socket = 666
|
chmod-socket = 666
|
||||||
|
|
|
@ -92,6 +92,9 @@ instance using `docker run <https://docs.docker.com/engine/reference/run/>`_:
|
||||||
searxng/searxng
|
searxng/searxng
|
||||||
2f998.... # container's ID
|
2f998.... # container's ID
|
||||||
|
|
||||||
|
The environment variables UWSGI_WORKERS and UWSGI_THREADS overwrite the default
|
||||||
|
number of UWSGI processes and UWSGI threads specified in `/etc/searxng/uwsgi.ini`.
|
||||||
|
|
||||||
Open your WEB browser and visit the URL:
|
Open your WEB browser and visit the URL:
|
||||||
|
|
||||||
.. code:: sh
|
.. code:: sh
|
||||||
|
|
|
@ -6,6 +6,7 @@ Developer documentation
|
||||||
:maxdepth: 2
|
:maxdepth: 2
|
||||||
|
|
||||||
quickstart
|
quickstart
|
||||||
|
rtm_asdf
|
||||||
contribution_guide
|
contribution_guide
|
||||||
engines/index
|
engines/index
|
||||||
search_api
|
search_api
|
||||||
|
|
121
docs/dev/rtm_asdf.rst
Normal file
121
docs/dev/rtm_asdf.rst
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
==================
|
||||||
|
Runtime Management
|
||||||
|
==================
|
||||||
|
|
||||||
|
The runtimes are managed with asdf and are activated in this project via the
|
||||||
|
`.tool-versions <.tool-versions>`_. If you have not yet installed asdf_, then
|
||||||
|
chapter :ref:`introduce asdf` may be of help to you.
|
||||||
|
|
||||||
|
.. contents::
|
||||||
|
:depth: 2
|
||||||
|
:local:
|
||||||
|
:backlinks: entry
|
||||||
|
|
||||||
|
|
||||||
|
Get started
|
||||||
|
===========
|
||||||
|
|
||||||
|
If you have asdf installed you can install the runtimes of this project by:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ cd /path/to/searxng
|
||||||
|
$ asdf install # will install runtimes listed in .tool-versions
|
||||||
|
...
|
||||||
|
|
||||||
|
Manage Versions
|
||||||
|
===============
|
||||||
|
|
||||||
|
If you want to perform a ``test`` with special runtime versions of nodejs,
|
||||||
|
python or shellcheck, you can patch the ``.tool-versions``:
|
||||||
|
|
||||||
|
.. code:: diff
|
||||||
|
|
||||||
|
--- a/.tool-versions
|
||||||
|
+++ b/.tool-versions
|
||||||
|
@@ -1,2 +1,2 @@
|
||||||
|
-python 3.12.0
|
||||||
|
-shellcheck 0.9.0
|
||||||
|
+python 3.11.6
|
||||||
|
+shellcheck 0.8.0
|
||||||
|
|
||||||
|
To install use ``asdf install`` again. If the runtime tools have changed, any
|
||||||
|
existing (nodejs and python) environments should be cleaned up with a ``make
|
||||||
|
clean``.
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ asdf install
|
||||||
|
...
|
||||||
|
$ make clean test
|
||||||
|
|
||||||
|
|
||||||
|
.. _introduce asdf:
|
||||||
|
|
||||||
|
Introduce asdf
|
||||||
|
==============
|
||||||
|
|
||||||
|
To `download asdf`_ and `install asdf`_:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch <version>
|
||||||
|
$ echo '. "$HOME/.asdf/asdf.sh"' >> ~/.bashrc
|
||||||
|
$ echo '. "$HOME/.asdf/completions/asdf.bash"' >> ~/.bashrc
|
||||||
|
|
||||||
|
Start a new shell and try to `install plugins`_:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ asdf plugin-list-all | grep -E '(golang|python|nodejs|shellcheck).git'
|
||||||
|
golang https://github.com/asdf-community/asdf-golang.git
|
||||||
|
nodejs https://github.com/asdf-vm/asdf-nodejs.git
|
||||||
|
python https://github.com/danhper/asdf-python.git
|
||||||
|
shellcheck https://github.com/luizm/asdf-shellcheck.git
|
||||||
|
|
||||||
|
$ asdf plugin add golang https://github.com/asdf-community/asdf-golang.git
|
||||||
|
$ asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
|
||||||
|
$ asdf plugin add python https://github.com/danhper/asdf-python.git
|
||||||
|
$ asdf plugin add shellcheck https://github.com/luizm/asdf-shellcheck.git
|
||||||
|
|
||||||
|
Each plugin has dependencies, to compile runtimes visit the URLs from above and
|
||||||
|
look out for the dependencies you need to install on your OS, on Debian for the
|
||||||
|
runtimes listed above you will need:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ sudo apt update
|
||||||
|
$ sudo apt install \
|
||||||
|
dirmngr gpg curl gawk coreutils build-essential libssl-dev zlib1g-dev \
|
||||||
|
libbz2-dev libreadline-dev libsqlite3-dev \
|
||||||
|
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
|
||||||
|
|
||||||
|
With dependencies installed you can install/compile runtimes:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ asdf install golang latest
|
||||||
|
$ asdf install nodejs latest
|
||||||
|
$ asdf install python latest
|
||||||
|
$ asdf install shellcheck latest
|
||||||
|
|
||||||
|
Python will be compiled and will take a while.
|
||||||
|
|
||||||
|
In the repository the version is defined in `.tool-versions`_. Outside the
|
||||||
|
repository, its recommended that the runtime should use the versions of the OS
|
||||||
|
(`Fallback to System Version`_) / if not already done register the system
|
||||||
|
versions global:
|
||||||
|
|
||||||
|
.. code:: bash
|
||||||
|
|
||||||
|
$ cd /
|
||||||
|
$ asdf global golang system
|
||||||
|
$ asdf global nodejs system
|
||||||
|
$ asdf global python system
|
||||||
|
$ asdf global shellcheck system
|
||||||
|
|
||||||
|
.. _asdf: https://asdf-vm.com/
|
||||||
|
.. _download asdf: https://asdf-vm.com/guide/getting-started.html#_2-download-asdf
|
||||||
|
.. _install asdf: https://asdf-vm.com/guide/getting-started.html#_3-install-asdf
|
||||||
|
.. _install plugins: https://asdf-vm.com/guide/getting-started.html#install-the-plugin
|
||||||
|
.. _Fallback to System Version: https://asdf-vm.com/manage/versions.html#fallback-to-system-version
|
|
@ -4,7 +4,7 @@ cov-core==1.15.0
|
||||||
black==22.12.0
|
black==22.12.0
|
||||||
pylint==3.0.2
|
pylint==3.0.2
|
||||||
splinter==0.19.0
|
splinter==0.19.0
|
||||||
selenium==4.14.0
|
selenium==4.15.2
|
||||||
twine==4.0.2
|
twine==4.0.2
|
||||||
Pallets-Sphinx-Themes==2.1.1
|
Pallets-Sphinx-Themes==2.1.1
|
||||||
Sphinx<=7.1.2; python_version == '3.8'
|
Sphinx<=7.1.2; python_version == '3.8'
|
||||||
|
@ -16,8 +16,8 @@ sphinxcontrib-programoutput==0.17
|
||||||
sphinx-autobuild==2021.3.14
|
sphinx-autobuild==2021.3.14
|
||||||
sphinx-notfound-page==1.0.0
|
sphinx-notfound-page==1.0.0
|
||||||
myst-parser==2.0.0
|
myst-parser==2.0.0
|
||||||
linuxdoc==20230827
|
linuxdoc==20231020
|
||||||
aiounittest==1.4.2
|
aiounittest==1.4.2
|
||||||
yamllint==1.32.0
|
yamllint==1.33.0
|
||||||
wlc==1.13
|
wlc==1.13
|
||||||
coloredlogs==15.0.1
|
coloredlogs==15.0.1
|
||||||
|
|
|
@ -15,5 +15,5 @@ setproctitle==1.3.3
|
||||||
redis==4.6.0
|
redis==4.6.0
|
||||||
markdown-it-py==3.0.0
|
markdown-it-py==3.0.0
|
||||||
typing_extensions==4.8.0
|
typing_extensions==4.8.0
|
||||||
fasttext-predict==0.9.2.1
|
fasttext-predict==0.9.2.2
|
||||||
pytomlpp==1.0.13
|
pytomlpp==1.0.13
|
||||||
|
|
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
2
searx/static/themes/simple/js/searxng.min.js
vendored
2
searx/static/themes/simple/js/searxng.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -16,6 +16,10 @@
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
|
|
||||||
|
if (d.querySelector('#search_url button#copy_url')) {
|
||||||
|
d.querySelector('#search_url button#copy_url').style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
searxng.on('.btn-collapse', 'click', function () {
|
searxng.on('.btn-collapse', 'click', function () {
|
||||||
var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed');
|
var btnLabelCollapsed = this.getAttribute('data-btn-text-collapsed');
|
||||||
var btnLabelNotCollapsed = this.getAttribute('data-btn-text-not-collapsed');
|
var btnLabelNotCollapsed = this.getAttribute('data-btn-text-not-collapsed');
|
||||||
|
@ -41,6 +45,12 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
searxng.on('#copy_url', 'click', function () {
|
||||||
|
var target = this.parentElement.querySelector('pre');
|
||||||
|
navigator.clipboard.writeText(target.innerText);
|
||||||
|
this.innerText = this.dataset.copiedText;
|
||||||
|
});
|
||||||
|
|
||||||
searxng.selectImage = function (resultElement) {
|
searxng.selectImage = function (resultElement) {
|
||||||
/* eslint no-unused-vars: 0 */
|
/* eslint no-unused-vars: 0 */
|
||||||
if (resultElement) {
|
if (resultElement) {
|
||||||
|
|
|
@ -441,6 +441,7 @@ article[data-vim-selected].category-social {
|
||||||
|
|
||||||
& > a {
|
& > a {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
@ -729,9 +730,18 @@ summary.title {
|
||||||
#search_url {
|
#search_url {
|
||||||
div.selectable_url {
|
div.selectable_url {
|
||||||
pre {
|
pre {
|
||||||
|
float: left;
|
||||||
width: 200em;
|
width: 200em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button#copy_url {
|
||||||
|
float: right;
|
||||||
|
padding: 0.4rem;
|
||||||
|
margin-left: 0.5rem;
|
||||||
|
border-radius: 0.3rem;
|
||||||
|
display: none; // will be shown by JS.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#links_on_top {
|
#links_on_top {
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<div id="search_url" role="complementary" aria-labelledby="search_url-title">
|
<div id="search_url" role="complementary" aria-labelledby="search_url-title">
|
||||||
<details class="sidebar-collapsable">
|
<details class="sidebar-collapsable">
|
||||||
<summary class="title" id="search_url-title">{{ _('Search URL') }}</summary>
|
<summary class="title" id="search_url-title">{{ _('Search URL') }}</summary>
|
||||||
|
<button id="copy_url" type="submit" data-copied-text="{{ _('Copied') }}">{{ _('Copy') }}</button>
|
||||||
<div class="selectable_url">
|
<div class="selectable_url">
|
||||||
<pre>{{ url_for('search', _external=True) }}?q={{ q|urlencode }}&language={{ current_language }}&time_range={{ time_range }}&safesearch={{ safesearch }}
|
<pre>{{ url_for('search', _external=True) }}?q={{ q|urlencode }}&language={{ current_language }}&time_range={{ time_range }}&safesearch={{ safesearch }}
|
||||||
{%- if pageno > 1 -%}
|
{%- if pageno > 1 -%}
|
||||||
|
|
Binary file not shown.
|
@ -11,18 +11,17 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-19 14:53+0000\n"
|
"PO-Revision-Date: 2023-10-19 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Afrikaans <https://translate.codeberg.org/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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -149,28 +148,28 @@ msgstr "lig"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "donker"
|
msgstr "donker"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Geen item gevind"
|
msgstr "Geen item gevind"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Bron"
|
msgstr "Bron"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ongeldige opstellings"
|
msgstr "Ongeldige opstellings"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "soekfout"
|
msgstr "soekfout"
|
||||||
|
|
||||||
|
@ -757,6 +756,14 @@ msgstr ""
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1400,3 +1407,4 @@ msgstr ""
|
||||||
#~ "use another query or search in "
|
#~ "use another query or search in "
|
||||||
#~ "more categories."
|
#~ "more categories."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,20 +14,21 @@
|
||||||
# Cavemanly <k.adel.2m@protonmail.com>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-03 06:53+0000\n"
|
"PO-Revision-Date: 2023-11-17 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
|
"Language-Team: Arabic <https://translate.codeberg.org/projects/searxng/"
|
||||||
|
"searxng/ar/>\n"
|
||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"Language-Team: Arabic "
|
|
||||||
"<https://translate.codeberg.org/projects/searxng/searxng/ar/>\n"
|
|
||||||
"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"
|
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"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"
|
||||||
|
"X-Generator: Weblate 5.1\n"
|
||||||
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -154,28 +155,28 @@ msgstr "فاتح"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "مظلم"
|
msgstr "مظلم"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "تعذر العثور على عناصر"
|
msgstr "تعذر العثور على عناصر"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "المصدر"
|
msgstr "المصدر"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
|
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
|
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "إعدادات غير صالحة"
|
msgstr "إعدادات غير صالحة"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "خطأ في البحث"
|
msgstr "خطأ في البحث"
|
||||||
|
|
||||||
|
@ -277,19 +278,19 @@ msgstr "القناة"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:104
|
#: searx/engines/radio_browser.py:104
|
||||||
msgid "radio"
|
msgid "radio"
|
||||||
msgstr ""
|
msgstr "راديو"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:106
|
#: searx/engines/radio_browser.py:106
|
||||||
msgid "bitrate"
|
msgid "bitrate"
|
||||||
msgstr ""
|
msgstr "معدل البت"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:107
|
#: searx/engines/radio_browser.py:107
|
||||||
msgid "votes"
|
msgid "votes"
|
||||||
msgstr ""
|
msgstr "تصويتات"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:108
|
#: searx/engines/radio_browser.py:108
|
||||||
msgid "clicks"
|
msgid "clicks"
|
||||||
msgstr ""
|
msgstr "نقرات"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
|
@ -755,6 +756,14 @@ msgstr "لم تتمكن محركات البحث من العثور على أية
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "رابط البحث"
|
msgstr "رابط البحث"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "نسخ"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "نسخة"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "الإقتراحات"
|
msgstr "الإقتراحات"
|
||||||
|
@ -1006,17 +1015,19 @@ msgstr "الخلف"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||||
msgid "Hotkeys"
|
msgid "Hotkeys"
|
||||||
msgstr ""
|
msgstr "مفاتيح الاختصار"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||||
msgid "Vim-like"
|
msgid "Vim-like"
|
||||||
msgstr ""
|
msgstr "مشابه لبرنامج vim"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:18
|
#: searx/templates/simple/preferences/hotkeys.html:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||||
"key on main or result page to get help."
|
"key on main or result page to get help."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"تنقل في نتائج البحث باستخدام مفاتيح التشغيل السريع (يتطلب JavaScript). اضغط "
|
||||||
|
"على المفتاح \"h\" في الصفحة الرئيسية أو صفحة النتائج للحصول على المساعدة."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
|
@ -1083,6 +1094,7 @@ msgid ""
|
||||||
"Perform search immediately if a category selected. Disable to select "
|
"Perform search immediately if a category selected. Disable to select "
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"قم بإجراء البحث على الفور إذا تم تحديد فئة. قم بتعطيل لتحديد فئات متعددة"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
@ -1666,4 +1678,3 @@ msgstr "إخفاء الفيديو"
|
||||||
#~ "لم نتوصل إلى العثور على أية نتيجة."
|
#~ "لم نتوصل إلى العثور على أية نتيجة."
|
||||||
#~ " الرجاء إعادة صياغة طلب البحث أو "
|
#~ " الرجاء إعادة صياغة طلب البحث أو "
|
||||||
#~ "إبحث مع تحديد أكثر من فئة."
|
#~ "إبحث مع تحديد أكثر من فئة."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,7 +14,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-29 07:07+0000\n"
|
"PO-Revision-Date: 2023-09-29 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
|
@ -24,7 +24,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -151,28 +151,28 @@ msgstr "светъл"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "тъмен"
|
msgstr "тъмен"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Не е намерен артикул"
|
msgstr "Не е намерен артикул"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Източник"
|
msgstr "Източник"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Грешка при зареждането на следващата страница"
|
msgstr "Грешка при зареждането на следващата страница"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Неправилни настройки, моля проверете предпочитанията си"
|
msgstr "Неправилни настройки, моля проверете предпочитанията си"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "невалидни настройки"
|
msgstr "невалидни настройки"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "грешка при търсенето"
|
msgstr "грешка при търсенето"
|
||||||
|
|
||||||
|
@ -756,6 +756,14 @@ msgstr "Търсачките не можаха да намерят резулт
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Адрес на търсенето"
|
msgstr "Адрес на търсенето"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Предложения"
|
msgstr "Предложения"
|
||||||
|
|
Binary file not shown.
|
@ -13,7 +13,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-17 10:53+0000\n"
|
"PO-Revision-Date: 2023-09-17 10:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
|
@ -23,7 +23,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -150,28 +150,28 @@ msgstr "সাদা"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "কালো"
|
msgstr "কালো"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "কোন আইটেম পাওয়া যায়নি"
|
msgstr "কোন আইটেম পাওয়া যায়নি"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "উৎস"
|
msgstr "উৎস"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "পরবর্তী পৃষ্ঠাটি লোড করায় ত্রুটি দেখা যাচ্ছে"
|
msgstr "পরবর্তী পৃষ্ঠাটি লোড করায় ত্রুটি দেখা যাচ্ছে"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "অকেজো সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন"
|
msgstr "অকেজো সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "অকেজো সেটিংস"
|
msgstr "অকেজো সেটিংস"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "সার্চ ত্রুটি"
|
msgstr "সার্চ ত্রুটি"
|
||||||
|
|
||||||
|
@ -757,6 +757,14 @@ msgstr "ইঞ্জিন ফলাফল পুনরুদ্ধার কর
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "সার্চ ইউআরএল"
|
msgstr "সার্চ ইউআরএল"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "প্রস্তাবিত"
|
msgstr "প্রস্তাবিত"
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-06-02 07:07+0000\n"
|
"PO-Revision-Date: 2023-06-02 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: bo\n"
|
"Language: bo\n"
|
||||||
|
@ -20,7 +20,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -147,28 +147,28 @@ msgstr ""
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
|
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
|
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
|
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
|
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
|
||||||
|
|
||||||
|
@ -732,6 +732,14 @@ msgstr "འཚོལ་བཤེར་སྒུལ་བྱེད་ལ་ནོ
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "འཚོལ་བཤེར་དྲ་གནས།"
|
msgstr "འཚོལ་བཤེར་དྲ་གནས།"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "འོས་སྦྱོས།"
|
msgstr "འོས་སྦྱོས།"
|
||||||
|
|
Binary file not shown.
|
@ -16,20 +16,19 @@
|
||||||
# quenty_occitania <quentinantonin@free.fr>, 2023.
|
# quenty_occitania <quentinantonin@free.fr>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-26 15:37+0000\n"
|
"PO-Revision-Date: 2023-11-02 11:13+0000\n"
|
||||||
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
"Last-Translator: Ivan Gabaldon <admin@inetol.net>\n"
|
||||||
"Language-Team: Catalan <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/ca/>\n"
|
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
|
"Language-Team: Catalan "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/ca/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.1\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -109,7 +108,7 @@ msgstr "diccionaris"
|
||||||
#. CATEGORY_GROUPS['LYRICS']
|
#. CATEGORY_GROUPS['LYRICS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "lyrics"
|
msgid "lyrics"
|
||||||
msgstr "lletres"
|
msgstr "lletra"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['PACKAGES']
|
#. CATEGORY_GROUPS['PACKAGES']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -119,7 +118,7 @@ msgstr "paquets"
|
||||||
#. CATEGORY_GROUPS['Q_A']
|
#. CATEGORY_GROUPS['Q_A']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "q&a"
|
msgid "q&a"
|
||||||
msgstr "questions i respostes"
|
msgstr "preguntes i respostes"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['REPOS']
|
#. CATEGORY_GROUPS['REPOS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -156,28 +155,28 @@ msgstr "clar"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "fosc"
|
msgstr "fosc"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
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:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Origen"
|
msgstr "Origen"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "S'ha produït un error en carregar la següent pàgina"
|
msgstr "S'ha produït un error en carregar la següent pàgina"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "La configuració no és vàlida"
|
msgstr "La configuració no és vàlida"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "error de cerca"
|
msgstr "error de cerca"
|
||||||
|
|
||||||
|
@ -199,7 +198,7 @@ msgstr "error de xarxa"
|
||||||
|
|
||||||
#: searx/webutils.py:38
|
#: searx/webutils.py:38
|
||||||
msgid "SSL error: certificate validation has failed"
|
msgid "SSL error: certificate validation has failed"
|
||||||
msgstr "error SSL: la validació del certificat ha fallat"
|
msgstr "error de SSL: la validació del certificat ha fallat"
|
||||||
|
|
||||||
#: searx/webutils.py:40
|
#: searx/webutils.py:40
|
||||||
msgid "unexpected crash"
|
msgid "unexpected crash"
|
||||||
|
@ -207,7 +206,7 @@ msgstr "error inesperat"
|
||||||
|
|
||||||
#: searx/webutils.py:47
|
#: searx/webutils.py:47
|
||||||
msgid "HTTP error"
|
msgid "HTTP error"
|
||||||
msgstr "error HTTP"
|
msgstr "error de HTTP"
|
||||||
|
|
||||||
#: searx/webutils.py:48
|
#: searx/webutils.py:48
|
||||||
msgid "HTTP connection error"
|
msgid "HTTP connection error"
|
||||||
|
@ -223,7 +222,7 @@ msgstr "CAPTCHA"
|
||||||
|
|
||||||
#: searx/webutils.py:56
|
#: searx/webutils.py:56
|
||||||
msgid "too many requests"
|
msgid "too many requests"
|
||||||
msgstr "massa peticions"
|
msgstr "masses peticions"
|
||||||
|
|
||||||
#: searx/webutils.py:57
|
#: searx/webutils.py:57
|
||||||
msgid "access denied"
|
msgid "access denied"
|
||||||
|
@ -239,11 +238,11 @@ msgstr "Suspès"
|
||||||
|
|
||||||
#: searx/webutils.py:317
|
#: searx/webutils.py:317
|
||||||
msgid "{minutes} minute(s) ago"
|
msgid "{minutes} minute(s) ago"
|
||||||
msgstr "fa {minutes} minuts"
|
msgstr "fa {minutes} minut(s)"
|
||||||
|
|
||||||
#: searx/webutils.py:318
|
#: searx/webutils.py:318
|
||||||
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} minut(s)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:73
|
#: searx/answerers/random/answerer.py:73
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
|
@ -279,23 +278,23 @@ msgstr "Canal"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:104
|
#: searx/engines/radio_browser.py:104
|
||||||
msgid "radio"
|
msgid "radio"
|
||||||
msgstr ""
|
msgstr "radio"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:106
|
#: searx/engines/radio_browser.py:106
|
||||||
msgid "bitrate"
|
msgid "bitrate"
|
||||||
msgstr ""
|
msgstr "tasa de bits"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:107
|
#: searx/engines/radio_browser.py:107
|
||||||
msgid "votes"
|
msgid "votes"
|
||||||
msgstr ""
|
msgstr "vots"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:108
|
#: searx/engines/radio_browser.py:108
|
||||||
msgid "clicks"
|
msgid "clicks"
|
||||||
msgstr ""
|
msgstr "clics"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Llengua"
|
||||||
|
|
||||||
#: searx/engines/semantic_scholar.py:81
|
#: searx/engines/semantic_scholar.py:81
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -757,6 +756,14 @@ msgstr "Els motors no poden obtenir cap resultat"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL de cerca"
|
msgstr "URL de cerca"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suggeriments"
|
msgstr "Suggeriments"
|
||||||
|
@ -843,7 +850,7 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:6
|
#: searx/templates/simple/messages/no_results.html:6
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
msgstr ""
|
msgstr "Refresca la pestanya."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:7
|
#: searx/templates/simple/messages/no_results.html:7
|
||||||
msgid "Search for another query or select another category (above)."
|
msgid "Search for another query or select another category (above)."
|
||||||
|
@ -855,7 +862,7 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:9
|
#: searx/templates/simple/messages/no_results.html:9
|
||||||
msgid "Switch to another instance:"
|
msgid "Switch to another instance:"
|
||||||
msgstr ""
|
msgstr "Canvia a una altra instància:"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/answerers.html:4
|
#: searx/templates/simple/preferences/answerers.html:4
|
||||||
#: searx/templates/simple/preferences/engines.html:17
|
#: searx/templates/simple/preferences/engines.html:17
|
||||||
|
@ -1125,7 +1132,7 @@ msgstr "Canvia la llengua de la disposició"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/code.html:13
|
#: searx/templates/simple/result_templates/code.html:13
|
||||||
msgid "repo"
|
msgid "repo"
|
||||||
msgstr "repositoris"
|
msgstr "repositori"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/default.html:6
|
#: searx/templates/simple/result_templates/default.html:6
|
||||||
msgid "show media"
|
msgid "show media"
|
||||||
|
@ -1687,3 +1694,4 @@ msgstr "amaga el vídeo"
|
||||||
#~ "no hem trobat cap resultat. Feu "
|
#~ "no hem trobat cap resultat. Feu "
|
||||||
#~ "una consulta diferent o cerqueu en "
|
#~ "una consulta diferent o cerqueu en "
|
||||||
#~ "més categories."
|
#~ "més categories."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -17,8 +17,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||||
"Last-Translator: Fjuro <ifjuro@proton.me>\n"
|
"Last-Translator: Fjuro <ifjuro@proton.me>\n"
|
||||||
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/cs/>\n"
|
"searxng/cs/>\n"
|
||||||
|
@ -28,8 +28,8 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && 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"
|
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -156,28 +156,28 @@ msgstr "světlý"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "tmavý"
|
msgstr "tmavý"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nic nenalezeno"
|
msgstr "Nic nenalezeno"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "zdroj"
|
msgstr "zdroj"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Neplatné nastavení"
|
msgstr "Neplatné nastavení"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "chyba vyhledávání"
|
msgstr "chyba vyhledávání"
|
||||||
|
|
||||||
|
@ -759,6 +759,14 @@ msgstr "Vyhledávače nemohou získat výsledky"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL vyhledávání"
|
msgstr "URL vyhledávání"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Zkopírováno"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopírovat"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Návrhy"
|
msgstr "Návrhy"
|
||||||
|
|
Binary file not shown.
|
@ -10,21 +10,20 @@
|
||||||
# return42 <markus.heiser@darmarit.de>, 2023.
|
# 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Welsh <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/cy/>\n"
|
|
||||||
"Language: cy\n"
|
"Language: cy\n"
|
||||||
|
"Language-Team: Welsh "
|
||||||
|
"<https://translate.codeberg.org/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 != "
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"11) ? 2 : 3;\n"
|
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -151,28 +150,28 @@ msgstr "golau"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "tywyll"
|
msgstr "tywyll"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Ni chanfuwyd eitem"
|
msgstr "Ni chanfuwyd eitem"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Ffynhonnell"
|
msgstr "Ffynhonnell"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Gosodiadau annilys, golygu eich dewisiadau"
|
msgstr "Gosodiadau annilys, golygu eich dewisiadau"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Gosodiadau annilys"
|
msgstr "Gosodiadau annilys"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "gwall chwilio"
|
msgstr "gwall chwilio"
|
||||||
|
|
||||||
|
@ -743,6 +742,14 @@ msgstr "Ni all y peiriannau cael canlyniadau"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Awgrymiadau"
|
msgstr "Awgrymiadau"
|
||||||
|
@ -1613,3 +1620,4 @@ msgstr "cuddio fideo"
|
||||||
#~ "ganlyniadau. Defnyddiwch derm(au) chwilio "
|
#~ "ganlyniadau. Defnyddiwch derm(au) chwilio "
|
||||||
#~ "gwahanol neu ehangu'r chwilio i ragor"
|
#~ "gwahanol neu ehangu'r chwilio i ragor"
|
||||||
#~ " o gategorïau."
|
#~ " o gategorïau."
|
||||||
|
|
||||||
|
|
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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-21 05:53+0000\n"
|
"PO-Revision-Date: 2023-09-21 05:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
|
@ -21,7 +21,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -148,28 +148,28 @@ msgstr "lys"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "mørk"
|
msgstr "mørk"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Intet fundet"
|
msgstr "Intet fundet"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Kilde"
|
msgstr "Kilde"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ugyldig indstilling"
|
msgstr "Ugyldig indstilling"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "søgefejl"
|
msgstr "søgefejl"
|
||||||
|
|
||||||
|
@ -756,6 +756,14 @@ msgstr "Søgemotorer kan ikke hente resultater"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Søge-URL"
|
msgstr "Søge-URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Forslag"
|
msgstr "Forslag"
|
||||||
|
|
Binary file not shown.
|
@ -24,8 +24,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/de/>\n"
|
"searxng/de/>\n"
|
||||||
|
@ -34,8 +34,8 @@ msgstr ""
|
||||||
"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 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -162,28 +162,28 @@ msgstr "hell"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "dunkel"
|
msgstr "dunkel"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Keine Einträge gefunden"
|
msgstr "Keine Einträge gefunden"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Quelle"
|
msgstr "Quelle"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ungültige Einstellungen"
|
msgstr "Ungültige Einstellungen"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "Suchfehler"
|
msgstr "Suchfehler"
|
||||||
|
|
||||||
|
@ -776,6 +776,14 @@ msgstr "Die folgenden Suchmaschinen können die Ergebnisse nicht empfangen"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Such-URL"
|
msgstr "Such-URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "kopiert"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "kopieren"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Vorschläge"
|
msgstr "Vorschläge"
|
||||||
|
|
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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+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"
|
||||||
|
@ -17,7 +17,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -144,28 +144,28 @@ msgstr "އަލި"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "އަނދިރި"
|
msgstr "އަނދިރި"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -729,6 +729,14 @@ msgstr ""
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Binary file not shown.
|
@ -13,20 +13,19 @@
|
||||||
# RaptaG <george-raptis@tutamail.com>, 2023.
|
# RaptaG <george-raptis@tutamail.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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-20 07:07+0000\n"
|
"PO-Revision-Date: 2023-10-20 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Greek <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/el/>\n"
|
|
||||||
"Language: el_GR\n"
|
"Language: el_GR\n"
|
||||||
|
"Language-Team: Greek "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/el/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -153,28 +152,28 @@ msgstr "φωτεινό"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "σκοτεινό"
|
msgstr "σκοτεινό"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Δεν βρέθηκαν αντικείμενα"
|
msgstr "Δεν βρέθηκαν αντικείμενα"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Πηγή"
|
msgstr "Πηγή"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
|
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
|
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Μη έγκυρες ρυθμίσεις"
|
msgstr "Μη έγκυρες ρυθμίσεις"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "σφάλμα αναζήτησης"
|
msgstr "σφάλμα αναζήτησης"
|
||||||
|
|
||||||
|
@ -767,6 +766,14 @@ msgstr "Οι μηχανές δε μπορούν να φέρουν αποτελέ
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Σύνδεσμος αναζήτησης"
|
msgstr "Σύνδεσμος αναζήτησης"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Προτάσεις"
|
msgstr "Προτάσεις"
|
||||||
|
@ -1690,3 +1697,4 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+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"
|
||||||
|
@ -16,7 +16,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -143,28 +143,28 @@ msgstr ""
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -728,6 +728,14 @@ msgstr ""
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Binary file not shown.
|
@ -10,13 +10,15 @@
|
||||||
# Gergely <gergely@fsfe.org>, 2022.
|
# Gergely <gergely@fsfe.org>, 2022.
|
||||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||||
# return42 <markus.heiser@darmarit.de>, 2023.
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
|
# RTRedreovic <RTRedreovic@users.noreply.translate.codeberg.org>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-11-07 15:13+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: RTRedreovic "
|
||||||
|
"<RTRedreovic@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: eo\n"
|
"Language: eo\n"
|
||||||
"Language-Team: Esperanto "
|
"Language-Team: Esperanto "
|
||||||
"<https://translate.codeberg.org/projects/searxng/searxng/eo/>\n"
|
"<https://translate.codeberg.org/projects/searxng/searxng/eo/>\n"
|
||||||
|
@ -24,7 +26,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -94,7 +96,7 @@ msgstr "scienco"
|
||||||
#. CATEGORY_GROUPS['APPS']
|
#. CATEGORY_GROUPS['APPS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "apps"
|
msgid "apps"
|
||||||
msgstr "apoj"
|
msgstr "aplikaĵoj"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['DICTIONARIES']
|
#. CATEGORY_GROUPS['DICTIONARIES']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -114,12 +116,12 @@ msgstr "pakoj"
|
||||||
#. CATEGORY_GROUPS['Q_A']
|
#. CATEGORY_GROUPS['Q_A']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "q&a"
|
msgid "q&a"
|
||||||
msgstr "d&r"
|
msgstr "dϗr"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['REPOS']
|
#. CATEGORY_GROUPS['REPOS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "repos"
|
msgid "repos"
|
||||||
msgstr "reposoj"
|
msgstr "deponejoj"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -151,34 +153,34 @@ msgstr "hela"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "malhela"
|
msgstr "malhela"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nenio trovita"
|
msgstr "Nenio trovita"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fonto"
|
msgstr "Fonto"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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 ŝarĝado de la sekvan paĝon"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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 redaktu viajn agordojn"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Nevalidaj agordoj"
|
msgstr "Nevalidaj agordoj"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "serĉa eraro"
|
msgstr "serĉa eraro"
|
||||||
|
|
||||||
#: searx/webutils.py:34
|
#: searx/webutils.py:34
|
||||||
msgid "timeout"
|
msgid "timeout"
|
||||||
msgstr "tempolimo"
|
msgstr "eltempiĝo"
|
||||||
|
|
||||||
#: searx/webutils.py:35
|
#: searx/webutils.py:35
|
||||||
msgid "parsing error"
|
msgid "parsing error"
|
||||||
|
@ -210,7 +212,7 @@ msgstr "HTTP-konekto-eraro"
|
||||||
|
|
||||||
#: searx/webutils.py:54
|
#: searx/webutils.py:54
|
||||||
msgid "proxy error"
|
msgid "proxy error"
|
||||||
msgstr "proxy-eraro"
|
msgstr "prokurilo-eraro"
|
||||||
|
|
||||||
#: searx/webutils.py:55
|
#: searx/webutils.py:55
|
||||||
msgid "CAPTCHA"
|
msgid "CAPTCHA"
|
||||||
|
@ -246,7 +248,7 @@ msgstr "Hazardvalora generilo"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:74
|
#: searx/answerers/random/answerer.py:74
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Ĝi generas diversajn hazardajn valorojn"
|
msgstr "Generi diversajn hazardajn valorojn"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:47
|
#: searx/answerers/statistics/answerer.py:47
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
|
@ -254,11 +256,11 @@ msgstr "Statistikaj funkcioj"
|
||||||
|
|
||||||
#: 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 "Kalkulas {functions} el la argumentoj"
|
msgstr "Kalkuli {functions} de la argumentoj"
|
||||||
|
|
||||||
#: searx/engines/openstreetmap.py:160
|
#: searx/engines/openstreetmap.py:160
|
||||||
msgid "Get directions"
|
msgid "Get directions"
|
||||||
msgstr "Akiru direktojn"
|
msgstr "Akiri direktojn"
|
||||||
|
|
||||||
#: searx/engines/pdbe.py:96
|
#: searx/engines/pdbe.py:96
|
||||||
msgid "{title} (OBSOLETE)"
|
msgid "{title} (OBSOLETE)"
|
||||||
|
@ -274,19 +276,19 @@ msgstr "Kanalo"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:104
|
#: searx/engines/radio_browser.py:104
|
||||||
msgid "radio"
|
msgid "radio"
|
||||||
msgstr ""
|
msgstr "radio"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:106
|
#: searx/engines/radio_browser.py:106
|
||||||
msgid "bitrate"
|
msgid "bitrate"
|
||||||
msgstr ""
|
msgstr "bito-rapido"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:107
|
#: searx/engines/radio_browser.py:107
|
||||||
msgid "votes"
|
msgid "votes"
|
||||||
msgstr ""
|
msgstr "voĉoj"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:108
|
#: searx/engines/radio_browser.py:108
|
||||||
msgid "clicks"
|
msgid "clicks"
|
||||||
msgstr ""
|
msgstr "klakoj"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
|
@ -340,11 +342,11 @@ msgstr "Nokto"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:130
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr "Taksado de libro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:131
|
#: searx/engines/zlibrary.py:131
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr "Dosiera kvalito"
|
||||||
|
|
||||||
#: 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."
|
||||||
|
@ -537,7 +539,7 @@ msgstr "Neniu HTTPS"
|
||||||
#: searx/templates/simple/preferences.html:69
|
#: searx/templates/simple/preferences.html:69
|
||||||
#: searx/templates/simple/preferences.html:70
|
#: searx/templates/simple/preferences.html:70
|
||||||
msgid "View error logs and submit a bug report"
|
msgid "View error logs and submit a bug report"
|
||||||
msgstr "Vidu erarprotokolojn kaj sendu erarraporton"
|
msgstr "Vidi erarprotokolojn kaj sendi erarraporton"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:74
|
#: searx/templates/simple/preferences.html:74
|
||||||
msgid "!bang for this engine"
|
msgid "!bang for this engine"
|
||||||
|
@ -588,7 +590,7 @@ msgstr "Privateco"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:221
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "serĉiloj"
|
msgstr "Serĉiloj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:223
|
#: searx/templates/simple/preferences.html:223
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
|
@ -756,6 +758,14 @@ msgstr "Serĉiloj ne povas retrovi rezultojn"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Serĉi URL"
|
msgstr "Serĉi URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Sugestoj"
|
msgstr "Sugestoj"
|
||||||
|
@ -838,23 +848,23 @@ msgstr "Pardonu!"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:4
|
#: searx/templates/simple/messages/no_results.html:4
|
||||||
msgid "No results were found. You can try to:"
|
msgid "No results were found. You can try to:"
|
||||||
msgstr ""
|
msgstr "Neniuj rezultoj estis trovitaj. Vi povas provi:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:6
|
#: searx/templates/simple/messages/no_results.html:6
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
msgstr ""
|
msgstr "Refreŝigi la paĝon."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:7
|
#: searx/templates/simple/messages/no_results.html:7
|
||||||
msgid "Search for another query or select another category (above)."
|
msgid "Search for another query or select another category (above)."
|
||||||
msgstr ""
|
msgstr "Serĉu alian demandon aŭ elektu alian kategorion (supre)."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:8
|
#: searx/templates/simple/messages/no_results.html:8
|
||||||
msgid "Change the search engine used in the preferences:"
|
msgid "Change the search engine used in the preferences:"
|
||||||
msgstr ""
|
msgstr "Ŝanĝi la serĉilon uzatan en la preferoj:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:9
|
#: searx/templates/simple/messages/no_results.html:9
|
||||||
msgid "Switch to another instance:"
|
msgid "Switch to another instance:"
|
||||||
msgstr ""
|
msgstr "Ŝanĝi al alia instanco:"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/answerers.html:4
|
#: searx/templates/simple/preferences/answerers.html:4
|
||||||
#: searx/templates/simple/preferences/engines.html:17
|
#: searx/templates/simple/preferences/engines.html:17
|
||||||
|
@ -951,7 +961,7 @@ msgstr "Malfermalira COI-solvilo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/doi_resolver.html:14
|
#: searx/templates/simple/preferences/doi_resolver.html:14
|
||||||
msgid "Select service used by DOI rewrite"
|
msgid "Select service used by DOI rewrite"
|
||||||
msgstr ""
|
msgstr "Elekti servon uzatan de DOI-reskribo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:9
|
#: searx/templates/simple/preferences/engines.html:9
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -1005,17 +1015,19 @@ msgstr "Reen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||||
msgid "Hotkeys"
|
msgid "Hotkeys"
|
||||||
msgstr ""
|
msgstr "Klavaraj ŝparvojoj"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||||
msgid "Vim-like"
|
msgid "Vim-like"
|
||||||
msgstr ""
|
msgstr "Vim-simila"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:18
|
#: searx/templates/simple/preferences/hotkeys.html:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||||
"key on main or result page to get help."
|
"key on main or result page to get help."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Navigu serĉrezultojn per klavaraj ŝparvojoj (JavaScript bezonata). Premu "
|
||||||
|
"\"h\" klavon sur ĉefa aŭ rezultpaĝo por ricevi helpon."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
|
@ -1049,7 +1061,7 @@ msgstr "HTTP-Metodo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/method.html:14
|
#: searx/templates/simple/preferences/method.html:14
|
||||||
msgid "Change how forms are submitted"
|
msgid "Change how forms are submitted"
|
||||||
msgstr ""
|
msgstr "Ŝanĝi kiel oni sendas formularojn"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/query_in_title.html:2
|
#: searx/templates/simple/preferences/query_in_title.html:2
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
|
@ -1082,6 +1094,8 @@ msgid ""
|
||||||
"Perform search immediately if a category selected. Disable to select "
|
"Perform search immediately if a category selected. Disable to select "
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Fari serĉon tuj se kategorio estas elektita. Malebligi elekti plurajn "
|
||||||
|
"kategoriojn"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
@ -1117,7 +1131,7 @@ msgstr "Ŝanĝi lingvon de la fasono"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/code.html:13
|
#: searx/templates/simple/result_templates/code.html:13
|
||||||
msgid "repo"
|
msgid "repo"
|
||||||
msgstr "reposoj"
|
msgstr "Deponejo"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/default.html:6
|
#: searx/templates/simple/result_templates/default.html:6
|
||||||
msgid "show media"
|
msgid "show media"
|
||||||
|
@ -1138,7 +1152,7 @@ msgstr "Formato"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/images.html:21
|
#: searx/templates/simple/result_templates/images.html:21
|
||||||
msgid "Engine"
|
msgid "Engine"
|
||||||
msgstr "serĉiloj"
|
msgstr "Serĉilo"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/images.html:22
|
#: searx/templates/simple/result_templates/images.html:22
|
||||||
msgid "View source"
|
msgid "View source"
|
||||||
|
|
Binary file not shown.
|
@ -30,8 +30,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||||
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/es/>\n"
|
"searxng/es/>\n"
|
||||||
|
@ -40,8 +40,8 @@ msgstr ""
|
||||||
"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 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -168,28 +168,28 @@ msgstr "claro"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "oscuro"
|
msgstr "oscuro"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Ningún artículo encontrado"
|
msgstr "Ningún artículo encontrado"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fuente"
|
msgstr "Fuente"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ajustes no válidos"
|
msgstr "Ajustes no válidos"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "error en la búsqueda"
|
msgstr "error en la búsqueda"
|
||||||
|
|
||||||
|
@ -777,6 +777,14 @@ msgstr "Los motores no pueden obtener resultados"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL de la búsqueda"
|
msgstr "URL de la búsqueda"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiado"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Sugerencias"
|
msgstr "Sugerencias"
|
||||||
|
|
Binary file not shown.
|
@ -11,20 +11,19 @@
|
||||||
# return42 <markus.heiser@darmarit.de>, 2023.
|
# 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-08 16:53+0000\n"
|
"PO-Revision-Date: 2023-10-08 16:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Estonian <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/et/>\n"
|
|
||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
|
"Language-Team: Estonian "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/et/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -151,28 +150,28 @@ msgstr "herge"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "pime"
|
msgstr "pime"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Üksust ei leitud"
|
msgstr "Üksust ei leitud"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Allikas"
|
msgstr "Allikas"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
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:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
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:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Sobimatud seaded"
|
msgstr "Sobimatud seaded"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "otsingu viga"
|
msgstr "otsingu viga"
|
||||||
|
|
||||||
|
@ -745,6 +744,14 @@ msgstr "Mootorid ei saa tulemusi tagastada"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Otsingu URL"
|
msgstr "Otsingu URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Soovitused"
|
msgstr "Soovitused"
|
||||||
|
@ -1639,3 +1646,4 @@ msgstr "peida video"
|
||||||
#~ "me ei leidnud ühtegi tulemust. Palun "
|
#~ "me ei leidnud ühtegi tulemust. Palun "
|
||||||
#~ "kasuta teist päringut või otsi "
|
#~ "kasuta teist päringut või otsi "
|
||||||
#~ "rohkematest kategooriatest."
|
#~ "rohkematest kategooriatest."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -13,20 +13,19 @@
|
||||||
# alexgabi <alexgabi@disroot.org>, 2023.
|
# alexgabi <alexgabi@disroot.org>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-15 20:53+0000\n"
|
"PO-Revision-Date: 2023-10-15 20:53+0000\n"
|
||||||
"Last-Translator: alexgabi <alexgabi@disroot.org>\n"
|
"Last-Translator: alexgabi <alexgabi@disroot.org>\n"
|
||||||
"Language-Team: Basque <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/eu/>\n"
|
|
||||||
"Language: eu\n"
|
"Language: eu\n"
|
||||||
|
"Language-Team: Basque "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/eu/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -153,28 +152,28 @@ msgstr "argia"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "iluna"
|
msgstr "iluna"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Ez da elementurik aurkitu"
|
msgstr "Ez da elementurik aurkitu"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Iturria"
|
msgstr "Iturria"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Errorea hurrengo orrialdea kargatzean"
|
msgstr "Errorea hurrengo orrialdea kargatzean"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Ezarpen baliogabeak, editatu zure hobespenak"
|
msgstr "Ezarpen baliogabeak, editatu zure hobespenak"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ezarpen baliogabeak"
|
msgstr "Ezarpen baliogabeak"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "bilaketa akatsa"
|
msgstr "bilaketa akatsa"
|
||||||
|
|
||||||
|
@ -758,6 +757,14 @@ msgstr "Bilatzaileek ezin dute emaitzarik lortu"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Bilaketaren URLa"
|
msgstr "Bilaketaren URLa"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Iradokizunak"
|
msgstr "Iradokizunak"
|
||||||
|
@ -1666,3 +1673,4 @@ msgstr "ezkutatu bideoa"
|
||||||
#~ "ez dugu emaitzarik aurkitu. Mesedez "
|
#~ "ez dugu emaitzarik aurkitu. Mesedez "
|
||||||
#~ "beste kontsulta bat egin edo bilatu "
|
#~ "beste kontsulta bat egin edo bilatu "
|
||||||
#~ "kategoria gehiagotan."
|
#~ "kategoria gehiagotan."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -15,20 +15,19 @@
|
||||||
# arashe22 <arashe22@proton.me>, 2023.
|
# arashe22 <arashe22@proton.me>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Persian <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/fa/>\n"
|
|
||||||
"Language: fa_IR\n"
|
"Language: fa_IR\n"
|
||||||
|
"Language-Team: Persian "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fa/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -155,28 +154,28 @@ msgstr "روشن"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "تاریک"
|
msgstr "تاریک"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "چیزی پیدا نشد"
|
msgstr "چیزی پیدا نشد"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "منبع"
|
msgstr "منبع"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "خطا در بارگزاری صفحه جدید"
|
msgstr "خطا در بارگزاری صفحه جدید"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "تنظیمات نادرست است، لطفا تنظیمات جستجو را تغییر دهید"
|
msgstr "تنظیمات نادرست است، لطفا تنظیمات جستجو را تغییر دهید"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "تنظیمات نادرست"
|
msgstr "تنظیمات نادرست"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "خطای جستوجو"
|
msgstr "خطای جستوجو"
|
||||||
|
|
||||||
|
@ -760,6 +759,14 @@ msgstr "موتورها توانایی دریافت نتایج را ندارند"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL جستوجو"
|
msgstr "URL جستوجو"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "پیشنهادها"
|
msgstr "پیشنهادها"
|
||||||
|
@ -1673,3 +1680,4 @@ msgstr "پنهانسازی ویدئو"
|
||||||
#~ "چیزی پیدا نشد. لطفاً ورودی دیگری "
|
#~ "چیزی پیدا نشد. لطفاً ورودی دیگری "
|
||||||
#~ "را بیازمایید یا در دستههای بیشتری "
|
#~ "را بیازمایید یا در دستههای بیشتری "
|
||||||
#~ "جستوجو کنید."
|
#~ "جستوجو کنید."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -10,20 +10,19 @@
|
||||||
# artnay <jiri.gronroos@iki.fi>, 2023.
|
# artnay <jiri.gronroos@iki.fi>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-26 15:37+0000\n"
|
"PO-Revision-Date: 2023-10-26 15:37+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Finnish <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/fi/>\n"
|
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
|
"Language-Team: Finnish "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fi/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.1\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -150,28 +149,28 @@ msgstr "vaalea"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "tumma"
|
msgstr "tumma"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Tietuetta ei löytynyt"
|
msgstr "Tietuetta ei löytynyt"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Lähde"
|
msgstr "Lähde"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Virhe ladattaessa seuraavaa sivua"
|
msgstr "Virhe ladattaessa seuraavaa sivua"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Virheelliset asetukset, muokkaa siis asetuksia"
|
msgstr "Virheelliset asetukset, muokkaa siis asetuksia"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Virheelliset asetukset"
|
msgstr "Virheelliset asetukset"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "hakuvirhe"
|
msgstr "hakuvirhe"
|
||||||
|
|
||||||
|
@ -757,6 +756,14 @@ msgstr "Moottorit eivät voi palauttaa tuloksia"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Haun osoite"
|
msgstr "Haun osoite"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Ehdotukset"
|
msgstr "Ehdotukset"
|
||||||
|
@ -1678,3 +1685,4 @@ msgstr "piilota video"
|
||||||
#~ "löytynyt. Etsi käyttäen eri hakuehtoja "
|
#~ "löytynyt. Etsi käyttäen eri hakuehtoja "
|
||||||
#~ "tai ulota hakusi nykyistä useampiin eri"
|
#~ "tai ulota hakusi nykyistä useampiin eri"
|
||||||
#~ " luokkiin."
|
#~ " luokkiin."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -9,21 +9,20 @@
|
||||||
# return42 <markus.heiser@darmarit.de>, 2023.
|
# 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-24 11:13+0000\n"
|
"PO-Revision-Date: 2023-10-24 11:13+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Filipino <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/fil/>\n"
|
|
||||||
"Language: fil\n"
|
"Language: fil\n"
|
||||||
|
"Language-Team: Filipino "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fil/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4"
|
||||||
|
" || n % 10 != 6 || n % 10 != 9);\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==2 || n==3) || (n % 10 != 4 || "
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"n % 10 != 6 || n % 10 != 9);\n"
|
|
||||||
"X-Generator: Weblate 5.1\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -150,28 +149,28 @@ msgstr "maliwanag"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "madilim"
|
msgstr "madilim"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Walang nakita na aytem"
|
msgstr "Walang nakita na aytem"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Pinagmulan"
|
msgstr "Pinagmulan"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Nag error ang pagload ng kabilang pahina"
|
msgstr "Nag error ang pagload ng kabilang pahina"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Maling settings, paki ayos ang preferences"
|
msgstr "Maling settings, paki ayos ang preferences"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Maling settings"
|
msgstr "Maling settings"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "nagkaproblema sa paghahanap"
|
msgstr "nagkaproblema sa paghahanap"
|
||||||
|
|
||||||
|
@ -756,6 +755,14 @@ msgstr "Hindi makuha ng engines ang mga resulta"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL ng Search"
|
msgstr "URL ng Search"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Mga mungkahi"
|
msgstr "Mga mungkahi"
|
||||||
|
@ -1672,3 +1679,4 @@ msgstr "itago ang video"
|
||||||
#~ "wala kaming nakita na resulta. Pakiusap"
|
#~ "wala kaming nakita na resulta. Pakiusap"
|
||||||
#~ " na ibahin ang tanong o maghanap "
|
#~ " na ibahin ang tanong o maghanap "
|
||||||
#~ "sa maraming uri."
|
#~ "sa maraming uri."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -20,20 +20,19 @@
|
||||||
# quenty_occitania <quentinantonin@free.fr>, 2023.
|
# quenty_occitania <quentinantonin@free.fr>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-27 07:07+0000\n"
|
"PO-Revision-Date: 2023-10-27 07:07+0000\n"
|
||||||
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
||||||
"Language-Team: French <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/fr/>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
"Language-Team: French "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fr/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.1\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -160,28 +159,28 @@ msgstr "clair"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "sombre"
|
msgstr "sombre"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Pas d'élément trouvé"
|
msgstr "Pas d'élément trouvé"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Source"
|
msgstr "Source"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Erreur lors du chargement de la page suivante"
|
msgstr "Erreur lors du chargement de la page suivante"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Paramètres non valides, veuillez éditer vos préférences"
|
msgstr "Paramètres non valides, veuillez éditer vos préférences"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Paramètres non valides"
|
msgstr "Paramètres non valides"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "erreur de recherche"
|
msgstr "erreur de recherche"
|
||||||
|
|
||||||
|
@ -766,6 +765,14 @@ msgstr "Les moteurs ne peuvent pas récupérer de résultats"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL de recherche"
|
msgstr "URL de recherche"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suggestions"
|
msgstr "Suggestions"
|
||||||
|
@ -1029,8 +1036,8 @@ msgid ""
|
||||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||||
"key on main or result page to get help."
|
"key on main or result page to get help."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Parcourir les résultats avec les raccourcis clavier (nécessite Javascript). "
|
"Parcourir les résultats avec les raccourcis clavier (nécessite "
|
||||||
"Pressez \"h\" sur la page principale pour obtenir de l'aide."
|
"Javascript). Pressez \"h\" sur la page principale pour obtenir de l'aide."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
|
@ -1710,3 +1717,4 @@ msgstr "cacher la vidéo"
|
||||||
#~ "nous n'avons trouvé aucun résultat. "
|
#~ "nous n'avons trouvé aucun résultat. "
|
||||||
#~ "Effectuez une autre recherche ou changez"
|
#~ "Effectuez une autre recherche ou changez"
|
||||||
#~ " de catégorie."
|
#~ " de catégorie."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -11,8 +11,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||||
"Last-Translator: ghose <correo@xmgz.eu>\n"
|
"Last-Translator: ghose <correo@xmgz.eu>\n"
|
||||||
"Language-Team: Galician <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Galician <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/gl/>\n"
|
"searxng/gl/>\n"
|
||||||
|
@ -21,8 +21,8 @@ msgstr ""
|
||||||
"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 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -149,28 +149,28 @@ msgstr "claro"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "escuro"
|
msgstr "escuro"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Non se atoparon elementos"
|
msgstr "Non se atoparon elementos"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fonte"
|
msgstr "Fonte"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Erro ao cargar a páxina seguinte"
|
msgstr "Erro ao cargar a páxina seguinte"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Axustes non válidos, por favor edita a configuración"
|
msgstr "Axustes non válidos, por favor edita a configuración"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Axustes non válidos"
|
msgstr "Axustes non válidos"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "fallo na busca"
|
msgstr "fallo na busca"
|
||||||
|
|
||||||
|
@ -752,6 +752,14 @@ msgstr "Os buscadores non obtiveron resultados"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL da busca"
|
msgstr "URL da busca"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiado"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suxestións"
|
msgstr "Suxestións"
|
||||||
|
|
Binary file not shown.
|
@ -15,21 +15,20 @@
|
||||||
# shoko <nickskorohod@outlook.com>, 2023.
|
# shoko <nickskorohod@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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-08 16:53+0000\n"
|
"PO-Revision-Date: 2023-11-05 21:47+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Hebrew <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/he/>\n"
|
|
||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
|
"Language-Team: Hebrew "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/he/>\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 "
|
||||||
|
"&& n % 10 == 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) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"n % 10 == 0) ? 2 : 3));\n"
|
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -156,28 +155,28 @@ msgstr "בהיר"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "כהה"
|
msgstr "כהה"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "לא נמצא פריט"
|
msgstr "לא נמצא פריט"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "מקור"
|
msgstr "מקור"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "שגיאה בטעינת העמוד הבא"
|
msgstr "שגיאה בטעינת העמוד הבא"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "הגדרות לא תקינות, עליך לתקן את ההעדפות שלך"
|
msgstr "הגדרות לא תקינות, עליך לתקן את ההעדפות שלך"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "הגדרות לא תקינות"
|
msgstr "הגדרות לא תקינות"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "שגיאת חיפוש"
|
msgstr "שגיאת חיפוש"
|
||||||
|
|
||||||
|
@ -287,11 +286,11 @@ msgstr "קצב נתונים"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:107
|
#: searx/engines/radio_browser.py:107
|
||||||
msgid "votes"
|
msgid "votes"
|
||||||
msgstr ""
|
msgstr "הצבעות"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:108
|
#: searx/engines/radio_browser.py:108
|
||||||
msgid "clicks"
|
msgid "clicks"
|
||||||
msgstr ""
|
msgstr "לחיצות"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
|
@ -754,6 +753,14 @@ msgstr "מנועים לא מסוגלים לאחזר תוצאות"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "כתובת URL חיפוש"
|
msgstr "כתובת URL חיפוש"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "הצעות"
|
msgstr "הצעות"
|
||||||
|
@ -1649,3 +1656,4 @@ msgstr "הסתר וידאו"
|
||||||
#~ "use another query or search in "
|
#~ "use another query or search in "
|
||||||
#~ "more categories."
|
#~ "more categories."
|
||||||
#~ msgstr "לא מצאנו תוצאות. אנא נסו שאילתא אחרת או חפשו בתוך יותר קטגוריות."
|
#~ msgstr "לא מצאנו תוצאות. אנא נסו שאילתא אחרת או חפשו בתוך יותר קטגוריות."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -15,7 +15,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
|
@ -26,7 +26,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -153,28 +153,28 @@ msgstr "svijetlo"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "tamno"
|
msgstr "tamno"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nije pronađena nijedna stavka"
|
msgstr "Nije pronađena nijedna stavka"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Izvor"
|
msgstr "Izvor"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Greška u učitavnju sljedeće stranice"
|
msgstr "Greška u učitavnju sljedeće stranice"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Nevažeće postavke, molimo uredite svoje postavke"
|
msgstr "Nevažeće postavke, molimo uredite svoje postavke"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Nevažeće postavke"
|
msgstr "Nevažeće postavke"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "greška u pretraživanju"
|
msgstr "greška u pretraživanju"
|
||||||
|
|
||||||
|
@ -750,6 +750,14 @@ msgstr "Tražilice ne mogu dohvatiti rezultate"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Pretraži URL"
|
msgstr "Pretraži URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Prijedlozi"
|
msgstr "Prijedlozi"
|
||||||
|
|
Binary file not shown.
|
@ -15,7 +15,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
|
@ -25,7 +25,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -152,28 +152,28 @@ msgstr "világos"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "sötét"
|
msgstr "sötét"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nincs találat"
|
msgstr "Nincs találat"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Forrás"
|
msgstr "Forrás"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Hiba a következő oldal betöltése során"
|
msgstr "Hiba a következő oldal betöltése során"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Érvénytelen beállítások, kérlek módosítsd őket"
|
msgstr "Érvénytelen beállítások, kérlek módosítsd őket"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Érvénytelen beállítások"
|
msgstr "Érvénytelen beállítások"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "keresési hiba"
|
msgstr "keresési hiba"
|
||||||
|
|
||||||
|
@ -757,6 +757,14 @@ msgstr "Nincs találat a keresőmotortól"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Keresési URL"
|
msgstr "Keresési URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Javaslatok"
|
msgstr "Javaslatok"
|
||||||
|
|
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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-06-22 09:02+0000\n"
|
"PO-Revision-Date: 2023-06-22 09:02+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: ia\n"
|
"Language: ia\n"
|
||||||
|
@ -19,7 +19,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -146,28 +146,28 @@ msgstr ""
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nulle item trovate"
|
msgstr "Nulle item trovate"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Configurationes non valide, per favor, modifica tu preferentias"
|
msgstr "Configurationes non valide, per favor, modifica tu preferentias"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Configurationes invalide"
|
msgstr "Configurationes invalide"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "error in recerca"
|
msgstr "error in recerca"
|
||||||
|
|
||||||
|
@ -735,6 +735,14 @@ msgstr "Le motores non poteva obtener resultatos"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Recercar URL"
|
msgstr "Recercar URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suggestiones"
|
msgstr "Suggestiones"
|
||||||
|
|
Binary file not shown.
|
@ -9,7 +9,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
|
@ -19,7 +19,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -146,28 +146,28 @@ msgstr "cerah"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "gelap"
|
msgstr "gelap"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Item tidak ditemukan"
|
msgstr "Item tidak ditemukan"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Sumber"
|
msgstr "Sumber"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Gagal memuat halaman berikutnya"
|
msgstr "Gagal memuat halaman berikutnya"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Pengaturan tidak valid, mohon ubah preferensi Anda"
|
msgstr "Pengaturan tidak valid, mohon ubah preferensi Anda"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Pengaturan tidak valid"
|
msgstr "Pengaturan tidak valid"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "kesalahan pencarian"
|
msgstr "kesalahan pencarian"
|
||||||
|
|
||||||
|
@ -754,6 +754,14 @@ msgstr "Mesin-mesin tidak dapat mendapatkan hasil"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL pencarian"
|
msgstr "URL pencarian"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Saran"
|
msgstr "Saran"
|
||||||
|
|
Binary file not shown.
|
@ -26,8 +26,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-10 14:53+0000\n"
|
"PO-Revision-Date: 2023-11-17 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/it/>\n"
|
"searxng/it/>\n"
|
||||||
|
@ -36,8 +36,8 @@ msgstr ""
|
||||||
"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 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -164,28 +164,28 @@ msgstr "chiaro"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "scuro"
|
msgstr "scuro"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nessun oggetto trovato"
|
msgstr "Nessun oggetto trovato"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Sorgente"
|
msgstr "Sorgente"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Errore caricando la pagina successiva"
|
msgstr "Errore caricando la pagina successiva"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Impostazioni non valide, modifica le tue preferenze"
|
msgstr "Impostazioni non valide, modifica le tue preferenze"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Impostazioni non valide"
|
msgstr "Impostazioni non valide"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "errore di ricerca"
|
msgstr "errore di ricerca"
|
||||||
|
|
||||||
|
@ -775,6 +775,14 @@ msgstr "I motori di ricerca non riescono a recuperare risultati"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL della ricerca"
|
msgstr "URL della ricerca"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Copiato"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copia"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suggerimenti"
|
msgstr "Suggerimenti"
|
||||||
|
|
Binary file not shown.
|
@ -21,8 +21,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-10 14:53+0000\n"
|
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||||
"Last-Translator: tentsbet <remendne@pentrens.jp>\n"
|
"Last-Translator: tentsbet <remendne@pentrens.jp>\n"
|
||||||
"Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/ja/>\n"
|
"searxng/ja/>\n"
|
||||||
|
@ -31,8 +31,8 @@ msgstr ""
|
||||||
"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=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -159,28 +159,28 @@ msgstr "ライト"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "ダーク"
|
msgstr "ダーク"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "アイテムが見つかりません"
|
msgstr "アイテムが見つかりません"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "ソース"
|
msgstr "ソース"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "次のページの読み込み中にエラーが発生しました"
|
msgstr "次のページの読み込み中にエラーが発生しました"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "設定が無効です、設定を変更してください"
|
msgstr "設定が無効です、設定を変更してください"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "無効な設定です"
|
msgstr "無効な設定です"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "検索エラー"
|
msgstr "検索エラー"
|
||||||
|
|
||||||
|
@ -746,6 +746,14 @@ msgstr "エンジンは結果を取得できません"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "この検索結果の URL"
|
msgstr "この検索結果の URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "コピーしました"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "コピー"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "提案"
|
msgstr "提案"
|
||||||
|
|
Binary file not shown.
|
@ -11,8 +11,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-11-05 21:47+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
"Language-Team: Korean "
|
"Language-Team: Korean "
|
||||||
|
@ -21,7 +21,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -148,28 +148,28 @@ msgstr "라이트"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "다크"
|
msgstr "다크"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "검색 결과가 없습니다"
|
msgstr "검색 결과가 없습니다"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "소스"
|
msgstr "소스"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다"
|
msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "잘못된 설정입니다, 설정을 수정하세요"
|
msgstr "잘못된 설정입니다, 설정을 수정하세요"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "잘못된 설정"
|
msgstr "잘못된 설정"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "검색 오류"
|
msgstr "검색 오류"
|
||||||
|
|
||||||
|
@ -271,19 +271,19 @@ msgstr "채널"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:104
|
#: searx/engines/radio_browser.py:104
|
||||||
msgid "radio"
|
msgid "radio"
|
||||||
msgstr ""
|
msgstr "라디오"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:106
|
#: searx/engines/radio_browser.py:106
|
||||||
msgid "bitrate"
|
msgid "bitrate"
|
||||||
msgstr ""
|
msgstr "비트 레이트"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:107
|
#: searx/engines/radio_browser.py:107
|
||||||
msgid "votes"
|
msgid "votes"
|
||||||
msgstr ""
|
msgstr "표"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:108
|
#: searx/engines/radio_browser.py:108
|
||||||
msgid "clicks"
|
msgid "clicks"
|
||||||
msgstr ""
|
msgstr "clicks"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
|
@ -741,6 +741,14 @@ msgstr "결과를 가져올 수 없습니다"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "검색 URL"
|
msgstr "검색 URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "제안"
|
msgstr "제안"
|
||||||
|
@ -823,23 +831,23 @@ msgstr "죄송합니다!"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:4
|
#: searx/templates/simple/messages/no_results.html:4
|
||||||
msgid "No results were found. You can try to:"
|
msgid "No results were found. You can try to:"
|
||||||
msgstr ""
|
msgstr "검색 결과 없음. 다음을 시도해 보세요:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:6
|
#: searx/templates/simple/messages/no_results.html:6
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
msgstr ""
|
msgstr "페이지를 새로고침 하세요."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:7
|
#: searx/templates/simple/messages/no_results.html:7
|
||||||
msgid "Search for another query or select another category (above)."
|
msgid "Search for another query or select another category (above)."
|
||||||
msgstr ""
|
msgstr "다른 검색어를 사용하거나 위에서 다른 카테고리를 선택해 주세요."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:8
|
#: searx/templates/simple/messages/no_results.html:8
|
||||||
msgid "Change the search engine used in the preferences:"
|
msgid "Change the search engine used in the preferences:"
|
||||||
msgstr ""
|
msgstr "설정에서 사용할 검색엔진 바꾸기:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:9
|
#: searx/templates/simple/messages/no_results.html:9
|
||||||
msgid "Switch to another instance:"
|
msgid "Switch to another instance:"
|
||||||
msgstr ""
|
msgstr "다른 인스터스를 사용해 주세요:"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/answerers.html:4
|
#: searx/templates/simple/preferences/answerers.html:4
|
||||||
#: searx/templates/simple/preferences/engines.html:17
|
#: searx/templates/simple/preferences/engines.html:17
|
||||||
|
@ -980,17 +988,19 @@ msgstr "뒤로"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||||
msgid "Hotkeys"
|
msgid "Hotkeys"
|
||||||
msgstr ""
|
msgstr "단축키"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||||
msgid "Vim-like"
|
msgid "Vim-like"
|
||||||
msgstr ""
|
msgstr "vim 형식"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:18
|
#: searx/templates/simple/preferences/hotkeys.html:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||||
"key on main or result page to get help."
|
"key on main or result page to get help."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"단축키를 이용해 검색결과를 탐색합니다 (Javascript 필요). 검색결과 페이지나 홈페이지에서 'h'를 눌러 도움말을 볼수 "
|
||||||
|
"있습니다."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
|
@ -1054,7 +1064,7 @@ msgstr "특정 카테고리 검색"
|
||||||
msgid ""
|
msgid ""
|
||||||
"Perform search immediately if a category selected. Disable to select "
|
"Perform search immediately if a category selected. Disable to select "
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr "카테고리 선택후 즉시 검색을 합니다. 한개 이상의 카테고리를 선택하면 비활성화됩니다"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
|
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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
|
@ -24,7 +24,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -151,28 +151,28 @@ msgstr "šviesi"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "tamsi"
|
msgstr "tamsi"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Elementų nerasta"
|
msgstr "Elementų nerasta"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Šaltinis"
|
msgstr "Šaltinis"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Klaida keliant kitą puslapį"
|
msgstr "Klaida keliant kitą puslapį"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Neteisingi nustatymai, pakeiskite savo nuostatas"
|
msgstr "Neteisingi nustatymai, pakeiskite savo nuostatas"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Neteisingi nustatymai"
|
msgstr "Neteisingi nustatymai"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "paieškos klaida"
|
msgstr "paieškos klaida"
|
||||||
|
|
||||||
|
@ -754,6 +754,14 @@ msgstr "Sistemos negali gauti rezultatų"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Paieškos URL"
|
msgstr "Paieškos URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Pasiūlymai"
|
msgstr "Pasiūlymai"
|
||||||
|
|
Binary file not shown.
|
@ -10,19 +10,18 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-24 11:13+0000\n"
|
"PO-Revision-Date: 2023-10-24 11:13+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Latvian <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/lv/>\n"
|
|
||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
|
"Language-Team: Latvian "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/lv/>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100"
|
||||||
|
" <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\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=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= "
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
|
|
||||||
"X-Generator: Weblate 5.1\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -149,28 +148,28 @@ msgstr "gaišs"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "tumšs"
|
msgstr "tumšs"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nav atrasts neviens vienums"
|
msgstr "Nav atrasts neviens vienums"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Avots"
|
msgstr "Avots"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Kļūda lādējot nākošo lapu"
|
msgstr "Kļūda lādējot nākošo lapu"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Nepareizi iestatījumi, lūdzu rediģējiet savas preferences"
|
msgstr "Nepareizi iestatījumi, lūdzu rediģējiet savas preferences"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Nederīgi iestatījumi"
|
msgstr "Nederīgi iestatījumi"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "meklēšanas kļūda"
|
msgstr "meklēšanas kļūda"
|
||||||
|
|
||||||
|
@ -305,15 +304,16 @@ msgid ""
|
||||||
" WebP."
|
" WebP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nevar nolasīt šo attēla url. Tas var būt saistīts ar neatbalstītu faila "
|
"Nevar nolasīt šo attēla url. Tas var būt saistīts ar neatbalstītu faila "
|
||||||
"formātu. TinEye atbalsta tikai JPEG, PNG, GIF, BMP, TIFF vai WebP attēlus."
|
"formātu. TinEye atbalsta tikai JPEG, PNG, GIF, BMP, TIFF vai WebP "
|
||||||
|
"attēlus."
|
||||||
|
|
||||||
#: 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 ""
|
||||||
"Attēls ir pārāk vienkāršs, lai atrastu atbilstību. Lai veiksmīgi noteiktu "
|
"Attēls ir pārāk vienkāršs, lai atrastu atbilstību. Lai veiksmīgi noteiktu"
|
||||||
"sakritības, TinEye ir nepieciešams pamata vizuālo detaļu līmenis."
|
" sakritības, TinEye ir nepieciešams pamata vizuālo detaļu līmenis."
|
||||||
|
|
||||||
#: searx/engines/tineye.py:52
|
#: searx/engines/tineye.py:52
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
|
@ -358,8 +358,8 @@ msgstr "Resursdatora vārda nomaiņa"
|
||||||
#: 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 ""
|
||||||
"Pārrakstīt rezultātu saimniekvārdus vai noņemt rezultātus, pamatojoties uz "
|
"Pārrakstīt rezultātu saimniekvārdus vai noņemt rezultātus, pamatojoties "
|
||||||
"saimniekvārdu"
|
"uz saimniekvārdu"
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:9
|
#: searx/plugins/oa_doi_rewrite.py:9
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -370,8 +370,8 @@ msgid ""
|
||||||
"Avoid paywalls by redirecting to open-access versions of publications "
|
"Avoid paywalls by redirecting to open-access versions of publications "
|
||||||
"when available"
|
"when available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Izvairieties no maksas sienām, novirzot uz publikāciju atvērtās piekļuves "
|
"Izvairieties no maksas sienām, novirzot uz publikāciju atvērtās piekļuves"
|
||||||
"versijām, ja tās ir pieejamas"
|
" versijām, ja tās ir pieejamas"
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:10
|
#: searx/plugins/self_info.py:10
|
||||||
msgid "Self Information"
|
msgid "Self Information"
|
||||||
|
@ -382,8 +382,8 @@ msgid ""
|
||||||
"Displays your IP if the query is \"ip\" and your user agent if the query "
|
"Displays your IP if the query is \"ip\" and your user agent if the query "
|
||||||
"contains \"user agent\"."
|
"contains \"user agent\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tiek parādīts jūsu IP, ja pieprasījums ir \"ip\", un jūsu lietotāja aģents, "
|
"Tiek parādīts jūsu IP, ja pieprasījums ir \"ip\", un jūsu lietotāja "
|
||||||
"ja pieprasījumā ir \"user agent\"."
|
"aģents, ja pieprasījumā ir \"user agent\"."
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:25
|
#: searx/plugins/tor_check.py:25
|
||||||
msgid "Tor check plugin"
|
msgid "Tor check plugin"
|
||||||
|
@ -748,6 +748,14 @@ msgstr ""
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1387,3 +1395,4 @@ msgstr "slēpt video"
|
||||||
#~ "use another query or search in "
|
#~ "use another query or search in "
|
||||||
#~ "more categories."
|
#~ "more categories."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -8,14 +8,14 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -142,28 +142,28 @@ msgstr ""
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -727,6 +727,14 @@ msgstr ""
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -12,7 +12,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-06-28 09:02+0000\n"
|
"PO-Revision-Date: 2023-06-28 09:02+0000\n"
|
||||||
"Last-Translator: alma <alma@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: alma <alma@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
|
@ -22,7 +22,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -149,28 +149,28 @@ msgstr "terang"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "gelap"
|
msgstr "gelap"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "barang tidak dijumpai"
|
msgstr "barang tidak dijumpai"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Punca"
|
msgstr "Punca"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Gagal memuat turun muka seterusnya"
|
msgstr "Gagal memuat turun muka seterusnya"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Kesilapan tetapan, sila ubahsuai pilihan"
|
msgstr "Kesilapan tetapan, sila ubahsuai pilihan"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Tetapan tidak sah"
|
msgstr "Tetapan tidak sah"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "ralat pencarian"
|
msgstr "ralat pencarian"
|
||||||
|
|
||||||
|
@ -748,6 +748,14 @@ msgstr ""
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Cadangan"
|
msgstr "Cadangan"
|
||||||
|
|
Binary file not shown.
|
@ -11,7 +11,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
|
@ -21,7 +21,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -148,28 +148,28 @@ msgstr "lys"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "mørk"
|
msgstr "mørk"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Fant ingen elementer"
|
msgstr "Fant ingen elementer"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Kilde"
|
msgstr "Kilde"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Det var et problem med lasting av neste side"
|
msgstr "Det var et problem med lasting av neste side"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Ugyldige innstillinger, rediger dine preferanser"
|
msgstr "Ugyldige innstillinger, rediger dine preferanser"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ugyldige innstillinger"
|
msgstr "Ugyldige innstillinger"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "søkefeil"
|
msgstr "søkefeil"
|
||||||
|
|
||||||
|
@ -753,6 +753,14 @@ msgstr "Søkemotorer kan ikke motta resultater"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Søkenettadresse"
|
msgstr "Søkenettadresse"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Forslag"
|
msgstr "Forslag"
|
||||||
|
|
Binary file not shown.
|
@ -21,8 +21,8 @@ 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-17 13:53+0000\n"
|
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/nl/>\n"
|
"searxng/nl/>\n"
|
||||||
|
@ -31,8 +31,8 @@ msgstr ""
|
||||||
"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 5.0.2\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -159,28 +159,28 @@ msgstr "licht"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "donker"
|
msgstr "donker"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Er is geen resultaat gevonden"
|
msgstr "Er is geen resultaat gevonden"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Bron"
|
msgstr "Bron"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "De volgende pagina kan niet worden geladen"
|
msgstr "De volgende pagina kan niet worden geladen"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "De instellingen zijn ongeldig - werk ze bij"
|
msgstr "De instellingen zijn ongeldig - werk ze bij"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Ongeldige instellingen"
|
msgstr "Ongeldige instellingen"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "zoekfout"
|
msgstr "zoekfout"
|
||||||
|
|
||||||
|
@ -769,6 +769,14 @@ msgstr "Zoekmachines konden geen resultaten ophalen"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Zoek-URL"
|
msgstr "Zoek-URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr "Gekopieerd"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopieer"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suggesties"
|
msgstr "Suggesties"
|
||||||
|
@ -851,7 +859,7 @@ msgstr "Sorry!"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:4
|
#: searx/templates/simple/messages/no_results.html:4
|
||||||
msgid "No results were found. You can try to:"
|
msgid "No results were found. You can try to:"
|
||||||
msgstr ""
|
msgstr "Geen zoekresultaten. Probeer:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:6
|
#: searx/templates/simple/messages/no_results.html:6
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
|
@ -859,15 +867,15 @@ msgstr "Ververs de pagina"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:7
|
#: searx/templates/simple/messages/no_results.html:7
|
||||||
msgid "Search for another query or select another category (above)."
|
msgid "Search for another query or select another category (above)."
|
||||||
msgstr ""
|
msgstr "Zoek op iets anders of selecteer een andere categorie (zie boven)."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:8
|
#: searx/templates/simple/messages/no_results.html:8
|
||||||
msgid "Change the search engine used in the preferences:"
|
msgid "Change the search engine used in the preferences:"
|
||||||
msgstr ""
|
msgstr "Verander de zoekmachine gebruikt in de voorkeuren:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:9
|
#: searx/templates/simple/messages/no_results.html:9
|
||||||
msgid "Switch to another instance:"
|
msgid "Switch to another instance:"
|
||||||
msgstr ""
|
msgstr "Verbind met een andere instance:"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/answerers.html:4
|
#: searx/templates/simple/preferences/answerers.html:4
|
||||||
#: searx/templates/simple/preferences/engines.html:17
|
#: searx/templates/simple/preferences/engines.html:17
|
||||||
|
@ -1021,7 +1029,7 @@ msgstr "Terug"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||||
msgid "Hotkeys"
|
msgid "Hotkeys"
|
||||||
msgstr ""
|
msgstr "Sneltoetsen"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||||
msgid "Vim-like"
|
msgid "Vim-like"
|
||||||
|
|
Binary file not shown.
|
@ -9,20 +9,19 @@
|
||||||
# quenty_occitania <quentinantonin@free.fr>, 2023.
|
# quenty_occitania <quentinantonin@free.fr>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-27 07:07+0000\n"
|
"PO-Revision-Date: 2023-11-04 18:13+0000\n"
|
||||||
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
||||||
"Language-Team: Occitan <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/oc/>\n"
|
|
||||||
"Language: oc\n"
|
"Language: oc\n"
|
||||||
|
"Language-Team: Occitan "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/oc/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.1\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -149,28 +148,28 @@ msgstr "clar"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "fosc"
|
msgstr "fosc"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Cap d’element pas trobat"
|
msgstr "Cap d’element pas trobat"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Font"
|
msgstr "Font"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Error en cargant la pagina seguenta"
|
msgstr "Error en cargant la pagina seguenta"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Paramètre pas valide, mercés de modificar vòstras preferéncias"
|
msgstr "Paramètre pas valide, mercés de modificar vòstras preferéncias"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Paramètres invalids"
|
msgstr "Paramètres invalids"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "error de recèrca"
|
msgstr "error de recèrca"
|
||||||
|
|
||||||
|
@ -295,8 +294,8 @@ msgid ""
|
||||||
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
||||||
"{lastCitationVelocityYear}"
|
"{lastCitationVelocityYear}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"{numCitations} citacions dempuèi l’annada {firstCitationVelocityYear} fins a "
|
"{numCitations} citacions dempuèi l’annada {firstCitationVelocityYear} "
|
||||||
"{lastCitationVelocityYear}"
|
"fins a {lastCitationVelocityYear}"
|
||||||
|
|
||||||
#: searx/engines/tineye.py:40
|
#: searx/engines/tineye.py:40
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -469,7 +468,7 @@ msgstr "Politica de confidencialitat"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:78
|
#: searx/templates/simple/base.html:78
|
||||||
msgid "Contact instance maintainer"
|
msgid "Contact instance maintainer"
|
||||||
msgstr "Contactatz lo responsable de l’instància"
|
msgstr "Contactar lo responsable de l’instància"
|
||||||
|
|
||||||
#: searx/templates/simple/categories.html:26
|
#: searx/templates/simple/categories.html:26
|
||||||
msgid "Click on the magnifier to perform search"
|
msgid "Click on the magnifier to perform search"
|
||||||
|
@ -740,6 +739,14 @@ msgstr "Los cercadors pòdons pas recuperar los resultats"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL de recèrca"
|
msgstr "URL de recèrca"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Suggestions"
|
msgstr "Suggestions"
|
||||||
|
@ -1634,3 +1641,4 @@ msgstr "escondre la vidèo"
|
||||||
#~ "avèm pas trobat cap de resultat. "
|
#~ "avèm pas trobat cap de resultat. "
|
||||||
#~ "Mercés d'utilizar une autre mot clau "
|
#~ "Mercés d'utilizar une autre mot clau "
|
||||||
#~ "o de cercar dins autras categorias."
|
#~ "o de cercar dins autras categorias."
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -13,22 +13,21 @@
|
||||||
# y0nei <y0nei@proton.me>, 2023.
|
# y0nei <y0nei@proton.me>, 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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-10 14:53+0000\n"
|
"PO-Revision-Date: 2023-10-10 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Polish <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/pl/>\n"
|
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
|
"Language-Team: Polish "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/pl/>\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
|
||||||
|
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
||||||
|
"n%10<=9) || (n%100>=12 && n%100<=14) ? 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%10>=2 && n%10<=4) && ("
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
|
||||||
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -155,28 +154,28 @@ msgstr "jasny"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "ciemny"
|
msgstr "ciemny"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nie znaleziono elementu"
|
msgstr "Nie znaleziono elementu"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Źródło"
|
msgstr "Źródło"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Błąd wczytywania następnej strony"
|
msgstr "Błąd wczytywania następnej strony"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Nieprawidłowe ustawienia, zmień swoje preferencje"
|
msgstr "Nieprawidłowe ustawienia, zmień swoje preferencje"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Nieprawidłowe ustawienia"
|
msgstr "Nieprawidłowe ustawienia"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "błąd wyszukiwania"
|
msgstr "błąd wyszukiwania"
|
||||||
|
|
||||||
|
@ -760,6 +759,14 @@ msgstr "Wyszukiwarki nie mogą pobrać wyników"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "URL wyszukiwania"
|
msgstr "URL wyszukiwania"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Propozycje"
|
msgstr "Propozycje"
|
||||||
|
@ -1685,3 +1692,4 @@ msgstr "ukryj wideo"
|
||||||
#~ "nie znaleźliśmy żadnych wyników. Użyj "
|
#~ "nie znaleźliśmy żadnych wyników. Użyj "
|
||||||
#~ "innego zapytania lub wyszukaj więcej "
|
#~ "innego zapytania lub wyszukaj więcej "
|
||||||
#~ "kategorii."
|
#~ "kategorii."
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -17,7 +17,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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
@ -27,7 +27,7 @@ msgstr ""
|
||||||
"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"
|
||||||
"Generated-By: Babel 2.12.1\n"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -154,28 +154,28 @@ msgstr "claro"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "escuro"
|
msgstr "escuro"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nenhum item encontrado"
|
msgstr "Nenhum item encontrado"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fonte"
|
msgstr "Fonte"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Erro ao carregar a próxima página"
|
msgstr "Erro ao carregar a próxima página"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Definições inválidas, por favor edite as suas preferências"
|
msgstr "Definições inválidas, por favor edite as suas preferências"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Configurações inválidas"
|
msgstr "Configurações inválidas"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "erro de procura"
|
msgstr "erro de procura"
|
||||||
|
|
||||||
|
@ -759,6 +759,14 @@ msgstr "Mecanismos não podem recuperar resultados"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Procurar hiperligação"
|
msgstr "Procurar hiperligação"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Sugestões"
|
msgstr "Sugestões"
|
||||||
|
|
Binary file not shown.
|
@ -23,20 +23,19 @@
|
||||||
# Coccocoas_Helper <coccocoahelper@gmail.com>, 2023.
|
# Coccocoas_Helper <coccocoahelper@gmail.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: 2023-10-05 09:01+0000\n"
|
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language-Team: Portuguese (Brazil) <https://translate.codeberg.org/projects/"
|
|
||||||
"searxng/searxng/pt_BR/>\n"
|
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
|
"Language-Team: Portuguese (Brazil) "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/pt_BR/>\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"
|
"Generated-By: Babel 2.13.1\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
|
||||||
"Generated-By: Babel 2.12.1\n"
|
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -163,28 +162,28 @@ msgstr "claro"
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "escuro"
|
msgstr "escuro"
|
||||||
|
|
||||||
#: searx/webapp.py:331
|
#: searx/webapp.py:332
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
msgstr "Nenhum item encontrado"
|
msgstr "Nenhum item encontrado"
|
||||||
|
|
||||||
#: searx/engines/qwant.py:280
|
#: searx/engines/qwant.py:280
|
||||||
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:333
|
#: searx/templates/simple/result_templates/images.html:20 searx/webapp.py:334
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fonte"
|
msgstr "Fonte"
|
||||||
|
|
||||||
#: searx/webapp.py:335
|
#: searx/webapp.py:336
|
||||||
msgid "Error loading the next page"
|
msgid "Error loading the next page"
|
||||||
msgstr "Erro ao carregar a próxima página"
|
msgstr "Erro ao carregar a próxima página"
|
||||||
|
|
||||||
#: searx/webapp.py:492 searx/webapp.py:888
|
#: searx/webapp.py:493 searx/webapp.py:889
|
||||||
msgid "Invalid settings, please edit your preferences"
|
msgid "Invalid settings, please edit your preferences"
|
||||||
msgstr "Configurações inválidas, por favor, edite suas preferências"
|
msgstr "Configurações inválidas, por favor, edite suas preferências"
|
||||||
|
|
||||||
#: searx/webapp.py:508
|
#: searx/webapp.py:509
|
||||||
msgid "Invalid settings"
|
msgid "Invalid settings"
|
||||||
msgstr "Configurações inválidas"
|
msgstr "Configurações inválidas"
|
||||||
|
|
||||||
#: searx/webapp.py:585 searx/webapp.py:667
|
#: searx/webapp.py:586 searx/webapp.py:668
|
||||||
msgid "search error"
|
msgid "search error"
|
||||||
msgstr "erro de busca"
|
msgstr "erro de busca"
|
||||||
|
|
||||||
|
@ -771,6 +770,14 @@ msgstr "Os motores de busca não conseguiram obter resultados"
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
msgstr "Buscar URL"
|
msgstr "Buscar URL"
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searx/templates/simple/elements/search_url.html:4
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/elements/suggestions.html:3
|
#: searx/templates/simple/elements/suggestions.html:3
|
||||||
msgid "Suggestions"
|
msgid "Suggestions"
|
||||||
msgstr "Sugestões"
|
msgstr "Sugestões"
|
||||||
|
@ -1107,8 +1114,8 @@ msgid ""
|
||||||
"Perform search immediately if a category selected. Disable to select "
|
"Perform search immediately if a category selected. Disable to select "
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Faça a busca imediatamente se existir uma categoria selecionada. Desabilite "
|
"Faça a busca imediatamente se existir uma categoria selecionada. "
|
||||||
"para selecionar múltiplas categorias"
|
"Desabilite para selecionar múltiplas categorias"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
@ -1712,3 +1719,4 @@ msgstr "ocultar vídeo"
|
||||||
#~ "Não encontramos nenhum resultado. Utilize "
|
#~ "Não encontramos nenhum resultado. Utilize "
|
||||||
#~ "outra consulta ou pesquisa em mais "
|
#~ "outra consulta ou pesquisa em mais "
|
||||||
#~ "categorias."
|
#~ "categorias."
|
||||||
|
|
||||||
|
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue