Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Arcane Spark 2024-08-13 14:41:11 +02:00
commit 4e3dcf9dff
117 changed files with 6723 additions and 6596 deletions

View file

@ -13,7 +13,7 @@ sphinx-jinja==2.0.2
sphinx-tabs==3.4.5
sphinxcontrib-programoutput==0.17
sphinx-autobuild==2021.3.14
sphinx-notfound-page==1.0.2
sphinx-notfound-page==1.0.4
myst-parser==3.0.1
linuxdoc==20240509
aiounittest==1.4.2

View file

@ -1,18 +1,18 @@
certifi==2024.7.4
babel==2.15.0
babel==2.16.0
flask-babel==4.0.0
flask==3.0.3
jinja2==3.1.4
lxml==5.2.2
pygments==2.18.0
python-dateutil==2.9.0.post0
pyyaml==6.0.1
pyyaml==6.0.2
httpx[http2]==0.24.1
Brotli==1.1.0
uvloop==0.19.0
httpx-socks[asyncio]==0.7.7
setproctitle==1.3.3
redis==5.0.7
redis==5.0.8
markdown-it-py==3.0.0
fasttext-predict==0.9.2.2
pytomlpp==1.0.13; python_version < '3.11'

File diff suppressed because it is too large Load diff

View file

@ -334,9 +334,11 @@ def response(resp):
# results --> answer
answer_list = eval_xpath(dom, '//div[contains(@class, "LGOjhe")]')
for item in answer_list:
for bubble in eval_xpath(item, './/div[@class="nnFGuf"]'):
bubble.drop_tree()
results.append(
{
'answer': item.xpath("normalize-space()"),
'answer': extract_text(item),
'url': (eval_xpath(item, '../..//a/@href') + [None])[0],
}
)

View file

@ -1,35 +0,0 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring
from flask_babel import gettext
from searx.plugins import logger
name = gettext('Hostname replace')
description = "Deprecated / contact system admin to configure 'Hostnames plugin'!!"
default_on = False
preference_section = 'general'
plugin_id = 'hostname_replace'
logger = logger.getChild(plugin_id)
REPORTED = False
def deprecated_msg():
global REPORTED # pylint: disable=global-statement
if REPORTED:
return
logger.error(
"'Hostname replace' plugin is deprecated and will be dropped soon!"
" Configure 'Hostnames plugin':"
" https://docs.searxng.org/src/searx.plugins.hostnames.html"
)
REPORTED = True
def on_result(_request, _search, result):
# pylint: disable=import-outside-toplevel, cyclic-import
from searx.plugins.hostnames import on_result as hostnames_on_result
deprecated_msg()
return hostnames_on_result(_request, _search, result)

View file

@ -3,16 +3,6 @@
"""In addition to rewriting/replace reslut URLs, the *hoostnames* plugin offers
other features.
.. attention::
The 'Hostnames plugin' from `PR-3463
<https://github.com/searxng/searxng/pull/3463>`_ is a rewrite of the
'Hostname replace' plugin. Backwards compatibility is guaranteed for a
transitional period, but this will end soon.
**To maintainers of SearXNG instances, please modify your old plugin config
to the new.**
- ``hostnames.replace``: A **mapping** of regular expressions to hostnames to be
replaced by other hostnames.
@ -129,29 +119,8 @@ def _load_regular_expressions(settings_key):
return {}
# compatibility fallback for old hostname replace plugin
# TODO: remove in the future once most/all instance maintainers finished migrating # pylint: disable=fixme
def _load_regular_expressions_with_fallback(settings_key):
expressions = _load_regular_expressions(settings_key)
if expressions:
return expressions
# fallback to the old `hostname_replace` settings format
# pylint: disable=import-outside-toplevel, cyclic-import
hostname_replace_config = settings.get('hostname_replace', {})
if hostname_replace_config:
from searx.plugins.hostname_replace import deprecated_msg
deprecated_msg()
if settings_key == 'replace':
return {re.compile(p): r for (p, r) in hostname_replace_config.items() if r}
return {re.compile(p) for (p, r) in hostname_replace_config.items() if not r}
replacements = _load_regular_expressions_with_fallback('replace')
removables = _load_regular_expressions_with_fallback('remove')
replacements = _load_regular_expressions('replace')
removables = _load_regular_expressions('remove')
high_priority = _load_regular_expressions('high_priority')
low_priority = _load_regular_expressions('low_priority')

View file

@ -15,18 +15,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-09 15:18+0000\n"
"Last-Translator: notlmutsaers <notlmutsaers@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Afrikaans <https://translate.codeberg.org/projects/searxng/"
"searxng/af/>\n"
"Last-Translator: notlmutsaers "
"<notlmutsaers@users.noreply.translate.codeberg.org>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -315,17 +314,17 @@ msgid "author"
msgstr "outeur"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "oop"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "toe"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "geantwoord"
@ -418,19 +417,19 @@ msgstr "{minutes} minute terug"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ure, {minutes} minute terug"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Ewekansige getal genereerder"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Genereer verskillende ewekansige waardes"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistiese funksies"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Verwerk {functions} van die argumente"
@ -463,7 +462,7 @@ msgid "clicks"
msgstr "klikke"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Taal"
@ -498,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Die prent kon nie afgelaai word nie."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "boekgradering"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Lêer kwaliteit"
@ -518,19 +517,15 @@ msgstr "Skakel snare om na verskillende hash digests."
msgid "hash digest"
msgstr "hash digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "vervang Gasheernaam"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Gasheername-inprop"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Herskryf gasheername, verwyder resultate of prioritiseer dit op grond van "
"die gasheernaam"
"Herskryf gasheername, verwyder resultate of prioritiseer dit op grond van"
" die gasheernaam"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -675,17 +670,21 @@ msgid "Length"
msgstr "Lengte"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Outeur"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "gekas"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "gevolmagtig"
@ -958,12 +957,12 @@ msgstr "Voorstelle"
msgid "Search language"
msgstr "Soek taal"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Verstek taal"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Outo-bespeur"
@ -1684,3 +1683,7 @@ msgstr "versteek video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "vervang Gasheernaam"

View file

@ -20,20 +20,19 @@
# geekom13 <geekom13@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-01 00:18+0000\n"
"Last-Translator: geekom13 <geekom13@users.noreply.translate.codeberg.org>\n"
"Language-Team: Arabic <https://translate.codeberg.org/projects/searxng/"
"searxng/ar/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
"Last-Translator: nebras <nebras@users.noreply.translate.codeberg.org>\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"
"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.6.1\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -322,17 +321,17 @@ msgid "author"
msgstr "الكاتب"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "مفتوح"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "مغلق"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "أُجيبت"
@ -425,19 +424,19 @@ msgstr "قبل دقائق"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "قبل {hours} ساعات، {minutes} دقائق"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "مولّد قيمة عشوائية"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "توليد قِيم عشوائية مختلفة"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "الدالات الإحصائية"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "حوسبة معطيات ال{functions}"
@ -470,7 +469,7 @@ msgid "clicks"
msgstr "نقرات"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "اللغة"
@ -503,11 +502,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "لا يمكن تنزيل الصورة."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "تقييم الكتاب"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "جودة الملف"
@ -523,15 +522,11 @@ msgstr "يحول السلسلة إلى ملخص التجزئة."
msgid "hash digest"
msgstr "ملخص التجزئة"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "استبدال اسم المضيف"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "مُلحق لأسماء المضيفين (Hostnames)"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"أعِد كتابة أسماء المضيفين (hostnames) أو أزِل النتائج أو حدّد أولوياتها "
@ -677,17 +672,21 @@ msgid "Length"
msgstr "الطول"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "المشاهدات"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "الكاتب"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "النسخة المخبأة"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "المخدم البروكسي"
@ -958,12 +957,12 @@ msgstr "الإقتراحات"
msgid "Search language"
msgstr "لغة البحث"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "اللغة الإفتراضية"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "الاكتشاف التلقائي"
@ -1937,3 +1936,7 @@ msgstr "إخفاء الفيديو"
#~ msgid "TiB"
#~ msgstr "تيرابيت"
#~ msgid "Hostname replace"
#~ msgstr "استبدال اسم المضيف"

View file

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-05-25 08:18+0000\n"
"Last-Translator: krlsk <krlsk@users.noreply.translate.codeberg.org>\n"
"Language: bg\n"
@ -314,17 +314,17 @@ msgid "author"
msgstr "Автор"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -417,19 +417,19 @@ msgstr "преди {minutes} минута(минути)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "преди {hours} час(ове), {minutes} минута(минути)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Генератор на произволни стойности"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Генерирайте различни произволни стойности"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Функции за статистика"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Изчислете {functions} на аргументите"
@ -462,7 +462,7 @@ msgid "clicks"
msgstr "клика"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Език"
@ -497,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Снимката не може да бъде смъкната."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Рейтинг на книги"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Качество на файл"
@ -517,15 +517,11 @@ msgstr "Преобразува низове в различни хаш-извл
msgid "hash digest"
msgstr "хеш извлечение"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Замяна на името на хоста"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -665,17 +661,21 @@ msgid "Length"
msgstr "Дължина"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Автор"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "кеширана"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "прекарана"
@ -950,12 +950,12 @@ msgstr "Предложения"
msgid "Search language"
msgstr "Език на търсене"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Основен език"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Автоматично разпознаване"
@ -1940,3 +1940,6 @@ msgstr "скрий видеото"
#~ msgid "TiB"
#~ msgstr "терабайт"
#~ msgid "Hostname replace"
#~ msgstr "Замяна на името на хоста"

View file

@ -18,18 +18,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-27 19:18+0000\n"
"Last-Translator: MonsoonRain <MonsoonRain@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Bengali <https://translate.codeberg.org/projects/searxng/"
"searxng/bn/>\n"
"Last-Translator: MonsoonRain "
"<MonsoonRain@users.noreply.translate.codeberg.org>\n"
"Language: bn\n"
"Language-Team: Bengali "
"<https://translate.codeberg.org/projects/searxng/searxng/bn/>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -318,17 +317,17 @@ msgid "author"
msgstr "লেখক"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "খুলো"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "বন্ধ"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "উত্তরকৃত"
@ -421,19 +420,19 @@ msgstr "{minutes} মিনিট আগে"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "এলোমেলো মান জেনারেটর"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "বিভিন্ন এলোমেলো মান তৈরি করুন"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "পরিসংখ্যান কার্যাবলী"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "আর্গুমেন্টগুলির {functions} গণনা করুন৷"
@ -466,7 +465,7 @@ msgid "clicks"
msgstr "ক্লিক সংখ্যা"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "ভাষা"
@ -500,11 +499,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "ছবিটি ডাউনলোড করা যায়নি ।"
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "বই পর্যালোচনা"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "নথি মান"
@ -520,15 +519,11 @@ msgstr "স্ট্রিংগুলিকে বিভিন্ন হ্য
msgid "hash digest"
msgstr "হ্যাশ ডাইজেস্ট"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "হোস্টনাম প্রতিস্থাপন"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "হোস্টনেম প্লাগিন"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr "হোস্টনাম পুনর্লিখন করো, ফলাফল অপসারণ করো বা হোস্টনামের ভিত্তিতে সাজাও"
@ -673,17 +668,21 @@ msgid "Length"
msgstr "দৈর্ঘ্য"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "লেখক"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "ক্যাশকৃত"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "প্রক্সিকৃত"
@ -958,12 +957,12 @@ msgstr "প্রস্তাবিত"
msgid "Search language"
msgstr "সার্চের ভাষা"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "পূর্বনির্ধারিত ভাষা"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "স্বয়ং সনাক্ত"
@ -1696,3 +1695,7 @@ msgstr "ভিডিও লুকিয়ে ফেলুন"
#~ msgid "TiB"
#~ msgstr "টেবা"
#~ msgid "Hostname replace"
#~ msgstr "হোস্টনাম প্রতিস্থাপন"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2023-06-02 07:07+0000\n"
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
"Language: bo\n"
@ -308,17 +308,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -411,19 +411,19 @@ msgstr "སྐར་མ་ {minutes} སྔོན་ལ།"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "ངེས་མེད་གྲངས་ཀ་མཁོ་སྤྲོད།"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "ངེས་མེད་གྲངས་ཀ་ཁ་ཤས་ཐོབ་པར་བྱེད།"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "སྡོམ་བརྩིས་ཀྱི་བྱེད་ནུས།"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "{functions} གཞི་གྲངས་གྲངས་རྩིས།"
@ -456,7 +456,7 @@ msgid "clicks"
msgstr ""
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr ""
@ -483,11 +483,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr ""
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr ""
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr ""
@ -503,15 +503,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr ""
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -645,17 +641,21 @@ msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "འདྲ་བཤུས་རྒྱབ་ཚར།"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "མངག་བཅོལ་བྱེད་ཟིན།"
@ -926,12 +926,12 @@ msgstr "འོས་སྦྱོས།"
msgid "Search language"
msgstr "འཚོལ་བཤེར་ནང་དོན་མཚོན་བྱེད་ཀྱི་སྐད་རིགས།"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "གཞི་བཞག་སྐད་རིགས།"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1859,3 +1859,6 @@ msgstr "རྙན་ཟློས་སྦས།"
#~ msgid "TiB"
#~ msgstr "TB"
#~ msgid "Hostname replace"
#~ msgstr ""

View file

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-04-06 00:18+0000\n"
"Last-Translator: sserra <sserra@users.noreply.translate.codeberg.org>\n"
"Language: ca\n"
@ -319,17 +319,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -422,19 +422,19 @@ msgstr "fa {minutes} minut(s)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "fa {hours} hores i {minutes} minut(s)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generador de valors aleatoris"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Genera diferents valors aleatoris"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funcions estadístiques"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcula {functions} dels arguments"
@ -467,7 +467,7 @@ msgid "clicks"
msgstr "clics"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Llengua"
@ -501,11 +501,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "No s'ha pogut baixar la imatge."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Valoració de llibre"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Qualitat del fitxer"
@ -521,15 +521,11 @@ msgstr "Converteix cadenes en diferents empremtes de hash."
msgid "hash digest"
msgstr "resum del hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Substitució del nom de l'amfitrió"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -672,17 +668,21 @@ msgid "Length"
msgstr "Longitud"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en memòria cau"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "en servidor intermediari"
@ -957,12 +957,12 @@ msgstr "Suggeriments"
msgid "Search language"
msgstr "Llengua de cerca"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Llengua predeterminada"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Detecció automàtica"
@ -1957,3 +1957,6 @@ msgstr "oculta el vídeo"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Substitució del nom de l'amfitrió"

View file

@ -16,20 +16,19 @@
# Fjuro <fjuro@alius.cz>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-22 11:18+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
"Last-Translator: Fjuro <fjuro@alius.cz>\n"
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
"searxng/cs/>\n"
"Language: cs\n"
"Language-Team: Czech "
"<https://translate.codeberg.org/projects/searxng/searxng/cs/>\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && "
"n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -318,17 +317,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "otevřené"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "zavřené"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "zodpovězené"
@ -421,19 +420,19 @@ msgstr "před {minutes} minutami"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "před {hours} hodinami, {minutes} minutami"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generátor náhodných hodnot"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generování náhodných hodnot"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistické funkce"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Výpočet funkcí {functions} pro daný argument"
@ -466,7 +465,7 @@ msgid "clicks"
msgstr "kliknutí"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Jazyk"
@ -500,11 +499,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Obrázek se nepodařilo stáhnout."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Hodnocení knih"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Množství souborů"
@ -520,15 +519,11 @@ msgstr "Převádí řetězce na různé hash hodnoty."
msgid "hash digest"
msgstr "hash hodnota"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Nahrazení adresy serveru"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Doplněk hostitelských jmen"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Přepsat hostitelská jména, odstranit výsledky nebo je prioritizovat na "
@ -673,17 +668,21 @@ msgid "Length"
msgstr "Délka"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Zhlédnutí"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "archivovaná verze"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "přes proxy"
@ -956,12 +955,12 @@ msgstr "Návrhy"
msgid "Search language"
msgstr "Jazyk hledání"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Výchozí jazyk"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatická detekce"
@ -1945,3 +1944,7 @@ msgstr "skrýt video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Nahrazení adresy serveru"

View file

@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
"Last-Translator: EifionLlwyd "
"<EifionLlwyd@users.noreply.translate.codeberg.org>\n"
"Language: cy\n"
@ -314,17 +314,17 @@ msgid "author"
msgstr "awdur"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "ar agor"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "ar gau"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "wedi'i ateb"
@ -417,19 +417,19 @@ msgstr "{minutes} munud yn ôl"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} awr, {minutes} munud yn ôl"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Cynhyrchydd hapwerthoedd"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Cynhyrchu gwahanol werthoedd ar hap"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Swyddogaethau ystadegau"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Compute {functions} o'r dadleuon"
@ -462,7 +462,7 @@ msgid "clicks"
msgstr "cliciau"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Iaith"
@ -497,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Doedd dim modd islwytho'r ddelwedd."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Gradd llyfr"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "ansawdd ffeil"
@ -517,15 +517,11 @@ msgstr "Trosi llinynnau i wahanol dreuliadau hash."
msgid "hash digest"
msgstr "Digon o hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Disodli enwau gwesteiwyr"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Ategyn enwau gwesteiwyr"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Newid, tynnu neu flaenoriaethu canlyniadau yn seiliedig ar yr enw "
@ -557,11 +553,11 @@ msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
msgstr "Eich cyfeiriad IP: "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
msgstr "Eich asiant defnyddiwr: "
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
@ -674,17 +670,21 @@ msgid "Length"
msgstr "Hyd"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Awdur"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "wedi'i storio"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "wedi'i ddirprwyo"
@ -722,7 +722,7 @@ msgstr "Gweld logiau gwallau a chyflwyno adroddiad nam"
#: searx/templates/simple/preferences.html:74
msgid "!bang for this engine"
msgstr ""
msgstr "!bang y peiriant hwn"
#: searx/templates/simple/preferences.html:80
msgid "!bang for its categories"
@ -957,12 +957,12 @@ msgstr "Awgrymiadau"
msgid "Search language"
msgstr "Iaith chwilio"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Iaith ragosodedig"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Canfod yn awtomatig"
@ -1199,7 +1199,7 @@ msgstr "Pwysau"
#: searx/templates/simple/preferences/engines.html:33
msgid "Max time"
msgstr ""
msgstr "Amser hiraf"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
@ -1303,7 +1303,7 @@ msgstr "Hidlo cynnwys"
#: searx/templates/simple/preferences/search_on_category_select.html:2
msgid "Search on category select"
msgstr ""
msgstr "Chwilio ar unwaith wrth ddewis categori"
#: searx/templates/simple/preferences/search_on_category_select.html:14
msgid ""
@ -1327,7 +1327,7 @@ msgstr "Arddull y thema"
#: searx/templates/simple/preferences/theme.html:31
msgid "Choose auto to follow your browser settings"
msgstr ""
msgstr "Dewiswch yr opsiwn awtomatig i ddilyn gosodiadau eich porwr"
#: searx/templates/simple/preferences/tokens.html:2
msgid "Engine tokens"
@ -1910,3 +1910,6 @@ msgstr "cuddio'r fideo"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Disodli enwau gwesteiwyr"

View file

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -312,17 +312,17 @@ msgid "author"
msgstr "forfatter"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Åbn"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -415,19 +415,19 @@ msgstr "for {minutes} minut(ter) siden"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "for {hours} time(r) og {minutes} minut(ter) siden"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator af tilfældig værdi"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generér forskellige tilfældige værdier"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistiske funktioner"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Beregn {functions} af parametrene"
@ -460,7 +460,7 @@ msgid "clicks"
msgstr "Klik"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Sprog"
@ -495,11 +495,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Dette billede kunne ikke downloades."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Bogbedømmelse"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Filkvalitet"
@ -515,15 +515,11 @@ msgstr "Konverterer strenge til forskellige hash-digests."
msgid "hash digest"
msgstr "hash-digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Værtsnavn erstat"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -666,17 +662,21 @@ msgid "Length"
msgstr "Længde"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Forfatter"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "cachet"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "viderestillet"
@ -951,12 +951,12 @@ msgstr "Forslag"
msgid "Search language"
msgstr "Søgesprog"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Standardsprog"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatisk registrering"
@ -1944,3 +1944,6 @@ msgstr "skjul video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Værtsnavn erstat"

View file

@ -24,19 +24,19 @@
# German <German@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-13 12:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
"searxng/de/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: de\n"
"Language-Team: German "
"<https://translate.codeberg.org/projects/searxng/searxng/de/>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -325,17 +325,17 @@ msgid "author"
msgstr "Autor/-in"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "offen"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "geschlossen"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "beantwortet"
@ -428,19 +428,19 @@ msgstr "vor {minutes} Minute(n)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "vor {hours} Stunde(n), {minutes} Minute(n)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Zufallswertgenerator"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Erzeugt diverse Zufallswerte"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikfunktionen"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "{functions} der Argumente berechnen"
@ -473,7 +473,7 @@ msgid "clicks"
msgstr "Clicks"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Sprache"
@ -508,11 +508,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Das Bild konnte nicht heruntergeladen werden."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Buchbewertung"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Dateiqualität"
@ -528,15 +528,11 @@ msgstr "Konvertiert Zeichenketten in verschiedene Hashwerte."
msgid "hash digest"
msgstr "Hashwert"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Hostnamen ändern"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Hostnames plugin"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Umschreiben von Hostnamen, Entfernen von Ergebnissen oder Priorisieren "
@ -685,17 +681,21 @@ msgid "Length"
msgstr "Länge"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Aufrufe"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "Im Cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxy"
@ -972,12 +972,12 @@ msgstr "Vorschläge"
msgid "Search language"
msgstr "Such-Sprache/-Region"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Standardsprache"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Spracherkennung"
@ -1980,3 +1980,7 @@ msgstr "Video verstecken"
#~ msgid "TiB"
#~ msgstr "TB"
#~ msgid "Hostname replace"
#~ msgstr "Hostnamen ändern"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
"Last-Translator: Landhoo School Students "
"<landhooschoolstudents@gmail.com>\n"
@ -306,17 +306,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -409,19 +409,19 @@ msgstr ""
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr ""
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr ""
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr ""
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr ""
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr ""
@ -454,7 +454,7 @@ msgid "clicks"
msgstr ""
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr ""
@ -481,11 +481,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr ""
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr ""
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr ""
@ -501,15 +501,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr ""
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -643,17 +639,21 @@ msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -924,12 +924,12 @@ msgstr ""
msgid "Search language"
msgstr ""
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr ""
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1590,3 +1590,6 @@ msgstr ""
#~ msgid "TiB"
#~ msgstr ""
#~ msgid "Hostname replace"
#~ msgstr ""

View file

@ -15,20 +15,19 @@
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-09 15:18+0000\n"
"Last-Translator: notlmutsaers <notlmutsaers@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Greek <https://translate.codeberg.org/projects/searxng/"
"searxng/el/>\n"
"Last-Translator: notlmutsaers "
"<notlmutsaers@users.noreply.translate.codeberg.org>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -317,17 +316,17 @@ msgid "author"
msgstr "συγγραφέας"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Άνοιξε"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "κλειστό"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "απάντησε"
@ -420,19 +419,19 @@ msgstr "{minutes} λεπτά πριν"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Γεννήτρια τυχαίων τιμών"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Δημιουργία διαφορετικών τυχαίων τιμών"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Λειτουργίες στατιστικής"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Υπολογισμός {functions} των παραμέτρων"
@ -465,7 +464,7 @@ msgid "clicks"
msgstr "κλικ"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Γλώσσα"
@ -500,11 +499,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Αποτυχία μεταφόρτωσης εικόνας."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Βαθμολογία βιβλίου"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Ποιότητα αρχείου"
@ -520,19 +519,15 @@ msgstr "Μετατρέπει κείμενο σε διαφορετικές συν
msgid "hash digest"
msgstr "συνάρτηση κατατεμαχισμού"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Αντικατάσταση hostname"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Προσθήκη ονομάτων κεντρικού υπολογιστή"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Ξαναγράψτε ονόματα κεντρικών υπολογιστών, αφαιρέστε τα αποτελέσματα ή δώστε "
"προτεραιότητα σε αυτά με βάση το όνομα κεντρικού υπολογιστή"
"Ξαναγράψτε ονόματα κεντρικών υπολογιστών, αφαιρέστε τα αποτελέσματα ή "
"δώστε προτεραιότητα σε αυτά με βάση το όνομα κεντρικού υπολογιστή"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -677,17 +672,21 @@ msgid "Length"
msgstr "Μήκος"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Συγγραφέας"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "προσωρινά αποθηκευμένο"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "Διαμεσολαβημένα"
@ -964,12 +963,12 @@ msgstr "Προτάσεις"
msgid "Search language"
msgstr "Γλώσσα αναζήτησης"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Προεπιλεγμένη γλώσσα"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Αυτόματη αναγνώριση της γλώσσας"
@ -1168,7 +1167,8 @@ msgstr "Αντιγραφή κατακερματισμού προτιμήσεων
#: searx/templates/simple/preferences/cookies.html:57
msgid "Insert copied preferences hash (without URL) to restore"
msgstr ""
"Εισαγάγετε αντιγραμμένο κατακερματισμό προτιμήσεων (χωρίς URL) για επαναφορά"
"Εισαγάγετε αντιγραμμένο κατακερματισμό προτιμήσεων (χωρίς URL) για "
"επαναφορά"
#: searx/templates/simple/preferences/cookies.html:59
msgid "Preferences hash"
@ -1958,3 +1958,7 @@ msgstr "απόκρυψη βίντεο"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Αντικατάσταση hostname"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
@ -304,17 +304,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -407,19 +407,19 @@ msgstr ""
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr ""
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr ""
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr ""
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr ""
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr ""
@ -452,7 +452,7 @@ msgid "clicks"
msgstr ""
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr ""
@ -479,11 +479,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr ""
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr ""
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr ""
@ -499,15 +499,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr ""
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -641,17 +637,21 @@ msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -922,12 +922,12 @@ msgstr ""
msgid "Search language"
msgstr ""
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr ""
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1856,3 +1856,6 @@ msgstr ""
#~ msgid "TiB"
#~ msgstr ""
#~ msgid "Hostname replace"
#~ msgstr ""

View file

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-03-22 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -316,17 +316,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -419,19 +419,19 @@ msgstr "antaŭ {minutes} minuto(j)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Hazardvalora generilo"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generi diversajn hazardajn valorojn"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikaj funkcioj"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Kalkuli {functions} de la argumentoj"
@ -464,7 +464,7 @@ msgid "clicks"
msgstr "klakoj"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Lingvo"
@ -498,11 +498,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "La bildo ne eblis elŝuti."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Taksado de libro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Dosiera kvalito"
@ -518,15 +518,11 @@ msgstr "Konvertas ĉenojn al malsamaj hash-digestoj."
msgid "hash digest"
msgstr "haketa mesaĝaro"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Gastnomo anstataŭigas"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -671,17 +667,21 @@ msgid "Length"
msgstr "Longo"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Verkisto"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "kaŝmemorigita"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "prokurata"
@ -952,12 +952,12 @@ msgstr "Sugestoj"
msgid "Search language"
msgstr "Serĉolingvo"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Defaŭlta lingvo"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Aŭtomate detekti"
@ -1926,3 +1926,6 @@ msgstr "kaŝi videojn"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Gastnomo anstataŭigas"

View file

@ -34,19 +34,19 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
"searxng/es/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-03 22:18+0000\n"
"Last-Translator: gallegonovato "
"<gallegonovato@users.noreply.translate.codeberg.org>\n"
"Language: es\n"
"Language-Team: Spanish "
"<https://translate.codeberg.org/projects/searxng/searxng/es/>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -335,17 +335,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "abrir"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "cerrar"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "contestado"
@ -438,19 +438,19 @@ msgstr "hace {minutes} minuto(s)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generador de valores aleatorios"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generar varios valores aleatorios"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funciones de estadística"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcular las funciones {functions} de parámetros dados"
@ -483,7 +483,7 @@ msgid "clicks"
msgstr "clics"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Idioma"
@ -518,11 +518,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "No se pudo descargar la imagen."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Valoración del libro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Calidad de los archivos"
@ -538,15 +538,11 @@ msgstr "Convierte cadenas de texto a diferentes resúmenes hash."
msgid "hash digest"
msgstr "resumen de hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Sustituir el nombre de host"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin del hostname"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Reescribir los hostnames, remover los resultados o priorizarlos segundo "
@ -693,17 +689,21 @@ msgid "Length"
msgstr "Longitud"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visualizaciones"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en caché"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "por un proxy"
@ -976,12 +976,12 @@ msgstr "Sugerencias"
msgid "Search language"
msgstr "Idioma de búsqueda"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Idioma por defecto"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Detección automática"
@ -1981,3 +1981,7 @@ msgstr "ocultar video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Sustituir el nombre de host"

View file

@ -11,14 +11,15 @@
# return42 <markus.heiser@darmarit.de>, 2023.
# pixrobot <pixrobot@users.noreply.translate.codeberg.org>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# Priit Jõerüüt <jrtcdbrg@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-01 07:13+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-05 15:59+0000\n"
"Last-Translator: Priit Jõerüüt "
"<jrtcdbrg@users.noreply.translate.codeberg.org>\n"
"Language: et\n"
"Language-Team: Estonian "
"<https://translate.codeberg.org/projects/searxng/searxng/et/>\n"
@ -96,7 +97,7 @@ msgstr "kaardid"
#. CATEGORY_NAMES['ONIONS']
#: searx/searxng.msg
msgid "onions"
msgstr "onion-links"
msgstr "onion-võrgu lingid"
#. CATEGORY_NAMES['SCIENCE']
#: searx/searxng.msg
@ -126,27 +127,27 @@ msgstr "paketid"
#. CATEGORY_GROUPS['Q_A']
#: searx/searxng.msg
msgid "q&a"
msgstr "q&a"
msgstr "k&v"
#. CATEGORY_GROUPS['REPOS']
#: searx/searxng.msg
msgid "repos"
msgstr "reposid"
msgstr "hoidlad"
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
#: searx/searxng.msg
msgid "software wikis"
msgstr "tarkvara wikid"
msgstr "tarkvara vikid"
#. CATEGORY_GROUPS['WEB']
#: searx/searxng.msg
msgid "web"
msgstr "web"
msgstr "veeb"
#. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
#: searx/searxng.msg
msgid "scientific publications"
msgstr "teaduslikud väljaanded"
msgstr "teadusväljaanded"
#. STYLE_NAMES['AUTO']
#: searx/searxng.msg
@ -156,17 +157,17 @@ msgstr "automaatne"
#. STYLE_NAMES['LIGHT']
#: searx/searxng.msg
msgid "light"
msgstr "herge"
msgstr "hele"
#. STYLE_NAMES['DARK']
#: searx/searxng.msg
msgid "dark"
msgstr "pime"
msgstr "tume"
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
msgid "Uptime"
msgstr "Kasutusaeg"
msgstr "Töövõimeaeg"
#. BRAND_CUSTOM_LINKS['ABOUT']
#: searx/searxng.msg searx/templates/simple/base.html:50
@ -186,12 +187,12 @@ msgstr "Pilvekate"
#. WEATHER_TERMS['CONDITION']
#: searx/searxng.msg
msgid "Condition"
msgstr "Konditsioon"
msgstr "Olud"
#. WEATHER_TERMS['CURRENT CONDITION']
#: searx/searxng.msg
msgid "Current condition"
msgstr "Hetkene konditsioon"
msgstr "Praegused olud"
#. WEATHER_TERMS['EVENING']
#: searx/engines/wttr.py:100 searx/searxng.msg
@ -201,7 +202,7 @@ msgstr "Õhtu"
#. WEATHER_TERMS['FEELS LIKE']
#: searx/searxng.msg
msgid "Feels like"
msgstr ""
msgstr "Tundub nagu"
#. WEATHER_TERMS['HUMIDITY']
#: searx/searxng.msg
@ -236,7 +237,7 @@ msgstr "Keskpäev"
#. WEATHER_TERMS['PRESSURE']
#: searx/searxng.msg
msgid "Pressure"
msgstr "Rõhk"
msgstr "Õhurõhk"
#. WEATHER_TERMS['SUNRISE']
#: searx/searxng.msg
@ -271,42 +272,42 @@ msgstr "Tuul"
#. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
#: searx/searxng.msg
msgid "subscribers"
msgstr "tellijad"
msgstr "tellijaid"
#. SOCIAL_MEDIA_TERMS['POSTS']
#: searx/searxng.msg
msgid "posts"
msgstr ""
msgstr "postitusi"
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
#: searx/searxng.msg
msgid "active users"
msgstr ""
msgstr "aktiivseid kasutajaid"
#. SOCIAL_MEDIA_TERMS['COMMENTS']
#: searx/searxng.msg
msgid "comments"
msgstr ""
msgstr "kommentaare"
#. SOCIAL_MEDIA_TERMS['USER']
#: searx/searxng.msg
msgid "user"
msgstr ""
msgstr "kasutaja"
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
#: searx/searxng.msg
msgid "community"
msgstr ""
msgstr "kogukond"
#. SOCIAL_MEDIA_TERMS['POINTS']
#: searx/searxng.msg
msgid "points"
msgstr ""
msgstr "punkte"
#. SOCIAL_MEDIA_TERMS['TITLE']
#: searx/searxng.msg
msgid "title"
msgstr ""
msgstr "pealkiri"
#. SOCIAL_MEDIA_TERMS['AUTHOR']
#: searx/searxng.msg
@ -314,19 +315,19 @@ msgid "author"
msgstr "Autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
msgstr "ava"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
msgstr "suletud"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
msgstr "vastatud"
#: searx/webapp.py:330
msgid "No item found"
@ -355,7 +356,7 @@ msgstr "otsingu viga"
#: searx/webutils.py:36
msgid "timeout"
msgstr "aeg maha"
msgstr "päring aegus"
#: searx/webutils.py:37
msgid "parsing error"
@ -371,7 +372,7 @@ msgstr "võrguviga"
#: searx/webutils.py:40
msgid "SSL error: certificate validation has failed"
msgstr "SSL viga: sertifikaadi valideerimine ebaõnnestus"
msgstr "SSL viga: sertifikaadi valideerimine ei õnnestunud"
#: searx/webutils.py:42
msgid "unexpected crash"
@ -387,15 +388,15 @@ msgstr "HTTP-ühenduse viga"
#: searx/webutils.py:56
msgid "proxy error"
msgstr "proxy viga"
msgstr "proksiserveri viga"
#: searx/webutils.py:57
msgid "CAPTCHA"
msgstr "CAPTCHA"
msgstr "ROBOTILÕKS"
#: searx/webutils.py:58
msgid "too many requests"
msgstr "liiga palju taotlusi"
msgstr "liiga palju päringuid"
#: searx/webutils.py:59
msgid "access denied"
@ -417,19 +418,19 @@ msgstr "{minutes} minut(it) tagasi"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Juhusliku väärtuse generaator"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Genereeri erinevaid juhuslikke väärtusi"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikafunktsioonid"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Arvuta argumentide {functions}"
@ -462,7 +463,7 @@ msgid "clicks"
msgstr "klikid"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Keel"
@ -480,9 +481,9 @@ msgid ""
"format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
" WebP."
msgstr ""
"Ei saanud lugeda seda pildi linki. See võib olla faili formaadi pärast. "
"TinEye ainult lubab ainult järgmisi formaate: JPEG, PNG, GIF, BMP, TIFF "
"või WebP."
"Ei saanud lugeda selle pildi linki. Võib-olla pole failivorming toetatud."
" TinEye ainult lubab kasutada ainult järgmisi vorminguid: JPEG, PNG, GIF,"
" BMP, TIFF või WebP."
#: searx/engines/tineye.py:45
msgid ""
@ -496,37 +497,35 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Pilti ei saanud alla laadida."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Raamatu hinnang"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Faili kvaliteet"
#: searx/plugins/calculator.py:12
msgid "Calculate mathematical expressions via the search bar"
msgstr ""
msgstr "Arvuta otsinguribal matemaatilisi avaldisi"
#: searx/plugins/hash_plugin.py:10
msgid "Converts strings to different hash digests."
msgstr "Teisendab stringid erinevateks hash-digestideks."
msgstr "Teisendab sõned erinevateks räsitud sõnumilühenditeks."
#: searx/plugins/hash_plugin.py:38
msgid "hash digest"
msgstr "hash-digest"
msgstr "räsitud sõnumilühend"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Hostnime asendamine"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
msgstr "Hostide lisamoodul"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Väärtusta hostide nimesid, eemalda tulemusi või muuda nende järjekorda "
"hosti nime alusel"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -549,16 +548,16 @@ msgid ""
"Displays your IP if the query is \"ip\" and your user agent if the query "
"contains \"user agent\"."
msgstr ""
"Kuvab sinu IP'd, kui päringuks on \"ip\" ning kasutajaagenti, kui "
"päringuks on \"user agent\"."
"Kuvab sinu arvuti või seadme IP-aadressi, kui päringuks on \"ip\" ning "
"veebibrauseri tunnust, kui päringuks on \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
msgstr "Sinu arvuti või seadme IP-aadress on: "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
msgstr "Sinu kasutatava brauseri tunnus on: "
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
@ -578,7 +577,7 @@ msgid ""
"Could not download the list of Tor exit-nodes from: "
"https://check.torproject.org/exit-addresses"
msgstr ""
"Ei saanud alla laadida Tori väljumissõlmede nimekiri aadressilt: "
"Ei saanud alla laadida Tori väljumissõlmede nimekirja aadressilt: "
"https://check.torproject.org/exit-addresses"
#: searx/plugins/tor_check.py:77
@ -586,12 +585,12 @@ msgid ""
"You are using Tor and it looks like you have this external IP address: "
"{ip_address}"
msgstr ""
"Te kasutate Tor'i ja tundub, et teil on see väline IP-aadress: "
"Sa kasutad Tor'i ja tundub, et sinu arvutil on see väline IP-aadress: "
"{ip_address}"
#: searx/plugins/tor_check.py:85
msgid "You are not using Tor and you have this external IP address: {ip_address}"
msgstr "Te ei kasuta Tor'i ja teil on see väline IP-aadress: {ip_address}"
msgstr "Sa ei kasuta Tor'i ja sinu arvutil on see väline IP-aadress: {ip_address}"
#: searx/plugins/tracker_url_remover.py:16
msgid "Tracker URL remover"
@ -603,7 +602,7 @@ msgstr "Eemaldab jälitavad argumendid tagastatud URList"
#: searx/plugins/unit_converter.py:29
msgid "Convert between units"
msgstr ""
msgstr "Konverteeri eri ühikute vahel"
#: searx/templates/simple/404.html:4
msgid "Page not found"
@ -612,7 +611,7 @@ msgstr "Lehte ei leitud"
#: searx/templates/simple/404.html:6
#, python-format
msgid "Go to %(search_page)s."
msgstr "Mine %(search_page)s."
msgstr "Mine lehele %(search_page)s."
#: searx/templates/simple/404.html:6
msgid "search page"
@ -642,7 +641,7 @@ msgstr "Lähtekood"
#: searx/templates/simple/base.html:70
msgid "Issue tracker"
msgstr "Vigade loetelu"
msgstr "Veahaldus"
#: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
msgid "Engine stats"
@ -650,46 +649,52 @@ msgstr "Mootori statistika"
#: searx/templates/simple/base.html:73
msgid "Public instances"
msgstr "Avalikud eksemplarid"
msgstr "Avalikud serverid"
#: searx/templates/simple/base.html:76
msgid "Privacy policy"
msgstr "Privaatsus poliitika"
msgstr "Privaatsuspoliitika"
#: searx/templates/simple/base.html:79
msgid "Contact instance maintainer"
msgstr "Võtke ühendust instantsi hooldajaga"
msgstr "Võta ühendust serveri haldajaga"
#: searx/templates/simple/categories.html:26
msgid "Click on the magnifier to perform search"
msgstr "Klõpsa luubile otsingu teostamiseks"
msgstr "Otsingu teostamiseks klõpsa luubile"
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Pikkus"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Vaateid"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "vahemälus"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proksitud"
msgstr "proksiserveris"
#: searx/templates/simple/new_issue.html:64
msgid "Start submiting a new issue on GitHub"
msgstr "Alustage uue probleemi esitamist GitHubis"
msgstr "Alusta uue vea või probleemi esitamist GitHubis"
#: searx/templates/simple/new_issue.html:66
msgid "Please check for existing bugs about this engine on GitHub"
msgstr "Palun uurige olemasolevate selle otsingumootori tõrgete kohta GitHubist"
msgstr ""
"Eelnevalt palun uuri GitHubist olemasolevate selle otsingumootori "
"sarnasete vigade kohta"
#: searx/templates/simple/new_issue.html:69
msgid "I confirm there is no existing bug about the issue I encounter"
@ -699,11 +704,11 @@ msgstr ""
#: searx/templates/simple/new_issue.html:71
msgid "If this is a public instance, please specify the URL in the bug report"
msgstr "Palun täpsustage URL veateates, kui tegemist on avaliku eksemplariga"
msgstr "Palun täpsusta URL veateates, kui tegemist on avaliku serveriga"
#: searx/templates/simple/new_issue.html:72
msgid "Submit a new issue on Github including the above information"
msgstr "Esitage Githubis uus probleem, mis sisaldab ülaltoodud teavet"
msgstr "Esita Githubis uus viga või probleem, mis sisaldab ülaltoodud teavet"
#: searx/templates/simple/preferences.html:65
msgid "No HTTPS"
@ -713,7 +718,7 @@ msgstr "HTTPS puudub"
#: searx/templates/simple/preferences.html:69
#: searx/templates/simple/preferences.html:70
msgid "View error logs and submit a bug report"
msgstr "Vaadake vealogisid ja esitage veateade"
msgstr "Vaata vealogisid ja esita veateade"
#: searx/templates/simple/preferences.html:74
msgid "!bang for this engine"
@ -721,7 +726,7 @@ msgstr "!bang selle mootori jaoks"
#: searx/templates/simple/preferences.html:80
msgid "!bang for its categories"
msgstr "!bang oma kategooriate puhul"
msgstr "!bang selle kategooriate jaoks"
#: searx/templates/simple/preferences.html:102
#: searx/templates/simple/stats.html:64
@ -764,7 +769,7 @@ msgstr "Privaatsus"
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Mootorid"
msgstr "Otsingumootorid"
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
@ -788,7 +793,7 @@ msgstr "Tulemuste arv"
#: searx/templates/simple/results.html:48
msgid "Info"
msgstr "informatsioon"
msgstr "Teave"
#: searx/templates/simple/results.html:77
msgid "Try searching for:"
@ -832,7 +837,7 @@ msgstr "Hetkel andmed puuduvad."
#: searx/templates/simple/preferences/engines.html:24
#: searx/templates/simple/stats.html:25
msgid "Engine name"
msgstr "Mootori nimi"
msgstr "Otsingumootori nimi"
#: searx/templates/simple/stats.html:26
msgid "Scores"
@ -845,7 +850,7 @@ msgstr "Tulemuste arv"
#: searx/templates/simple/preferences/engines.html:31
#: searx/templates/simple/stats.html:28
msgid "Response time"
msgstr "Reageerimisaeg"
msgstr "Vastamise aeg"
#: searx/templates/simple/preferences/engines.html:35
#: searx/templates/simple/stats.html:29
@ -862,7 +867,7 @@ msgstr "HTTP"
#: searx/templates/simple/stats.html:61
msgid "Processing"
msgstr "Töötlemine"
msgstr "Töötleme"
#: searx/templates/simple/stats.html:99
msgid "Warnings"
@ -903,7 +908,7 @@ msgstr "Kood"
#: searx/templates/simple/stats.html:128
msgid "Checker"
msgstr "Kontrollida"
msgstr "Kontrollija"
#: searx/templates/simple/stats.html:131
msgid "Failed test"
@ -927,7 +932,7 @@ msgstr "Viga!"
#: searx/templates/simple/elements/engines_msg.html:13
msgid "Engines cannot retrieve results"
msgstr "Mootorid ei saa tulemusi tagastada"
msgstr "Otsingumootorid ei anna päringutele vastuseid"
#: searx/templates/simple/elements/search_url.html:3
msgid "Search URL"
@ -952,15 +957,15 @@ msgstr "Soovitused"
msgid "Search language"
msgstr "Otsingukeel"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Vaikimisi keel"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automaatne-tuvastamine"
msgstr "Tuvasta automaatselt"
#: searx/templates/simple/filters/safesearch.html:1
#: searx/templates/simple/filters/safesearch.html:2
@ -969,7 +974,7 @@ msgstr "Automaatne-tuvastamine"
#: searx/templates/simple/preferences/engines.html:27
#: searx/templates/simple/preferences/safesearch.html:2
msgid "SafeSearch"
msgstr "Ohutuotsing"
msgstr "Ohutu otsing"
#: searx/templates/simple/filters/safesearch.html:2
#: searx/templates/simple/preferences/safesearch.html:7
@ -1013,7 +1018,7 @@ msgstr "Viimane aasta"
#: searx/templates/simple/messages/no_cookies.html:3
msgid "Information!"
msgstr "Teave!"
msgstr "Tähelepanu!"
#: searx/templates/simple/messages/no_cookies.html:4
msgid "currently, there are no cookies defined."
@ -1025,11 +1030,11 @@ msgstr "Vabandust!"
#: searx/templates/simple/messages/no_results.html:12
msgid "No results were found. You can try to:"
msgstr "Tulemusi ei leitud. Võite proovida:"
msgstr "Tulemusi ei leitud. Võid proovida:"
#: searx/templates/simple/messages/no_results.html:14
msgid "There are no more results. You can try to:"
msgstr "Rohkem tulemusi ei ole. Võite proovida:"
msgstr "Rohkem tulemusi ei ole. Võid proovida:"
#: searx/templates/simple/messages/no_results.html:19
msgid "Refresh the page."
@ -1037,19 +1042,19 @@ msgstr "Värskenda lehekülge."
#: searx/templates/simple/messages/no_results.html:20
msgid "Search for another query or select another category (above)."
msgstr "Teise päringu otsimine või teise kategooria valimine (üleval)."
msgstr "Tee muu päringu või vali muu kategooria (üleval)."
#: searx/templates/simple/messages/no_results.html:21
msgid "Change the search engine used in the preferences:"
msgstr "Muutke eelistustes kasutatud otsingumootorit:"
msgstr "Muuda eelistustes kasutatud otsingumootorit:"
#: searx/templates/simple/messages/no_results.html:22
msgid "Switch to another instance:"
msgstr "Vahetage teisele instantsile:"
msgstr "Vahetage teisele SearxNG serverile:"
#: searx/templates/simple/messages/no_results.html:24
msgid "Search for another query or select another category."
msgstr "Teise päringu otsimine või teise kategooria valimine."
msgstr "Tee uus otsing või vali muu kategooria."
#: searx/templates/simple/messages/no_results.html:25
msgid "Go back to the previous page using the previous page button."
@ -1079,7 +1084,7 @@ msgstr "Näited"
#: searx/templates/simple/preferences/answerers.html:13
msgid "This is the list of SearXNG's instant answering modules."
msgstr "See on SearXNGi kohese vastamise moodulite nimekiri."
msgstr "See on SearXNGi kohese kiirvastuste moodulite loend."
#: searx/templates/simple/preferences/answerers.html:29
msgid "This is the list of plugins."
@ -1095,7 +1100,7 @@ msgstr "Otsi asju kirjutamise ajal"
#: searx/templates/simple/preferences/center_alignment.html:2
msgid "Center Alignment"
msgstr "Keskuse joondamine"
msgstr "Keskele joondamine"
#: searx/templates/simple/preferences/center_alignment.html:14
msgid "Displays results in the center of the page (Oscar layout)."
@ -1106,12 +1111,12 @@ msgid ""
"This is the list of cookies and their values SearXNG is storing on your "
"computer."
msgstr ""
"See on nimekiri küpsistest ja nende väärtustest, mida SearXNG teie "
"See on nimekiri küpsistest ja nende väärtustest, mida SearXNG sinu "
"arvutisse salvestab."
#: searx/templates/simple/preferences/cookies.html:3
msgid "With that list, you can assess SearXNG transparency."
msgstr "Selle loetelu abil saate hinnata SearXNG läbipaistvust."
msgstr "Selle loetelu abil saad hinnata SearXNG läbipaistvust."
#: searx/templates/simple/preferences/cookies.html:9
msgid "Cookie name"
@ -1142,20 +1147,20 @@ msgid ""
"Specifying custom settings in the preferences URL can be used to sync "
"preferences across devices."
msgstr ""
"Kohandatud seadete määramine eelistuste URL-i saab kasutada eelistuste "
"sünkroniseerimiseks eri seadmetes."
"Kohandatud seadete määramine eelistuste URL-i saad kasutada eelistuste "
"sünkroniseerimiseks eri seadmete vahel."
#: searx/templates/simple/preferences/cookies.html:46
msgid "Copy preferences hash"
msgstr "Kopeeri eelistuste hash"
msgstr "Kopeeri eelistuste räsi"
#: searx/templates/simple/preferences/cookies.html:57
msgid "Insert copied preferences hash (without URL) to restore"
msgstr "Sisesta kopeeritud eelistuste hash (ilma URL-aadressita) et taastada"
msgstr "Taastamiseks sisesta kopeeritud eelistuste räsi (ilma URL-aadressita)"
#: searx/templates/simple/preferences/cookies.html:59
msgid "Preferences hash"
msgstr "Eelistuste hash"
msgstr "Eelistuste räsi"
#: searx/templates/simple/preferences/doi_resolver.html:2
msgid "Open Access DOI resolver"
@ -1163,23 +1168,23 @@ msgstr "Open Access DOI resolver"
#: searx/templates/simple/preferences/doi_resolver.html:14
msgid "Select service used by DOI rewrite"
msgstr "Valige teenus mida kasutab DOI ümberkirjutamine"
msgstr "Vali teenus mida kasutab DOI ümberkirjutamine"
#: searx/templates/simple/preferences/engines.html:9
msgid ""
"This tab does not exists in the user interface, but you can search in "
"these engines by its !bangs."
msgstr ""
"Seda vahekaarti ei ole kasutajaliideses olemas, kuid te saate otsida neis"
" mootorites selle !bang järgi."
"Seda vahekaarti ei ole kasutajaliideses olemas, kuid sa saad otsida neis "
"mootorites selle !bang järgi."
#: searx/templates/simple/preferences/engines.html:15
msgid "Enable all"
msgstr ""
msgstr "Luba kõik"
#: searx/templates/simple/preferences/engines.html:16
msgid "Disable all"
msgstr ""
msgstr "Keela kõik"
#: searx/templates/simple/preferences/engines.html:25
msgid "!bang"
@ -1202,8 +1207,8 @@ msgid ""
"These settings are stored in your cookies, this allows us not to store "
"this data about you."
msgstr ""
"Need seaded salvestatakse sinu küpsistes, see lubab meil sinu kohta "
"andmeid mitte salvestada."
"Need seaded salvestatame sinu brauseri küpsistes ja see annab meile "
"võimaluse sinu kohta andmeid meie serveris mitte salvestada."
#: searx/templates/simple/preferences/footer.html:3
msgid ""
@ -1238,8 +1243,8 @@ msgid ""
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
"key on main or result page to get help."
msgstr ""
"Otsingutulemustes navigeerimine kiirklahvide abil (Vajalik JavaScript). "
"Abi saamiseks vajutage põhi või tulemuslehel klahvi \"h\"."
"Otsingutulemustes navigeerimine kiirklahvide abil (vajalik JavaScript). "
"Abi saamiseks vajuta põhi või tulemuslehel klahvi \"h\"."
#: searx/templates/simple/preferences/image_proxy.html:2
msgid "Image proxy"
@ -1247,7 +1252,7 @@ msgstr "Pildiproksi"
#: searx/templates/simple/preferences/image_proxy.html:14
msgid "Proxying image results through SearXNG"
msgstr "Pildi tulemuste edastamine SearXNG kaudu"
msgstr "Pildiotsingu tulemuste edastamine SearXNG kaudu"
#: searx/templates/simple/preferences/infinite_scroll.html:2
msgid "Infinite scroll"
@ -1263,15 +1268,15 @@ msgstr "Mis keelt sa otsinguks eelistad?"
#: searx/templates/simple/preferences/language.html:25
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
msgstr "Valige Automaatne tuvastamine et SearXNG tuvastaks teie päringu keele."
msgstr "Rt SearXNG tuvastaks sinu päringu keele vali \"Automaatne tuvastamine\"."
#: searx/templates/simple/preferences/method.html:2
msgid "HTTP Method"
msgstr "HTTP meetod"
msgstr "HTTP-meetod"
#: searx/templates/simple/preferences/method.html:14
msgid "Change how forms are submitted"
msgstr "Muutke vormide esitamise viisi"
msgstr "Muuda vormide esitamise viisi"
#: searx/templates/simple/preferences/query_in_title.html:2
msgid "Query in the page's title"
@ -1282,7 +1287,7 @@ msgid ""
"When enabled, the result page's title contains your query. Your browser "
"can record this title"
msgstr ""
"Kui see on lubatud, sisaldab tulemuslehe pealkiri teie päringut. Teie "
"Kui see on lubatud, sisaldab tulemuslehe pealkiri sinu päringut. Sinu "
"brauser võib selle pealkirja salvestada"
#: searx/templates/simple/preferences/results_on_new_tab.html:2
@ -1306,8 +1311,8 @@ msgid ""
"Perform search immediately if a category selected. Disable to select "
"multiple categories"
msgstr ""
"Teostage otsing kohe kui kategooria on valitud. Mitme kategooria "
"valimiseks keelake"
"Teosta otsing kohe kui kategooria on valitud. Mitme kategooria valimiseks"
" keela see eelistus"
#: searx/templates/simple/preferences/theme.html:2
msgid "Theme"
@ -1315,7 +1320,7 @@ msgstr "Teema"
#: searx/templates/simple/preferences/theme.html:14
msgid "Change SearXNG layout"
msgstr "SearXNG paigutuse muutmine"
msgstr "Muuda SearXNG paigutust"
#: searx/templates/simple/preferences/theme.html:19
msgid "Theme style"
@ -1323,19 +1328,19 @@ msgstr "Teema stiil"
#: searx/templates/simple/preferences/theme.html:31
msgid "Choose auto to follow your browser settings"
msgstr "Valige automaatne, et järgida oma brauseri seadeid"
msgstr "Oma brauseri seadistuste järgimiseks vali \"automaatne\""
#: searx/templates/simple/preferences/tokens.html:2
msgid "Engine tokens"
msgstr "Mootori tokenid"
msgstr "Otsingumootori tunnusload"
#: searx/templates/simple/preferences/tokens.html:9
msgid "Access tokens for private engines"
msgstr "Ligipääsutokenid privaatsetele mootoritele"
msgstr "Ligipääsu tunnusload privaatsetele otsingumootoritele"
#: searx/templates/simple/preferences/ui_locale.html:2
msgid "Interface language"
msgstr "Liidese keel"
msgstr "Kasutajaliidese keel"
#: searx/templates/simple/preferences/ui_locale.html:14
msgid "Change the language of the layout"
@ -1343,7 +1348,7 @@ msgstr "Muuda paigutuse keelt"
#: searx/templates/simple/result_templates/code.html:13
msgid "repo"
msgstr "repot"
msgstr "hoidla"
#: searx/templates/simple/result_templates/default.html:6
#: searx/templates/simple/result_templates/files.html:8
@ -1382,15 +1387,15 @@ msgstr "Resolutsioon"
#: searx/templates/simple/result_templates/images.html:21
msgid "Format"
msgstr "Formaat"
msgstr "Vorming"
#: searx/templates/simple/result_templates/images.html:24
msgid "Engine"
msgstr "Mootor"
msgstr "Otsingumootor"
#: searx/templates/simple/result_templates/images.html:25
msgid "View source"
msgstr "Vaata allikat"
msgstr "Vaata lähtekoodi"
#: searx/templates/simple/result_templates/map.html:12
msgid "address"
@ -1398,7 +1403,7 @@ msgstr "aadress"
#: searx/templates/simple/result_templates/map.html:43
msgid "show map"
msgstr "kuva kaart"
msgstr "näita kaarti"
#: searx/templates/simple/result_templates/map.html:43
msgid "hide map"
@ -1410,7 +1415,7 @@ msgstr "Versioon"
#: searx/templates/simple/result_templates/packages.html:18
msgid "Maintainer"
msgstr "Hooldaja"
msgstr "Haldaja"
#: searx/templates/simple/result_templates/packages.html:24
msgid "Updated at"
@ -1419,7 +1424,7 @@ msgstr "Uuendatud"
#: searx/templates/simple/result_templates/packages.html:30
#: searx/templates/simple/result_templates/paper.html:25
msgid "Tags"
msgstr "Tagid"
msgstr "Sildid"
#: searx/templates/simple/result_templates/packages.html:36
msgid "Popularity"
@ -1439,7 +1444,7 @@ msgstr "Projekti koduleht"
#: searx/templates/simple/result_templates/paper.html:5
msgid "Published date"
msgstr "Avaldatud kuupäev"
msgstr "Avaldamise kuupäev"
#: searx/templates/simple/result_templates/paper.html:9
msgid "Journal"
@ -1475,7 +1480,7 @@ msgstr "HTML"
#: searx/templates/simple/result_templates/torrent.html:6
msgid "magnet link"
msgstr "magnetlink"
msgstr "magnet-link"
#: searx/templates/simple/result_templates/torrent.html:7
msgid "torrent file"
@ -1495,7 +1500,7 @@ msgstr "Failide arv"
#: searx/templates/simple/result_templates/videos.html:6
msgid "show video"
msgstr "kuva video"
msgstr "näita videot"
#: searx/templates/simple/result_templates/videos.html:6
msgid "hide video"
@ -1922,3 +1927,6 @@ msgstr "peida video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Hostnime asendamine"

View file

@ -14,19 +14,19 @@
# alexgabi <alexgabi@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-09 15:18+0000\n"
"Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>\n"
"Language-Team: Basque <https://translate.codeberg.org/projects/searxng/"
"searxng/eu/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-05 15:59+0000\n"
"Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>"
"\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -315,17 +315,17 @@ msgid "author"
msgstr "egilea"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "ireki"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "itxita"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "erantzunda"
@ -418,19 +418,19 @@ msgstr "duela {minutes} minutu"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "duela {hours} ordu eta {minutes} minutu"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Ausazko balio sortzailea"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Ausazko balio ezberdinak sortu"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funtzio estatistikoak"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Kalkulatu argumentuen {funtzioak}"
@ -463,7 +463,7 @@ msgid "clicks"
msgstr "klikak"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Hizkuntza"
@ -497,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Ezin izan da deskargatu irudia."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Liburuaren balorazioa"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Fitxategiaren kalitatea"
@ -517,15 +517,11 @@ msgstr "Kateak traola laburpen desberdinetara bihurtzen ditu."
msgid "hash digest"
msgstr "traola laburpena"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Ostalariaren izena ordezkatu"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Hostnames plugina"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Berridatzi ostalari-izenak, kendu emaitzak edo eman lehentasuna ostalari-"
@ -672,17 +668,21 @@ msgid "Length"
msgstr "Luzera"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Ikuspegiak"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Egilea"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "cachean gordeta"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxyan gordeta"
@ -953,12 +953,12 @@ msgstr "Iradokizunak"
msgid "Search language"
msgstr "Bilaketaren hizkuntza"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Lehenetsitako hizkuntza"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Auto-detektatu"
@ -1312,7 +1312,7 @@ msgid ""
"multiple categories"
msgstr ""
"Egin bilaketa berehala kategoria bat hautatuz gero. Desgaitu hainbat "
"kategoria hautatzeko."
"kategoria hautatzeko"
#: searx/templates/simple/preferences/theme.html:2
msgid "Theme"
@ -1928,3 +1928,7 @@ msgstr "ezkutatu bideoa"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Ostalariaren izena ordezkatu"

View file

@ -15,21 +15,22 @@
# arashe22 <arashe22@proton.me>, 2023.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# tegcope <tegcope@users.noreply.translate.codeberg.org>, 2024.
# Thecode764 <Thecode764@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-13 12:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Persian <https://translate.codeberg.org/projects/searxng/"
"searxng/fa/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-02 07:09+0000\n"
"Last-Translator: Thecode764 "
"<Thecode764@users.noreply.translate.codeberg.org>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -280,27 +281,27 @@ msgstr ""
#. SOCIAL_MEDIA_TERMS['POSTS']
#: searx/searxng.msg
msgid "posts"
msgstr ""
msgstr "پست ها"
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
#: searx/searxng.msg
msgid "active users"
msgstr ""
msgstr "کاربران فعال"
#. SOCIAL_MEDIA_TERMS['COMMENTS']
#: searx/searxng.msg
msgid "comments"
msgstr ""
msgstr "نظر ها"
#. SOCIAL_MEDIA_TERMS['USER']
#: searx/searxng.msg
msgid "user"
msgstr ""
msgstr "کاربر"
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
#: searx/searxng.msg
msgid "community"
msgstr ""
msgstr "جمعیت"
#. SOCIAL_MEDIA_TERMS['POINTS']
#: searx/searxng.msg
@ -318,17 +319,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -421,19 +422,19 @@ msgstr "{minutes} دقیقه پیش"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ساعت و {minutes} دقیقه پیش"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "ایجادگر مقدار تصادفی"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "ایجاد مقادیر تصادفی متفاوت"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "توابع آماری"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "پردازش {functions} از آرگومان ها"
@ -466,7 +467,7 @@ msgid "clicks"
msgstr "کلیک ها"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "زبان"
@ -500,11 +501,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "تصویر نمیتواند دانلود شود."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "رتبه بندی کتاب"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "کیفیت فایل"
@ -520,15 +521,11 @@ msgstr "رشته‌ها را به چکیده‌های هش تبدیل می‌ک
msgid "hash digest"
msgstr "چکیدهٔ هش"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "جایگزینی نام میزبان"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -673,17 +670,21 @@ msgid "Length"
msgstr "طول"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "نویسنده"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "جاسازی‌شده"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "پروکسی‌شده"
@ -956,12 +957,12 @@ msgstr "پیشنهادها"
msgid "Search language"
msgstr "زبان جست‌وجو"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "زبان پیش‌گزیده"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "انتخاب خودکار"
@ -1941,3 +1942,7 @@ msgstr "پنهان‌سازی ویدئو"
#~ msgid "TiB"
#~ msgstr "ترابایت"
#~ msgid "Hostname replace"
#~ msgstr "جایگزینی نام میزبان"

View file

@ -14,19 +14,19 @@
# jonkke9 <jonkke9@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-19 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Finnish <https://translate.codeberg.org/projects/searxng/"
"searxng/fi/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -315,17 +315,17 @@ msgid "author"
msgstr "tekijä"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "suljettu"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "vastattu"
@ -418,19 +418,19 @@ msgstr "{minutes} minuutti(a) sitten"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} tunti(a), {minutes} minuutti(a) sitten"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Satunnaisluvun generaattori"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generoi satunnaislukuja"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Tilastolliset funktiot"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Laske argumenttien {functions}"
@ -463,7 +463,7 @@ msgid "clicks"
msgstr "klikkaukset"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Kieli"
@ -497,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Tätä kuvaa ei voida ladata."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Kirjan arvostelu"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Tiedoston laatu"
@ -517,15 +517,11 @@ msgstr "Muuntaa merkkijonot erilaisiksi hash-digesteiksi."
msgid "hash digest"
msgstr "hash-digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Isäntänimen korvaus"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -670,17 +666,21 @@ msgid "Length"
msgstr "Pituus"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Tekijä"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "välimuistissa"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "välityspalvelimella"
@ -953,12 +953,12 @@ msgstr "Ehdotukset"
msgid "Search language"
msgstr "Haun kieli"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Oletuskieli"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Havaitse automaattisesti"
@ -1941,3 +1941,7 @@ msgstr "piilota video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Isäntänimen korvaus"

View file

@ -13,20 +13,19 @@
# Kita Ikuyo <searinminecraft@courvix.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-27 19:18+0000\n"
"Last-Translator: Kita Ikuyo <searinminecraft@courvix.com>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -315,17 +314,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -418,19 +417,19 @@ msgstr "{minutes} na minuto ang nakalipas"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} oras at {minutes} na minto ang nakalipas"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Random na generator ng halaga"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Maglabas ng iba't ibang halaga"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Estatistika ng mga tungkulin"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Tuusin ang {functions} ng pangangatuwiran"
@ -463,7 +462,7 @@ msgid "clicks"
msgstr "mga click"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Wika"
@ -496,11 +495,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Hindi ma-download ang imahe na ito."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "rating ng libro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Kalidad ng file"
@ -516,15 +515,11 @@ msgstr "Isinasalin ang string sa iba't ibang hash digests."
msgid "hash digest"
msgstr "Hash digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Palitan ang hostname"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -671,17 +666,21 @@ msgid "Length"
msgstr "Haba"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Awtor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "naka-cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxied"
@ -956,12 +955,12 @@ msgstr "Mga mungkahi"
msgid "Search language"
msgstr "Ang wika ng paghahanap"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Default na wika"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "awtomatikong pangdedetekta"
@ -1953,3 +1952,7 @@ msgstr "itago ang video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Palitan ang hostname"

View file

@ -25,19 +25,18 @@
# wags07 <wags07@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-06 16:18+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
"Last-Translator: wags07 <wags07@users.noreply.translate.codeberg.org>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -326,17 +325,17 @@ msgid "author"
msgstr "Auteur"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Ouvert"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Fermé"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "répondu"
@ -429,19 +428,19 @@ msgstr "il y a {minutes} minute(s)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "il y a {hours} heure(s), {minutes} minute(s)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Générateur de valeur aléatoire"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Crée des valeurs aléatoires différentes"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Fonctions statistiques"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcule les {functions} des arguments"
@ -474,7 +473,7 @@ msgid "clicks"
msgstr "clics"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Langue"
@ -509,11 +508,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "L'image n'a pas pu être téléchargée."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Évaluation du livre"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Qualité du fichier"
@ -529,15 +528,11 @@ msgstr "Convertit les chaînes de caractères en différents condensés de hacha
msgid "hash digest"
msgstr "hash digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Remplacer les noms de domaine"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin de noms dhôtes"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -680,17 +675,21 @@ msgid "Length"
msgstr "Durée"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "vues"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Auteur"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxifié"
@ -965,12 +964,12 @@ msgstr "Suggestions"
msgid "Search language"
msgstr "Langue de recherche"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Langue par défaut"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Détection automatique"
@ -1974,3 +1973,7 @@ msgstr "cacher la vidéo"
#~ msgid "TiB"
#~ msgstr "Tio"
#~ msgid "Hostname replace"
#~ msgstr "Remplacer les noms de domaine"

View file

@ -11,19 +11,18 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
"Last-Translator: ghose <ghose@users.noreply.translate.codeberg.org>\n"
"Language-Team: Galician <https://translate.codeberg.org/projects/searxng/"
"searxng/gl/>\n"
"Language: gl\n"
"Language-Team: Galician "
"<https://translate.codeberg.org/projects/searxng/searxng/gl/>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -312,17 +311,17 @@ msgid "author"
msgstr "autoría"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Abrir"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "fechado"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "respondido"
@ -415,19 +414,19 @@ msgstr "fai {minutes} minuto(s)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "fai {hours} hora(s), {minutes} minuto(s)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Xerador de valor aleatorio"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Xerar diferentes valores aleatorios"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funcións de estatística"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcula {functions} dos argumentos"
@ -460,7 +459,7 @@ msgid "clicks"
msgstr "clicks"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Idioma"
@ -494,11 +493,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Non se puido descargar a imaxe."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Valoración do libro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Calidade do ficheiro"
@ -514,15 +513,11 @@ msgstr "Converte o escrito usando diferentes funcións hash."
msgid "hash digest"
msgstr "función hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Substituír servidor"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Complemento de nomes de servidor"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Reescribe nomes de servidor, elimina resultados ou prioriza en función do"
@ -667,17 +662,21 @@ msgid "Length"
msgstr "Lonxitude"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visualizacións"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autora"
msgstr "Autoría"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en memoria"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "a través de proxy"
@ -948,12 +947,12 @@ msgstr "Suxestións"
msgid "Search language"
msgstr "Idioma de busca"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Idioma por defecto"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Autodetectar"
@ -1449,7 +1448,7 @@ msgstr "Xornal"
#: searx/templates/simple/result_templates/paper.html:22
msgid "Editor"
msgstr "Autoría"
msgstr "Edición"
#: searx/templates/simple/result_templates/paper.html:23
msgid "Publisher"
@ -1951,3 +1950,7 @@ msgstr "agochar vídeo"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Substituír servidor"

View file

@ -16,22 +16,23 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# sacred-serpent <sacred-serpent@users.noreply.translate.codeberg.org>,
# 2024.
# Shpubly <Shpubly@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-05 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Hebrew <https://translate.codeberg.org/projects/searxng/"
"searxng/he/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-02 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\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.6.1\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -182,12 +183,12 @@ msgstr "אודות"
#. WEATHER_TERMS['AVERAGE TEMP.']
#: searx/searxng.msg
msgid "Average temp."
msgstr ""
msgstr "טמפרטורה ממוצעת"
#. WEATHER_TERMS['CLOUD COVER']
#: searx/searxng.msg
msgid "Cloud cover"
msgstr ""
msgstr "כיסוי עננים"
#. WEATHER_TERMS['CONDITION']
#: searx/searxng.msg
@ -207,7 +208,7 @@ msgstr "ערב"
#. WEATHER_TERMS['FEELS LIKE']
#: searx/searxng.msg
msgid "Feels like"
msgstr ""
msgstr "מרגיש כמו"
#. WEATHER_TERMS['HUMIDITY']
#: searx/searxng.msg
@ -217,7 +218,7 @@ msgstr "לחות"
#. WEATHER_TERMS['MAX TEMP.']
#: searx/searxng.msg
msgid "Max temp."
msgstr ""
msgstr "טמפרטורה מקסימלית"
#. WEATHER_TERMS['MIN TEMP.']
#: searx/searxng.msg
@ -320,17 +321,17 @@ msgid "author"
msgstr "מחבר"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "פתוח"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "סגור"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -423,19 +424,19 @@ msgstr "לפני {minutes} דקות"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "לפני {hours} שעות, {minutes} דקות"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "מפיק ערך אקראי"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "מייצרת ערכים אקראיים שונים"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "פונקציות סטטיסטיקה"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "מחשבת {functions} של הארגומנטים"
@ -468,7 +469,7 @@ msgid "clicks"
msgstr "לחיצות"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "שפה"
@ -502,11 +503,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "אי אפשר להוריד את תמונה זו."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "דירוג ספרים"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "איכות קובץ"
@ -522,15 +523,11 @@ msgstr "ממיר מחרוזות לתוך hash digests (לקט גיבוב) שונ
msgid "hash digest"
msgstr "hash digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "החלפת Hostname"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -672,17 +669,21 @@ msgid "Length"
msgstr "אורך"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "מחבר"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "מוטמן"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "פרוקסי"
@ -953,12 +954,12 @@ msgstr "הצעות"
msgid "Search language"
msgstr "שפת חיפוש"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "שפה ברירת מחדל"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "זיהוי אוטומטי"
@ -1913,3 +1914,7 @@ msgstr "הסתר וידאו"
#~ msgid "TiB"
#~ msgstr "טי״ב"
#~ msgid "Hostname replace"
#~ msgstr "החלפת Hostname"

View file

@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: ganoci <ganoci@users.noreply.translate.codeberg.org>\n"
"Language: hr\n"
@ -317,17 +317,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -420,19 +420,19 @@ msgstr "prije {minutes} minut(u,e,a)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "prije {hours} sat(i,a) i {minutes} minut(u,e,a)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Nasumični generator vrijednosti"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generirajte različite nasumične vrijednosti"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistične funkcije"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Izračunajte {functions} argumenata"
@ -465,7 +465,7 @@ msgid "clicks"
msgstr "klikovi"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Jezik"
@ -499,11 +499,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Sliku nije moguće preuzeti."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Ocjena knjige"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Kvaliteta datoteke"
@ -519,15 +519,11 @@ msgstr "Pretvara niz u drukčije hash mješavine."
msgid "hash digest"
msgstr "Izlaz hash funkcije"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Zamjena lokalnog imena"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -668,17 +664,21 @@ msgid "Length"
msgstr "Dužina"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "spremljeno"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "preko proxyja"
@ -949,12 +949,12 @@ msgstr "Prijedlozi"
msgid "Search language"
msgstr "Jezik pretraživanja"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Zadani jezik"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatski otkrij"
@ -1939,3 +1939,6 @@ msgstr "sakrij video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Zamjena lokalnog imena"

View file

@ -17,19 +17,19 @@
# Kran21 <Kran21@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-25 11:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Hungarian <https://translate.codeberg.org/projects/searxng/"
"searxng/hu/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: hu\n"
"Language-Team: Hungarian "
"<https://translate.codeberg.org/projects/searxng/searxng/hu/>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -318,17 +318,17 @@ msgid "author"
msgstr "szerző"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Megnyitás"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Lezárt"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "megválaszolt"
@ -421,19 +421,19 @@ msgstr "{minutes} perce"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} óra, {minutes} perce"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Véletlenérték-generátor"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Különböző véletlen értékek előállítása"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statisztikai függvények"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "{functions} alkalmazása az argumentumokon"
@ -466,7 +466,7 @@ msgid "clicks"
msgstr "kattintások:"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Nyelv"
@ -500,11 +500,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "A kép nem tölthető le."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Könyv értékelése"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Fájlminőség"
@ -520,15 +520,11 @@ msgstr "A szöveget különböző hash értékekké alakítja."
msgid "hash digest"
msgstr "hash érték"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Kiszolgálónév cseréje"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Kiszolgálónév modul"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Írd át a kiszolgálóneveket, távolítsd el az eredményeket vagy rangsorold "
@ -675,17 +671,21 @@ msgid "Length"
msgstr "Hossz"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Szerző"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "tárolt"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxy nézet"
@ -958,12 +958,12 @@ msgstr "Javaslatok"
msgid "Search language"
msgstr "Keresés nyelve"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Alapértelmezett nyelv"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatikus felismerés"
@ -1947,3 +1947,7 @@ msgstr "videó elrejtése"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Kiszolgálónév cseréje"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2023-06-22 09:02+0000\n"
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
"Language: ia\n"
@ -307,17 +307,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -410,19 +410,19 @@ msgstr "{minutes} minuta(s) retro"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} hora(s), {minutes} minuta(s) retro"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator de valores aleatori"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generar differente valores aleatori"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Functiones statistic"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Computa {functions} del argumentos"
@ -455,7 +455,7 @@ msgid "clicks"
msgstr ""
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr ""
@ -482,11 +482,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr ""
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr ""
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr ""
@ -502,15 +502,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr ""
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -648,17 +644,21 @@ msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "in cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "per proxy"
@ -929,12 +929,12 @@ msgstr "Suggestiones"
msgid "Search language"
msgstr "Lingua pro le recerca"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Lingua predefinite"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1893,3 +1893,6 @@ msgstr "occultar video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr ""

View file

@ -11,21 +11,21 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# eddywidjaja <eddywidjaja@users.noreply.translate.codeberg.org>, 2024.
# LIGMATV <LIGMATV@users.noreply.translate.codeberg.org>, 2024.
# drat <drat@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-26 13:18+0000\n"
"Last-Translator: Linerly <Linerly@users.noreply.translate.codeberg.org>\n"
"Language-Team: Indonesian <https://translate.codeberg.org/projects/searxng/"
"searxng/id/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-05 15:59+0000\n"
"Last-Translator: drat <drat@users.noreply.translate.codeberg.org>\n"
"Language: id\n"
"Language-Team: Indonesian "
"<https://translate.codeberg.org/projects/searxng/searxng/id/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -81,7 +81,7 @@ msgstr "tv"
#. CATEGORY_NAMES['IT']
#: searx/searxng.msg
msgid "it"
msgstr "ti"
msgstr "TI"
#. CATEGORY_NAMES['NEWS']
#: searx/searxng.msg
@ -314,17 +314,17 @@ msgid "author"
msgstr "penulis"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Buka"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Tertutup"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "dijawab"
@ -417,19 +417,19 @@ msgstr "{minutes} menit yang lalu"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} jam, {minutes} menit yang lalu"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Penghasil nilai acak"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Menghasilkan nilai-nilai acak yang berbeda"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Fungsi statistik"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Menghitung {functions} dari argumen"
@ -462,7 +462,7 @@ msgid "clicks"
msgstr "klik"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Bahasa"
@ -497,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Gambar ini tidak dapat diunduh."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Peringkat buku"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Kualitas berkas"
@ -517,18 +517,13 @@ msgstr "Mengubah string menjadi hash digest yang berbeda."
msgid "hash digest"
msgstr "intisari hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Pengubah nama host"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin nama hos"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Tulis ulang nama hos, hapus atau prioritas kan hasil berdasarkan nama hos"
msgstr "Tulis ulang nama hos, hapus atau prioritas kan hasil berdasarkan nama hos"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -673,17 +668,21 @@ msgid "Length"
msgstr "Durasi"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Tampilan"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Penulis"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "tembolok"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proksi"
@ -956,12 +955,12 @@ msgstr "Saran"
msgid "Search language"
msgstr "Bahasa pencarian"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Bahasa bawaan"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Deteksi otomatis"
@ -1492,7 +1491,7 @@ msgstr "berkas torrent"
#: searx/templates/simple/result_templates/torrent.html:9
msgid "Seeder"
msgstr "Seeder"
msgstr "Pengumpan"
#: searx/templates/simple/result_templates/torrent.html:9
msgid "Leecher"
@ -1832,3 +1831,7 @@ msgstr "sembunyikan video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Pengubah nama host"

View file

@ -29,19 +29,19 @@
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-01 00:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
"searxng/it/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-08 10:01+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: it\n"
"Language-Team: Italian "
"<https://translate.codeberg.org/projects/searxng/searxng/it/>\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.6.1\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -330,17 +330,17 @@ msgid "author"
msgstr "autore"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "aperto"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "chiuso"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "risposto"
@ -433,19 +433,19 @@ msgstr "di {minutes} minuto(i) fa"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "di {hours} ora(e) e {minutes} minuto(i) fa"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generatore di numeri casuali"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Genera più numeri casuali"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funzioni statistiche"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcola {functions} degli argomenti"
@ -478,7 +478,7 @@ msgid "clicks"
msgstr "clic"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Lingua"
@ -513,11 +513,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "L'immagine non può essere scaricata."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Valutazione del libro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Qualità del file"
@ -533,15 +533,11 @@ msgstr "Converte le stringhe in diversi digest di hash."
msgid "hash digest"
msgstr "digest dell'hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Sostituzione del nome host"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin dell'hostname"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Riscrive gli hostname, rimuove i risultati o gli da priorità in base "
@ -687,17 +683,21 @@ msgid "Length"
msgstr "Lunghezza"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visualizzazioni"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autore"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "in cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxy"
@ -974,12 +974,12 @@ msgstr "Suggerimenti"
msgid "Search language"
msgstr "Lingua di ricerca"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Lingua predefinita"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Rilevamento automatico"
@ -1975,3 +1975,7 @@ msgstr "nascondi video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Sostituzione del nome host"

View file

@ -23,19 +23,19 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-22 11:18+0000\n"
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>\n"
"Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
"searxng/ja/>\n"
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>"
"\n"
"Language: ja\n"
"Language-Team: Japanese "
"<https://translate.codeberg.org/projects/searxng/searxng/ja/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -324,17 +324,17 @@ msgid "author"
msgstr "作"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "オープン"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "クローズ"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "回答"
@ -427,19 +427,19 @@ msgstr "{minutes} 分前"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} 時間と{minutes} 分前"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "ランダムな値を生成"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "異なるランダムな値を生成する"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "統計機能"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "変数の {functions} を計算する"
@ -472,7 +472,7 @@ msgid "clicks"
msgstr "クリック"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "言語"
@ -501,11 +501,11 @@ msgstr "画像が単純すぎます。TinEyeが正しく照合を行うにはあ
msgid "The image could not be downloaded."
msgstr "この画像はダウンロードはできません。"
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "書籍評価点数"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "ファイル品質"
@ -521,15 +521,11 @@ msgstr "文字列を異なるハッシュダイジェストに変換。"
msgid "hash digest"
msgstr "ハッシュダイジェスト"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "ホストネーム入れ替え"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "ホスト名プラグイン"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr "検索結果からこのホスト名を基に削除もしくは優先的に書き換えを行う"
@ -663,17 +659,21 @@ msgid "Length"
msgstr "長さ"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "作者"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "キャッシュ"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "プロキシ"
@ -944,12 +944,12 @@ msgstr "提案"
msgid "Search language"
msgstr "検索の言語"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "デフォルトの言語"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "自動検出"
@ -1881,3 +1881,7 @@ msgstr "動画を隠す"
#~ msgid "TiB"
#~ msgstr "テラバイト"
#~ msgid "Hostname replace"
#~ msgstr "ホストネーム入れ替え"

View file

@ -14,18 +14,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-03 17:18+0000\n"
"Last-Translator: seonghobae <seonghobae@users.noreply.translate.codeberg.org>"
"\n"
"Language-Team: Korean <https://translate.codeberg.org/projects/searxng/"
"searxng/ko/>\n"
"Last-Translator: seonghobae "
"<seonghobae@users.noreply.translate.codeberg.org>\n"
"Language: ko\n"
"Language-Team: Korean "
"<https://translate.codeberg.org/projects/searxng/searxng/ko/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.6.1\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -314,17 +313,17 @@ msgid "author"
msgstr "작성자"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "열기"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "닫힘"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "응답"
@ -417,19 +416,19 @@ msgstr "{minutes}분 전"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours}시간 {minutes}분 전"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "난수 생성기"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "다른 난수 생성"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "통계 기능"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "{functions} 매개변수 계산"
@ -462,7 +461,7 @@ msgid "clicks"
msgstr "클릭"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "언어"
@ -495,11 +494,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "다운로드할 수 없는 이미지입니다."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "책 평점"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "파일 품질"
@ -515,15 +514,11 @@ msgstr "문자열을 다른 해시 다이제스트 값으로 변환합니다."
msgid "hash digest"
msgstr "해시 다이제스트"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "호스트 이름 변경"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "호스트 이름 플러그인"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr "검색 결과에서 이 호스트 이름을 기준으로 삭제 또는 우선순위에 따라 재작성하기"
@ -659,17 +654,21 @@ msgid "Length"
msgstr "길이"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "저자"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "캐시"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "프록시됨"
@ -940,12 +939,12 @@ msgstr "제안"
msgid "Search language"
msgstr "검색 언어"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "기본 언어"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "자동 감지"
@ -1758,3 +1757,7 @@ msgstr "비디오 숨기기"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "호스트 이름 변경"

View file

@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-05-29 09:18+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: lt\n"
@ -186,12 +186,12 @@ msgstr ""
#. WEATHER_TERMS['CONDITION']
#: searx/searxng.msg
msgid "Condition"
msgstr ""
msgstr "Sąlyga"
#. WEATHER_TERMS['CURRENT CONDITION']
#: searx/searxng.msg
msgid "Current condition"
msgstr ""
msgstr "Esamos sąlygos"
#. WEATHER_TERMS['EVENING']
#: searx/engines/wttr.py:100 searx/searxng.msg
@ -206,7 +206,7 @@ msgstr "Jaučiasi kaip"
#. WEATHER_TERMS['HUMIDITY']
#: searx/searxng.msg
msgid "Humidity"
msgstr ""
msgstr "Dregmė"
#. WEATHER_TERMS['MAX TEMP.']
#: searx/searxng.msg
@ -236,7 +236,7 @@ msgstr "Vidurdienis"
#. WEATHER_TERMS['PRESSURE']
#: searx/searxng.msg
msgid "Pressure"
msgstr ""
msgstr "Slėgis"
#. WEATHER_TERMS['SUNRISE']
#: searx/searxng.msg
@ -256,7 +256,7 @@ msgstr "Temperatura"
#. WEATHER_TERMS['UV INDEX']
#: searx/searxng.msg
msgid "UV index"
msgstr ""
msgstr "UV indeksas"
#. WEATHER_TERMS['VISIBILITY']
#: searx/searxng.msg
@ -314,17 +314,17 @@ msgid "author"
msgstr "Autorius"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -417,19 +417,19 @@ msgstr "prieš {minutes} min"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "prieš {hours} val., {minutes} min"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Atsitiktinių skaičiu generatorius"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generuoja įvairias atsitiktinius skaičius"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikos funkcijos"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Skaičiuoti argumentų {functions} funkcijas"
@ -462,7 +462,7 @@ msgid "clicks"
msgstr "paspaudimai"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Kalba"
@ -496,11 +496,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Nepavyko atsisiųsti vaizdo."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Knygos įvertinimas"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Failo kokybė"
@ -516,15 +516,11 @@ msgstr "Konvertuoja eilutes į skirtingas maišos santraukas."
msgid "hash digest"
msgstr "maišos santrauka"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Kompiuterio pavadinimo pakeitimas"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -554,7 +550,7 @@ msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
msgstr "Jūsų IP adresas: "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
@ -667,17 +663,21 @@ msgid "Length"
msgstr "Trukmė"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Peržiūros"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autorius"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "patalpinta"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "persiustas"
@ -948,12 +948,12 @@ msgstr "Pasiūlymai"
msgid "Search language"
msgstr "Paieškos kalba"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Numatytoji kalba"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatiškai aptikti"
@ -1918,3 +1918,6 @@ msgstr "slėpti vaizdo įrašą"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Kompiuterio pavadinimo pakeitimas"

View file

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-05-23 21:19+0000\n"
"Last-Translator: Obligate <Obligate@users.noreply.translate.codeberg.org>"
"\n"
@ -312,17 +312,17 @@ msgid "author"
msgstr "autors"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -415,19 +415,19 @@ msgstr "pirms {minutes} minūtes(-ēm)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "pirms {hours} stundas(-ām) un {minutes} minūtēm(-es)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Nejaušu vērtību ģenerators"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Ģenerēt citas nejaušas vērtības"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikas funkcijas"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Aprēķināt argumentu {functions}"
@ -460,7 +460,7 @@ msgid "clicks"
msgstr "klikšķi"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Valoda"
@ -494,11 +494,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Attēlu neizdevās lejupielādēt."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "grāmatu vērtējums"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Failu kvalitāte"
@ -514,15 +514,11 @@ msgstr "Pārvērš virknes (strings) par dažādiem jaucējkoda īssavilkumiem."
msgid "hash digest"
msgstr "jaucējkoda sašķelšana"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Resursdatora vārda nomaiņa"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -660,17 +656,21 @@ msgid "Length"
msgstr "Garums"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autors"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -943,12 +943,12 @@ msgstr "Ieteikumi"
msgid "Search language"
msgstr "Meklēšanas valoda"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr ""
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1651,3 +1651,6 @@ msgstr "slēpt video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Resursdatora vārda nomaiņa"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+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"
@ -303,17 +303,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -406,19 +406,19 @@ msgstr ""
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr ""
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr ""
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr ""
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr ""
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr ""
@ -451,7 +451,7 @@ msgid "clicks"
msgstr ""
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr ""
@ -478,11 +478,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr ""
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr ""
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr ""
@ -498,15 +498,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr ""
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -640,17 +636,21 @@ msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -921,12 +921,12 @@ msgstr ""
msgid "Search language"
msgstr ""
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr ""
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""

View file

@ -15,18 +15,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-19 07:09+0000\n"
"Last-Translator: wazhanudin <wazhanudin@users.noreply.translate.codeberg.org>"
"\n"
"Language-Team: Malay <https://translate.codeberg.org/projects/searxng/"
"searxng/ms/>\n"
"Last-Translator: wazhanudin "
"<wazhanudin@users.noreply.translate.codeberg.org>\n"
"Language: ms\n"
"Language-Team: Malay "
"<https://translate.codeberg.org/projects/searxng/searxng/ms/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -315,17 +314,17 @@ msgid "author"
msgstr "penulis"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "buka"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "tutup"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "dijawab"
@ -418,19 +417,19 @@ msgstr "{minit} minit yang lalu"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{jam} jam, {minit} minit yang lalu"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Penjana nombor rawak"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Jana jumlah rawak yang berbeza"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Fungsi statistik"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Mengira {functions} dari hujah-hujah"
@ -463,7 +462,7 @@ msgid "clicks"
msgstr "klik"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Bahasa"
@ -497,11 +496,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Imej tidak dapat dimuat turun."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Penarafan buku"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Kualiti fail"
@ -517,15 +516,11 @@ msgstr "Ubah rentetan kepada \"hash digest\" yang berbeza."
msgid "hash digest"
msgstr "huraian hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Gantikan nama hos"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin nama hos"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Menulis semula nama hos, buang keputusan atau memberi keutamaan kepada "
@ -672,17 +667,21 @@ msgid "Length"
msgstr "Panjang"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Penulis"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "dicache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "diproksi"
@ -697,7 +696,8 @@ msgstr "Sila semak untuk bug yang sedia ada tentang enjin ini di Github"
#: searx/templates/simple/new_issue.html:69
msgid "I confirm there is no existing bug about the issue I encounter"
msgstr ""
"Saya mengesahkan tiada pepijat yang sedia ada mengenai isu yang saya hadapi"
"Saya mengesahkan tiada pepijat yang sedia ada mengenai isu yang saya "
"hadapi"
#: searx/templates/simple/new_issue.html:71
msgid "If this is a public instance, please specify the URL in the bug report"
@ -954,12 +954,12 @@ msgstr "Cadangan"
msgid "Search language"
msgstr "Bahasa carian"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Bahasa lalai"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Kesan secara automatik"
@ -1108,8 +1108,8 @@ msgid ""
"This is the list of cookies and their values SearXNG is storing on your "
"computer."
msgstr ""
"Ini adalah senarai kuki dan nilai-nilainya yang disimpan oleh SearXNG pada "
"komputer anda."
"Ini adalah senarai kuki dan nilai-nilainya yang disimpan oleh SearXNG "
"pada komputer anda."
#: searx/templates/simple/preferences/cookies.html:3
msgid "With that list, you can assess SearXNG transparency."
@ -1132,8 +1132,8 @@ msgid ""
"Note: specifying custom settings in the search URL can reduce privacy by "
"leaking data to the clicked result sites."
msgstr ""
"Nota: menentukan tetapan khusus dalam URL carian boleh mengurangkan privasi "
"dengan membocorkan data kepada laman hasil yang diklik."
"Nota: menentukan tetapan khusus dalam URL carian boleh mengurangkan "
"privasi dengan membocorkan data kepada laman hasil yang diklik."
#: searx/templates/simple/preferences/cookies.html:35
msgid "URL to restore your preferences in another browser"
@ -1654,3 +1654,7 @@ msgstr "sembunyikkan video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Gantikan nama hos"

View file

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-04-07 07:18+0000\n"
"Last-Translator: omfj <omfj@users.noreply.translate.codeberg.org>\n"
"Language: nb_NO\n"
@ -311,17 +311,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -414,19 +414,19 @@ msgstr "for {minutes} minuter siden"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "for {hours} time(r), {minutes} minutt(er) siden"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator for tilfeldige tall"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generer forskjellige tilfeldige verdier"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikkfunksjoner"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Regn ut {functions} av parameterne"
@ -459,7 +459,7 @@ msgid "clicks"
msgstr "klikk"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Språk"
@ -493,11 +493,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Bildet kunne ikke lastes ned."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Bokvurdering"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Filkvalitet"
@ -513,15 +513,11 @@ msgstr "Konverterer strenger til andre sjekksumsføljetonger."
msgid "hash digest"
msgstr "sjekksumsføljetong"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Vertsnavnserstatning"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -666,17 +662,21 @@ msgid "Length"
msgstr "Lengde"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Opphavsmann"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "hurtiglagret"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "mellomtjent"
@ -949,12 +949,12 @@ msgstr "Forslag"
msgid "Search language"
msgstr "Søkespråk"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Forvalgt språk"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Auto-oppdag"
@ -1845,3 +1845,6 @@ msgstr "skjul video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Vertsnavnserstatning"

View file

@ -21,22 +21,22 @@
# yannickmaes <yannickmaes@users.noreply.translate.codeberg.org>, 2024.
# MVDW-Java <MVDW-Java@users.noreply.translate.codeberg.org>, 2024.
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-09 15:18+0000\n"
"Last-Translator: notlmutsaers <notlmutsaers@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
"searxng/nl/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: nl\n"
"Language-Team: Dutch "
"<https://translate.codeberg.org/projects/searxng/searxng/nl/>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -325,17 +325,17 @@ msgid "author"
msgstr "auteur"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "open"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "gesloten"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "beantwoord"
@ -428,19 +428,19 @@ msgstr "{minutes} minu(u)t(en) geleden"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} uur, {minutes} minu(u)t(en) geleden"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Willekeurigewaardegenerator"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Genereer verschillende willekeurige waarden"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistische functies"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Bereken {functions} van de opties"
@ -473,7 +473,7 @@ msgid "clicks"
msgstr "clicks"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Taal"
@ -508,11 +508,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "De afbeelding kon niet worden gedownload."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "boekbeoordeling"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "bestandskwaliteit"
@ -528,15 +528,11 @@ msgstr "Zet tekstwaarden om naar verschillende hash digests."
msgid "hash digest"
msgstr "hash digest"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Servernaam vervangen"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Hostnamen plug-in"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Herschrijf hostnamen, verwijder resultaten of geef prioriteit aan ze op "
@ -683,17 +679,21 @@ msgid "Length"
msgstr "Lengte"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Kijkers"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Auteur"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "gecachet"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "geproxyt"
@ -968,12 +968,12 @@ msgstr "Suggesties"
msgid "Search language"
msgstr "Zoektaal"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Standaardtaal"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatisch herkennen"
@ -1968,3 +1968,7 @@ msgstr "verberg video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Servernaam vervangen"

View file

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-03-12 17:28+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -311,17 +311,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -414,19 +414,19 @@ msgstr "fa {minutes} minuta(s)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "Fa {hours} ora(s), {minutes} minuta(s)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator aleatòri"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Crèa de valors aleatòrias diferentas"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Foncions estatisticas"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcula las {functions} dels arguments"
@ -459,7 +459,7 @@ msgid "clicks"
msgstr "clics"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Lenga"
@ -488,11 +488,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Telecargament impossible de limatge."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Nòta del libre"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Qualitat del fichièr"
@ -508,15 +508,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Remplaçar los noms dòste"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -654,17 +650,21 @@ msgid "Length"
msgstr "Longor"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en version locala"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxifiat"
@ -935,12 +935,12 @@ msgstr "Suggestions"
msgid "Search language"
msgstr "Lenga de recerca"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Lenga per defaut"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1895,3 +1895,6 @@ msgstr "escondre la vidèo"
#~ msgid "TiB"
#~ msgstr "TiO"
#~ msgid "Hostname replace"
#~ msgstr "Remplaçar los noms dòste"

View file

@ -16,23 +16,25 @@
# Bubowny <outcheesed@proton.me>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# dkuku <dkuku@users.noreply.translate.codeberg.org>, 2024.
# danielszewczuk <danielszewczuk@users.noreply.translate.codeberg.org>,
# 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-20 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Polish <https://translate.codeberg.org/projects/searxng/"
"searxng/pl/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-07 01:02+0000\n"
"Last-Translator: danielszewczuk "
"<danielszewczuk@users.noreply.translate.codeberg.org>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -88,7 +90,7 @@ msgstr "tv"
#. CATEGORY_NAMES['IT']
#: searx/searxng.msg
msgid "it"
msgstr "it"
msgstr "technologia"
#. CATEGORY_NAMES['NEWS']
#: searx/searxng.msg
@ -321,17 +323,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Otwórz"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Zamknięty"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "odebrany"
@ -424,19 +426,19 @@ msgstr "{minutes} minut(y) temu"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} godzin(y), {minutes} minut(y) temu"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator wartości losowych"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Wygeneruj różne wartości losowe"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funkcje statystyczne"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Oblicz {functions} argumentów"
@ -469,7 +471,7 @@ msgid "clicks"
msgstr "kliknięcia"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Język"
@ -503,11 +505,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Nie można pobrać obrazu."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Ocena książki"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Jakość pliku"
@ -523,19 +525,15 @@ msgstr "Konwertuje tekst na różne skróty hash."
msgid "hash digest"
msgstr "wartość hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Zastąp nazwę hosta"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Wtyczka Hostnames"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Przepisywanie nazw hostów, usuwanie wyników lub nadawanie im priorytetów na "
"podstawie nazwy hosta"
"Przepisywanie nazw hostów, usuwanie wyników lub nadawanie im priorytetów "
"na podstawie nazwy hosta"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -678,17 +676,21 @@ msgid "Length"
msgstr "Długość"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Wyświetlenia"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "buforowane"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "przesłane poprzez proxy"
@ -961,12 +963,12 @@ msgstr "Propozycje"
msgid "Search language"
msgstr "Język wyszukiwania"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Domyślny język"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Automatyczne wykrywanie"
@ -1953,3 +1955,7 @@ msgstr "ukryj wideo"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Zastąp nazwę hosta"

View file

@ -20,19 +20,18 @@
# ds451 <ds451@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-11 16:18+0000\n"
"Last-Translator: ds451 <ds451@users.noreply.translate.codeberg.org>\n"
"Language-Team: Portuguese <https://translate.codeberg.org/projects/searxng/"
"searxng/pt/>\n"
"Language: pt\n"
"Language-Team: Portuguese "
"<https://translate.codeberg.org/projects/searxng/searxng/pt/>\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.6.2\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -321,17 +320,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "aberta"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "fechada"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "respondido"
@ -424,19 +423,19 @@ msgstr "{minutes} minuto(s) atrás"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} hora(s), {minutes} minuto(s) atrás"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Gerador de valores aleatórios"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Gerar valores aleatórios diferentes"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funções de estatística"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calcular {functions} dos argumentos"
@ -469,7 +468,7 @@ msgid "clicks"
msgstr "clica"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Idioma"
@ -503,11 +502,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Não é possível fazer download da imagem."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Classificação do livro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Qualidade do ficheiro"
@ -523,18 +522,13 @@ msgstr "Converte strings em diferentes resumos de hash."
msgid "hash digest"
msgstr "resumo de hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Substituição do nome do host"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin hostnames"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Reescreve hostname, apaga resultados ou prioriza-os com base no hostname"
msgstr "Reescreve hostname, apaga resultados ou prioriza-os com base no hostname"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -677,17 +671,21 @@ msgid "Length"
msgstr "Comprimento"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "armazenados em cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "via proxy"
@ -958,12 +956,12 @@ msgstr "Sugestões"
msgid "Search language"
msgstr "Idioma de pesquisa"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Idioma padrão"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Auto-detetar"
@ -1318,8 +1316,8 @@ msgid ""
"Perform search immediately if a category selected. Disable to select "
"multiple categories"
msgstr ""
"Pesquisar imediatamente se uma categoria estiver selecionada. Desative para "
"selecionar múltiplas categorias"
"Pesquisar imediatamente se uma categoria estiver selecionada. Desative "
"para selecionar múltiplas categorias"
#: searx/templates/simple/preferences/theme.html:2
msgid "Theme"
@ -1962,3 +1960,7 @@ msgstr "esconder vídeo"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Substituição do nome do host"

View file

@ -31,19 +31,18 @@
# rodgui <rodgui@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-07-03 17:18+0000\n"
"Last-Translator: rodgui <rodgui@users.noreply.translate.codeberg.org>\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.6.1\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -332,17 +331,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Abrir"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Fechado"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "respondido"
@ -435,19 +434,19 @@ msgstr "{minutes} minuto(s) atrás"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} hora(s), {minutes} minuto(s) atrás"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Gerador de valor aleatório"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Gerar diferentes valores aleatórios"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funções estatísticas"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Computar {functions} dos argumentos"
@ -480,7 +479,7 @@ msgid "clicks"
msgstr "cliques"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Idioma"
@ -515,11 +514,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Essa imagem não pôde ser baixada."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Avaliação de livro"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Qualidade do arquivo"
@ -535,18 +534,15 @@ msgstr "Converte as sequências em diferentes resultados de hash."
msgid "hash digest"
msgstr "resultado de hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Substituir host"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Plugin de Hostnames"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Reescrita de hostnames, remova resultados ou priorize-os com base no hostname"
"Reescrita de hostnames, remova resultados ou priorize-os com base no "
"hostname"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -689,17 +685,21 @@ msgid "Length"
msgstr "Duração"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "em cache"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "por proxy"
@ -974,12 +974,12 @@ msgstr "Sugestões"
msgid "Search language"
msgstr "Idioma de busca"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Idioma padrão"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Auto-detectar"
@ -1980,3 +1980,7 @@ msgstr "ocultar vídeo"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Substituir host"

View file

@ -17,21 +17,20 @@
# LunarCat93 <LunarCat93@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-20 06:18+0000\n"
"Last-Translator: LunarCat93 <LunarCat93@users.noreply.translate.codeberg.org>"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-01 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language-Team: Romanian <https://translate.codeberg.org/projects/searxng/"
"searxng/ro/>\n"
"Language: ro\n"
"Language-Team: Romanian "
"<https://translate.codeberg.org/projects/searxng/searxng/ro/>\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 "
"< 20)) ? 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==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -320,17 +319,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "deschis"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "închis"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "răspuns"
@ -423,19 +422,19 @@ msgstr "{minutes} minut(e) în urmă"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} oră(e), {minutes} minut(e) în urmă"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator de numere aleatorii"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generează valori aleatoare diferite"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Funcții statistice"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Calculează {functions} din argumente"
@ -468,7 +467,7 @@ msgid "clicks"
msgstr "click-uri"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Limba"
@ -502,11 +501,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Imaginea nu a putut fi descărcată."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Recenzia cărții"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Calitatea fișierului"
@ -522,15 +521,11 @@ msgstr "Convertește șirurile în diferite rezumate hash."
msgid "hash digest"
msgstr "rezumat hash"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Schimbă hostname-ul"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Pluginul Hostnames"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Rescrieți hostnames, eliminați rezultatele sau prioritizați-le pe baza "
@ -675,17 +670,21 @@ msgid "Length"
msgstr "Lungime"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Afișări"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "stocat temporar"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "delegat"
@ -964,12 +963,12 @@ msgstr "Sugestii"
msgid "Search language"
msgstr "Limba de căutare"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Limbă implicită"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Auto-detectare"
@ -1962,3 +1961,7 @@ msgstr "ascunde video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Schimbă hostname-ul"

View file

@ -23,21 +23,20 @@
# Xvnov <Xvnov@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"Last-Translator: Xvnov <Xvnov@users.noreply.translate.codeberg.org>\n"
"Language-Team: Russian <https://translate.codeberg.org/projects/searxng/"
"searxng/ru/>\n"
"Language: ru\n"
"Language-Team: Russian "
"<https://translate.codeberg.org/projects/searxng/searxng/ru/>\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) "
"|| (n%100>=11 && 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%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || ("
"n%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -326,17 +325,17 @@ msgid "author"
msgstr "автор"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Открыть"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Закрыто"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "ответил"
@ -429,19 +428,19 @@ msgstr "{minutes} минут(-у) назад"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} час(ов), {minutes} минут(а) назад"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Генератор случайных значений"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Генерирует разные случайные значения"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Статистические функции"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Применяет функции {functions} к аргументам"
@ -474,7 +473,7 @@ msgid "clicks"
msgstr "нажатия"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Язык"
@ -508,11 +507,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Не удалось загрузить изображение."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Рейтинг книги"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Качество файла"
@ -528,15 +527,11 @@ msgstr "Рассчитывает контрольные суммы от стро
msgid "hash digest"
msgstr "контрольная сумма"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Замена имени сайта"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Плагин имени хостов"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Перепишите имена хостов, удалите результаты или расставьте приоритеты в "
@ -603,8 +598,7 @@ msgstr "Вы не используете Tor. Ваш публичный IP-ад
#: searx/plugins/tor_check.py:85
msgid "You are not using Tor and you have this external IP address: {ip_address}"
msgstr ""
"Вы не используете Tor, и у вас следующий публичный IP-адрес: {ip_address}"
msgstr "Вы не используете Tor, и у вас следующий публичный IP-адрес: {ip_address}"
#: searx/plugins/tracker_url_remover.py:16
msgid "Tracker URL remover"
@ -682,17 +676,21 @@ msgid "Length"
msgstr "Длительность"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Автор"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "веб-архив"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "через прокси"
@ -967,12 +965,12 @@ msgstr "Предложения"
msgid "Search language"
msgstr "Язык поиска"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Язык по умолчанию"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Авто-определение"
@ -1960,3 +1958,7 @@ msgstr "скрыть видео"
#~ msgid "TiB"
#~ msgstr "ТиБ"
#~ msgid "Hostname replace"
#~ msgstr "Замена имени сайта"

View file

@ -10,17 +10,16 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-06-22 11:18+0000\n"
"Last-Translator: nish_j <nish_j@users.noreply.translate.codeberg.org>\n"
"Language-Team: Sinhala <https://translate.codeberg.org/projects/searxng/"
"searxng/si/>\n"
"Language: si\n"
"Language-Team: Sinhala "
"<https://translate.codeberg.org/projects/searxng/searxng/si/>\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.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -309,17 +308,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -412,19 +411,19 @@ msgstr "මිනිත්තු(ව) {minutes}කට පෙර"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "පැය {hours}, මිනිත්තු(ව) {minutes}කට පෙර"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr ""
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr ""
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr ""
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr ""
@ -457,7 +456,7 @@ msgid "clicks"
msgstr ""
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr ""
@ -484,11 +483,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "මෙම රූපය බාගත කල නොහැකි විය."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr ""
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr ""
@ -504,15 +503,11 @@ msgstr ""
msgid "hash digest"
msgstr ""
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr ""
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -646,17 +641,21 @@ msgid "Length"
msgstr "දිග"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "කතුවරයා"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -927,12 +926,12 @@ msgstr ""
msgid "Search language"
msgstr "සෙවුම් භාෂාව"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "මූලික භාෂාව"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr ""
@ -1592,3 +1591,7 @@ msgstr ""
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr ""

View file

@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-05-06 07:18+0000\n"
"Last-Translator: Vision <Vision@users.noreply.translate.codeberg.org>\n"
"Language: sk\n"
@ -313,17 +313,17 @@ msgid "author"
msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -416,19 +416,19 @@ msgstr "pred {minutes} min."
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "pred {hours} hod., {minutes} min."
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generátor nahodných hodnôt"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Vytvoriť rôzné náhodné hodnoty"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Štatistické funkcie"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Vypočítať {functions} argumentov"
@ -461,7 +461,7 @@ msgid "clicks"
msgstr "kliknutia"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Jazyk"
@ -495,11 +495,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Obrázok nemohol byť stiahnutý."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Hodnotenie knižky"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Kvalita súboru"
@ -515,15 +515,11 @@ msgstr "Skonvertuje text pomocou rôznych hash funkcií."
msgid "hash digest"
msgstr "hash hodnota"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Nahradenie názvu servera"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -665,17 +661,21 @@ msgid "Length"
msgstr "Dĺžka"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "z vyrovnávacej pamäte"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "cez proxy"
@ -948,12 +948,12 @@ msgstr "Návrhy"
msgid "Search language"
msgstr "Jazyk vyhľadávania"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Predvolený jazyk"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Auto-detekcia"
@ -1937,3 +1937,6 @@ msgstr "skryť video"
#~ msgid "TiB"
#~ msgstr "TB"
#~ msgid "Hostname replace"
#~ msgstr "Nahradenie názvu servera"

View file

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-05-23 21:19+0000\n"
"Last-Translator: cynedex <cynedex@users.noreply.translate.codeberg.org>\n"
"Language: sl\n"
@ -315,17 +315,17 @@ msgid "author"
msgstr "avtor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -418,19 +418,19 @@ msgstr "{minutes} minut nazaj"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "pred {hours} urami in {minutes} minut"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Generator naključnih števil"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generiraj različne naključne vrednosti"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistične funkcije"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Izračunaj {functions} argumentov"
@ -463,7 +463,7 @@ msgid "clicks"
msgstr "klikov"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Jezik"
@ -497,11 +497,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Slike ni bilo mogoče prevesti."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Ocena knjige"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Kakovost datoteke"
@ -517,15 +517,11 @@ msgstr "Pretvori besede v drugo hash vrednost."
msgid "hash digest"
msgstr "Hash vrednost"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Preimenuj strežniško ime"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -668,17 +664,21 @@ msgid "Length"
msgstr "Dolžina"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Avtor"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "predpomnjeno"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "preko posredniškega strežnika"
@ -949,12 +949,12 @@ msgstr "Predlogi"
msgid "Search language"
msgstr "Jezik iskanja"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Privzeti jezik"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Samodejno zaznaj"
@ -1935,3 +1935,6 @@ msgstr "skrij video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Preimenuj strežniško ime"

View file

@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-04-18 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -314,17 +314,17 @@ msgid "author"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr ""
@ -417,19 +417,19 @@ msgstr "пре {minutes} минут(у,е,а)"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "пре {hours} час(a) и {minutes} минут(у,е,а)"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Генератор случајних вредности"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Генеришите различите случајне вредности"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Статистичке функције"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Израчунајте {functions} аргумената"
@ -462,7 +462,7 @@ msgid "clicks"
msgstr "кликови"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Језик"
@ -496,11 +496,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Није могуће преузети слику."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Оцена књиге"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Квалитет датотеке"
@ -516,15 +516,11 @@ msgstr "Претвара стринг у другачије хешеве."
msgid "hash digest"
msgstr "Излаз хеш функције"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Замени име хостинга"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
@ -666,17 +662,21 @@ msgid "Length"
msgstr "Дужина"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Аутор"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "кеширано"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "прокси"
@ -947,12 +947,12 @@ msgstr "Предлози"
msgid "Search language"
msgstr "Језик претраге"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Подразумевани језик"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Аутоматски откриј"
@ -1932,3 +1932,6 @@ msgstr "сакриј видео"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Замени име хостинга"

View file

@ -19,21 +19,22 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# mrintegrity <mrintegrity@users.noreply.translate.codeberg.org>, 2024.
# wintryexit <weatherdowner@proton.me>, 2024.
# Wexterity <Wexterity@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-07-05 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Swedish <https://translate.codeberg.org/projects/searxng/"
"searxng/sv/>\n"
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
"PO-Revision-Date: 2024-08-02 07:09+0000\n"
"Last-Translator: Wexterity "
"<Wexterity@users.noreply.translate.codeberg.org>\n"
"Language: sv\n"
"Language-Team: Swedish "
"<https://translate.codeberg.org/projects/searxng/searxng/sv/>\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.6.1\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -322,17 +323,17 @@ msgid "author"
msgstr "författare"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "öppna"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "stängd"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "svarad"
@ -425,19 +426,19 @@ msgstr "{minutes} minut(er) sedan"
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} timm(e/ar), {minutes} minut(er) sedan"
#: searx/answerers/random/answerer.py:75
#: searx/answerers/random/answerer.py:76
msgid "Random value generator"
msgstr "Slumpvärdesgenerator"
#: searx/answerers/random/answerer.py:76
#: searx/answerers/random/answerer.py:77
msgid "Generate different random values"
msgstr "Generera olika slumpmässiga värden"
#: searx/answerers/statistics/answerer.py:48
#: searx/answerers/statistics/answerer.py:50
msgid "Statistics functions"
msgstr "Statistikfunktioner"
#: searx/answerers/statistics/answerer.py:49
#: searx/answerers/statistics/answerer.py:51
msgid "Compute {functions} of the arguments"
msgstr "Beräkna {functions} av argumenten"
@ -470,7 +471,7 @@ msgid "clicks"
msgstr "klickar"
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
#: searx/engines/zlibrary.py:128
#: searx/engines/zlibrary.py:137
msgid "Language"
msgstr "Språk"
@ -505,11 +506,11 @@ msgstr ""
msgid "The image could not be downloaded."
msgstr "Det gick inte att ladda ner bilden."
#: searx/engines/zlibrary.py:129
#: searx/engines/zlibrary.py:138
msgid "Book rating"
msgstr "Bokbetyg"
#: searx/engines/zlibrary.py:130
#: searx/engines/zlibrary.py:139
msgid "File quality"
msgstr "Filkvalitet"
@ -525,15 +526,11 @@ msgstr "Konverterar strängar till olika hashvärden."
msgid "hash digest"
msgstr "hashvärde"
#: searx/plugins/hostname_replace.py:7
msgid "Hostname replace"
msgstr "Värdnamn satt"
#: searx/plugins/hostnames.py:68
#: searx/plugins/hostnames.py:91
msgid "Hostnames plugin"
msgstr "Värdnamn plugin"
#: searx/plugins/hostnames.py:69
#: searx/plugins/hostnames.py:92
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Skriva om värdnamn, ta bort resultat eller prioritera dem baserat på "
@ -680,17 +677,21 @@ msgid "Length"
msgstr "Längd"
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visningar"
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Upphovsman"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "cachad"
#: searx/templates/simple/macros.html:44
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxade"
@ -963,12 +964,12 @@ msgstr "Förslag"
msgid "Search language"
msgstr "Sökspråk"
#: searx/templates/simple/filters/languages.html:2
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/preferences/language.html:7
msgid "Default language"
msgstr "Standardspråk"
#: searx/templates/simple/filters/languages.html:4
#: searx/templates/simple/filters/languages.html:8
#: searx/templates/simple/preferences/language.html:11
msgid "Auto-detect"
msgstr "Upptäck automatiskt"
@ -1948,3 +1949,7 @@ msgstr "göm video"
#~ msgid "TiB"
#~ msgstr "TiB"
#~ msgid "Hostname replace"
#~ msgstr "Värdnamn satt"

Some files were not shown because too many files have changed in this diff Show more