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_URL= \
|
||||
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
|
||||
|
||||
|
|
|
@ -4,8 +4,12 @@ uid = searxng
|
|||
gid = searxng
|
||||
|
||||
# Number of workers (usually CPU count)
|
||||
workers = %k
|
||||
threads = 4
|
||||
# default value: %k (= number of CPU core, see Dockerfile)
|
||||
workers = $(UWSGI_WORKERS)
|
||||
|
||||
# Number of threads per worker
|
||||
# default value: 4 (see Dockerfile)
|
||||
threads = $(UWSGI_THREADS)
|
||||
|
||||
# The right granted on the created socket
|
||||
chmod-socket = 666
|
||||
|
|
|
@ -92,6 +92,9 @@ instance using `docker run <https://docs.docker.com/engine/reference/run/>`_:
|
|||
searxng/searxng
|
||||
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:
|
||||
|
||||
.. code:: sh
|
||||
|
|
|
@ -6,6 +6,7 @@ Developer documentation
|
|||
:maxdepth: 2
|
||||
|
||||
quickstart
|
||||
rtm_asdf
|
||||
contribution_guide
|
||||
engines/index
|
||||
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
|
||||
pylint==3.0.2
|
||||
splinter==0.19.0
|
||||
selenium==4.14.0
|
||||
selenium==4.15.2
|
||||
twine==4.0.2
|
||||
Pallets-Sphinx-Themes==2.1.1
|
||||
Sphinx<=7.1.2; python_version == '3.8'
|
||||
|
@ -16,8 +16,8 @@ sphinxcontrib-programoutput==0.17
|
|||
sphinx-autobuild==2021.3.14
|
||||
sphinx-notfound-page==1.0.0
|
||||
myst-parser==2.0.0
|
||||
linuxdoc==20230827
|
||||
linuxdoc==20231020
|
||||
aiounittest==1.4.2
|
||||
yamllint==1.32.0
|
||||
yamllint==1.33.0
|
||||
wlc==1.13
|
||||
coloredlogs==15.0.1
|
||||
|
|
|
@ -15,5 +15,5 @@ setproctitle==1.3.3
|
|||
redis==4.6.0
|
||||
markdown-it-py==3.0.0
|
||||
typing_extensions==4.8.0
|
||||
fasttext-predict==0.9.2.1
|
||||
fasttext-predict==0.9.2.2
|
||||
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 () {
|
||||
var btnLabelCollapsed = this.getAttribute('data-btn-text-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) {
|
||||
/* eslint no-unused-vars: 0 */
|
||||
if (resultElement) {
|
||||
|
|
|
@ -441,6 +441,7 @@ article[data-vim-selected].category-social {
|
|||
|
||||
& > a {
|
||||
position: relative;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
img {
|
||||
|
@ -729,9 +730,18 @@ summary.title {
|
|||
#search_url {
|
||||
div.selectable_url {
|
||||
pre {
|
||||
float: left;
|
||||
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 {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<div id="search_url" role="complementary" aria-labelledby="search_url-title">
|
||||
<details class="sidebar-collapsable">
|
||||
<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">
|
||||
<pre>{{ url_for('search', _external=True) }}?q={{ q|urlencode }}&language={{ current_language }}&time_range={{ time_range }}&safesearch={{ safesearch }}
|
||||
{%- if pageno > 1 -%}
|
||||
|
|
Binary file not shown.
|
@ -11,18 +11,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Afrikaans <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -149,28 +148,28 @@ msgstr "lig"
|
|||
msgid "dark"
|
||||
msgstr "donker"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Geen item gevind"
|
||||
|
||||
#: 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"
|
||||
msgstr "Bron"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Ongeldige opstellings, redigeer asb jou voorkeure"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ongeldige opstellings"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "soekfout"
|
||||
|
||||
|
@ -757,6 +756,14 @@ msgstr ""
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
@ -1400,3 +1407,4 @@ msgstr ""
|
|||
#~ "use another query or search in "
|
||||
#~ "more categories."
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
Binary file not shown.
|
@ -14,20 +14,21 @@
|
|||
# Cavemanly <k.adel.2m@protonmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-03 06:53+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-17 07:07+0000\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-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"
|
||||
"Content-Type: text/plain; charset=utf-8\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']
|
||||
#: searx/searxng.msg
|
||||
|
@ -154,28 +155,28 @@ msgstr "فاتح"
|
|||
msgid "dark"
|
||||
msgstr "مظلم"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "تعذر العثور على عناصر"
|
||||
|
||||
#: 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"
|
||||
msgstr "المصدر"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "إعدادات غير صالحة"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "خطأ في البحث"
|
||||
|
||||
|
@ -277,19 +278,19 @@ msgstr "القناة"
|
|||
|
||||
#: searx/engines/radio_browser.py:104
|
||||
msgid "radio"
|
||||
msgstr ""
|
||||
msgstr "راديو"
|
||||
|
||||
#: searx/engines/radio_browser.py:106
|
||||
msgid "bitrate"
|
||||
msgstr ""
|
||||
msgstr "معدل البت"
|
||||
|
||||
#: searx/engines/radio_browser.py:107
|
||||
msgid "votes"
|
||||
msgstr ""
|
||||
msgstr "تصويتات"
|
||||
|
||||
#: searx/engines/radio_browser.py:108
|
||||
msgid "clicks"
|
||||
msgstr ""
|
||||
msgstr "نقرات"
|
||||
|
||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||
msgid "Language"
|
||||
|
@ -755,6 +756,14 @@ msgstr "لم تتمكن محركات البحث من العثور على أية
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "الإقتراحات"
|
||||
|
@ -1006,17 +1015,19 @@ msgstr "الخلف"
|
|||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||
msgid "Hotkeys"
|
||||
msgstr ""
|
||||
msgstr "مفاتيح الاختصار"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||
msgid "Vim-like"
|
||||
msgstr ""
|
||||
msgstr "مشابه لبرنامج vim"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:18
|
||||
msgid ""
|
||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||
"key on main or result page to get help."
|
||||
msgstr ""
|
||||
"تنقل في نتائج البحث باستخدام مفاتيح التشغيل السريع (يتطلب JavaScript). اضغط "
|
||||
"على المفتاح \"h\" في الصفحة الرئيسية أو صفحة النتائج للحصول على المساعدة."
|
||||
|
||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||
msgid "Image proxy"
|
||||
|
@ -1083,6 +1094,7 @@ msgid ""
|
|||
"Perform search immediately if a category selected. Disable to select "
|
||||
"multiple categories"
|
||||
msgstr ""
|
||||
"قم بإجراء البحث على الفور إذا تم تحديد فئة. قم بتعطيل لتحديد فئات متعددة"
|
||||
|
||||
#: searx/templates/simple/preferences/theme.html:2
|
||||
msgid "Theme"
|
||||
|
@ -1666,4 +1678,3 @@ msgstr "إخفاء الفيديو"
|
|||
#~ "لم نتوصل إلى العثور على أية نتيجة."
|
||||
#~ " الرجاء إعادة صياغة طلب البحث أو "
|
||||
#~ "إبحث مع تحديد أكثر من فئة."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -14,7 +14,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: bg\n"
|
||||
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -151,28 +151,28 @@ msgstr "светъл"
|
|||
msgid "dark"
|
||||
msgstr "тъмен"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Не е намерен артикул"
|
||||
|
||||
#: 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"
|
||||
msgstr "Източник"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "Грешка при зареждането на следващата страница"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "Неправилни настройки, моля проверете предпочитанията си"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "невалидни настройки"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "грешка при търсенето"
|
||||
|
||||
|
@ -756,6 +756,14 @@ msgstr "Търсачките не можаха да намерят резулт
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Предложения"
|
||||
|
|
Binary file not shown.
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: bn\n"
|
||||
|
@ -23,7 +23,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -150,28 +150,28 @@ msgstr "সাদা"
|
|||
msgid "dark"
|
||||
msgstr "কালো"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "কোন আইটেম পাওয়া যায়নি"
|
||||
|
||||
#: 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"
|
||||
msgstr "উৎস"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "পরবর্তী পৃষ্ঠাটি লোড করায় ত্রুটি দেখা যাচ্ছে"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "অকেজো সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "অকেজো সেটিংস"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "সার্চ ত্রুটি"
|
||||
|
||||
|
@ -757,6 +757,14 @@ msgstr "ইঞ্জিন ফলাফল পুনরুদ্ধার কর
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "প্রস্তাবিত"
|
||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: bo\n"
|
||||
|
@ -20,7 +20,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -147,28 +147,28 @@ msgstr ""
|
|||
msgid "dark"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
|
||||
|
||||
|
@ -732,6 +732,14 @@ msgstr "འཚོལ་བཤེར་སྒུལ་བྱེད་ལ་ནོ
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "འོས་སྦྱོས།"
|
||||
|
|
Binary file not shown.
|
@ -16,20 +16,19 @@
|
|||
# quenty_occitania <quentinantonin@free.fr>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 15:37+0000\n"
|
||||
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
||||
"Language-Team: Catalan <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/ca/>\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-02 11:13+0000\n"
|
||||
"Last-Translator: Ivan Gabaldon <admin@inetol.net>\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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\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']
|
||||
#: searx/searxng.msg
|
||||
|
@ -109,7 +108,7 @@ msgstr "diccionaris"
|
|||
#. CATEGORY_GROUPS['LYRICS']
|
||||
#: searx/searxng.msg
|
||||
msgid "lyrics"
|
||||
msgstr "lletres"
|
||||
msgstr "lletra"
|
||||
|
||||
#. CATEGORY_GROUPS['PACKAGES']
|
||||
#: searx/searxng.msg
|
||||
|
@ -119,7 +118,7 @@ msgstr "paquets"
|
|||
#. CATEGORY_GROUPS['Q_A']
|
||||
#: searx/searxng.msg
|
||||
msgid "q&a"
|
||||
msgstr "questions i respostes"
|
||||
msgstr "preguntes i respostes"
|
||||
|
||||
#. CATEGORY_GROUPS['REPOS']
|
||||
#: searx/searxng.msg
|
||||
|
@ -156,28 +155,28 @@ msgstr "clar"
|
|||
msgid "dark"
|
||||
msgstr "fosc"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "No s'ha trobat cap element"
|
||||
|
||||
#: 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"
|
||||
msgstr "Origen"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "La configuració no és vàlida, editeu-la"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
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"
|
||||
msgstr "error de cerca"
|
||||
|
||||
|
@ -199,7 +198,7 @@ msgstr "error de xarxa"
|
|||
|
||||
#: searx/webutils.py:38
|
||||
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
|
||||
msgid "unexpected crash"
|
||||
|
@ -207,7 +206,7 @@ msgstr "error inesperat"
|
|||
|
||||
#: searx/webutils.py:47
|
||||
msgid "HTTP error"
|
||||
msgstr "error HTTP"
|
||||
msgstr "error de HTTP"
|
||||
|
||||
#: searx/webutils.py:48
|
||||
msgid "HTTP connection error"
|
||||
|
@ -223,7 +222,7 @@ msgstr "CAPTCHA"
|
|||
|
||||
#: searx/webutils.py:56
|
||||
msgid "too many requests"
|
||||
msgstr "massa peticions"
|
||||
msgstr "masses peticions"
|
||||
|
||||
#: searx/webutils.py:57
|
||||
msgid "access denied"
|
||||
|
@ -239,11 +238,11 @@ msgstr "Suspès"
|
|||
|
||||
#: searx/webutils.py:317
|
||||
msgid "{minutes} minute(s) ago"
|
||||
msgstr "fa {minutes} minuts"
|
||||
msgstr "fa {minutes} minut(s)"
|
||||
|
||||
#: searx/webutils.py:318
|
||||
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
|
||||
msgid "Random value generator"
|
||||
|
@ -279,23 +278,23 @@ msgstr "Canal"
|
|||
|
||||
#: searx/engines/radio_browser.py:104
|
||||
msgid "radio"
|
||||
msgstr ""
|
||||
msgstr "radio"
|
||||
|
||||
#: searx/engines/radio_browser.py:106
|
||||
msgid "bitrate"
|
||||
msgstr ""
|
||||
msgstr "tasa de bits"
|
||||
|
||||
#: searx/engines/radio_browser.py:107
|
||||
msgid "votes"
|
||||
msgstr ""
|
||||
msgstr "vots"
|
||||
|
||||
#: searx/engines/radio_browser.py:108
|
||||
msgid "clicks"
|
||||
msgstr ""
|
||||
msgstr "clics"
|
||||
|
||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
msgstr "Llengua"
|
||||
|
||||
#: searx/engines/semantic_scholar.py:81
|
||||
msgid ""
|
||||
|
@ -757,6 +756,14 @@ msgstr "Els motors no poden obtenir cap resultat"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggeriments"
|
||||
|
@ -843,7 +850,7 @@ msgstr ""
|
|||
|
||||
#: searx/templates/simple/messages/no_results.html:6
|
||||
msgid "Refresh the page."
|
||||
msgstr ""
|
||||
msgstr "Refresca la pestanya."
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:7
|
||||
msgid "Search for another query or select another category (above)."
|
||||
|
@ -855,7 +862,7 @@ msgstr ""
|
|||
|
||||
#: searx/templates/simple/messages/no_results.html:9
|
||||
msgid "Switch to another instance:"
|
||||
msgstr ""
|
||||
msgstr "Canvia a una altra instància:"
|
||||
|
||||
#: searx/templates/simple/preferences/answerers.html:4
|
||||
#: 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
|
||||
msgid "repo"
|
||||
msgstr "repositoris"
|
||||
msgstr "repositori"
|
||||
|
||||
#: searx/templates/simple/result_templates/default.html:6
|
||||
msgid "show media"
|
||||
|
@ -1687,3 +1694,4 @@ msgstr "amaga el vídeo"
|
|||
#~ "no hem trobat cap resultat. Feu "
|
||||
#~ "una consulta diferent o cerqueu en "
|
||||
#~ "més categories."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -17,8 +17,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||
"Last-Translator: Fjuro <ifjuro@proton.me>\n"
|
||||
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/cs/>\n"
|
||||
|
@ -28,8 +28,8 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
||||
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -156,28 +156,28 @@ msgstr "světlý"
|
|||
msgid "dark"
|
||||
msgstr "tmavý"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nic nenalezeno"
|
||||
|
||||
#: 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"
|
||||
msgstr "zdroj"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Neplatné nastavení, upravte své předvolby"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Neplatné nastavení"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "chyba vyhledávání"
|
||||
|
||||
|
@ -759,6 +759,14 @@ msgstr "Vyhledávače nemohou získat výsledky"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Návrhy"
|
||||
|
|
Binary file not shown.
|
@ -10,21 +10,20 @@
|
|||
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Welsh <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
|
||||
"11) ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -151,28 +150,28 @@ msgstr "golau"
|
|||
msgid "dark"
|
||||
msgstr "tywyll"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Ni chanfuwyd eitem"
|
||||
|
||||
#: 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"
|
||||
msgstr "Ffynhonnell"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Gosodiadau annilys, golygu eich dewisiadau"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Gosodiadau annilys"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "gwall chwilio"
|
||||
|
||||
|
@ -743,6 +742,14 @@ msgstr "Ni all y peiriannau cael canlyniadau"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Awgrymiadau"
|
||||
|
@ -1613,3 +1620,4 @@ msgstr "cuddio fideo"
|
|||
#~ "ganlyniadau. Defnyddiwch derm(au) chwilio "
|
||||
#~ "gwahanol neu ehangu'r chwilio i ragor"
|
||||
#~ " o gategorïau."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: da\n"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -148,28 +148,28 @@ msgstr "lys"
|
|||
msgid "dark"
|
||||
msgstr "mørk"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Intet fundet"
|
||||
|
||||
#: 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"
|
||||
msgstr "Kilde"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Ugyldige indstillinger, redigér venligst dine valg"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ugyldig indstilling"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "søgefejl"
|
||||
|
||||
|
@ -756,6 +756,14 @@ msgstr "Søgemotorer kan ikke hente resultater"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Forslag"
|
||||
|
|
Binary file not shown.
|
@ -24,8 +24,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/de/>\n"
|
||||
|
@ -34,8 +34,8 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -162,28 +162,28 @@ msgstr "hell"
|
|||
msgid "dark"
|
||||
msgstr "dunkel"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Keine Einträge gefunden"
|
||||
|
||||
#: 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"
|
||||
msgstr "Quelle"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Ungültige Einstellungen, bitte Einstellungen ändern"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ungültige Einstellungen"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "Suchfehler"
|
||||
|
||||
|
@ -776,6 +776,14 @@ msgstr "Die folgenden Suchmaschinen können die Ergebnisse nicht empfangen"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Vorschläge"
|
||||
|
|
Binary file not shown.
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: Landhoo School Students "
|
||||
"<landhooschoolstudents@gmail.com>\n"
|
||||
|
@ -17,7 +17,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -144,28 +144,28 @@ msgstr "އަލި"
|
|||
msgid "dark"
|
||||
msgstr "އަނދިރި"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -729,6 +729,14 @@ msgstr ""
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -13,20 +13,19 @@
|
|||
# RaptaG <george-raptis@tutamail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"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-Team: Greek "
|
||||
"<https://translate.codeberg.org/projects/searxng/searxng/el/>\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -153,28 +152,28 @@ msgstr "φωτεινό"
|
|||
msgid "dark"
|
||||
msgstr "σκοτεινό"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Δεν βρέθηκαν αντικείμενα"
|
||||
|
||||
#: 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"
|
||||
msgstr "Πηγή"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Μη έγκυρες ρυθμίσεις"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "σφάλμα αναζήτησης"
|
||||
|
||||
|
@ -767,6 +766,14 @@ msgstr "Οι μηχανές δε μπορούν να φέρουν αποτελέ
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Προτάσεις"
|
||||
|
@ -1690,3 +1697,4 @@ msgstr "απόκρυψη βίντεο"
|
|||
#~ "δε βρέθηκαν αποτελέσματα. Παρακαλούμε "
|
||||
#~ "χρησιμοποιήστε άλλη αναζήτηση ή ψάξτε σε"
|
||||
#~ " περισσότερες κατηγορίες."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: en\n"
|
||||
|
@ -16,7 +16,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -143,28 +143,28 @@ msgstr ""
|
|||
msgid "dark"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -728,6 +728,14 @@ msgstr ""
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
|
@ -10,13 +10,15 @@
|
|||
# Gergely <gergely@fsfe.org>, 2022.
|
||||
# Markus Heiser <markus.heiser@darmarit.de>, 2022.
|
||||
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||
# RTRedreovic <RTRedreovic@users.noreply.translate.codeberg.org>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-07 15:13+0000\n"
|
||||
"Last-Translator: RTRedreovic "
|
||||
"<RTRedreovic@users.noreply.translate.codeberg.org>\n"
|
||||
"Language: eo\n"
|
||||
"Language-Team: Esperanto "
|
||||
"<https://translate.codeberg.org/projects/searxng/searxng/eo/>\n"
|
||||
|
@ -24,7 +26,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -94,7 +96,7 @@ msgstr "scienco"
|
|||
#. CATEGORY_GROUPS['APPS']
|
||||
#: searx/searxng.msg
|
||||
msgid "apps"
|
||||
msgstr "apoj"
|
||||
msgstr "aplikaĵoj"
|
||||
|
||||
#. CATEGORY_GROUPS['DICTIONARIES']
|
||||
#: searx/searxng.msg
|
||||
|
@ -114,12 +116,12 @@ msgstr "pakoj"
|
|||
#. CATEGORY_GROUPS['Q_A']
|
||||
#: searx/searxng.msg
|
||||
msgid "q&a"
|
||||
msgstr "d&r"
|
||||
msgstr "dϗr"
|
||||
|
||||
#. CATEGORY_GROUPS['REPOS']
|
||||
#: searx/searxng.msg
|
||||
msgid "repos"
|
||||
msgstr "reposoj"
|
||||
msgstr "deponejoj"
|
||||
|
||||
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
||||
#: searx/searxng.msg
|
||||
|
@ -151,34 +153,34 @@ msgstr "hela"
|
|||
msgid "dark"
|
||||
msgstr "malhela"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nenio trovita"
|
||||
|
||||
#: 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"
|
||||
msgstr "Fonto"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
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"
|
||||
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"
|
||||
msgstr "Nevalidaj agordoj"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "serĉa eraro"
|
||||
|
||||
#: searx/webutils.py:34
|
||||
msgid "timeout"
|
||||
msgstr "tempolimo"
|
||||
msgstr "eltempiĝo"
|
||||
|
||||
#: searx/webutils.py:35
|
||||
msgid "parsing error"
|
||||
|
@ -210,7 +212,7 @@ msgstr "HTTP-konekto-eraro"
|
|||
|
||||
#: searx/webutils.py:54
|
||||
msgid "proxy error"
|
||||
msgstr "proxy-eraro"
|
||||
msgstr "prokurilo-eraro"
|
||||
|
||||
#: searx/webutils.py:55
|
||||
msgid "CAPTCHA"
|
||||
|
@ -246,7 +248,7 @@ msgstr "Hazardvalora generilo"
|
|||
|
||||
#: searx/answerers/random/answerer.py:74
|
||||
msgid "Generate different random values"
|
||||
msgstr "Ĝi generas diversajn hazardajn valorojn"
|
||||
msgstr "Generi diversajn hazardajn valorojn"
|
||||
|
||||
#: searx/answerers/statistics/answerer.py:47
|
||||
msgid "Statistics functions"
|
||||
|
@ -254,11 +256,11 @@ msgstr "Statistikaj funkcioj"
|
|||
|
||||
#: searx/answerers/statistics/answerer.py:48
|
||||
msgid "Compute {functions} of the arguments"
|
||||
msgstr "Kalkulas {functions} el la argumentoj"
|
||||
msgstr "Kalkuli {functions} de la argumentoj"
|
||||
|
||||
#: searx/engines/openstreetmap.py:160
|
||||
msgid "Get directions"
|
||||
msgstr "Akiru direktojn"
|
||||
msgstr "Akiri direktojn"
|
||||
|
||||
#: searx/engines/pdbe.py:96
|
||||
msgid "{title} (OBSOLETE)"
|
||||
|
@ -274,19 +276,19 @@ msgstr "Kanalo"
|
|||
|
||||
#: searx/engines/radio_browser.py:104
|
||||
msgid "radio"
|
||||
msgstr ""
|
||||
msgstr "radio"
|
||||
|
||||
#: searx/engines/radio_browser.py:106
|
||||
msgid "bitrate"
|
||||
msgstr ""
|
||||
msgstr "bito-rapido"
|
||||
|
||||
#: searx/engines/radio_browser.py:107
|
||||
msgid "votes"
|
||||
msgstr ""
|
||||
msgstr "voĉoj"
|
||||
|
||||
#: searx/engines/radio_browser.py:108
|
||||
msgid "clicks"
|
||||
msgstr ""
|
||||
msgstr "klakoj"
|
||||
|
||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||
msgid "Language"
|
||||
|
@ -340,11 +342,11 @@ msgstr "Nokto"
|
|||
|
||||
#: searx/engines/zlibrary.py:130
|
||||
msgid "Book rating"
|
||||
msgstr ""
|
||||
msgstr "Taksado de libro"
|
||||
|
||||
#: searx/engines/zlibrary.py:131
|
||||
msgid "File quality"
|
||||
msgstr ""
|
||||
msgstr "Dosiera kvalito"
|
||||
|
||||
#: searx/plugins/hash_plugin.py:24
|
||||
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:70
|
||||
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
|
||||
msgid "!bang for this engine"
|
||||
|
@ -588,7 +590,7 @@ msgstr "Privateco"
|
|||
|
||||
#: searx/templates/simple/preferences.html:221
|
||||
msgid "Engines"
|
||||
msgstr "serĉiloj"
|
||||
msgstr "Serĉiloj"
|
||||
|
||||
#: searx/templates/simple/preferences.html:223
|
||||
msgid "Currently used search engines"
|
||||
|
@ -756,6 +758,14 @@ msgstr "Serĉiloj ne povas retrovi rezultojn"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Sugestoj"
|
||||
|
@ -838,23 +848,23 @@ msgstr "Pardonu!"
|
|||
|
||||
#: searx/templates/simple/messages/no_results.html:4
|
||||
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
|
||||
msgid "Refresh the page."
|
||||
msgstr ""
|
||||
msgstr "Refreŝigi la paĝon."
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:7
|
||||
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
|
||||
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
|
||||
msgid "Switch to another instance:"
|
||||
msgstr ""
|
||||
msgstr "Ŝanĝi al alia instanco:"
|
||||
|
||||
#: searx/templates/simple/preferences/answerers.html:4
|
||||
#: searx/templates/simple/preferences/engines.html:17
|
||||
|
@ -951,7 +961,7 @@ msgstr "Malfermalira COI-solvilo"
|
|||
|
||||
#: searx/templates/simple/preferences/doi_resolver.html:14
|
||||
msgid "Select service used by DOI rewrite"
|
||||
msgstr ""
|
||||
msgstr "Elekti servon uzatan de DOI-reskribo"
|
||||
|
||||
#: searx/templates/simple/preferences/engines.html:9
|
||||
msgid ""
|
||||
|
@ -1005,17 +1015,19 @@ msgstr "Reen"
|
|||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||
msgid "Hotkeys"
|
||||
msgstr ""
|
||||
msgstr "Klavaraj ŝparvojoj"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||
msgid "Vim-like"
|
||||
msgstr ""
|
||||
msgstr "Vim-simila"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:18
|
||||
msgid ""
|
||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||
"key on main or result page to get help."
|
||||
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
|
||||
msgid "Image proxy"
|
||||
|
@ -1049,7 +1061,7 @@ msgstr "HTTP-Metodo"
|
|||
|
||||
#: searx/templates/simple/preferences/method.html:14
|
||||
msgid "Change how forms are submitted"
|
||||
msgstr ""
|
||||
msgstr "Ŝanĝi kiel oni sendas formularojn"
|
||||
|
||||
#: searx/templates/simple/preferences/query_in_title.html:2
|
||||
msgid "Query in the page's title"
|
||||
|
@ -1082,6 +1094,8 @@ msgid ""
|
|||
"Perform search immediately if a category selected. Disable to select "
|
||||
"multiple categories"
|
||||
msgstr ""
|
||||
"Fari serĉon tuj se kategorio estas elektita. Malebligi elekti plurajn "
|
||||
"kategoriojn"
|
||||
|
||||
#: searx/templates/simple/preferences/theme.html:2
|
||||
msgid "Theme"
|
||||
|
@ -1117,7 +1131,7 @@ msgstr "Ŝanĝi lingvon de la fasono"
|
|||
|
||||
#: searx/templates/simple/result_templates/code.html:13
|
||||
msgid "repo"
|
||||
msgstr "reposoj"
|
||||
msgstr "Deponejo"
|
||||
|
||||
#: searx/templates/simple/result_templates/default.html:6
|
||||
msgid "show media"
|
||||
|
@ -1138,7 +1152,7 @@ msgstr "Formato"
|
|||
|
||||
#: searx/templates/simple/result_templates/images.html:21
|
||||
msgid "Engine"
|
||||
msgstr "serĉiloj"
|
||||
msgstr "Serĉilo"
|
||||
|
||||
#: searx/templates/simple/result_templates/images.html:22
|
||||
msgid "View source"
|
||||
|
|
Binary file not shown.
|
@ -30,8 +30,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/es/>\n"
|
||||
|
@ -40,8 +40,8 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -168,28 +168,28 @@ msgstr "claro"
|
|||
msgid "dark"
|
||||
msgstr "oscuro"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Ningún artículo encontrado"
|
||||
|
||||
#: 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"
|
||||
msgstr "Fuente"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Parámetros incorrectos, por favor, cambia tus preferencias"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ajustes no válidos"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "error en la búsqueda"
|
||||
|
||||
|
@ -777,6 +777,14 @@ msgstr "Los motores no pueden obtener resultados"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Sugerencias"
|
||||
|
|
Binary file not shown.
|
@ -11,20 +11,19 @@
|
|||
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Estonian <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -151,28 +150,28 @@ msgstr "herge"
|
|||
msgid "dark"
|
||||
msgstr "pime"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Üksust ei leitud"
|
||||
|
||||
#: 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"
|
||||
msgstr "Allikas"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Sobimatud seaded, palun muuda oma eelistusi"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Sobimatud seaded"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "otsingu viga"
|
||||
|
||||
|
@ -745,6 +744,14 @@ msgstr "Mootorid ei saa tulemusi tagastada"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Soovitused"
|
||||
|
@ -1639,3 +1646,4 @@ msgstr "peida video"
|
|||
#~ "me ei leidnud ühtegi tulemust. Palun "
|
||||
#~ "kasuta teist päringut või otsi "
|
||||
#~ "rohkematest kategooriatest."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -13,20 +13,19 @@
|
|||
# alexgabi <alexgabi@disroot.org>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: alexgabi <alexgabi@disroot.org>\n"
|
||||
"Language-Team: Basque <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -153,28 +152,28 @@ msgstr "argia"
|
|||
msgid "dark"
|
||||
msgstr "iluna"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Ez da elementurik aurkitu"
|
||||
|
||||
#: 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"
|
||||
msgstr "Iturria"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Ezarpen baliogabeak, editatu zure hobespenak"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ezarpen baliogabeak"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "bilaketa akatsa"
|
||||
|
||||
|
@ -758,6 +757,14 @@ msgstr "Bilatzaileek ezin dute emaitzarik lortu"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Iradokizunak"
|
||||
|
@ -1666,3 +1673,4 @@ msgstr "ezkutatu bideoa"
|
|||
#~ "ez dugu emaitzarik aurkitu. Mesedez "
|
||||
#~ "beste kontsulta bat egin edo bilatu "
|
||||
#~ "kategoria gehiagotan."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -15,20 +15,19 @@
|
|||
# arashe22 <arashe22@proton.me>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"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-Team: Persian "
|
||||
"<https://translate.codeberg.org/projects/searxng/searxng/fa/>\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -155,28 +154,28 @@ msgstr "روشن"
|
|||
msgid "dark"
|
||||
msgstr "تاریک"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "چیزی پیدا نشد"
|
||||
|
||||
#: 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"
|
||||
msgstr "منبع"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "خطا در بارگزاری صفحه جدید"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "تنظیمات نادرست است، لطفا تنظیمات جستجو را تغییر دهید"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "تنظیمات نادرست"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "خطای جستوجو"
|
||||
|
||||
|
@ -760,6 +759,14 @@ msgstr "موتورها توانایی دریافت نتایج را ندارند"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "پیشنهادها"
|
||||
|
@ -1673,3 +1680,4 @@ msgstr "پنهانسازی ویدئو"
|
|||
#~ "چیزی پیدا نشد. لطفاً ورودی دیگری "
|
||||
#~ "را بیازمایید یا در دستههای بیشتری "
|
||||
#~ "جستوجو کنید."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -10,20 +10,19 @@
|
|||
# artnay <jiri.gronroos@iki.fi>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Finnish <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\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']
|
||||
#: searx/searxng.msg
|
||||
|
@ -150,28 +149,28 @@ msgstr "vaalea"
|
|||
msgid "dark"
|
||||
msgstr "tumma"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Tietuetta ei löytynyt"
|
||||
|
||||
#: 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"
|
||||
msgstr "Lähde"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Virheelliset asetukset, muokkaa siis asetuksia"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Virheelliset asetukset"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "hakuvirhe"
|
||||
|
||||
|
@ -757,6 +756,14 @@ msgstr "Moottorit eivät voi palauttaa tuloksia"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Ehdotukset"
|
||||
|
@ -1678,3 +1685,4 @@ msgstr "piilota video"
|
|||
#~ "löytynyt. Etsi käyttäen eri hakuehtoja "
|
||||
#~ "tai ulota hakusi nykyistä useampiin eri"
|
||||
#~ " luokkiin."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -9,21 +9,20 @@
|
|||
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Filipino <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || "
|
||||
"n % 10 != 6 || n % 10 != 9);\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']
|
||||
#: searx/searxng.msg
|
||||
|
@ -150,28 +149,28 @@ msgstr "maliwanag"
|
|||
msgid "dark"
|
||||
msgstr "madilim"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Walang nakita na aytem"
|
||||
|
||||
#: 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"
|
||||
msgstr "Pinagmulan"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Maling settings, paki ayos ang preferences"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Maling settings"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "nagkaproblema sa paghahanap"
|
||||
|
||||
|
@ -756,6 +755,14 @@ msgstr "Hindi makuha ng engines ang mga resulta"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Mga mungkahi"
|
||||
|
@ -1672,3 +1679,4 @@ msgstr "itago ang video"
|
|||
#~ "wala kaming nakita na resulta. Pakiusap"
|
||||
#~ " na ibahin ang tanong o maghanap "
|
||||
#~ "sa maraming uri."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -20,20 +20,19 @@
|
|||
# quenty_occitania <quentinantonin@free.fr>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: quenty_occitania <quentinantonin@free.fr>\n"
|
||||
"Language-Team: French <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\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']
|
||||
#: searx/searxng.msg
|
||||
|
@ -160,28 +159,28 @@ msgstr "clair"
|
|||
msgid "dark"
|
||||
msgstr "sombre"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Pas d'élément trouvé"
|
||||
|
||||
#: 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"
|
||||
msgstr "Source"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Paramètres non valides, veuillez éditer vos préférences"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Paramètres non valides"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "erreur de recherche"
|
||||
|
||||
|
@ -766,6 +765,14 @@ msgstr "Les moteurs ne peuvent pas récupérer de résultats"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggestions"
|
||||
|
@ -1029,8 +1036,8 @@ msgid ""
|
|||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||
"key on main or result page to get help."
|
||||
msgstr ""
|
||||
"Parcourir les résultats avec les raccourcis clavier (nécessite Javascript). "
|
||||
"Pressez \"h\" sur la page principale pour obtenir de l'aide."
|
||||
"Parcourir les résultats avec les raccourcis clavier (nécessite "
|
||||
"Javascript). Pressez \"h\" sur la page principale pour obtenir de l'aide."
|
||||
|
||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||
msgid "Image proxy"
|
||||
|
@ -1710,3 +1717,4 @@ msgstr "cacher la vidéo"
|
|||
#~ "nous n'avons trouvé aucun résultat. "
|
||||
#~ "Effectuez une autre recherche ou changez"
|
||||
#~ " de catégorie."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -11,8 +11,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-06 07:07+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||
"Last-Translator: ghose <correo@xmgz.eu>\n"
|
||||
"Language-Team: Galician <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/gl/>\n"
|
||||
|
@ -21,8 +21,8 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -149,28 +149,28 @@ msgstr "claro"
|
|||
msgid "dark"
|
||||
msgstr "escuro"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Non se atoparon elementos"
|
||||
|
||||
#: 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"
|
||||
msgstr "Fonte"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Axustes non válidos, por favor edita a configuración"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Axustes non válidos"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "fallo na busca"
|
||||
|
||||
|
@ -752,6 +752,14 @@ msgstr "Os buscadores non obtiveron resultados"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suxestións"
|
||||
|
|
Binary file not shown.
|
@ -15,21 +15,20 @@
|
|||
# shoko <nickskorohod@outlook.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-08 16:53+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-05 21:47+0000\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-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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -156,28 +155,28 @@ msgstr "בהיר"
|
|||
msgid "dark"
|
||||
msgstr "כהה"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "לא נמצא פריט"
|
||||
|
||||
#: 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"
|
||||
msgstr "מקור"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "שגיאה בטעינת העמוד הבא"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "הגדרות לא תקינות, עליך לתקן את ההעדפות שלך"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "הגדרות לא תקינות"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "שגיאת חיפוש"
|
||||
|
||||
|
@ -287,11 +286,11 @@ msgstr "קצב נתונים"
|
|||
|
||||
#: searx/engines/radio_browser.py:107
|
||||
msgid "votes"
|
||||
msgstr ""
|
||||
msgstr "הצבעות"
|
||||
|
||||
#: searx/engines/radio_browser.py:108
|
||||
msgid "clicks"
|
||||
msgstr ""
|
||||
msgstr "לחיצות"
|
||||
|
||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||
msgid "Language"
|
||||
|
@ -754,6 +753,14 @@ msgstr "מנועים לא מסוגלים לאחזר תוצאות"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "הצעות"
|
||||
|
@ -1649,3 +1656,4 @@ msgstr "הסתר וידאו"
|
|||
#~ "use another query or search in "
|
||||
#~ "more categories."
|
||||
#~ msgstr "לא מצאנו תוצאות. אנא נסו שאילתא אחרת או חפשו בתוך יותר קטגוריות."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -15,7 +15,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: hr\n"
|
||||
|
@ -26,7 +26,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -153,28 +153,28 @@ msgstr "svijetlo"
|
|||
msgid "dark"
|
||||
msgstr "tamno"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nije pronađena nijedna stavka"
|
||||
|
||||
#: 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"
|
||||
msgstr "Izvor"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Nevažeće postavke, molimo uredite svoje postavke"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Nevažeće postavke"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "greška u pretraživanju"
|
||||
|
||||
|
@ -750,6 +750,14 @@ msgstr "Tražilice ne mogu dohvatiti rezultate"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Prijedlozi"
|
||||
|
|
Binary file not shown.
|
@ -15,7 +15,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: hu\n"
|
||||
|
@ -25,7 +25,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -152,28 +152,28 @@ msgstr "világos"
|
|||
msgid "dark"
|
||||
msgstr "sötét"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nincs találat"
|
||||
|
||||
#: 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"
|
||||
msgstr "Forrás"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Érvénytelen beállítások, kérlek módosítsd őket"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
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"
|
||||
msgstr "keresési hiba"
|
||||
|
||||
|
@ -757,6 +757,14 @@ msgstr "Nincs találat a keresőmotortól"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Javaslatok"
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: ia\n"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -146,28 +146,28 @@ msgstr ""
|
|||
msgid "dark"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nulle item trovate"
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "Configurationes non valide, per favor, modifica tu preferentias"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Configurationes invalide"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "error in recerca"
|
||||
|
||||
|
@ -735,6 +735,14 @@ msgstr "Le motores non poteva obtener resultatos"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggestiones"
|
||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: id\n"
|
||||
|
@ -19,7 +19,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -146,28 +146,28 @@ msgstr "cerah"
|
|||
msgid "dark"
|
||||
msgstr "gelap"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Item tidak ditemukan"
|
||||
|
||||
#: 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"
|
||||
msgstr "Sumber"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Pengaturan tidak valid, mohon ubah preferensi Anda"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Pengaturan tidak valid"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "kesalahan pencarian"
|
||||
|
||||
|
@ -754,6 +754,14 @@ msgstr "Mesin-mesin tidak dapat mendapatkan hasil"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Saran"
|
||||
|
|
Binary file not shown.
|
@ -26,8 +26,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-10 14:53+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-17 07:07+0000\n"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/it/>\n"
|
||||
|
@ -36,8 +36,8 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -164,28 +164,28 @@ msgstr "chiaro"
|
|||
msgid "dark"
|
||||
msgstr "scuro"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nessun oggetto trovato"
|
||||
|
||||
#: 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"
|
||||
msgstr "Sorgente"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Impostazioni non valide, modifica le tue preferenze"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Impostazioni non valide"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "errore di ricerca"
|
||||
|
||||
|
@ -775,6 +775,14 @@ msgstr "I motori di ricerca non riescono a recuperare risultati"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggerimenti"
|
||||
|
|
Binary file not shown.
|
@ -21,8 +21,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-10 14:53+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||
"Last-Translator: tentsbet <remendne@pentrens.jp>\n"
|
||||
"Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/ja/>\n"
|
||||
|
@ -31,8 +31,8 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -159,28 +159,28 @@ msgstr "ライト"
|
|||
msgid "dark"
|
||||
msgstr "ダーク"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "アイテムが見つかりません"
|
||||
|
||||
#: 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"
|
||||
msgstr "ソース"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "次のページの読み込み中にエラーが発生しました"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "設定が無効です、設定を変更してください"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "無効な設定です"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "検索エラー"
|
||||
|
||||
|
@ -746,6 +746,14 @@ msgstr "エンジンは結果を取得できません"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "提案"
|
||||
|
|
Binary file not shown.
|
@ -11,8 +11,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-09-12 14:53+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-05 21:47+0000\n"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: ko\n"
|
||||
"Language-Team: Korean "
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -148,28 +148,28 @@ msgstr "라이트"
|
|||
msgid "dark"
|
||||
msgstr "다크"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "검색 결과가 없습니다"
|
||||
|
||||
#: 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"
|
||||
msgstr "소스"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다"
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr "잘못된 설정입니다, 설정을 수정하세요"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "잘못된 설정"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "검색 오류"
|
||||
|
||||
|
@ -271,19 +271,19 @@ msgstr "채널"
|
|||
|
||||
#: searx/engines/radio_browser.py:104
|
||||
msgid "radio"
|
||||
msgstr ""
|
||||
msgstr "라디오"
|
||||
|
||||
#: searx/engines/radio_browser.py:106
|
||||
msgid "bitrate"
|
||||
msgstr ""
|
||||
msgstr "비트 레이트"
|
||||
|
||||
#: searx/engines/radio_browser.py:107
|
||||
msgid "votes"
|
||||
msgstr ""
|
||||
msgstr "표"
|
||||
|
||||
#: searx/engines/radio_browser.py:108
|
||||
msgid "clicks"
|
||||
msgstr ""
|
||||
msgstr "clicks"
|
||||
|
||||
#: searx/engines/seekr.py:194 searx/engines/zlibrary.py:129
|
||||
msgid "Language"
|
||||
|
@ -741,6 +741,14 @@ msgstr "결과를 가져올 수 없습니다"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "제안"
|
||||
|
@ -823,23 +831,23 @@ msgstr "죄송합니다!"
|
|||
|
||||
#: searx/templates/simple/messages/no_results.html:4
|
||||
msgid "No results were found. You can try to:"
|
||||
msgstr ""
|
||||
msgstr "검색 결과 없음. 다음을 시도해 보세요:"
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:6
|
||||
msgid "Refresh the page."
|
||||
msgstr ""
|
||||
msgstr "페이지를 새로고침 하세요."
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:7
|
||||
msgid "Search for another query or select another category (above)."
|
||||
msgstr ""
|
||||
msgstr "다른 검색어를 사용하거나 위에서 다른 카테고리를 선택해 주세요."
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:8
|
||||
msgid "Change the search engine used in the preferences:"
|
||||
msgstr ""
|
||||
msgstr "설정에서 사용할 검색엔진 바꾸기:"
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:9
|
||||
msgid "Switch to another instance:"
|
||||
msgstr ""
|
||||
msgstr "다른 인스터스를 사용해 주세요:"
|
||||
|
||||
#: searx/templates/simple/preferences/answerers.html:4
|
||||
#: searx/templates/simple/preferences/engines.html:17
|
||||
|
@ -980,17 +988,19 @@ msgstr "뒤로"
|
|||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||
msgid "Hotkeys"
|
||||
msgstr ""
|
||||
msgstr "단축키"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||
msgid "Vim-like"
|
||||
msgstr ""
|
||||
msgstr "vim 형식"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:18
|
||||
msgid ""
|
||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||
"key on main or result page to get help."
|
||||
msgstr ""
|
||||
"단축키를 이용해 검색결과를 탐색합니다 (Javascript 필요). 검색결과 페이지나 홈페이지에서 'h'를 눌러 도움말을 볼수 "
|
||||
"있습니다."
|
||||
|
||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||
msgid "Image proxy"
|
||||
|
@ -1054,7 +1064,7 @@ msgstr "특정 카테고리 검색"
|
|||
msgid ""
|
||||
"Perform search immediately if a category selected. Disable to select "
|
||||
"multiple categories"
|
||||
msgstr ""
|
||||
msgstr "카테고리 선택후 즉시 검색을 합니다. 한개 이상의 카테고리를 선택하면 비활성화됩니다"
|
||||
|
||||
#: searx/templates/simple/preferences/theme.html:2
|
||||
msgid "Theme"
|
||||
|
|
Binary file not shown.
|
@ -12,7 +12,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: lt\n"
|
||||
|
@ -24,7 +24,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -151,28 +151,28 @@ msgstr "šviesi"
|
|||
msgid "dark"
|
||||
msgstr "tamsi"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Elementų nerasta"
|
||||
|
||||
#: 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"
|
||||
msgstr "Šaltinis"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Neteisingi nustatymai, pakeiskite savo nuostatas"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Neteisingi nustatymai"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "paieškos klaida"
|
||||
|
||||
|
@ -754,6 +754,14 @@ msgstr "Sistemos negali gauti rezultatų"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Pasiūlymai"
|
||||
|
|
Binary file not shown.
|
@ -10,19 +10,18 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Latvian <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -149,28 +148,28 @@ msgstr "gaišs"
|
|||
msgid "dark"
|
||||
msgstr "tumšs"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nav atrasts neviens vienums"
|
||||
|
||||
#: 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"
|
||||
msgstr "Avots"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Nepareizi iestatījumi, lūdzu rediģējiet savas preferences"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Nederīgi iestatījumi"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "meklēšanas kļūda"
|
||||
|
||||
|
@ -305,15 +304,16 @@ msgid ""
|
|||
" WebP."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid ""
|
||||
"The image is too simple to find matches. TinEye requires a basic level of"
|
||||
" visual detail to successfully identify matches."
|
||||
msgstr ""
|
||||
"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."
|
||||
"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."
|
||||
|
||||
#: searx/engines/tineye.py:52
|
||||
msgid "The image could not be downloaded."
|
||||
|
@ -358,8 +358,8 @@ msgstr "Resursdatora vārda nomaiņa"
|
|||
#: searx/plugins/hostname_replace.py:10
|
||||
msgid "Rewrite result hostnames or remove results based on the hostname"
|
||||
msgstr ""
|
||||
"Pārrakstīt rezultātu saimniekvārdus vai noņemt rezultātus, pamatojoties uz "
|
||||
"saimniekvārdu"
|
||||
"Pārrakstīt rezultātu saimniekvārdus vai noņemt rezultātus, pamatojoties "
|
||||
"uz saimniekvārdu"
|
||||
|
||||
#: searx/plugins/oa_doi_rewrite.py:9
|
||||
msgid "Open Access DOI rewrite"
|
||||
|
@ -370,8 +370,8 @@ msgid ""
|
|||
"Avoid paywalls by redirecting to open-access versions of publications "
|
||||
"when available"
|
||||
msgstr ""
|
||||
"Izvairieties no maksas sienām, novirzot uz publikāciju atvērtās piekļuves "
|
||||
"versijām, ja tās ir pieejamas"
|
||||
"Izvairieties no maksas sienām, novirzot uz publikāciju atvērtās piekļuves"
|
||||
" versijām, ja tās ir pieejamas"
|
||||
|
||||
#: searx/plugins/self_info.py:10
|
||||
msgid "Self Information"
|
||||
|
@ -382,8 +382,8 @@ msgid ""
|
|||
"Displays your IP if the query is \"ip\" and your user agent if the query "
|
||||
"contains \"user agent\"."
|
||||
msgstr ""
|
||||
"Tiek parādīts jūsu IP, ja pieprasījums ir \"ip\", un jūsu lietotāja aģents, "
|
||||
"ja pieprasījumā ir \"user agent\"."
|
||||
"Tiek parādīts jūsu IP, ja pieprasījums ir \"ip\", un jūsu lietotāja "
|
||||
"aģents, ja pieprasījumā ir \"user agent\"."
|
||||
|
||||
#: searx/plugins/tor_check.py:25
|
||||
msgid "Tor check plugin"
|
||||
|
@ -748,6 +748,14 @@ msgstr ""
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
@ -1387,3 +1395,4 @@ msgstr "slēpt video"
|
|||
#~ "use another query or search in "
|
||||
#~ "more categories."
|
||||
#~ msgstr ""
|
||||
|
||||
|
|
|
@ -8,14 +8,14 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -142,28 +142,28 @@ msgstr ""
|
|||
msgid "dark"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr ""
|
||||
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:492 searx/webapp.py:888
|
||||
#: searx/webapp.py:493 searx/webapp.py:889
|
||||
msgid "Invalid settings, please edit your preferences"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr ""
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr ""
|
||||
|
||||
|
@ -727,6 +727,14 @@ msgstr ""
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr ""
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -12,7 +12,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: alma <alma@users.noreply.translate.codeberg.org>\n"
|
||||
"Language: ms\n"
|
||||
|
@ -22,7 +22,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -149,28 +149,28 @@ msgstr "terang"
|
|||
msgid "dark"
|
||||
msgstr "gelap"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "barang tidak dijumpai"
|
||||
|
||||
#: 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"
|
||||
msgstr "Punca"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Kesilapan tetapan, sila ubahsuai pilihan"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Tetapan tidak sah"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "ralat pencarian"
|
||||
|
||||
|
@ -748,6 +748,14 @@ msgstr ""
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Cadangan"
|
||||
|
|
Binary file not shown.
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: nb_NO\n"
|
||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -148,28 +148,28 @@ msgstr "lys"
|
|||
msgid "dark"
|
||||
msgstr "mørk"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Fant ingen elementer"
|
||||
|
||||
#: 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"
|
||||
msgstr "Kilde"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Ugyldige innstillinger, rediger dine preferanser"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ugyldige innstillinger"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "søkefeil"
|
||||
|
||||
|
@ -753,6 +753,14 @@ msgstr "Søkemotorer kan ikke motta resultater"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Forslag"
|
||||
|
|
Binary file not shown.
|
@ -21,8 +21,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-17 13:53+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 13:13+0000\n"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/nl/>\n"
|
||||
|
@ -31,8 +31,8 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"X-Generator: Weblate 5.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -159,28 +159,28 @@ msgstr "licht"
|
|||
msgid "dark"
|
||||
msgstr "donker"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Er is geen resultaat gevonden"
|
||||
|
||||
#: 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"
|
||||
msgstr "Bron"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "De instellingen zijn ongeldig - werk ze bij"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Ongeldige instellingen"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "zoekfout"
|
||||
|
||||
|
@ -769,6 +769,14 @@ msgstr "Zoekmachines konden geen resultaten ophalen"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggesties"
|
||||
|
@ -851,7 +859,7 @@ msgstr "Sorry!"
|
|||
|
||||
#: searx/templates/simple/messages/no_results.html:4
|
||||
msgid "No results were found. You can try to:"
|
||||
msgstr ""
|
||||
msgstr "Geen zoekresultaten. Probeer:"
|
||||
|
||||
#: searx/templates/simple/messages/no_results.html:6
|
||||
msgid "Refresh the page."
|
||||
|
@ -859,15 +867,15 @@ msgstr "Ververs de pagina"
|
|||
|
||||
#: searx/templates/simple/messages/no_results.html:7
|
||||
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
|
||||
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
|
||||
msgid "Switch to another instance:"
|
||||
msgstr ""
|
||||
msgstr "Verbind met een andere instance:"
|
||||
|
||||
#: searx/templates/simple/preferences/answerers.html:4
|
||||
#: searx/templates/simple/preferences/engines.html:17
|
||||
|
@ -1021,7 +1029,7 @@ msgstr "Terug"
|
|||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:2
|
||||
msgid "Hotkeys"
|
||||
msgstr ""
|
||||
msgstr "Sneltoetsen"
|
||||
|
||||
#: searx/templates/simple/preferences/hotkeys.html:13
|
||||
msgid "Vim-like"
|
||||
|
|
Binary file not shown.
|
@ -9,20 +9,19 @@
|
|||
# quenty_occitania <quentinantonin@free.fr>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2023-10-05 09:01+0000\n"
|
||||
"PO-Revision-Date: 2023-10-27 07:07+0000\n"
|
||||
"POT-Creation-Date: 2023-11-11 15:25+0000\n"
|
||||
"PO-Revision-Date: 2023-11-04 18:13+0000\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-Team: Occitan "
|
||||
"<https://translate.codeberg.org/projects/searxng/searxng/oc/>\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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']
|
||||
#: searx/searxng.msg
|
||||
|
@ -149,28 +148,28 @@ msgstr "clar"
|
|||
msgid "dark"
|
||||
msgstr "fosc"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Cap d’element pas trobat"
|
||||
|
||||
#: 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"
|
||||
msgstr "Font"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Paramètre pas valide, mercés de modificar vòstras preferéncias"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Paramètres invalids"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "error de recèrca"
|
||||
|
||||
|
@ -295,8 +294,8 @@ msgid ""
|
|||
"{numCitations} citations from the year {firstCitationVelocityYear} to "
|
||||
"{lastCitationVelocityYear}"
|
||||
msgstr ""
|
||||
"{numCitations} citacions dempuèi l’annada {firstCitationVelocityYear} fins a "
|
||||
"{lastCitationVelocityYear}"
|
||||
"{numCitations} citacions dempuèi l’annada {firstCitationVelocityYear} "
|
||||
"fins a {lastCitationVelocityYear}"
|
||||
|
||||
#: searx/engines/tineye.py:40
|
||||
msgid ""
|
||||
|
@ -469,7 +468,7 @@ msgstr "Politica de confidencialitat"
|
|||
|
||||
#: searx/templates/simple/base.html:78
|
||||
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
|
||||
msgid "Click on the magnifier to perform search"
|
||||
|
@ -740,6 +739,14 @@ msgstr "Los cercadors pòdons pas recuperar los resultats"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Suggestions"
|
||||
|
@ -1634,3 +1641,4 @@ msgstr "escondre la vidèo"
|
|||
#~ "avèm pas trobat cap de resultat. "
|
||||
#~ "Mercés d'utilizar une autre mot clau "
|
||||
#~ "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.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language-Team: Polish <https://translate.codeberg.org/projects/searxng/"
|
||||
"searxng/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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\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"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -155,28 +154,28 @@ msgstr "jasny"
|
|||
msgid "dark"
|
||||
msgstr "ciemny"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nie znaleziono elementu"
|
||||
|
||||
#: 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"
|
||||
msgstr "Źródło"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Nieprawidłowe ustawienia, zmień swoje preferencje"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Nieprawidłowe ustawienia"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "błąd wyszukiwania"
|
||||
|
||||
|
@ -760,6 +759,14 @@ msgstr "Wyszukiwarki nie mogą pobrać wyników"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Propozycje"
|
||||
|
@ -1685,3 +1692,4 @@ msgstr "ukryj wideo"
|
|||
#~ "nie znaleźliśmy żadnych wyników. Użyj "
|
||||
#~ "innego zapytania lub wyszukaj więcej "
|
||||
#~ "kategorii."
|
||||
|
||||
|
|
Binary file not shown.
|
@ -17,7 +17,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: searx\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"
|
||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||
"Language: pt\n"
|
||||
|
@ -27,7 +27,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -154,28 +154,28 @@ msgstr "claro"
|
|||
msgid "dark"
|
||||
msgstr "escuro"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nenhum item encontrado"
|
||||
|
||||
#: 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"
|
||||
msgstr "Fonte"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Definições inválidas, por favor edite as suas preferências"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Configurações inválidas"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "erro de procura"
|
||||
|
||||
|
@ -759,6 +759,14 @@ msgstr "Mecanismos não podem recuperar resultados"
|
|||
msgid "Search URL"
|
||||
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
|
||||
msgid "Suggestions"
|
||||
msgstr "Sugestões"
|
||||
|
|
Binary file not shown.
|
@ -23,20 +23,19 @@
|
|||
# Coccocoas_Helper <coccocoahelper@gmail.com>, 2023.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: searx\n"
|
||||
"Project-Id-Version: searx\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"
|
||||
"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-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"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
"Generated-By: Babel 2.12.1\n"
|
||||
"Generated-By: Babel 2.13.1\n"
|
||||
|
||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||
#: searx/searxng.msg
|
||||
|
@ -163,28 +162,28 @@ msgstr "claro"
|
|||
msgid "dark"
|
||||
msgstr "escuro"
|
||||
|
||||
#: searx/webapp.py:331
|
||||
#: searx/webapp.py:332
|
||||
msgid "No item found"
|
||||
msgstr "Nenhum item encontrado"
|
||||
|
||||
#: 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"
|
||||
msgstr "Fonte"
|
||||
|
||||
#: searx/webapp.py:335
|
||||
#: searx/webapp.py:336
|
||||
msgid "Error loading the next page"
|
||||
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"
|
||||
msgstr "Configurações inválidas, por favor, edite suas preferências"
|
||||
|
||||
#: searx/webapp.py:508
|
||||
#: searx/webapp.py:509
|
||||
msgid "Invalid settings"
|
||||
msgstr "Configurações inválidas"
|
||||
|
||||
#: searx/webapp.py:585 searx/webapp.py:667
|
||||
#: searx/webapp.py:586 searx/webapp.py:668
|
||||
msgid "search error"
|
||||
msgstr "erro de busca"
|
||||
|
||||
|
@ -771,6 +770,14 @@ msgstr "Os motores de busca não conseguiram obter resultados"
|
|||
msgid "Search 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
|
||||
msgid "Suggestions"
|
||||
msgstr "Sugestões"
|
||||
|
@ -1107,8 +1114,8 @@ msgid ""
|
|||
"Perform search immediately if a category selected. Disable to select "
|
||||
"multiple categories"
|
||||
msgstr ""
|
||||
"Faça a busca imediatamente se existir uma categoria selecionada. Desabilite "
|
||||
"para selecionar múltiplas categorias"
|
||||
"Faça a busca imediatamente se existir uma categoria selecionada. "
|
||||
"Desabilite para selecionar múltiplas categorias"
|
||||
|
||||
#: searx/templates/simple/preferences/theme.html:2
|
||||
msgid "Theme"
|
||||
|
@ -1712,3 +1719,4 @@ msgstr "ocultar vídeo"
|
|||
#~ "Não encontramos nenhum resultado. Utilize "
|
||||
#~ "outra consulta ou pesquisa em mais "
|
||||
#~ "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