forked from Ponysearch/Ponysearch
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
4e3dcf9dff
117 changed files with 6723 additions and 6596 deletions
|
@ -13,7 +13,7 @@ sphinx-jinja==2.0.2
|
||||||
sphinx-tabs==3.4.5
|
sphinx-tabs==3.4.5
|
||||||
sphinxcontrib-programoutput==0.17
|
sphinxcontrib-programoutput==0.17
|
||||||
sphinx-autobuild==2021.3.14
|
sphinx-autobuild==2021.3.14
|
||||||
sphinx-notfound-page==1.0.2
|
sphinx-notfound-page==1.0.4
|
||||||
myst-parser==3.0.1
|
myst-parser==3.0.1
|
||||||
linuxdoc==20240509
|
linuxdoc==20240509
|
||||||
aiounittest==1.4.2
|
aiounittest==1.4.2
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
certifi==2024.7.4
|
certifi==2024.7.4
|
||||||
babel==2.15.0
|
babel==2.16.0
|
||||||
flask-babel==4.0.0
|
flask-babel==4.0.0
|
||||||
flask==3.0.3
|
flask==3.0.3
|
||||||
jinja2==3.1.4
|
jinja2==3.1.4
|
||||||
lxml==5.2.2
|
lxml==5.2.2
|
||||||
pygments==2.18.0
|
pygments==2.18.0
|
||||||
python-dateutil==2.9.0.post0
|
python-dateutil==2.9.0.post0
|
||||||
pyyaml==6.0.1
|
pyyaml==6.0.2
|
||||||
httpx[http2]==0.24.1
|
httpx[http2]==0.24.1
|
||||||
Brotli==1.1.0
|
Brotli==1.1.0
|
||||||
uvloop==0.19.0
|
uvloop==0.19.0
|
||||||
httpx-socks[asyncio]==0.7.7
|
httpx-socks[asyncio]==0.7.7
|
||||||
setproctitle==1.3.3
|
setproctitle==1.3.3
|
||||||
redis==5.0.7
|
redis==5.0.8
|
||||||
markdown-it-py==3.0.0
|
markdown-it-py==3.0.0
|
||||||
fasttext-predict==0.9.2.2
|
fasttext-predict==0.9.2.2
|
||||||
pytomlpp==1.0.13; python_version < '3.11'
|
pytomlpp==1.0.13; python_version < '3.11'
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -334,9 +334,11 @@ def response(resp):
|
||||||
# results --> answer
|
# results --> answer
|
||||||
answer_list = eval_xpath(dom, '//div[contains(@class, "LGOjhe")]')
|
answer_list = eval_xpath(dom, '//div[contains(@class, "LGOjhe")]')
|
||||||
for item in answer_list:
|
for item in answer_list:
|
||||||
|
for bubble in eval_xpath(item, './/div[@class="nnFGuf"]'):
|
||||||
|
bubble.drop_tree()
|
||||||
results.append(
|
results.append(
|
||||||
{
|
{
|
||||||
'answer': item.xpath("normalize-space()"),
|
'answer': extract_text(item),
|
||||||
'url': (eval_xpath(item, '../..//a/@href') + [None])[0],
|
'url': (eval_xpath(item, '../..//a/@href') + [None])[0],
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
@ -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)
|
|
|
@ -3,16 +3,6 @@
|
||||||
"""In addition to rewriting/replace reslut URLs, the *hoostnames* plugin offers
|
"""In addition to rewriting/replace reslut URLs, the *hoostnames* plugin offers
|
||||||
other features.
|
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
|
- ``hostnames.replace``: A **mapping** of regular expressions to hostnames to be
|
||||||
replaced by other hostnames.
|
replaced by other hostnames.
|
||||||
|
|
||||||
|
@ -129,29 +119,8 @@ def _load_regular_expressions(settings_key):
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
|
||||||
# compatibility fallback for old hostname replace plugin
|
replacements = _load_regular_expressions('replace')
|
||||||
# TODO: remove in the future once most/all instance maintainers finished migrating # pylint: disable=fixme
|
removables = _load_regular_expressions('remove')
|
||||||
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')
|
|
||||||
high_priority = _load_regular_expressions('high_priority')
|
high_priority = _load_regular_expressions('high_priority')
|
||||||
low_priority = _load_regular_expressions('low_priority')
|
low_priority = _load_regular_expressions('low_priority')
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -15,18 +15,17 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-09 15:18+0000\n"
|
||||||
"Last-Translator: notlmutsaers <notlmutsaers@users.noreply.translate.codeberg."
|
"Last-Translator: notlmutsaers "
|
||||||
"org>\n"
|
"<notlmutsaers@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Afrikaans <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/af/>\n"
|
|
||||||
"Language: af\n"
|
"Language: af\n"
|
||||||
|
"Language-Team: Afrikaans "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/af/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -315,17 +314,17 @@ msgid "author"
|
||||||
msgstr "outeur"
|
msgstr "outeur"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "oop"
|
msgstr "oop"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "toe"
|
msgstr "toe"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "geantwoord"
|
msgstr "geantwoord"
|
||||||
|
|
||||||
|
@ -418,19 +417,19 @@ msgstr "{minutes} minute terug"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ure, {minutes} minute terug"
|
msgstr "{hours} ure, {minutes} minute terug"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Ewekansige getal genereerder"
|
msgstr "Ewekansige getal genereerder"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Genereer verskillende ewekansige waardes"
|
msgstr "Genereer verskillende ewekansige waardes"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistiese funksies"
|
msgstr "Statistiese funksies"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Verwerk {functions} van die argumente"
|
msgstr "Verwerk {functions} van die argumente"
|
||||||
|
|
||||||
|
@ -463,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "klikke"
|
msgstr "klikke"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Taal"
|
msgstr "Taal"
|
||||||
|
|
||||||
|
@ -498,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Die prent kon nie afgelaai word nie."
|
msgstr "Die prent kon nie afgelaai word nie."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "boekgradering"
|
msgstr "boekgradering"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Lêer kwaliteit"
|
msgstr "Lêer kwaliteit"
|
||||||
|
|
||||||
|
@ -518,19 +517,15 @@ msgstr "Skakel snare om na verskillende hash digests."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash digest"
|
msgstr "hash digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "vervang Gasheernaam"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Gasheername-inprop"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Herskryf gasheername, verwyder resultate of prioritiseer dit op grond van "
|
"Herskryf gasheername, verwyder resultate of prioritiseer dit op grond van"
|
||||||
"die gasheernaam"
|
" die gasheernaam"
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:12
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -675,17 +670,21 @@ msgid "Length"
|
||||||
msgstr "Lengte"
|
msgstr "Lengte"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Outeur"
|
msgstr "Outeur"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "gekas"
|
msgstr "gekas"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "gevolmagtig"
|
msgstr "gevolmagtig"
|
||||||
|
|
||||||
|
@ -958,12 +957,12 @@ msgstr "Voorstelle"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Soek taal"
|
msgstr "Soek taal"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Verstek taal"
|
msgstr "Verstek taal"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Outo-bespeur"
|
msgstr "Outo-bespeur"
|
||||||
|
@ -1684,3 +1683,7 @@ msgstr "versteek video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "vervang Gasheernaam"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -20,20 +20,19 @@
|
||||||
# geekom13 <geekom13@users.noreply.translate.codeberg.org>, 2024.
|
# geekom13 <geekom13@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-01 00:18+0000\n"
|
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
|
||||||
"Last-Translator: geekom13 <geekom13@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: nebras <nebras@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Arabic <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/ar/>\n"
|
|
||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
|
"Language-Team: Arabic "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/ar/>\n"
|
||||||
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : "
|
||||||
|
"n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"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"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -322,17 +321,17 @@ msgid "author"
|
||||||
msgstr "الكاتب"
|
msgstr "الكاتب"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "مفتوح"
|
msgstr "مفتوح"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "مغلق"
|
msgstr "مغلق"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "أُجيبت"
|
msgstr "أُجيبت"
|
||||||
|
|
||||||
|
@ -425,19 +424,19 @@ msgstr "قبل دقائق"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "قبل {hours} ساعات، {minutes} دقائق"
|
msgstr "قبل {hours} ساعات، {minutes} دقائق"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "مولّد قيمة عشوائية"
|
msgstr "مولّد قيمة عشوائية"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "توليد قِيم عشوائية مختلفة"
|
msgstr "توليد قِيم عشوائية مختلفة"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "الدالات الإحصائية"
|
msgstr "الدالات الإحصائية"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "حوسبة معطيات ال{functions}"
|
msgstr "حوسبة معطيات ال{functions}"
|
||||||
|
|
||||||
|
@ -470,7 +469,7 @@ msgid "clicks"
|
||||||
msgstr "نقرات"
|
msgstr "نقرات"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "اللغة"
|
msgstr "اللغة"
|
||||||
|
|
||||||
|
@ -503,11 +502,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "لا يمكن تنزيل الصورة."
|
msgstr "لا يمكن تنزيل الصورة."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "تقييم الكتاب"
|
msgstr "تقييم الكتاب"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "جودة الملف"
|
msgstr "جودة الملف"
|
||||||
|
|
||||||
|
@ -523,15 +522,11 @@ msgstr "يحول السلسلة إلى ملخص التجزئة."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "ملخص التجزئة"
|
msgstr "ملخص التجزئة"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "استبدال اسم المضيف"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "مُلحق لأسماء المضيفين (Hostnames)"
|
msgstr "مُلحق لأسماء المضيفين (Hostnames)"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"أعِد كتابة أسماء المضيفين (hostnames) أو أزِل النتائج أو حدّد أولوياتها "
|
"أعِد كتابة أسماء المضيفين (hostnames) أو أزِل النتائج أو حدّد أولوياتها "
|
||||||
|
@ -677,17 +672,21 @@ msgid "Length"
|
||||||
msgstr "الطول"
|
msgstr "الطول"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "الكاتب"
|
msgstr "الكاتب"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "النسخة المخبأة"
|
msgstr "النسخة المخبأة"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "المخدم البروكسي"
|
msgstr "المخدم البروكسي"
|
||||||
|
|
||||||
|
@ -958,12 +957,12 @@ msgstr "الإقتراحات"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "لغة البحث"
|
msgstr "لغة البحث"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "اللغة الإفتراضية"
|
msgstr "اللغة الإفتراضية"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "الاكتشاف التلقائي"
|
msgstr "الاكتشاف التلقائي"
|
||||||
|
@ -1937,3 +1936,7 @@ msgstr "إخفاء الفيديو"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "تيرابيت"
|
#~ msgstr "تيرابيت"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "استبدال اسم المضيف"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -16,7 +16,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-05-25 08:18+0000\n"
|
||||||
"Last-Translator: krlsk <krlsk@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: krlsk <krlsk@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
|
@ -314,17 +314,17 @@ msgid "author"
|
||||||
msgstr "Автор"
|
msgstr "Автор"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -417,19 +417,19 @@ msgstr "преди {minutes} минута(минути)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "преди {hours} час(ове), {minutes} минута(минути)"
|
msgstr "преди {hours} час(ове), {minutes} минута(минути)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Генератор на произволни стойности"
|
msgstr "Генератор на произволни стойности"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Генерирайте различни произволни стойности"
|
msgstr "Генерирайте различни произволни стойности"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Функции за статистика"
|
msgstr "Функции за статистика"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Изчислете {functions} на аргументите"
|
msgstr "Изчислете {functions} на аргументите"
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "клика"
|
msgstr "клика"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Език"
|
msgstr "Език"
|
||||||
|
|
||||||
|
@ -497,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Снимката не може да бъде смъкната."
|
msgstr "Снимката не може да бъде смъкната."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Рейтинг на книги"
|
msgstr "Рейтинг на книги"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Качество на файл"
|
msgstr "Качество на файл"
|
||||||
|
|
||||||
|
@ -517,15 +517,11 @@ msgstr "Преобразува низове в различни хаш-извл
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "хеш извлечение"
|
msgstr "хеш извлечение"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Замяна на името на хоста"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -665,17 +661,21 @@ msgid "Length"
|
||||||
msgstr "Дължина"
|
msgstr "Дължина"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Автор"
|
msgstr "Автор"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "кеширана"
|
msgstr "кеширана"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "прекарана"
|
msgstr "прекарана"
|
||||||
|
|
||||||
|
@ -950,12 +950,12 @@ msgstr "Предложения"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Език на търсене"
|
msgstr "Език на търсене"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Основен език"
|
msgstr "Основен език"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Автоматично разпознаване"
|
msgstr "Автоматично разпознаване"
|
||||||
|
@ -1940,3 +1940,6 @@ msgstr "скрий видеото"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "терабайт"
|
#~ msgstr "терабайт"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Замяна на името на хоста"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -18,18 +18,17 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-27 19:18+0000\n"
|
||||||
"Last-Translator: MonsoonRain <MonsoonRain@users.noreply.translate.codeberg."
|
"Last-Translator: MonsoonRain "
|
||||||
"org>\n"
|
"<MonsoonRain@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Bengali <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/bn/>\n"
|
|
||||||
"Language: bn\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -318,17 +317,17 @@ msgid "author"
|
||||||
msgstr "লেখক"
|
msgstr "লেখক"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "খুলো"
|
msgstr "খুলো"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "বন্ধ"
|
msgstr "বন্ধ"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "উত্তরকৃত"
|
msgstr "উত্তরকৃত"
|
||||||
|
|
||||||
|
@ -421,19 +420,19 @@ msgstr "{minutes} মিনিট আগে"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে"
|
msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "এলোমেলো মান জেনারেটর"
|
msgstr "এলোমেলো মান জেনারেটর"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "বিভিন্ন এলোমেলো মান তৈরি করুন"
|
msgstr "বিভিন্ন এলোমেলো মান তৈরি করুন"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "পরিসংখ্যান কার্যাবলী"
|
msgstr "পরিসংখ্যান কার্যাবলী"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "আর্গুমেন্টগুলির {functions} গণনা করুন৷"
|
msgstr "আর্গুমেন্টগুলির {functions} গণনা করুন৷"
|
||||||
|
|
||||||
|
@ -466,7 +465,7 @@ msgid "clicks"
|
||||||
msgstr "ক্লিক সংখ্যা"
|
msgstr "ক্লিক সংখ্যা"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "ভাষা"
|
msgstr "ভাষা"
|
||||||
|
|
||||||
|
@ -500,11 +499,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "ছবিটি ডাউনলোড করা যায়নি ।"
|
msgstr "ছবিটি ডাউনলোড করা যায়নি ।"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "বই পর্যালোচনা"
|
msgstr "বই পর্যালোচনা"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "নথি মান"
|
msgstr "নথি মান"
|
||||||
|
|
||||||
|
@ -520,15 +519,11 @@ msgstr "স্ট্রিংগুলিকে বিভিন্ন হ্য
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "হ্যাশ ডাইজেস্ট"
|
msgstr "হ্যাশ ডাইজেস্ট"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "হোস্টনাম প্রতিস্থাপন"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "হোস্টনেম প্লাগিন"
|
msgstr "হোস্টনেম প্লাগিন"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr "হোস্টনাম পুনর্লিখন করো, ফলাফল অপসারণ করো বা হোস্টনামের ভিত্তিতে সাজাও"
|
msgstr "হোস্টনাম পুনর্লিখন করো, ফলাফল অপসারণ করো বা হোস্টনামের ভিত্তিতে সাজাও"
|
||||||
|
|
||||||
|
@ -673,17 +668,21 @@ msgid "Length"
|
||||||
msgstr "দৈর্ঘ্য"
|
msgstr "দৈর্ঘ্য"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "লেখক"
|
msgstr "লেখক"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "ক্যাশকৃত"
|
msgstr "ক্যাশকৃত"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "প্রক্সিকৃত"
|
msgstr "প্রক্সিকৃত"
|
||||||
|
|
||||||
|
@ -958,12 +957,12 @@ msgstr "প্রস্তাবিত"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "সার্চের ভাষা"
|
msgstr "সার্চের ভাষা"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "পূর্বনির্ধারিত ভাষা"
|
msgstr "পূর্বনির্ধারিত ভাষা"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "স্বয়ং সনাক্ত"
|
msgstr "স্বয়ং সনাক্ত"
|
||||||
|
@ -1696,3 +1695,7 @@ msgstr "ভিডিও লুকিয়ে ফেলুন"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "টেবা"
|
#~ msgstr "টেবা"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "হোস্টনাম প্রতিস্থাপন"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2023-06-02 07:07+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: bo\n"
|
"Language: bo\n"
|
||||||
|
@ -308,17 +308,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -411,19 +411,19 @@ msgstr "སྐར་མ་ {minutes} སྔོན་ལ།"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
|
msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "ངེས་མེད་གྲངས་ཀ་མཁོ་སྤྲོད།"
|
msgstr "ངེས་མེད་གྲངས་ཀ་མཁོ་སྤྲོད།"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "ངེས་མེད་གྲངས་ཀ་ཁ་ཤས་ཐོབ་པར་བྱེད།"
|
msgstr "ངེས་མེད་གྲངས་ཀ་ཁ་ཤས་ཐོབ་པར་བྱེད།"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "སྡོམ་བརྩིས་ཀྱི་བྱེད་ནུས།"
|
msgstr "སྡོམ་བརྩིས་ཀྱི་བྱེད་ནུས།"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "{functions} གཞི་གྲངས་གྲངས་རྩིས།"
|
msgstr "{functions} གཞི་གྲངས་གྲངས་རྩིས།"
|
||||||
|
|
||||||
|
@ -456,7 +456,7 @@ msgid "clicks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -483,11 +483,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -503,15 +503,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -645,17 +641,21 @@ msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "འདྲ་བཤུས་རྒྱབ་ཚར།"
|
msgstr "འདྲ་བཤུས་རྒྱབ་ཚར།"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "མངག་བཅོལ་བྱེད་ཟིན།"
|
msgstr "མངག་བཅོལ་བྱེད་ཟིན།"
|
||||||
|
|
||||||
|
@ -926,12 +926,12 @@ msgstr "འོས་སྦྱོས།"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "འཚོལ་བཤེར་ནང་དོན་མཚོན་བྱེད་ཀྱི་སྐད་རིགས།"
|
msgstr "འཚོལ་བཤེར་ནང་དོན་མཚོན་བྱེད་ཀྱི་སྐད་རིགས།"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "གཞི་བཞག་སྐད་རིགས།"
|
msgstr "གཞི་བཞག་སྐད་རིགས།"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1859,3 +1859,6 @@ msgstr "རྙན་ཟློས་སྦས།"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TB"
|
#~ msgstr "TB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -21,7 +21,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-04-06 00:18+0000\n"
|
||||||
"Last-Translator: sserra <sserra@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: sserra <sserra@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
|
@ -319,17 +319,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -422,19 +422,19 @@ msgstr "fa {minutes} minut(s)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "fa {hours} hores i {minutes} minut(s)"
|
msgstr "fa {hours} hores i {minutes} minut(s)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generador de valors aleatoris"
|
msgstr "Generador de valors aleatoris"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Genera diferents valors aleatoris"
|
msgstr "Genera diferents valors aleatoris"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funcions estadístiques"
|
msgstr "Funcions estadístiques"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcula {functions} dels arguments"
|
msgstr "Calcula {functions} dels arguments"
|
||||||
|
|
||||||
|
@ -467,7 +467,7 @@ msgid "clicks"
|
||||||
msgstr "clics"
|
msgstr "clics"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Llengua"
|
msgstr "Llengua"
|
||||||
|
|
||||||
|
@ -501,11 +501,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "No s'ha pogut baixar la imatge."
|
msgstr "No s'ha pogut baixar la imatge."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Valoració de llibre"
|
msgstr "Valoració de llibre"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Qualitat del fitxer"
|
msgstr "Qualitat del fitxer"
|
||||||
|
|
||||||
|
@ -521,15 +521,11 @@ msgstr "Converteix cadenes en diferents empremtes de hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "resum del hash"
|
msgstr "resum del hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Substitució del nom de l'amfitrió"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -672,17 +668,21 @@ msgid "Length"
|
||||||
msgstr "Longitud"
|
msgstr "Longitud"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "en memòria cau"
|
msgstr "en memòria cau"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "en servidor intermediari"
|
msgstr "en servidor intermediari"
|
||||||
|
|
||||||
|
@ -957,12 +957,12 @@ msgstr "Suggeriments"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Llengua de cerca"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Llengua predeterminada"
|
msgstr "Llengua predeterminada"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Detecció automàtica"
|
msgstr "Detecció automàtica"
|
||||||
|
@ -1957,3 +1957,6 @@ msgstr "oculta el vídeo"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Substitució del nom de l'amfitrió"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -16,20 +16,19 @@
|
||||||
# Fjuro <fjuro@alius.cz>, 2024.
|
# Fjuro <fjuro@alius.cz>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
|
||||||
"Last-Translator: Fjuro <fjuro@alius.cz>\n"
|
"Last-Translator: Fjuro <fjuro@alius.cz>\n"
|
||||||
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/cs/>\n"
|
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
|
"Language-Team: Czech "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/cs/>\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && "
|
||||||
|
"n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
|
||||||
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -318,17 +317,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "otevřené"
|
msgstr "otevřené"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "zavřené"
|
msgstr "zavřené"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "zodpovězené"
|
msgstr "zodpovězené"
|
||||||
|
|
||||||
|
@ -421,19 +420,19 @@ msgstr "před {minutes} minutami"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "před {hours} hodinami, {minutes} minutami"
|
msgstr "před {hours} hodinami, {minutes} minutami"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generátor náhodných hodnot"
|
msgstr "Generátor náhodných hodnot"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generování náhodných hodnot"
|
msgstr "Generování náhodných hodnot"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistické funkce"
|
msgstr "Statistické funkce"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Výpočet funkcí {functions} pro daný argument"
|
msgstr "Výpočet funkcí {functions} pro daný argument"
|
||||||
|
|
||||||
|
@ -466,7 +465,7 @@ msgid "clicks"
|
||||||
msgstr "kliknutí"
|
msgstr "kliknutí"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Jazyk"
|
msgstr "Jazyk"
|
||||||
|
|
||||||
|
@ -500,11 +499,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Obrázek se nepodařilo stáhnout."
|
msgstr "Obrázek se nepodařilo stáhnout."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Hodnocení knih"
|
msgstr "Hodnocení knih"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Množství souborů"
|
msgstr "Množství souborů"
|
||||||
|
|
||||||
|
@ -520,15 +519,11 @@ msgstr "Převádí řetězce na různé hash hodnoty."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash hodnota"
|
msgstr "hash hodnota"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Nahrazení adresy serveru"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Doplněk hostitelských jmen"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Přepsat hostitelská jména, odstranit výsledky nebo je prioritizovat na "
|
"Přepsat hostitelská jména, odstranit výsledky nebo je prioritizovat na "
|
||||||
|
@ -673,17 +668,21 @@ msgid "Length"
|
||||||
msgstr "Délka"
|
msgstr "Délka"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "archivovaná verze"
|
msgstr "archivovaná verze"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "přes proxy"
|
msgstr "přes proxy"
|
||||||
|
|
||||||
|
@ -956,12 +955,12 @@ msgstr "Návrhy"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Jazyk hledání"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Výchozí jazyk"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatická detekce"
|
msgstr "Automatická detekce"
|
||||||
|
@ -1945,3 +1944,7 @@ msgstr "skrýt video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Nahrazení adresy serveru"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,8 +14,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
|
||||||
"Last-Translator: EifionLlwyd "
|
"Last-Translator: EifionLlwyd "
|
||||||
"<EifionLlwyd@users.noreply.translate.codeberg.org>\n"
|
"<EifionLlwyd@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: cy\n"
|
"Language: cy\n"
|
||||||
|
@ -314,17 +314,17 @@ msgid "author"
|
||||||
msgstr "awdur"
|
msgstr "awdur"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "ar agor"
|
msgstr "ar agor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "ar gau"
|
msgstr "ar gau"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "wedi'i ateb"
|
msgstr "wedi'i ateb"
|
||||||
|
|
||||||
|
@ -417,19 +417,19 @@ msgstr "{minutes} munud yn ôl"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} awr, {minutes} munud yn ôl"
|
msgstr "{hours} awr, {minutes} munud yn ôl"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Cynhyrchydd hapwerthoedd"
|
msgstr "Cynhyrchydd hapwerthoedd"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Cynhyrchu gwahanol werthoedd ar hap"
|
msgstr "Cynhyrchu gwahanol werthoedd ar hap"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Swyddogaethau ystadegau"
|
msgstr "Swyddogaethau ystadegau"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Compute {functions} o'r dadleuon"
|
msgstr "Compute {functions} o'r dadleuon"
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "cliciau"
|
msgstr "cliciau"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Iaith"
|
msgstr "Iaith"
|
||||||
|
|
||||||
|
@ -497,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Doedd dim modd islwytho'r ddelwedd."
|
msgstr "Doedd dim modd islwytho'r ddelwedd."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Gradd llyfr"
|
msgstr "Gradd llyfr"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "ansawdd ffeil"
|
msgstr "ansawdd ffeil"
|
||||||
|
|
||||||
|
@ -517,15 +517,11 @@ msgstr "Trosi llinynnau i wahanol dreuliadau hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "Digon o hash"
|
msgstr "Digon o hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Disodli enwau gwesteiwyr"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Ategyn enwau gwesteiwyr"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Newid, tynnu neu flaenoriaethu canlyniadau yn seiliedig ar yr enw "
|
"Newid, tynnu neu flaenoriaethu canlyniadau yn seiliedig ar yr enw "
|
||||||
|
@ -557,11 +553,11 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:28
|
#: searx/plugins/self_info.py:28
|
||||||
msgid "Your IP is: "
|
msgid "Your IP is: "
|
||||||
msgstr ""
|
msgstr "Eich cyfeiriad IP: "
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:31
|
#: searx/plugins/self_info.py:31
|
||||||
msgid "Your user-agent is: "
|
msgid "Your user-agent is: "
|
||||||
msgstr ""
|
msgstr "Eich asiant defnyddiwr: "
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:24
|
#: searx/plugins/tor_check.py:24
|
||||||
msgid "Tor check plugin"
|
msgid "Tor check plugin"
|
||||||
|
@ -674,17 +670,21 @@ msgid "Length"
|
||||||
msgstr "Hyd"
|
msgstr "Hyd"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Awdur"
|
msgstr "Awdur"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "wedi'i storio"
|
msgstr "wedi'i storio"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "wedi'i ddirprwyo"
|
msgstr "wedi'i ddirprwyo"
|
||||||
|
|
||||||
|
@ -722,7 +722,7 @@ msgstr "Gweld logiau gwallau a chyflwyno adroddiad nam"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:74
|
#: searx/templates/simple/preferences.html:74
|
||||||
msgid "!bang for this engine"
|
msgid "!bang for this engine"
|
||||||
msgstr ""
|
msgstr "!bang y peiriant hwn"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:80
|
#: searx/templates/simple/preferences.html:80
|
||||||
msgid "!bang for its categories"
|
msgid "!bang for its categories"
|
||||||
|
@ -957,12 +957,12 @@ msgstr "Awgrymiadau"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Iaith chwilio"
|
msgstr "Iaith chwilio"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Iaith ragosodedig"
|
msgstr "Iaith ragosodedig"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Canfod yn awtomatig"
|
msgstr "Canfod yn awtomatig"
|
||||||
|
@ -1199,7 +1199,7 @@ msgstr "Pwysau"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:33
|
#: searx/templates/simple/preferences/engines.html:33
|
||||||
msgid "Max time"
|
msgid "Max time"
|
||||||
msgstr ""
|
msgstr "Amser hiraf"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/footer.html:2
|
#: searx/templates/simple/preferences/footer.html:2
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -1303,7 +1303,7 @@ msgstr "Hidlo cynnwys"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/search_on_category_select.html:2
|
#: searx/templates/simple/preferences/search_on_category_select.html:2
|
||||||
msgid "Search on category select"
|
msgid "Search on category select"
|
||||||
msgstr ""
|
msgstr "Chwilio ar unwaith wrth ddewis categori"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/search_on_category_select.html:14
|
#: searx/templates/simple/preferences/search_on_category_select.html:14
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -1327,7 +1327,7 @@ msgstr "Arddull y thema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:31
|
#: searx/templates/simple/preferences/theme.html:31
|
||||||
msgid "Choose auto to follow your browser settings"
|
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
|
#: searx/templates/simple/preferences/tokens.html:2
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
|
@ -1910,3 +1910,6 @@ msgstr "cuddio'r fideo"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Disodli enwau gwesteiwyr"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -13,7 +13,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -312,17 +312,17 @@ msgid "author"
|
||||||
msgstr "forfatter"
|
msgstr "forfatter"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Åbn"
|
msgstr "Åbn"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -415,19 +415,19 @@ msgstr "for {minutes} minut(ter) siden"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "for {hours} time(r) og {minutes} minut(ter) siden"
|
msgstr "for {hours} time(r) og {minutes} minut(ter) siden"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generator af tilfældig værdi"
|
msgstr "Generator af tilfældig værdi"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generér forskellige tilfældige værdier"
|
msgstr "Generér forskellige tilfældige værdier"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistiske funktioner"
|
msgstr "Statistiske funktioner"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Beregn {functions} af parametrene"
|
msgstr "Beregn {functions} af parametrene"
|
||||||
|
|
||||||
|
@ -460,7 +460,7 @@ msgid "clicks"
|
||||||
msgstr "Klik"
|
msgstr "Klik"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Sprog"
|
msgstr "Sprog"
|
||||||
|
|
||||||
|
@ -495,11 +495,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Dette billede kunne ikke downloades."
|
msgstr "Dette billede kunne ikke downloades."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Bogbedømmelse"
|
msgstr "Bogbedømmelse"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Filkvalitet"
|
msgstr "Filkvalitet"
|
||||||
|
|
||||||
|
@ -515,15 +515,11 @@ msgstr "Konverterer strenge til forskellige hash-digests."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash-digest"
|
msgstr "hash-digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Værtsnavn erstat"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -666,17 +662,21 @@ msgid "Length"
|
||||||
msgstr "Længde"
|
msgstr "Længde"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Forfatter"
|
msgstr "Forfatter"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "cachet"
|
msgstr "cachet"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "viderestillet"
|
msgstr "viderestillet"
|
||||||
|
|
||||||
|
@ -951,12 +951,12 @@ msgstr "Forslag"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Søgesprog"
|
msgstr "Søgesprog"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Standardsprog"
|
msgstr "Standardsprog"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatisk registrering"
|
msgstr "Automatisk registrering"
|
||||||
|
@ -1944,3 +1944,6 @@ msgstr "skjul video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Værtsnavn erstat"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -24,19 +24,19 @@
|
||||||
# German <German@users.noreply.translate.codeberg.org>, 2024.
|
# German <German@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-13 12:18+0000\n"
|
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/de/>\n"
|
|
||||||
"Language: de\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -325,17 +325,17 @@ msgid "author"
|
||||||
msgstr "Autor/-in"
|
msgstr "Autor/-in"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "offen"
|
msgstr "offen"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "geschlossen"
|
msgstr "geschlossen"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "beantwortet"
|
msgstr "beantwortet"
|
||||||
|
|
||||||
|
@ -428,19 +428,19 @@ msgstr "vor {minutes} Minute(n)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "vor {hours} Stunde(n), {minutes} Minute(n)"
|
msgstr "vor {hours} Stunde(n), {minutes} Minute(n)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Zufallswertgenerator"
|
msgstr "Zufallswertgenerator"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Erzeugt diverse Zufallswerte"
|
msgstr "Erzeugt diverse Zufallswerte"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikfunktionen"
|
msgstr "Statistikfunktionen"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "{functions} der Argumente berechnen"
|
msgstr "{functions} der Argumente berechnen"
|
||||||
|
|
||||||
|
@ -473,7 +473,7 @@ msgid "clicks"
|
||||||
msgstr "Clicks"
|
msgstr "Clicks"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Sprache"
|
msgstr "Sprache"
|
||||||
|
|
||||||
|
@ -508,11 +508,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Das Bild konnte nicht heruntergeladen werden."
|
msgstr "Das Bild konnte nicht heruntergeladen werden."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Buchbewertung"
|
msgstr "Buchbewertung"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Dateiqualität"
|
msgstr "Dateiqualität"
|
||||||
|
|
||||||
|
@ -528,15 +528,11 @@ msgstr "Konvertiert Zeichenketten in verschiedene Hashwerte."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "Hashwert"
|
msgstr "Hashwert"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Hostnamen ändern"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Umschreiben von Hostnamen, Entfernen von Ergebnissen oder Priorisieren "
|
"Umschreiben von Hostnamen, Entfernen von Ergebnissen oder Priorisieren "
|
||||||
|
@ -685,17 +681,21 @@ msgid "Length"
|
||||||
msgstr "Länge"
|
msgstr "Länge"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "Im Cache"
|
msgstr "Im Cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxy"
|
msgstr "proxy"
|
||||||
|
|
||||||
|
@ -972,12 +972,12 @@ msgstr "Vorschläge"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Such-Sprache/-Region"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Standardsprache"
|
msgstr "Standardsprache"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Spracherkennung"
|
msgstr "Spracherkennung"
|
||||||
|
@ -1980,3 +1980,7 @@ msgstr "Video verstecken"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TB"
|
#~ msgstr "TB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Hostnamen ändern"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
|
||||||
"Last-Translator: Landhoo School Students "
|
"Last-Translator: Landhoo School Students "
|
||||||
"<landhooschoolstudents@gmail.com>\n"
|
"<landhooschoolstudents@gmail.com>\n"
|
||||||
|
@ -306,17 +306,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -409,19 +409,19 @@ msgstr ""
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -454,7 +454,7 @@ msgid "clicks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -481,11 +481,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -501,15 +501,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -643,17 +639,21 @@ msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -924,12 +924,12 @@ msgstr ""
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1590,3 +1590,6 @@ msgstr ""
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -15,20 +15,19 @@
|
||||||
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
|
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-09 15:18+0000\n"
|
||||||
"Last-Translator: notlmutsaers <notlmutsaers@users.noreply.translate.codeberg."
|
"Last-Translator: notlmutsaers "
|
||||||
"org>\n"
|
"<notlmutsaers@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Greek <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/el/>\n"
|
|
||||||
"Language: el_GR\n"
|
"Language: el_GR\n"
|
||||||
|
"Language-Team: Greek "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/el/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -317,17 +316,17 @@ msgid "author"
|
||||||
msgstr "συγγραφέας"
|
msgstr "συγγραφέας"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Άνοιξε"
|
msgstr "Άνοιξε"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "κλειστό"
|
msgstr "κλειστό"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "απάντησε"
|
msgstr "απάντησε"
|
||||||
|
|
||||||
|
@ -420,19 +419,19 @@ msgstr "{minutes} λεπτά πριν"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
|
msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Γεννήτρια τυχαίων τιμών"
|
msgstr "Γεννήτρια τυχαίων τιμών"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Δημιουργία διαφορετικών τυχαίων τιμών"
|
msgstr "Δημιουργία διαφορετικών τυχαίων τιμών"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Λειτουργίες στατιστικής"
|
msgstr "Λειτουργίες στατιστικής"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Υπολογισμός {functions} των παραμέτρων"
|
msgstr "Υπολογισμός {functions} των παραμέτρων"
|
||||||
|
|
||||||
|
@ -465,7 +464,7 @@ msgid "clicks"
|
||||||
msgstr "κλικ"
|
msgstr "κλικ"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Γλώσσα"
|
msgstr "Γλώσσα"
|
||||||
|
|
||||||
|
@ -500,11 +499,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Αποτυχία μεταφόρτωσης εικόνας."
|
msgstr "Αποτυχία μεταφόρτωσης εικόνας."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Βαθμολογία βιβλίου"
|
msgstr "Βαθμολογία βιβλίου"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Ποιότητα αρχείου"
|
msgstr "Ποιότητα αρχείου"
|
||||||
|
|
||||||
|
@ -520,19 +519,15 @@ msgstr "Μετατρέπει κείμενο σε διαφορετικές συν
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "συνάρτηση κατατεμαχισμού"
|
msgstr "συνάρτηση κατατεμαχισμού"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Αντικατάσταση hostname"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Προσθήκη ονομάτων κεντρικού υπολογιστή"
|
msgstr "Προσθήκη ονομάτων κεντρικού υπολογιστή"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ξαναγράψτε ονόματα κεντρικών υπολογιστών, αφαιρέστε τα αποτελέσματα ή δώστε "
|
"Ξαναγράψτε ονόματα κεντρικών υπολογιστών, αφαιρέστε τα αποτελέσματα ή "
|
||||||
"προτεραιότητα σε αυτά με βάση το όνομα κεντρικού υπολογιστή"
|
"δώστε προτεραιότητα σε αυτά με βάση το όνομα κεντρικού υπολογιστή"
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:12
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -677,17 +672,21 @@ msgid "Length"
|
||||||
msgstr "Μήκος"
|
msgstr "Μήκος"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Συγγραφέας"
|
msgstr "Συγγραφέας"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "προσωρινά αποθηκευμένο"
|
msgstr "προσωρινά αποθηκευμένο"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "Διαμεσολαβημένα"
|
msgstr "Διαμεσολαβημένα"
|
||||||
|
|
||||||
|
@ -964,12 +963,12 @@ msgstr "Προτάσεις"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Γλώσσα αναζήτησης"
|
msgstr "Γλώσσα αναζήτησης"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Προεπιλεγμένη γλώσσα"
|
msgstr "Προεπιλεγμένη γλώσσα"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Αυτόματη αναγνώριση της γλώσσας"
|
msgstr "Αυτόματη αναγνώριση της γλώσσας"
|
||||||
|
@ -1168,7 +1167,8 @@ msgstr "Αντιγραφή κατακερματισμού προτιμήσεων
|
||||||
#: searx/templates/simple/preferences/cookies.html:57
|
#: searx/templates/simple/preferences/cookies.html:57
|
||||||
msgid "Insert copied preferences hash (without URL) to restore"
|
msgid "Insert copied preferences hash (without URL) to restore"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εισαγάγετε αντιγραμμένο κατακερματισμό προτιμήσεων (χωρίς URL) για επαναφορά"
|
"Εισαγάγετε αντιγραμμένο κατακερματισμό προτιμήσεων (χωρίς URL) για "
|
||||||
|
"επαναφορά"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:59
|
#: searx/templates/simple/preferences/cookies.html:59
|
||||||
msgid "Preferences hash"
|
msgid "Preferences hash"
|
||||||
|
@ -1958,3 +1958,7 @@ msgstr "απόκρυψη βίντεο"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Αντικατάσταση hostname"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language: en\n"
|
"Language: en\n"
|
||||||
|
@ -304,17 +304,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -407,19 +407,19 @@ msgstr ""
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -452,7 +452,7 @@ msgid "clicks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -479,11 +479,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -499,15 +499,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -641,17 +637,21 @@ msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -922,12 +922,12 @@ msgstr ""
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1856,3 +1856,6 @@ msgstr ""
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -17,7 +17,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-03-22 07:09+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -316,17 +316,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -419,19 +419,19 @@ msgstr "antaŭ {minutes} minuto(j)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
|
msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Hazardvalora generilo"
|
msgstr "Hazardvalora generilo"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generi diversajn hazardajn valorojn"
|
msgstr "Generi diversajn hazardajn valorojn"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikaj funkcioj"
|
msgstr "Statistikaj funkcioj"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Kalkuli {functions} de la argumentoj"
|
msgstr "Kalkuli {functions} de la argumentoj"
|
||||||
|
|
||||||
|
@ -464,7 +464,7 @@ msgid "clicks"
|
||||||
msgstr "klakoj"
|
msgstr "klakoj"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Lingvo"
|
msgstr "Lingvo"
|
||||||
|
|
||||||
|
@ -498,11 +498,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "La bildo ne eblis elŝuti."
|
msgstr "La bildo ne eblis elŝuti."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Taksado de libro"
|
msgstr "Taksado de libro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Dosiera kvalito"
|
msgstr "Dosiera kvalito"
|
||||||
|
|
||||||
|
@ -518,15 +518,11 @@ msgstr "Konvertas ĉenojn al malsamaj hash-digestoj."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "haketa mesaĝaro"
|
msgstr "haketa mesaĝaro"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Gastnomo anstataŭigas"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -671,17 +667,21 @@ msgid "Length"
|
||||||
msgstr "Longo"
|
msgstr "Longo"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Verkisto"
|
msgstr "Verkisto"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "kaŝmemorigita"
|
msgstr "kaŝmemorigita"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "prokurata"
|
msgstr "prokurata"
|
||||||
|
|
||||||
|
@ -952,12 +952,12 @@ msgstr "Sugestoj"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Serĉolingvo"
|
msgstr "Serĉolingvo"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Defaŭlta lingvo"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Aŭtomate detekti"
|
msgstr "Aŭtomate detekti"
|
||||||
|
@ -1926,3 +1926,6 @@ msgstr "kaŝi videojn"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Gastnomo anstataŭigas"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -34,19 +34,19 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-08-03 22:18+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: gallegonovato "
|
||||||
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
"<gallegonovato@users.noreply.translate.codeberg.org>\n"
|
||||||
"searxng/es/>\n"
|
|
||||||
"Language: es\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -335,17 +335,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "abrir"
|
msgstr "abrir"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "cerrar"
|
msgstr "cerrar"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "contestado"
|
msgstr "contestado"
|
||||||
|
|
||||||
|
@ -438,19 +438,19 @@ msgstr "hace {minutes} minuto(s)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
|
msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generador de valores aleatorios"
|
msgstr "Generador de valores aleatorios"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generar varios valores aleatorios"
|
msgstr "Generar varios valores aleatorios"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funciones de estadística"
|
msgstr "Funciones de estadística"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcular las funciones {functions} de parámetros dados"
|
msgstr "Calcular las funciones {functions} de parámetros dados"
|
||||||
|
|
||||||
|
@ -483,7 +483,7 @@ msgid "clicks"
|
||||||
msgstr "clics"
|
msgstr "clics"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
|
@ -518,11 +518,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "No se pudo descargar la imagen."
|
msgstr "No se pudo descargar la imagen."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Valoración del libro"
|
msgstr "Valoración del libro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Calidad de los archivos"
|
msgstr "Calidad de los archivos"
|
||||||
|
|
||||||
|
@ -538,15 +538,11 @@ msgstr "Convierte cadenas de texto a diferentes resúmenes hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "resumen de hash"
|
msgstr "resumen de hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Sustituir el nombre de host"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin del hostname"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Reescribir los hostnames, remover los resultados o priorizarlos segundo "
|
"Reescribir los hostnames, remover los resultados o priorizarlos segundo "
|
||||||
|
@ -693,17 +689,21 @@ msgid "Length"
|
||||||
msgstr "Longitud"
|
msgstr "Longitud"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "en caché"
|
msgstr "en caché"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "por un proxy"
|
msgstr "por un proxy"
|
||||||
|
|
||||||
|
@ -976,12 +976,12 @@ msgstr "Sugerencias"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Idioma de búsqueda"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Idioma por defecto"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Detección automática"
|
msgstr "Detección automática"
|
||||||
|
@ -1981,3 +1981,7 @@ msgstr "ocultar video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Sustituir el nombre de host"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -11,14 +11,15 @@
|
||||||
# return42 <markus.heiser@darmarit.de>, 2023.
|
# return42 <markus.heiser@darmarit.de>, 2023.
|
||||||
# pixrobot <pixrobot@users.noreply.translate.codeberg.org>, 2024.
|
# pixrobot <pixrobot@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# return42 <return42@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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-06-01 07:13+0000\n"
|
"PO-Revision-Date: 2024-08-05 15:59+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
"Last-Translator: Priit Jõerüüt "
|
||||||
"\n"
|
"<jrtcdbrg@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
"Language-Team: Estonian "
|
"Language-Team: Estonian "
|
||||||
"<https://translate.codeberg.org/projects/searxng/searxng/et/>\n"
|
"<https://translate.codeberg.org/projects/searxng/searxng/et/>\n"
|
||||||
|
@ -96,7 +97,7 @@ msgstr "kaardid"
|
||||||
#. CATEGORY_NAMES['ONIONS']
|
#. CATEGORY_NAMES['ONIONS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "onions"
|
msgid "onions"
|
||||||
msgstr "onion-links"
|
msgstr "onion-võrgu lingid"
|
||||||
|
|
||||||
#. CATEGORY_NAMES['SCIENCE']
|
#. CATEGORY_NAMES['SCIENCE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -126,27 +127,27 @@ msgstr "paketid"
|
||||||
#. CATEGORY_GROUPS['Q_A']
|
#. CATEGORY_GROUPS['Q_A']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "q&a"
|
msgid "q&a"
|
||||||
msgstr "q&a"
|
msgstr "k&v"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['REPOS']
|
#. CATEGORY_GROUPS['REPOS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "repos"
|
msgid "repos"
|
||||||
msgstr "reposid"
|
msgstr "hoidlad"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "software wikis"
|
msgid "software wikis"
|
||||||
msgstr "tarkvara wikid"
|
msgstr "tarkvara vikid"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['WEB']
|
#. CATEGORY_GROUPS['WEB']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "web"
|
msgid "web"
|
||||||
msgstr "web"
|
msgstr "veeb"
|
||||||
|
|
||||||
#. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
|
#. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "scientific publications"
|
msgid "scientific publications"
|
||||||
msgstr "teaduslikud väljaanded"
|
msgstr "teadusväljaanded"
|
||||||
|
|
||||||
#. STYLE_NAMES['AUTO']
|
#. STYLE_NAMES['AUTO']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -156,17 +157,17 @@ msgstr "automaatne"
|
||||||
#. STYLE_NAMES['LIGHT']
|
#. STYLE_NAMES['LIGHT']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "light"
|
msgid "light"
|
||||||
msgstr "herge"
|
msgstr "hele"
|
||||||
|
|
||||||
#. STYLE_NAMES['DARK']
|
#. STYLE_NAMES['DARK']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "dark"
|
msgid "dark"
|
||||||
msgstr "pime"
|
msgstr "tume"
|
||||||
|
|
||||||
#. BRAND_CUSTOM_LINKS['UPTIME']
|
#. BRAND_CUSTOM_LINKS['UPTIME']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr "Kasutusaeg"
|
msgstr "Töövõimeaeg"
|
||||||
|
|
||||||
#. BRAND_CUSTOM_LINKS['ABOUT']
|
#. BRAND_CUSTOM_LINKS['ABOUT']
|
||||||
#: searx/searxng.msg searx/templates/simple/base.html:50
|
#: searx/searxng.msg searx/templates/simple/base.html:50
|
||||||
|
@ -186,12 +187,12 @@ msgstr "Pilvekate"
|
||||||
#. WEATHER_TERMS['CONDITION']
|
#. WEATHER_TERMS['CONDITION']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Condition"
|
msgid "Condition"
|
||||||
msgstr "Konditsioon"
|
msgstr "Olud"
|
||||||
|
|
||||||
#. WEATHER_TERMS['CURRENT CONDITION']
|
#. WEATHER_TERMS['CURRENT CONDITION']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Current condition"
|
msgid "Current condition"
|
||||||
msgstr "Hetkene konditsioon"
|
msgstr "Praegused olud"
|
||||||
|
|
||||||
#. WEATHER_TERMS['EVENING']
|
#. WEATHER_TERMS['EVENING']
|
||||||
#: searx/engines/wttr.py:100 searx/searxng.msg
|
#: searx/engines/wttr.py:100 searx/searxng.msg
|
||||||
|
@ -201,7 +202,7 @@ msgstr "Õhtu"
|
||||||
#. WEATHER_TERMS['FEELS LIKE']
|
#. WEATHER_TERMS['FEELS LIKE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Feels like"
|
msgid "Feels like"
|
||||||
msgstr ""
|
msgstr "Tundub nagu"
|
||||||
|
|
||||||
#. WEATHER_TERMS['HUMIDITY']
|
#. WEATHER_TERMS['HUMIDITY']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -236,7 +237,7 @@ msgstr "Keskpäev"
|
||||||
#. WEATHER_TERMS['PRESSURE']
|
#. WEATHER_TERMS['PRESSURE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr "Rõhk"
|
msgstr "Õhurõhk"
|
||||||
|
|
||||||
#. WEATHER_TERMS['SUNRISE']
|
#. WEATHER_TERMS['SUNRISE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -271,42 +272,42 @@ msgstr "Tuul"
|
||||||
#. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
|
#. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "subscribers"
|
msgid "subscribers"
|
||||||
msgstr "tellijad"
|
msgstr "tellijaid"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['POSTS']
|
#. SOCIAL_MEDIA_TERMS['POSTS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr ""
|
msgstr "postitusi"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
|
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "active users"
|
msgid "active users"
|
||||||
msgstr ""
|
msgstr "aktiivseid kasutajaid"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['COMMENTS']
|
#. SOCIAL_MEDIA_TERMS['COMMENTS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "comments"
|
msgid "comments"
|
||||||
msgstr ""
|
msgstr "kommentaare"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['USER']
|
#. SOCIAL_MEDIA_TERMS['USER']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "user"
|
msgid "user"
|
||||||
msgstr ""
|
msgstr "kasutaja"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
|
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "community"
|
msgid "community"
|
||||||
msgstr ""
|
msgstr "kogukond"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['POINTS']
|
#. SOCIAL_MEDIA_TERMS['POINTS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "points"
|
msgid "points"
|
||||||
msgstr ""
|
msgstr "punkte"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['TITLE']
|
#. SOCIAL_MEDIA_TERMS['TITLE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "title"
|
msgid "title"
|
||||||
msgstr ""
|
msgstr "pealkiri"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['AUTHOR']
|
#. SOCIAL_MEDIA_TERMS['AUTHOR']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -314,19 +315,19 @@ msgid "author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr "ava"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr "suletud"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr "vastatud"
|
||||||
|
|
||||||
#: searx/webapp.py:330
|
#: searx/webapp.py:330
|
||||||
msgid "No item found"
|
msgid "No item found"
|
||||||
|
@ -355,7 +356,7 @@ msgstr "otsingu viga"
|
||||||
|
|
||||||
#: searx/webutils.py:36
|
#: searx/webutils.py:36
|
||||||
msgid "timeout"
|
msgid "timeout"
|
||||||
msgstr "aeg maha"
|
msgstr "päring aegus"
|
||||||
|
|
||||||
#: searx/webutils.py:37
|
#: searx/webutils.py:37
|
||||||
msgid "parsing error"
|
msgid "parsing error"
|
||||||
|
@ -371,7 +372,7 @@ msgstr "võrguviga"
|
||||||
|
|
||||||
#: searx/webutils.py:40
|
#: searx/webutils.py:40
|
||||||
msgid "SSL error: certificate validation has failed"
|
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
|
#: searx/webutils.py:42
|
||||||
msgid "unexpected crash"
|
msgid "unexpected crash"
|
||||||
|
@ -387,15 +388,15 @@ msgstr "HTTP-ühenduse viga"
|
||||||
|
|
||||||
#: searx/webutils.py:56
|
#: searx/webutils.py:56
|
||||||
msgid "proxy error"
|
msgid "proxy error"
|
||||||
msgstr "proxy viga"
|
msgstr "proksiserveri viga"
|
||||||
|
|
||||||
#: searx/webutils.py:57
|
#: searx/webutils.py:57
|
||||||
msgid "CAPTCHA"
|
msgid "CAPTCHA"
|
||||||
msgstr "CAPTCHA"
|
msgstr "ROBOTILÕKS"
|
||||||
|
|
||||||
#: searx/webutils.py:58
|
#: searx/webutils.py:58
|
||||||
msgid "too many requests"
|
msgid "too many requests"
|
||||||
msgstr "liiga palju taotlusi"
|
msgstr "liiga palju päringuid"
|
||||||
|
|
||||||
#: searx/webutils.py:59
|
#: searx/webutils.py:59
|
||||||
msgid "access denied"
|
msgid "access denied"
|
||||||
|
@ -417,19 +418,19 @@ msgstr "{minutes} minut(it) tagasi"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
|
msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Juhusliku väärtuse generaator"
|
msgstr "Juhusliku väärtuse generaator"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Genereeri erinevaid juhuslikke väärtusi"
|
msgstr "Genereeri erinevaid juhuslikke väärtusi"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikafunktsioonid"
|
msgstr "Statistikafunktsioonid"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Arvuta argumentide {functions}"
|
msgstr "Arvuta argumentide {functions}"
|
||||||
|
|
||||||
|
@ -462,7 +463,7 @@ msgid "clicks"
|
||||||
msgstr "klikid"
|
msgstr "klikid"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Keel"
|
msgstr "Keel"
|
||||||
|
|
||||||
|
@ -480,9 +481,9 @@ msgid ""
|
||||||
"format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
|
"format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
|
||||||
" WebP."
|
" WebP."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ei saanud lugeda seda pildi linki. See võib olla faili formaadi pärast. "
|
"Ei saanud lugeda selle pildi linki. Võib-olla pole failivorming toetatud."
|
||||||
"TinEye ainult lubab ainult järgmisi formaate: JPEG, PNG, GIF, BMP, TIFF "
|
" TinEye ainult lubab kasutada ainult järgmisi vorminguid: JPEG, PNG, GIF,"
|
||||||
"või WebP."
|
" BMP, TIFF või WebP."
|
||||||
|
|
||||||
#: searx/engines/tineye.py:45
|
#: searx/engines/tineye.py:45
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -496,37 +497,35 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Pilti ei saanud alla laadida."
|
msgstr "Pilti ei saanud alla laadida."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Raamatu hinnang"
|
msgstr "Raamatu hinnang"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Faili kvaliteet"
|
msgstr "Faili kvaliteet"
|
||||||
|
|
||||||
#: searx/plugins/calculator.py:12
|
#: searx/plugins/calculator.py:12
|
||||||
msgid "Calculate mathematical expressions via the search bar"
|
msgid "Calculate mathematical expressions via the search bar"
|
||||||
msgstr ""
|
msgstr "Arvuta otsinguribal matemaatilisi avaldisi"
|
||||||
|
|
||||||
#: searx/plugins/hash_plugin.py:10
|
#: searx/plugins/hash_plugin.py:10
|
||||||
msgid "Converts strings to different hash digests."
|
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
|
#: searx/plugins/hash_plugin.py:38
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash-digest"
|
msgstr "räsitud sõnumilühend"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Hostnime asendamine"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Väärtusta hostide nimesid, eemalda tulemusi või muuda nende järjekorda "
|
||||||
|
"hosti nime alusel"
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:12
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
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 "
|
"Displays your IP if the query is \"ip\" and your user agent if the query "
|
||||||
"contains \"user agent\"."
|
"contains \"user agent\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Kuvab sinu IP'd, kui päringuks on \"ip\" ning kasutajaagenti, kui "
|
"Kuvab sinu arvuti või seadme IP-aadressi, kui päringuks on \"ip\" ning "
|
||||||
"päringuks on \"user agent\"."
|
"veebibrauseri tunnust, kui päringuks on \"user agent\"."
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:28
|
#: searx/plugins/self_info.py:28
|
||||||
msgid "Your IP is: "
|
msgid "Your IP is: "
|
||||||
msgstr ""
|
msgstr "Sinu arvuti või seadme IP-aadress on: "
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:31
|
#: searx/plugins/self_info.py:31
|
||||||
msgid "Your user-agent is: "
|
msgid "Your user-agent is: "
|
||||||
msgstr ""
|
msgstr "Sinu kasutatava brauseri tunnus on: "
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:24
|
#: searx/plugins/tor_check.py:24
|
||||||
msgid "Tor check plugin"
|
msgid "Tor check plugin"
|
||||||
|
@ -578,7 +577,7 @@ msgid ""
|
||||||
"Could not download the list of Tor exit-nodes from: "
|
"Could not download the list of Tor exit-nodes from: "
|
||||||
"https://check.torproject.org/exit-addresses"
|
"https://check.torproject.org/exit-addresses"
|
||||||
msgstr ""
|
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"
|
"https://check.torproject.org/exit-addresses"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:77
|
#: 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: "
|
"You are using Tor and it looks like you have this external IP address: "
|
||||||
"{ip_address}"
|
"{ip_address}"
|
||||||
msgstr ""
|
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}"
|
"{ip_address}"
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:85
|
#: searx/plugins/tor_check.py:85
|
||||||
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
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
|
#: searx/plugins/tracker_url_remover.py:16
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
@ -603,7 +602,7 @@ msgstr "Eemaldab jälitavad argumendid tagastatud URList"
|
||||||
|
|
||||||
#: searx/plugins/unit_converter.py:29
|
#: searx/plugins/unit_converter.py:29
|
||||||
msgid "Convert between units"
|
msgid "Convert between units"
|
||||||
msgstr ""
|
msgstr "Konverteeri eri ühikute vahel"
|
||||||
|
|
||||||
#: searx/templates/simple/404.html:4
|
#: searx/templates/simple/404.html:4
|
||||||
msgid "Page not found"
|
msgid "Page not found"
|
||||||
|
@ -612,7 +611,7 @@ msgstr "Lehte ei leitud"
|
||||||
#: searx/templates/simple/404.html:6
|
#: searx/templates/simple/404.html:6
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Go to %(search_page)s."
|
msgid "Go to %(search_page)s."
|
||||||
msgstr "Mine %(search_page)s."
|
msgstr "Mine lehele %(search_page)s."
|
||||||
|
|
||||||
#: searx/templates/simple/404.html:6
|
#: searx/templates/simple/404.html:6
|
||||||
msgid "search page"
|
msgid "search page"
|
||||||
|
@ -642,7 +641,7 @@ msgstr "Lähtekood"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:70
|
#: searx/templates/simple/base.html:70
|
||||||
msgid "Issue tracker"
|
msgid "Issue tracker"
|
||||||
msgstr "Vigade loetelu"
|
msgstr "Veahaldus"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
|
#: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
|
||||||
msgid "Engine stats"
|
msgid "Engine stats"
|
||||||
|
@ -650,46 +649,52 @@ msgstr "Mootori statistika"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:73
|
#: searx/templates/simple/base.html:73
|
||||||
msgid "Public instances"
|
msgid "Public instances"
|
||||||
msgstr "Avalikud eksemplarid"
|
msgstr "Avalikud serverid"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:76
|
#: searx/templates/simple/base.html:76
|
||||||
msgid "Privacy policy"
|
msgid "Privacy policy"
|
||||||
msgstr "Privaatsus poliitika"
|
msgstr "Privaatsuspoliitika"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:79
|
#: searx/templates/simple/base.html:79
|
||||||
msgid "Contact instance maintainer"
|
msgid "Contact instance maintainer"
|
||||||
msgstr "Võtke ühendust instantsi hooldajaga"
|
msgstr "Võta ühendust serveri haldajaga"
|
||||||
|
|
||||||
#: searx/templates/simple/categories.html:26
|
#: searx/templates/simple/categories.html:26
|
||||||
msgid "Click on the magnifier to perform search"
|
msgid "Click on the magnifier to perform search"
|
||||||
msgstr "Klõpsa luubile otsingu teostamiseks"
|
msgstr "Otsingu teostamiseks klõpsa luubile"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:35
|
#: searx/templates/simple/macros.html:35
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr "Pikkus"
|
msgstr "Pikkus"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "vahemälus"
|
msgstr "vahemälus"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proksitud"
|
msgstr "proksiserveris"
|
||||||
|
|
||||||
#: searx/templates/simple/new_issue.html:64
|
#: searx/templates/simple/new_issue.html:64
|
||||||
msgid "Start submiting a new issue on GitHub"
|
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
|
#: searx/templates/simple/new_issue.html:66
|
||||||
msgid "Please check for existing bugs about this engine on GitHub"
|
msgid "Please check for existing bugs about this engine on GitHub"
|
||||||
msgstr "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
|
#: searx/templates/simple/new_issue.html:69
|
||||||
msgid "I confirm there is no existing bug about the issue I encounter"
|
msgid "I confirm there is no existing bug about the issue I encounter"
|
||||||
|
@ -699,11 +704,11 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/new_issue.html:71
|
#: searx/templates/simple/new_issue.html:71
|
||||||
msgid "If this is a public instance, please specify the URL in the bug report"
|
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
|
#: searx/templates/simple/new_issue.html:72
|
||||||
msgid "Submit a new issue on Github including the above information"
|
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
|
#: searx/templates/simple/preferences.html:65
|
||||||
msgid "No HTTPS"
|
msgid "No HTTPS"
|
||||||
|
@ -713,7 +718,7 @@ msgstr "HTTPS puudub"
|
||||||
#: searx/templates/simple/preferences.html:69
|
#: searx/templates/simple/preferences.html:69
|
||||||
#: searx/templates/simple/preferences.html:70
|
#: searx/templates/simple/preferences.html:70
|
||||||
msgid "View error logs and submit a bug report"
|
msgid "View error logs and submit a bug report"
|
||||||
msgstr "Vaadake vealogisid ja esitage veateade"
|
msgstr "Vaata vealogisid ja esita veateade"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:74
|
#: searx/templates/simple/preferences.html:74
|
||||||
msgid "!bang for this engine"
|
msgid "!bang for this engine"
|
||||||
|
@ -721,7 +726,7 @@ msgstr "!bang selle mootori jaoks"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:80
|
#: searx/templates/simple/preferences.html:80
|
||||||
msgid "!bang for its categories"
|
msgid "!bang for its categories"
|
||||||
msgstr "!bang oma kategooriate puhul"
|
msgstr "!bang selle kategooriate jaoks"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:102
|
#: searx/templates/simple/preferences.html:102
|
||||||
#: searx/templates/simple/stats.html:64
|
#: searx/templates/simple/stats.html:64
|
||||||
|
@ -764,7 +769,7 @@ msgstr "Privaatsus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:221
|
#: searx/templates/simple/preferences.html:221
|
||||||
msgid "Engines"
|
msgid "Engines"
|
||||||
msgstr "Mootorid"
|
msgstr "Otsingumootorid"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences.html:223
|
#: searx/templates/simple/preferences.html:223
|
||||||
msgid "Currently used search engines"
|
msgid "Currently used search engines"
|
||||||
|
@ -788,7 +793,7 @@ msgstr "Tulemuste arv"
|
||||||
|
|
||||||
#: searx/templates/simple/results.html:48
|
#: searx/templates/simple/results.html:48
|
||||||
msgid "Info"
|
msgid "Info"
|
||||||
msgstr "informatsioon"
|
msgstr "Teave"
|
||||||
|
|
||||||
#: searx/templates/simple/results.html:77
|
#: searx/templates/simple/results.html:77
|
||||||
msgid "Try searching for:"
|
msgid "Try searching for:"
|
||||||
|
@ -832,7 +837,7 @@ msgstr "Hetkel andmed puuduvad."
|
||||||
#: searx/templates/simple/preferences/engines.html:24
|
#: searx/templates/simple/preferences/engines.html:24
|
||||||
#: searx/templates/simple/stats.html:25
|
#: searx/templates/simple/stats.html:25
|
||||||
msgid "Engine name"
|
msgid "Engine name"
|
||||||
msgstr "Mootori nimi"
|
msgstr "Otsingumootori nimi"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:26
|
#: searx/templates/simple/stats.html:26
|
||||||
msgid "Scores"
|
msgid "Scores"
|
||||||
|
@ -845,7 +850,7 @@ msgstr "Tulemuste arv"
|
||||||
#: searx/templates/simple/preferences/engines.html:31
|
#: searx/templates/simple/preferences/engines.html:31
|
||||||
#: searx/templates/simple/stats.html:28
|
#: searx/templates/simple/stats.html:28
|
||||||
msgid "Response time"
|
msgid "Response time"
|
||||||
msgstr "Reageerimisaeg"
|
msgstr "Vastamise aeg"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:35
|
#: searx/templates/simple/preferences/engines.html:35
|
||||||
#: searx/templates/simple/stats.html:29
|
#: searx/templates/simple/stats.html:29
|
||||||
|
@ -862,7 +867,7 @@ msgstr "HTTP"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:61
|
#: searx/templates/simple/stats.html:61
|
||||||
msgid "Processing"
|
msgid "Processing"
|
||||||
msgstr "Töötlemine"
|
msgstr "Töötleme"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:99
|
#: searx/templates/simple/stats.html:99
|
||||||
msgid "Warnings"
|
msgid "Warnings"
|
||||||
|
@ -903,7 +908,7 @@ msgstr "Kood"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:128
|
#: searx/templates/simple/stats.html:128
|
||||||
msgid "Checker"
|
msgid "Checker"
|
||||||
msgstr "Kontrollida"
|
msgstr "Kontrollija"
|
||||||
|
|
||||||
#: searx/templates/simple/stats.html:131
|
#: searx/templates/simple/stats.html:131
|
||||||
msgid "Failed test"
|
msgid "Failed test"
|
||||||
|
@ -927,7 +932,7 @@ msgstr "Viga!"
|
||||||
|
|
||||||
#: searx/templates/simple/elements/engines_msg.html:13
|
#: searx/templates/simple/elements/engines_msg.html:13
|
||||||
msgid "Engines cannot retrieve results"
|
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
|
#: searx/templates/simple/elements/search_url.html:3
|
||||||
msgid "Search URL"
|
msgid "Search URL"
|
||||||
|
@ -952,15 +957,15 @@ msgstr "Soovitused"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Otsingukeel"
|
msgstr "Otsingukeel"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Vaikimisi keel"
|
msgstr "Vaikimisi keel"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automaatne-tuvastamine"
|
msgstr "Tuvasta automaatselt"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:1
|
#: searx/templates/simple/filters/safesearch.html:1
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: 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/engines.html:27
|
||||||
#: searx/templates/simple/preferences/safesearch.html:2
|
#: searx/templates/simple/preferences/safesearch.html:2
|
||||||
msgid "SafeSearch"
|
msgid "SafeSearch"
|
||||||
msgstr "Ohutuotsing"
|
msgstr "Ohutu otsing"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/safesearch.html:2
|
#: searx/templates/simple/filters/safesearch.html:2
|
||||||
#: searx/templates/simple/preferences/safesearch.html:7
|
#: searx/templates/simple/preferences/safesearch.html:7
|
||||||
|
@ -1013,7 +1018,7 @@ msgstr "Viimane aasta"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_cookies.html:3
|
#: searx/templates/simple/messages/no_cookies.html:3
|
||||||
msgid "Information!"
|
msgid "Information!"
|
||||||
msgstr "Teave!"
|
msgstr "Tähelepanu!"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_cookies.html:4
|
#: searx/templates/simple/messages/no_cookies.html:4
|
||||||
msgid "currently, there are no cookies defined."
|
msgid "currently, there are no cookies defined."
|
||||||
|
@ -1025,11 +1030,11 @@ msgstr "Vabandust!"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:12
|
#: searx/templates/simple/messages/no_results.html:12
|
||||||
msgid "No results were found. You can try to:"
|
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
|
#: searx/templates/simple/messages/no_results.html:14
|
||||||
msgid "There are no more results. You can try to:"
|
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
|
#: searx/templates/simple/messages/no_results.html:19
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
|
@ -1037,19 +1042,19 @@ msgstr "Värskenda lehekülge."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:20
|
#: searx/templates/simple/messages/no_results.html:20
|
||||||
msgid "Search for another query or select another category (above)."
|
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
|
#: searx/templates/simple/messages/no_results.html:21
|
||||||
msgid "Change the search engine used in the preferences:"
|
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
|
#: searx/templates/simple/messages/no_results.html:22
|
||||||
msgid "Switch to another instance:"
|
msgid "Switch to another instance:"
|
||||||
msgstr "Vahetage teisele instantsile:"
|
msgstr "Vahetage teisele SearxNG serverile:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:24
|
#: searx/templates/simple/messages/no_results.html:24
|
||||||
msgid "Search for another query or select another category."
|
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
|
#: searx/templates/simple/messages/no_results.html:25
|
||||||
msgid "Go back to the previous page using the previous page button."
|
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
|
#: searx/templates/simple/preferences/answerers.html:13
|
||||||
msgid "This is the list of SearXNG's instant answering modules."
|
msgid "This is the list of SearXNG's instant answering modules."
|
||||||
msgstr "See on SearXNGi kohese vastamise moodulite nimekiri."
|
msgstr "See on SearXNGi kohese kiirvastuste moodulite loend."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/answerers.html:29
|
#: searx/templates/simple/preferences/answerers.html:29
|
||||||
msgid "This is the list of plugins."
|
msgid "This is the list of plugins."
|
||||||
|
@ -1095,7 +1100,7 @@ msgstr "Otsi asju kirjutamise ajal"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/center_alignment.html:2
|
#: searx/templates/simple/preferences/center_alignment.html:2
|
||||||
msgid "Center Alignment"
|
msgid "Center Alignment"
|
||||||
msgstr "Keskuse joondamine"
|
msgstr "Keskele joondamine"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/center_alignment.html:14
|
#: searx/templates/simple/preferences/center_alignment.html:14
|
||||||
msgid "Displays results in the center of the page (Oscar layout)."
|
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 "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
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."
|
"arvutisse salvestab."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:3
|
#: searx/templates/simple/preferences/cookies.html:3
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
msgid "With that list, you can assess SearXNG transparency."
|
||||||
msgstr "Selle loetelu abil saate hinnata SearXNG läbipaistvust."
|
msgstr "Selle loetelu abil saad hinnata SearXNG läbipaistvust."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:9
|
#: searx/templates/simple/preferences/cookies.html:9
|
||||||
msgid "Cookie name"
|
msgid "Cookie name"
|
||||||
|
@ -1142,20 +1147,20 @@ msgid ""
|
||||||
"Specifying custom settings in the preferences URL can be used to sync "
|
"Specifying custom settings in the preferences URL can be used to sync "
|
||||||
"preferences across devices."
|
"preferences across devices."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Kohandatud seadete määramine eelistuste URL-i saab kasutada eelistuste "
|
"Kohandatud seadete määramine eelistuste URL-i saad kasutada eelistuste "
|
||||||
"sünkroniseerimiseks eri seadmetes."
|
"sünkroniseerimiseks eri seadmete vahel."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:46
|
#: searx/templates/simple/preferences/cookies.html:46
|
||||||
msgid "Copy preferences hash"
|
msgid "Copy preferences hash"
|
||||||
msgstr "Kopeeri eelistuste hash"
|
msgstr "Kopeeri eelistuste räsi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:57
|
#: searx/templates/simple/preferences/cookies.html:57
|
||||||
msgid "Insert copied preferences hash (without URL) to restore"
|
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
|
#: searx/templates/simple/preferences/cookies.html:59
|
||||||
msgid "Preferences hash"
|
msgid "Preferences hash"
|
||||||
msgstr "Eelistuste hash"
|
msgstr "Eelistuste räsi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/doi_resolver.html:2
|
#: searx/templates/simple/preferences/doi_resolver.html:2
|
||||||
msgid "Open Access DOI resolver"
|
msgid "Open Access DOI resolver"
|
||||||
|
@ -1163,23 +1168,23 @@ msgstr "Open Access DOI resolver"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/doi_resolver.html:14
|
#: searx/templates/simple/preferences/doi_resolver.html:14
|
||||||
msgid "Select service used by DOI rewrite"
|
msgid "Select service used by DOI rewrite"
|
||||||
msgstr "Valige teenus mida kasutab DOI ümberkirjutamine"
|
msgstr "Vali teenus mida kasutab DOI ümberkirjutamine"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:9
|
#: searx/templates/simple/preferences/engines.html:9
|
||||||
msgid ""
|
msgid ""
|
||||||
"This tab does not exists in the user interface, but you can search in "
|
"This tab does not exists in the user interface, but you can search in "
|
||||||
"these engines by its !bangs."
|
"these engines by its !bangs."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Seda vahekaarti ei ole kasutajaliideses olemas, kuid te saate otsida neis"
|
"Seda vahekaarti ei ole kasutajaliideses olemas, kuid sa saad otsida neis "
|
||||||
" mootorites selle !bang järgi."
|
"mootorites selle !bang järgi."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:15
|
#: searx/templates/simple/preferences/engines.html:15
|
||||||
msgid "Enable all"
|
msgid "Enable all"
|
||||||
msgstr ""
|
msgstr "Luba kõik"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:16
|
#: searx/templates/simple/preferences/engines.html:16
|
||||||
msgid "Disable all"
|
msgid "Disable all"
|
||||||
msgstr ""
|
msgstr "Keela kõik"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/engines.html:25
|
#: searx/templates/simple/preferences/engines.html:25
|
||||||
msgid "!bang"
|
msgid "!bang"
|
||||||
|
@ -1202,8 +1207,8 @@ msgid ""
|
||||||
"These settings are stored in your cookies, this allows us not to store "
|
"These settings are stored in your cookies, this allows us not to store "
|
||||||
"this data about you."
|
"this data about you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Need seaded salvestatakse sinu küpsistes, see lubab meil sinu kohta "
|
"Need seaded salvestatame sinu brauseri küpsistes ja see annab meile "
|
||||||
"andmeid mitte salvestada."
|
"võimaluse sinu kohta andmeid meie serveris mitte salvestada."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/footer.html:3
|
#: searx/templates/simple/preferences/footer.html:3
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@ -1238,8 +1243,8 @@ msgid ""
|
||||||
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
"Navigate search results with hotkeys (JavaScript required). Press \"h\" "
|
||||||
"key on main or result page to get help."
|
"key on main or result page to get help."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Otsingutulemustes navigeerimine kiirklahvide abil (Vajalik JavaScript). "
|
"Otsingutulemustes navigeerimine kiirklahvide abil (vajalik JavaScript). "
|
||||||
"Abi saamiseks vajutage põhi või tulemuslehel klahvi \"h\"."
|
"Abi saamiseks vajuta põhi või tulemuslehel klahvi \"h\"."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/image_proxy.html:2
|
#: searx/templates/simple/preferences/image_proxy.html:2
|
||||||
msgid "Image proxy"
|
msgid "Image proxy"
|
||||||
|
@ -1247,7 +1252,7 @@ msgstr "Pildiproksi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/image_proxy.html:14
|
#: searx/templates/simple/preferences/image_proxy.html:14
|
||||||
msgid "Proxying image results through SearXNG"
|
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
|
#: searx/templates/simple/preferences/infinite_scroll.html:2
|
||||||
msgid "Infinite scroll"
|
msgid "Infinite scroll"
|
||||||
|
@ -1263,15 +1268,15 @@ msgstr "Mis keelt sa otsinguks eelistad?"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/language.html:25
|
#: searx/templates/simple/preferences/language.html:25
|
||||||
msgid "Choose Auto-detect to let SearXNG detect the language of your query."
|
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
|
#: searx/templates/simple/preferences/method.html:2
|
||||||
msgid "HTTP Method"
|
msgid "HTTP Method"
|
||||||
msgstr "HTTP meetod"
|
msgstr "HTTP-meetod"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/method.html:14
|
#: searx/templates/simple/preferences/method.html:14
|
||||||
msgid "Change how forms are submitted"
|
msgid "Change how forms are submitted"
|
||||||
msgstr "Muutke vormide esitamise viisi"
|
msgstr "Muuda vormide esitamise viisi"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/query_in_title.html:2
|
#: searx/templates/simple/preferences/query_in_title.html:2
|
||||||
msgid "Query in the page's title"
|
msgid "Query in the page's title"
|
||||||
|
@ -1282,7 +1287,7 @@ msgid ""
|
||||||
"When enabled, the result page's title contains your query. Your browser "
|
"When enabled, the result page's title contains your query. Your browser "
|
||||||
"can record this title"
|
"can record this title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"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"
|
"brauser võib selle pealkirja salvestada"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/results_on_new_tab.html:2
|
#: 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 "
|
"Perform search immediately if a category selected. Disable to select "
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Teostage otsing kohe kui kategooria on valitud. Mitme kategooria "
|
"Teosta otsing kohe kui kategooria on valitud. Mitme kategooria valimiseks"
|
||||||
"valimiseks keelake"
|
" keela see eelistus"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
@ -1315,7 +1320,7 @@ msgstr "Teema"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:14
|
#: searx/templates/simple/preferences/theme.html:14
|
||||||
msgid "Change SearXNG layout"
|
msgid "Change SearXNG layout"
|
||||||
msgstr "SearXNG paigutuse muutmine"
|
msgstr "Muuda SearXNG paigutust"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:19
|
#: searx/templates/simple/preferences/theme.html:19
|
||||||
msgid "Theme style"
|
msgid "Theme style"
|
||||||
|
@ -1323,19 +1328,19 @@ msgstr "Teema stiil"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:31
|
#: searx/templates/simple/preferences/theme.html:31
|
||||||
msgid "Choose auto to follow your browser settings"
|
msgid "Choose auto to follow your browser settings"
|
||||||
msgstr "Valige automaatne, et järgida oma brauseri seadeid"
|
msgstr "Oma brauseri seadistuste järgimiseks vali \"automaatne\""
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/tokens.html:2
|
#: searx/templates/simple/preferences/tokens.html:2
|
||||||
msgid "Engine tokens"
|
msgid "Engine tokens"
|
||||||
msgstr "Mootori tokenid"
|
msgstr "Otsingumootori tunnusload"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/tokens.html:9
|
#: searx/templates/simple/preferences/tokens.html:9
|
||||||
msgid "Access tokens for private engines"
|
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
|
#: searx/templates/simple/preferences/ui_locale.html:2
|
||||||
msgid "Interface language"
|
msgid "Interface language"
|
||||||
msgstr "Liidese keel"
|
msgstr "Kasutajaliidese keel"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/ui_locale.html:14
|
#: searx/templates/simple/preferences/ui_locale.html:14
|
||||||
msgid "Change the language of the layout"
|
msgid "Change the language of the layout"
|
||||||
|
@ -1343,7 +1348,7 @@ msgstr "Muuda paigutuse keelt"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/code.html:13
|
#: searx/templates/simple/result_templates/code.html:13
|
||||||
msgid "repo"
|
msgid "repo"
|
||||||
msgstr "repot"
|
msgstr "hoidla"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/default.html:6
|
#: searx/templates/simple/result_templates/default.html:6
|
||||||
#: searx/templates/simple/result_templates/files.html:8
|
#: searx/templates/simple/result_templates/files.html:8
|
||||||
|
@ -1382,15 +1387,15 @@ msgstr "Resolutsioon"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/images.html:21
|
#: searx/templates/simple/result_templates/images.html:21
|
||||||
msgid "Format"
|
msgid "Format"
|
||||||
msgstr "Formaat"
|
msgstr "Vorming"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/images.html:24
|
#: searx/templates/simple/result_templates/images.html:24
|
||||||
msgid "Engine"
|
msgid "Engine"
|
||||||
msgstr "Mootor"
|
msgstr "Otsingumootor"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/images.html:25
|
#: searx/templates/simple/result_templates/images.html:25
|
||||||
msgid "View source"
|
msgid "View source"
|
||||||
msgstr "Vaata allikat"
|
msgstr "Vaata lähtekoodi"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/map.html:12
|
#: searx/templates/simple/result_templates/map.html:12
|
||||||
msgid "address"
|
msgid "address"
|
||||||
|
@ -1398,7 +1403,7 @@ msgstr "aadress"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/map.html:43
|
#: searx/templates/simple/result_templates/map.html:43
|
||||||
msgid "show map"
|
msgid "show map"
|
||||||
msgstr "kuva kaart"
|
msgstr "näita kaarti"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/map.html:43
|
#: searx/templates/simple/result_templates/map.html:43
|
||||||
msgid "hide map"
|
msgid "hide map"
|
||||||
|
@ -1410,7 +1415,7 @@ msgstr "Versioon"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/packages.html:18
|
#: searx/templates/simple/result_templates/packages.html:18
|
||||||
msgid "Maintainer"
|
msgid "Maintainer"
|
||||||
msgstr "Hooldaja"
|
msgstr "Haldaja"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/packages.html:24
|
#: searx/templates/simple/result_templates/packages.html:24
|
||||||
msgid "Updated at"
|
msgid "Updated at"
|
||||||
|
@ -1419,7 +1424,7 @@ msgstr "Uuendatud"
|
||||||
#: searx/templates/simple/result_templates/packages.html:30
|
#: searx/templates/simple/result_templates/packages.html:30
|
||||||
#: searx/templates/simple/result_templates/paper.html:25
|
#: searx/templates/simple/result_templates/paper.html:25
|
||||||
msgid "Tags"
|
msgid "Tags"
|
||||||
msgstr "Tagid"
|
msgstr "Sildid"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/packages.html:36
|
#: searx/templates/simple/result_templates/packages.html:36
|
||||||
msgid "Popularity"
|
msgid "Popularity"
|
||||||
|
@ -1439,7 +1444,7 @@ msgstr "Projekti koduleht"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:5
|
#: searx/templates/simple/result_templates/paper.html:5
|
||||||
msgid "Published date"
|
msgid "Published date"
|
||||||
msgstr "Avaldatud kuupäev"
|
msgstr "Avaldamise kuupäev"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:9
|
#: searx/templates/simple/result_templates/paper.html:9
|
||||||
msgid "Journal"
|
msgid "Journal"
|
||||||
|
@ -1475,7 +1480,7 @@ msgstr "HTML"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/torrent.html:6
|
#: searx/templates/simple/result_templates/torrent.html:6
|
||||||
msgid "magnet link"
|
msgid "magnet link"
|
||||||
msgstr "magnetlink"
|
msgstr "magnet-link"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/torrent.html:7
|
#: searx/templates/simple/result_templates/torrent.html:7
|
||||||
msgid "torrent file"
|
msgid "torrent file"
|
||||||
|
@ -1495,7 +1500,7 @@ msgstr "Failide arv"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/videos.html:6
|
#: searx/templates/simple/result_templates/videos.html:6
|
||||||
msgid "show video"
|
msgid "show video"
|
||||||
msgstr "kuva video"
|
msgstr "näita videot"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/videos.html:6
|
#: searx/templates/simple/result_templates/videos.html:6
|
||||||
msgid "hide video"
|
msgid "hide video"
|
||||||
|
@ -1922,3 +1927,6 @@ msgstr "peida video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Hostnime asendamine"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,19 +14,19 @@
|
||||||
# alexgabi <alexgabi@users.noreply.translate.codeberg.org>, 2024.
|
# alexgabi <alexgabi@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-08-05 15:59+0000\n"
|
||||||
"Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: Basque <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/eu/>\n"
|
|
||||||
"Language: eu\n"
|
"Language: eu\n"
|
||||||
|
"Language-Team: Basque "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/eu/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -315,17 +315,17 @@ msgid "author"
|
||||||
msgstr "egilea"
|
msgstr "egilea"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "ireki"
|
msgstr "ireki"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "itxita"
|
msgstr "itxita"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "erantzunda"
|
msgstr "erantzunda"
|
||||||
|
|
||||||
|
@ -418,19 +418,19 @@ msgstr "duela {minutes} minutu"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "duela {hours} ordu eta {minutes} minutu"
|
msgstr "duela {hours} ordu eta {minutes} minutu"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Ausazko balio sortzailea"
|
msgstr "Ausazko balio sortzailea"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Ausazko balio ezberdinak sortu"
|
msgstr "Ausazko balio ezberdinak sortu"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funtzio estatistikoak"
|
msgstr "Funtzio estatistikoak"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Kalkulatu argumentuen {funtzioak}"
|
msgstr "Kalkulatu argumentuen {funtzioak}"
|
||||||
|
|
||||||
|
@ -463,7 +463,7 @@ msgid "clicks"
|
||||||
msgstr "klikak"
|
msgstr "klikak"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Hizkuntza"
|
msgstr "Hizkuntza"
|
||||||
|
|
||||||
|
@ -497,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Ezin izan da deskargatu irudia."
|
msgstr "Ezin izan da deskargatu irudia."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Liburuaren balorazioa"
|
msgstr "Liburuaren balorazioa"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Fitxategiaren kalitatea"
|
msgstr "Fitxategiaren kalitatea"
|
||||||
|
|
||||||
|
@ -517,15 +517,11 @@ msgstr "Kateak traola laburpen desberdinetara bihurtzen ditu."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "traola laburpena"
|
msgstr "traola laburpena"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Ostalariaren izena ordezkatu"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Hostnames plugina"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Berridatzi ostalari-izenak, kendu emaitzak edo eman lehentasuna ostalari-"
|
"Berridatzi ostalari-izenak, kendu emaitzak edo eman lehentasuna ostalari-"
|
||||||
|
@ -672,17 +668,21 @@ msgid "Length"
|
||||||
msgstr "Luzera"
|
msgstr "Luzera"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Egilea"
|
msgstr "Egilea"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "cachean gordeta"
|
msgstr "cachean gordeta"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxyan gordeta"
|
msgstr "proxyan gordeta"
|
||||||
|
|
||||||
|
@ -953,12 +953,12 @@ msgstr "Iradokizunak"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Bilaketaren hizkuntza"
|
msgstr "Bilaketaren hizkuntza"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Lehenetsitako hizkuntza"
|
msgstr "Lehenetsitako hizkuntza"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Auto-detektatu"
|
msgstr "Auto-detektatu"
|
||||||
|
@ -1312,7 +1312,7 @@ msgid ""
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Egin bilaketa berehala kategoria bat hautatuz gero. Desgaitu hainbat "
|
"Egin bilaketa berehala kategoria bat hautatuz gero. Desgaitu hainbat "
|
||||||
"kategoria hautatzeko."
|
"kategoria hautatzeko"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
@ -1928,3 +1928,7 @@ msgstr "ezkutatu bideoa"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Ostalariaren izena ordezkatu"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -15,21 +15,22 @@
|
||||||
# arashe22 <arashe22@proton.me>, 2023.
|
# arashe22 <arashe22@proton.me>, 2023.
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# tegcope <tegcope@users.noreply.translate.codeberg.org>, 2024.
|
# tegcope <tegcope@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# Thecode764 <Thecode764@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-13 12:18+0000\n"
|
"PO-Revision-Date: 2024-08-02 07:09+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: Thecode764 "
|
||||||
"Language-Team: Persian <https://translate.codeberg.org/projects/searxng/"
|
"<Thecode764@users.noreply.translate.codeberg.org>\n"
|
||||||
"searxng/fa/>\n"
|
|
||||||
"Language: fa_IR\n"
|
"Language: fa_IR\n"
|
||||||
|
"Language-Team: Persian "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fa/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -280,27 +281,27 @@ msgstr ""
|
||||||
#. SOCIAL_MEDIA_TERMS['POSTS']
|
#. SOCIAL_MEDIA_TERMS['POSTS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "posts"
|
msgid "posts"
|
||||||
msgstr ""
|
msgstr "پست ها"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
|
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "active users"
|
msgid "active users"
|
||||||
msgstr ""
|
msgstr "کاربران فعال"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['COMMENTS']
|
#. SOCIAL_MEDIA_TERMS['COMMENTS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "comments"
|
msgid "comments"
|
||||||
msgstr ""
|
msgstr "نظر ها"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['USER']
|
#. SOCIAL_MEDIA_TERMS['USER']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "user"
|
msgid "user"
|
||||||
msgstr ""
|
msgstr "کاربر"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
|
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "community"
|
msgid "community"
|
||||||
msgstr ""
|
msgstr "جمعیت"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['POINTS']
|
#. SOCIAL_MEDIA_TERMS['POINTS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -318,17 +319,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -421,19 +422,19 @@ msgstr "{minutes} دقیقه پیش"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} ساعت و {minutes} دقیقه پیش"
|
msgstr "{hours} ساعت و {minutes} دقیقه پیش"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "ایجادگر مقدار تصادفی"
|
msgstr "ایجادگر مقدار تصادفی"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "ایجاد مقادیر تصادفی متفاوت"
|
msgstr "ایجاد مقادیر تصادفی متفاوت"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "توابع آماری"
|
msgstr "توابع آماری"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "پردازش {functions} از آرگومان ها"
|
msgstr "پردازش {functions} از آرگومان ها"
|
||||||
|
|
||||||
|
@ -466,7 +467,7 @@ msgid "clicks"
|
||||||
msgstr "کلیک ها"
|
msgstr "کلیک ها"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "زبان"
|
msgstr "زبان"
|
||||||
|
|
||||||
|
@ -500,11 +501,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "تصویر نمیتواند دانلود شود."
|
msgstr "تصویر نمیتواند دانلود شود."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "رتبه بندی کتاب"
|
msgstr "رتبه بندی کتاب"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "کیفیت فایل"
|
msgstr "کیفیت فایل"
|
||||||
|
|
||||||
|
@ -520,15 +521,11 @@ msgstr "رشتهها را به چکیدههای هش تبدیل میک
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "چکیدهٔ هش"
|
msgstr "چکیدهٔ هش"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "جایگزینی نام میزبان"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -673,17 +670,21 @@ msgid "Length"
|
||||||
msgstr "طول"
|
msgstr "طول"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "نویسنده"
|
msgstr "نویسنده"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "جاسازیشده"
|
msgstr "جاسازیشده"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "پروکسیشده"
|
msgstr "پروکسیشده"
|
||||||
|
|
||||||
|
@ -956,12 +957,12 @@ msgstr "پیشنهادها"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "زبان جستوجو"
|
msgstr "زبان جستوجو"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "زبان پیشگزیده"
|
msgstr "زبان پیشگزیده"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "انتخاب خودکار"
|
msgstr "انتخاب خودکار"
|
||||||
|
@ -1941,3 +1942,7 @@ msgstr "پنهانسازی ویدئو"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "ترابایت"
|
#~ msgstr "ترابایت"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "جایگزینی نام میزبان"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,19 +14,19 @@
|
||||||
# jonkke9 <jonkke9@users.noreply.translate.codeberg.org>, 2024.
|
# jonkke9 <jonkke9@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-19 07:09+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: Finnish <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/fi/>\n"
|
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
|
"Language-Team: Finnish "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fi/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -315,17 +315,17 @@ msgid "author"
|
||||||
msgstr "tekijä"
|
msgstr "tekijä"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "suljettu"
|
msgstr "suljettu"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "vastattu"
|
msgstr "vastattu"
|
||||||
|
|
||||||
|
@ -418,19 +418,19 @@ msgstr "{minutes} minuutti(a) sitten"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} tunti(a), {minutes} minuutti(a) sitten"
|
msgstr "{hours} tunti(a), {minutes} minuutti(a) sitten"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Satunnaisluvun generaattori"
|
msgstr "Satunnaisluvun generaattori"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generoi satunnaislukuja"
|
msgstr "Generoi satunnaislukuja"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Tilastolliset funktiot"
|
msgstr "Tilastolliset funktiot"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Laske argumenttien {functions}"
|
msgstr "Laske argumenttien {functions}"
|
||||||
|
|
||||||
|
@ -463,7 +463,7 @@ msgid "clicks"
|
||||||
msgstr "klikkaukset"
|
msgstr "klikkaukset"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Kieli"
|
msgstr "Kieli"
|
||||||
|
|
||||||
|
@ -497,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Tätä kuvaa ei voida ladata."
|
msgstr "Tätä kuvaa ei voida ladata."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Kirjan arvostelu"
|
msgstr "Kirjan arvostelu"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Tiedoston laatu"
|
msgstr "Tiedoston laatu"
|
||||||
|
|
||||||
|
@ -517,15 +517,11 @@ msgstr "Muuntaa merkkijonot erilaisiksi hash-digesteiksi."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash-digest"
|
msgstr "hash-digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Isäntänimen korvaus"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -670,17 +666,21 @@ msgid "Length"
|
||||||
msgstr "Pituus"
|
msgstr "Pituus"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Tekijä"
|
msgstr "Tekijä"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "välimuistissa"
|
msgstr "välimuistissa"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "välityspalvelimella"
|
msgstr "välityspalvelimella"
|
||||||
|
|
||||||
|
@ -953,12 +953,12 @@ msgstr "Ehdotukset"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Haun kieli"
|
msgstr "Haun kieli"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Oletuskieli"
|
msgstr "Oletuskieli"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Havaitse automaattisesti"
|
msgstr "Havaitse automaattisesti"
|
||||||
|
@ -1941,3 +1941,7 @@ msgstr "piilota video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Isäntänimen korvaus"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -13,20 +13,19 @@
|
||||||
# Kita Ikuyo <searinminecraft@courvix.com>, 2024.
|
# Kita Ikuyo <searinminecraft@courvix.com>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-27 19:18+0000\n"
|
||||||
"Last-Translator: Kita Ikuyo <searinminecraft@courvix.com>\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: fil\n"
|
||||||
|
"Language-Team: Filipino "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fil/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4"
|
||||||
|
" || n % 10 != 6 || n % 10 != 9);\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || "
|
|
||||||
"n % 10 != 6 || n % 10 != 9);\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -315,17 +314,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -418,19 +417,19 @@ msgstr "{minutes} na minuto ang nakalipas"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} oras at {minutes} na minto ang nakalipas"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Random na generator ng halaga"
|
msgstr "Random na generator ng halaga"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Maglabas ng iba't ibang halaga"
|
msgstr "Maglabas ng iba't ibang halaga"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Estatistika ng mga tungkulin"
|
msgstr "Estatistika ng mga tungkulin"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Tuusin ang {functions} ng pangangatuwiran"
|
msgstr "Tuusin ang {functions} ng pangangatuwiran"
|
||||||
|
|
||||||
|
@ -463,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "mga click"
|
msgstr "mga click"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Wika"
|
msgstr "Wika"
|
||||||
|
|
||||||
|
@ -496,11 +495,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Hindi ma-download ang imahe na ito."
|
msgstr "Hindi ma-download ang imahe na ito."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "rating ng libro"
|
msgstr "rating ng libro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Kalidad ng file"
|
msgstr "Kalidad ng file"
|
||||||
|
|
||||||
|
@ -516,15 +515,11 @@ msgstr "Isinasalin ang string sa iba't ibang hash digests."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "Hash digest"
|
msgstr "Hash digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Palitan ang hostname"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -671,17 +666,21 @@ msgid "Length"
|
||||||
msgstr "Haba"
|
msgstr "Haba"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Awtor"
|
msgstr "Awtor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "naka-cache"
|
msgstr "naka-cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxied"
|
msgstr "proxied"
|
||||||
|
|
||||||
|
@ -956,12 +955,12 @@ msgstr "Mga mungkahi"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Ang wika ng paghahanap"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Default na wika"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "awtomatikong pangdedetekta"
|
msgstr "awtomatikong pangdedetekta"
|
||||||
|
@ -1953,3 +1952,7 @@ msgstr "itago ang video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Palitan ang hostname"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -25,19 +25,18 @@
|
||||||
# wags07 <wags07@users.noreply.translate.codeberg.org>, 2024.
|
# wags07 <wags07@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-06 16:18+0000\n"
|
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
|
||||||
"Last-Translator: wags07 <wags07@users.noreply.translate.codeberg.org>\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: fr\n"
|
||||||
|
"Language-Team: French "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/fr/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -326,17 +325,17 @@ msgid "author"
|
||||||
msgstr "Auteur"
|
msgstr "Auteur"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Ouvert"
|
msgstr "Ouvert"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "Fermé"
|
msgstr "Fermé"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "répondu"
|
msgstr "répondu"
|
||||||
|
|
||||||
|
@ -429,19 +428,19 @@ msgstr "il y a {minutes} minute(s)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "il y a {hours} heure(s), {minutes} minute(s)"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Générateur de valeur aléatoire"
|
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"
|
msgid "Generate different random values"
|
||||||
msgstr "Crée des valeurs aléatoires différentes"
|
msgstr "Crée des valeurs aléatoires différentes"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Fonctions statistiques"
|
msgstr "Fonctions statistiques"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcule les {functions} des arguments"
|
msgstr "Calcule les {functions} des arguments"
|
||||||
|
|
||||||
|
@ -474,7 +473,7 @@ msgid "clicks"
|
||||||
msgstr "clics"
|
msgstr "clics"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Langue"
|
msgstr "Langue"
|
||||||
|
|
||||||
|
@ -509,11 +508,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "L'image n'a pas pu être téléchargée."
|
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"
|
msgid "Book rating"
|
||||||
msgstr "Évaluation du livre"
|
msgstr "Évaluation du livre"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Qualité du fichier"
|
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"
|
msgid "hash digest"
|
||||||
msgstr "hash digest"
|
msgstr "hash digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Remplacer les noms de domaine"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin de noms d’hôtes"
|
msgstr "Plugin de noms d’hôtes"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -680,17 +675,21 @@ msgid "Length"
|
||||||
msgstr "Durée"
|
msgstr "Durée"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Auteur"
|
msgstr "Auteur"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "en cache"
|
msgstr "en cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxifié"
|
msgstr "proxifié"
|
||||||
|
|
||||||
|
@ -965,12 +964,12 @@ msgstr "Suggestions"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Langue de recherche"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Langue par défaut"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Détection automatique"
|
msgstr "Détection automatique"
|
||||||
|
@ -1974,3 +1973,7 @@ msgstr "cacher la vidéo"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "Tio"
|
#~ msgstr "Tio"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Remplacer les noms de domaine"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -11,19 +11,18 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
|
||||||
"Last-Translator: ghose <ghose@users.noreply.translate.codeberg.org>\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: 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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -312,17 +311,17 @@ msgid "author"
|
||||||
msgstr "autoría"
|
msgstr "autoría"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Abrir"
|
msgstr "Abrir"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "fechado"
|
msgstr "fechado"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "respondido"
|
msgstr "respondido"
|
||||||
|
|
||||||
|
@ -415,19 +414,19 @@ msgstr "fai {minutes} minuto(s)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "fai {hours} hora(s), {minutes} minuto(s)"
|
msgstr "fai {hours} hora(s), {minutes} minuto(s)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Xerador de valor aleatorio"
|
msgstr "Xerador de valor aleatorio"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Xerar diferentes valores aleatorios"
|
msgstr "Xerar diferentes valores aleatorios"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funcións de estatística"
|
msgstr "Funcións de estatística"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcula {functions} dos argumentos"
|
msgstr "Calcula {functions} dos argumentos"
|
||||||
|
|
||||||
|
@ -460,7 +459,7 @@ msgid "clicks"
|
||||||
msgstr "clicks"
|
msgstr "clicks"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
|
@ -494,11 +493,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Non se puido descargar a imaxe."
|
msgstr "Non se puido descargar a imaxe."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Valoración do libro"
|
msgstr "Valoración do libro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Calidade do ficheiro"
|
msgstr "Calidade do ficheiro"
|
||||||
|
|
||||||
|
@ -514,15 +513,11 @@ msgstr "Converte o escrito usando diferentes funcións hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "función hash"
|
msgstr "función hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Substituír servidor"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Complemento de nomes de servidor"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Reescribe nomes de servidor, elimina resultados ou prioriza en función do"
|
"Reescribe nomes de servidor, elimina resultados ou prioriza en función do"
|
||||||
|
@ -667,17 +662,21 @@ msgid "Length"
|
||||||
msgstr "Lonxitude"
|
msgstr "Lonxitude"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autora"
|
msgstr "Autoría"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "en memoria"
|
msgstr "en memoria"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "a través de proxy"
|
msgstr "a través de proxy"
|
||||||
|
|
||||||
|
@ -948,12 +947,12 @@ msgstr "Suxestións"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Idioma de busca"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Idioma por defecto"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Autodetectar"
|
msgstr "Autodetectar"
|
||||||
|
@ -1449,7 +1448,7 @@ msgstr "Xornal"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:22
|
#: searx/templates/simple/result_templates/paper.html:22
|
||||||
msgid "Editor"
|
msgid "Editor"
|
||||||
msgstr "Autoría"
|
msgstr "Edición"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/paper.html:23
|
#: searx/templates/simple/result_templates/paper.html:23
|
||||||
msgid "Publisher"
|
msgid "Publisher"
|
||||||
|
@ -1951,3 +1950,7 @@ msgstr "agochar vídeo"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Substituír servidor"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -16,22 +16,23 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# sacred-serpent <sacred-serpent@users.noreply.translate.codeberg.org>,
|
# sacred-serpent <sacred-serpent@users.noreply.translate.codeberg.org>,
|
||||||
# 2024.
|
# 2024.
|
||||||
|
# Shpubly <Shpubly@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-05 07:09+0000\n"
|
"PO-Revision-Date: 2024-08-02 07:09+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: Hebrew <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/he/>\n"
|
|
||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
|
"Language-Team: Hebrew "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/he/>\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 "
|
||||||
|
"&& n % 10 == 0) ? 2 : 3));\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
|
||||||
"n % 10 == 0) ? 2 : 3));\n"
|
|
||||||
"X-Generator: Weblate 5.6.1\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -182,12 +183,12 @@ msgstr "אודות"
|
||||||
#. WEATHER_TERMS['AVERAGE TEMP.']
|
#. WEATHER_TERMS['AVERAGE TEMP.']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Average temp."
|
msgid "Average temp."
|
||||||
msgstr ""
|
msgstr "טמפרטורה ממוצעת"
|
||||||
|
|
||||||
#. WEATHER_TERMS['CLOUD COVER']
|
#. WEATHER_TERMS['CLOUD COVER']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Cloud cover"
|
msgid "Cloud cover"
|
||||||
msgstr ""
|
msgstr "כיסוי עננים"
|
||||||
|
|
||||||
#. WEATHER_TERMS['CONDITION']
|
#. WEATHER_TERMS['CONDITION']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -207,7 +208,7 @@ msgstr "ערב"
|
||||||
#. WEATHER_TERMS['FEELS LIKE']
|
#. WEATHER_TERMS['FEELS LIKE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Feels like"
|
msgid "Feels like"
|
||||||
msgstr ""
|
msgstr "מרגיש כמו"
|
||||||
|
|
||||||
#. WEATHER_TERMS['HUMIDITY']
|
#. WEATHER_TERMS['HUMIDITY']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -217,7 +218,7 @@ msgstr "לחות"
|
||||||
#. WEATHER_TERMS['MAX TEMP.']
|
#. WEATHER_TERMS['MAX TEMP.']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Max temp."
|
msgid "Max temp."
|
||||||
msgstr ""
|
msgstr "טמפרטורה מקסימלית"
|
||||||
|
|
||||||
#. WEATHER_TERMS['MIN TEMP.']
|
#. WEATHER_TERMS['MIN TEMP.']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -320,17 +321,17 @@ msgid "author"
|
||||||
msgstr "מחבר"
|
msgstr "מחבר"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "פתוח"
|
msgstr "פתוח"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "סגור"
|
msgstr "סגור"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -423,19 +424,19 @@ msgstr "לפני {minutes} דקות"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "לפני {hours} שעות, {minutes} דקות"
|
msgstr "לפני {hours} שעות, {minutes} דקות"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "מפיק ערך אקראי"
|
msgstr "מפיק ערך אקראי"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "מייצרת ערכים אקראיים שונים"
|
msgstr "מייצרת ערכים אקראיים שונים"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "פונקציות סטטיסטיקה"
|
msgstr "פונקציות סטטיסטיקה"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "מחשבת {functions} של הארגומנטים"
|
msgstr "מחשבת {functions} של הארגומנטים"
|
||||||
|
|
||||||
|
@ -468,7 +469,7 @@ msgid "clicks"
|
||||||
msgstr "לחיצות"
|
msgstr "לחיצות"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "שפה"
|
msgstr "שפה"
|
||||||
|
|
||||||
|
@ -502,11 +503,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "אי אפשר להוריד את תמונה זו."
|
msgstr "אי אפשר להוריד את תמונה זו."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "דירוג ספרים"
|
msgstr "דירוג ספרים"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "איכות קובץ"
|
msgstr "איכות קובץ"
|
||||||
|
|
||||||
|
@ -522,15 +523,11 @@ msgstr "ממיר מחרוזות לתוך hash digests (לקט גיבוב) שונ
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash digest"
|
msgstr "hash digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "החלפת Hostname"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -672,17 +669,21 @@ msgid "Length"
|
||||||
msgstr "אורך"
|
msgstr "אורך"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "מחבר"
|
msgstr "מחבר"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "מוטמן"
|
msgstr "מוטמן"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "פרוקסי"
|
msgstr "פרוקסי"
|
||||||
|
|
||||||
|
@ -953,12 +954,12 @@ msgstr "הצעות"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "שפת חיפוש"
|
msgstr "שפת חיפוש"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "שפה ברירת מחדל"
|
msgstr "שפה ברירת מחדל"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "זיהוי אוטומטי"
|
msgstr "זיהוי אוטומטי"
|
||||||
|
@ -1913,3 +1914,7 @@ msgstr "הסתר וידאו"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "טי״ב"
|
#~ msgstr "טי״ב"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "החלפת Hostname"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -18,7 +18,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
|
||||||
"Last-Translator: ganoci <ganoci@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: ganoci <ganoci@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
|
@ -317,17 +317,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -420,19 +420,19 @@ msgstr "prije {minutes} minut(u,e,a)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "prije {hours} sat(i,a) i {minutes} minut(u,e,a)"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Nasumični generator vrijednosti"
|
msgstr "Nasumični generator vrijednosti"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generirajte različite nasumične vrijednosti"
|
msgstr "Generirajte različite nasumične vrijednosti"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistične funkcije"
|
msgstr "Statistične funkcije"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Izračunajte {functions} argumenata"
|
msgstr "Izračunajte {functions} argumenata"
|
||||||
|
|
||||||
|
@ -465,7 +465,7 @@ msgid "clicks"
|
||||||
msgstr "klikovi"
|
msgstr "klikovi"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Jezik"
|
msgstr "Jezik"
|
||||||
|
|
||||||
|
@ -499,11 +499,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Sliku nije moguće preuzeti."
|
msgstr "Sliku nije moguće preuzeti."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Ocjena knjige"
|
msgstr "Ocjena knjige"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Kvaliteta datoteke"
|
msgstr "Kvaliteta datoteke"
|
||||||
|
|
||||||
|
@ -519,15 +519,11 @@ msgstr "Pretvara niz u drukčije hash mješavine."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "Izlaz hash funkcije"
|
msgstr "Izlaz hash funkcije"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Zamjena lokalnog imena"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -668,17 +664,21 @@ msgid "Length"
|
||||||
msgstr "Dužina"
|
msgstr "Dužina"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "spremljeno"
|
msgstr "spremljeno"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "preko proxyja"
|
msgstr "preko proxyja"
|
||||||
|
|
||||||
|
@ -949,12 +949,12 @@ msgstr "Prijedlozi"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Jezik pretraživanja"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Zadani jezik"
|
msgstr "Zadani jezik"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatski otkrij"
|
msgstr "Automatski otkrij"
|
||||||
|
@ -1939,3 +1939,6 @@ msgstr "sakrij video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Zamjena lokalnog imena"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -17,19 +17,19 @@
|
||||||
# Kran21 <Kran21@users.noreply.translate.codeberg.org>, 2024.
|
# Kran21 <Kran21@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-25 11:18+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: Hungarian <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/hu/>\n"
|
|
||||||
"Language: hu\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -318,17 +318,17 @@ msgid "author"
|
||||||
msgstr "szerző"
|
msgstr "szerző"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Megnyitás"
|
msgstr "Megnyitás"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "Lezárt"
|
msgstr "Lezárt"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "megválaszolt"
|
msgstr "megválaszolt"
|
||||||
|
|
||||||
|
@ -421,19 +421,19 @@ msgstr "{minutes} perce"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} óra, {minutes} perce"
|
msgstr "{hours} óra, {minutes} perce"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Véletlenérték-generátor"
|
msgstr "Véletlenérték-generátor"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Különböző véletlen értékek előállítása"
|
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"
|
msgid "Statistics functions"
|
||||||
msgstr "Statisztikai függvények"
|
msgstr "Statisztikai függvények"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "{functions} alkalmazása az argumentumokon"
|
msgstr "{functions} alkalmazása az argumentumokon"
|
||||||
|
|
||||||
|
@ -466,7 +466,7 @@ msgid "clicks"
|
||||||
msgstr "kattintások:"
|
msgstr "kattintások:"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Nyelv"
|
msgstr "Nyelv"
|
||||||
|
|
||||||
|
@ -500,11 +500,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "A kép nem tölthető le."
|
msgstr "A kép nem tölthető le."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Könyv értékelése"
|
msgstr "Könyv értékelése"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Fájlminőség"
|
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"
|
msgid "hash digest"
|
||||||
msgstr "hash érték"
|
msgstr "hash érték"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Kiszolgálónév cseréje"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Kiszolgálónév modul"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Írd át a kiszolgálóneveket, távolítsd el az eredményeket vagy rangsorold "
|
"Írd át a kiszolgálóneveket, távolítsd el az eredményeket vagy rangsorold "
|
||||||
|
@ -675,17 +671,21 @@ msgid "Length"
|
||||||
msgstr "Hossz"
|
msgstr "Hossz"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Szerző"
|
msgstr "Szerző"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "tárolt"
|
msgstr "tárolt"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxy nézet"
|
msgstr "proxy nézet"
|
||||||
|
|
||||||
|
@ -958,12 +958,12 @@ msgstr "Javaslatok"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Keresés nyelve"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Alapértelmezett nyelv"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatikus felismerés"
|
msgstr "Automatikus felismerés"
|
||||||
|
@ -1947,3 +1947,7 @@ msgstr "videó elrejtése"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Kiszolgálónév cseréje"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -9,7 +9,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2023-06-22 09:02+0000\n"
|
||||||
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
|
||||||
"Language: ia\n"
|
"Language: ia\n"
|
||||||
|
@ -307,17 +307,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -410,19 +410,19 @@ msgstr "{minutes} minuta(s) retro"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} hora(s), {minutes} minuta(s) retro"
|
msgstr "{hours} hora(s), {minutes} minuta(s) retro"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generator de valores aleatori"
|
msgstr "Generator de valores aleatori"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generar differente valores aleatori"
|
msgstr "Generar differente valores aleatori"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Functiones statistic"
|
msgstr "Functiones statistic"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Computa {functions} del argumentos"
|
msgstr "Computa {functions} del argumentos"
|
||||||
|
|
||||||
|
@ -455,7 +455,7 @@ msgid "clicks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -482,11 +482,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -502,15 +502,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -648,17 +644,21 @@ msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "in cache"
|
msgstr "in cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "per proxy"
|
msgstr "per proxy"
|
||||||
|
|
||||||
|
@ -929,12 +929,12 @@ msgstr "Suggestiones"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Lingua pro le recerca"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Lingua predefinite"
|
msgstr "Lingua predefinite"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1893,3 +1893,6 @@ msgstr "occultar video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -11,21 +11,21 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# eddywidjaja <eddywidjaja@users.noreply.translate.codeberg.org>, 2024.
|
# eddywidjaja <eddywidjaja@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# LIGMATV <LIGMATV@users.noreply.translate.codeberg.org>, 2024.
|
# LIGMATV <LIGMATV@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# drat <drat@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-06-26 13:18+0000\n"
|
"PO-Revision-Date: 2024-08-05 15:59+0000\n"
|
||||||
"Last-Translator: Linerly <Linerly@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: drat <drat@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Indonesian <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/id/>\n"
|
|
||||||
"Language: id\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -81,7 +81,7 @@ msgstr "tv"
|
||||||
#. CATEGORY_NAMES['IT']
|
#. CATEGORY_NAMES['IT']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "it"
|
msgid "it"
|
||||||
msgstr "ti"
|
msgstr "TI"
|
||||||
|
|
||||||
#. CATEGORY_NAMES['NEWS']
|
#. CATEGORY_NAMES['NEWS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -314,17 +314,17 @@ msgid "author"
|
||||||
msgstr "penulis"
|
msgstr "penulis"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Buka"
|
msgstr "Buka"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "Tertutup"
|
msgstr "Tertutup"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "dijawab"
|
msgstr "dijawab"
|
||||||
|
|
||||||
|
@ -417,19 +417,19 @@ msgstr "{minutes} menit yang lalu"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} jam, {minutes} menit yang lalu"
|
msgstr "{hours} jam, {minutes} menit yang lalu"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Penghasil nilai acak"
|
msgstr "Penghasil nilai acak"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Menghasilkan nilai-nilai acak yang berbeda"
|
msgstr "Menghasilkan nilai-nilai acak yang berbeda"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Fungsi statistik"
|
msgstr "Fungsi statistik"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Menghitung {functions} dari argumen"
|
msgstr "Menghitung {functions} dari argumen"
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "klik"
|
msgstr "klik"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Bahasa"
|
msgstr "Bahasa"
|
||||||
|
|
||||||
|
@ -497,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Gambar ini tidak dapat diunduh."
|
msgstr "Gambar ini tidak dapat diunduh."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Peringkat buku"
|
msgstr "Peringkat buku"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Kualitas berkas"
|
msgstr "Kualitas berkas"
|
||||||
|
|
||||||
|
@ -517,18 +517,13 @@ msgstr "Mengubah string menjadi hash digest yang berbeda."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "intisari hash"
|
msgstr "intisari hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Pengubah nama host"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin nama hos"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr "Tulis ulang nama hos, hapus atau prioritas kan hasil berdasarkan nama hos"
|
||||||
"Tulis ulang nama hos, hapus atau prioritas kan hasil berdasarkan nama hos"
|
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:12
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -673,17 +668,21 @@ msgid "Length"
|
||||||
msgstr "Durasi"
|
msgstr "Durasi"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Penulis"
|
msgstr "Penulis"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "tembolok"
|
msgstr "tembolok"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proksi"
|
msgstr "proksi"
|
||||||
|
|
||||||
|
@ -956,12 +955,12 @@ msgstr "Saran"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Bahasa pencarian"
|
msgstr "Bahasa pencarian"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Bahasa bawaan"
|
msgstr "Bahasa bawaan"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Deteksi otomatis"
|
msgstr "Deteksi otomatis"
|
||||||
|
@ -1492,7 +1491,7 @@ msgstr "berkas torrent"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/torrent.html:9
|
#: searx/templates/simple/result_templates/torrent.html:9
|
||||||
msgid "Seeder"
|
msgid "Seeder"
|
||||||
msgstr "Seeder"
|
msgstr "Pengumpan"
|
||||||
|
|
||||||
#: searx/templates/simple/result_templates/torrent.html:9
|
#: searx/templates/simple/result_templates/torrent.html:9
|
||||||
msgid "Leecher"
|
msgid "Leecher"
|
||||||
|
@ -1832,3 +1831,7 @@ msgstr "sembunyikan video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Pengubah nama host"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -29,19 +29,19 @@
|
||||||
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
|
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-01 00:18+0000\n"
|
"PO-Revision-Date: 2024-08-08 10:01+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/it/>\n"
|
|
||||||
"Language: it\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.1\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -330,17 +330,17 @@ msgid "author"
|
||||||
msgstr "autore"
|
msgstr "autore"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "aperto"
|
msgstr "aperto"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "chiuso"
|
msgstr "chiuso"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "risposto"
|
msgstr "risposto"
|
||||||
|
|
||||||
|
@ -433,19 +433,19 @@ msgstr "di {minutes} minuto(i) fa"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "di {hours} ora(e) e {minutes} minuto(i) fa"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Generatore di numeri casuali"
|
msgstr "Generatore di numeri casuali"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Genera più numeri casuali"
|
msgstr "Genera più numeri casuali"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funzioni statistiche"
|
msgstr "Funzioni statistiche"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcola {functions} degli argomenti"
|
msgstr "Calcola {functions} degli argomenti"
|
||||||
|
|
||||||
|
@ -478,7 +478,7 @@ msgid "clicks"
|
||||||
msgstr "clic"
|
msgstr "clic"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Lingua"
|
msgstr "Lingua"
|
||||||
|
|
||||||
|
@ -513,11 +513,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "L'immagine non può essere scaricata."
|
msgstr "L'immagine non può essere scaricata."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Valutazione del libro"
|
msgstr "Valutazione del libro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Qualità del file"
|
msgstr "Qualità del file"
|
||||||
|
|
||||||
|
@ -533,15 +533,11 @@ msgstr "Converte le stringhe in diversi digest di hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "digest dell'hash"
|
msgstr "digest dell'hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Sostituzione del nome host"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin dell'hostname"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Riscrive gli hostname, rimuove i risultati o gli da priorità in base "
|
"Riscrive gli hostname, rimuove i risultati o gli da priorità in base "
|
||||||
|
@ -687,17 +683,21 @@ msgid "Length"
|
||||||
msgstr "Lunghezza"
|
msgstr "Lunghezza"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autore"
|
msgstr "Autore"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "in cache"
|
msgstr "in cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxy"
|
msgstr "proxy"
|
||||||
|
|
||||||
|
@ -974,12 +974,12 @@ msgstr "Suggerimenti"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Lingua di ricerca"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Lingua predefinita"
|
msgstr "Lingua predefinita"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Rilevamento automatico"
|
msgstr "Rilevamento automatico"
|
||||||
|
@ -1975,3 +1975,7 @@ msgstr "nascondi video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Sostituzione del nome host"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -23,19 +23,19 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-22 11:18+0000\n"
|
||||||
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>"
|
||||||
"Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
|
"\n"
|
||||||
"searxng/ja/>\n"
|
|
||||||
"Language: ja\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -324,17 +324,17 @@ msgid "author"
|
||||||
msgstr "作"
|
msgstr "作"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "オープン"
|
msgstr "オープン"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "クローズ"
|
msgstr "クローズ"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "回答"
|
msgstr "回答"
|
||||||
|
|
||||||
|
@ -427,19 +427,19 @@ msgstr "{minutes} 分前"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} 時間と{minutes} 分前"
|
msgstr "{hours} 時間と{minutes} 分前"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "ランダムな値を生成"
|
msgstr "ランダムな値を生成"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "異なるランダムな値を生成する"
|
msgstr "異なるランダムな値を生成する"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "統計機能"
|
msgstr "統計機能"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "変数の {functions} を計算する"
|
msgstr "変数の {functions} を計算する"
|
||||||
|
|
||||||
|
@ -472,7 +472,7 @@ msgid "clicks"
|
||||||
msgstr "クリック"
|
msgstr "クリック"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "言語"
|
msgstr "言語"
|
||||||
|
|
||||||
|
@ -501,11 +501,11 @@ msgstr "画像が単純すぎます。TinEyeが正しく照合を行うにはあ
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "この画像はダウンロードはできません。"
|
msgstr "この画像はダウンロードはできません。"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "書籍評価点数"
|
msgstr "書籍評価点数"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "ファイル品質"
|
msgstr "ファイル品質"
|
||||||
|
|
||||||
|
@ -521,15 +521,11 @@ msgstr "文字列を異なるハッシュダイジェストに変換。"
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "ハッシュダイジェスト"
|
msgstr "ハッシュダイジェスト"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "ホストネーム入れ替え"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "ホスト名プラグイン"
|
msgstr "ホスト名プラグイン"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr "検索結果からこのホスト名を基に削除もしくは優先的に書き換えを行う"
|
msgstr "検索結果からこのホスト名を基に削除もしくは優先的に書き換えを行う"
|
||||||
|
|
||||||
|
@ -663,17 +659,21 @@ msgid "Length"
|
||||||
msgstr "長さ"
|
msgstr "長さ"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "作者"
|
msgstr "作者"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "キャッシュ"
|
msgstr "キャッシュ"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "プロキシ"
|
msgstr "プロキシ"
|
||||||
|
|
||||||
|
@ -944,12 +944,12 @@ msgstr "提案"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "検索の言語"
|
msgstr "検索の言語"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "デフォルトの言語"
|
msgstr "デフォルトの言語"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "自動検出"
|
msgstr "自動検出"
|
||||||
|
@ -1881,3 +1881,7 @@ msgstr "動画を隠す"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "テラバイト"
|
#~ msgstr "テラバイト"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "ホストネーム入れ替え"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,18 +14,17 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-03 17:18+0000\n"
|
||||||
"Last-Translator: seonghobae <seonghobae@users.noreply.translate.codeberg.org>"
|
"Last-Translator: seonghobae "
|
||||||
"\n"
|
"<seonghobae@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Korean <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/ko/>\n"
|
|
||||||
"Language: ko\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: Weblate 5.6.1\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -314,17 +313,17 @@ msgid "author"
|
||||||
msgstr "작성자"
|
msgstr "작성자"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "열기"
|
msgstr "열기"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "닫힘"
|
msgstr "닫힘"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "응답"
|
msgstr "응답"
|
||||||
|
|
||||||
|
@ -417,19 +416,19 @@ msgstr "{minutes}분 전"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours}시간 {minutes}분 전"
|
msgstr "{hours}시간 {minutes}분 전"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "난수 생성기"
|
msgstr "난수 생성기"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "다른 난수 생성"
|
msgstr "다른 난수 생성"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "통계 기능"
|
msgstr "통계 기능"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "{functions} 매개변수 계산"
|
msgstr "{functions} 매개변수 계산"
|
||||||
|
|
||||||
|
@ -462,7 +461,7 @@ msgid "clicks"
|
||||||
msgstr "클릭"
|
msgstr "클릭"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "언어"
|
msgstr "언어"
|
||||||
|
|
||||||
|
@ -495,11 +494,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "다운로드할 수 없는 이미지입니다."
|
msgstr "다운로드할 수 없는 이미지입니다."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "책 평점"
|
msgstr "책 평점"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "파일 품질"
|
msgstr "파일 품질"
|
||||||
|
|
||||||
|
@ -515,15 +514,11 @@ msgstr "문자열을 다른 해시 다이제스트 값으로 변환합니다."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "해시 다이제스트"
|
msgstr "해시 다이제스트"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "호스트 이름 변경"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "호스트 이름 플러그인"
|
msgstr "호스트 이름 플러그인"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr "검색 결과에서 이 호스트 이름을 기준으로 삭제 또는 우선순위에 따라 재작성하기"
|
msgstr "검색 결과에서 이 호스트 이름을 기준으로 삭제 또는 우선순위에 따라 재작성하기"
|
||||||
|
|
||||||
|
@ -659,17 +654,21 @@ msgid "Length"
|
||||||
msgstr "길이"
|
msgstr "길이"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "저자"
|
msgstr "저자"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "캐시"
|
msgstr "캐시"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "프록시됨"
|
msgstr "프록시됨"
|
||||||
|
|
||||||
|
@ -940,12 +939,12 @@ msgstr "제안"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "검색 언어"
|
msgstr "검색 언어"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "기본 언어"
|
msgstr "기본 언어"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "자동 감지"
|
msgstr "자동 감지"
|
||||||
|
@ -1758,3 +1757,7 @@ msgstr "비디오 숨기기"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "호스트 이름 변경"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -13,8 +13,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-05-29 09:18+0000\n"
|
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
|
@ -186,12 +186,12 @@ msgstr ""
|
||||||
#. WEATHER_TERMS['CONDITION']
|
#. WEATHER_TERMS['CONDITION']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Condition"
|
msgid "Condition"
|
||||||
msgstr ""
|
msgstr "Sąlyga"
|
||||||
|
|
||||||
#. WEATHER_TERMS['CURRENT CONDITION']
|
#. WEATHER_TERMS['CURRENT CONDITION']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Current condition"
|
msgid "Current condition"
|
||||||
msgstr ""
|
msgstr "Esamos sąlygos"
|
||||||
|
|
||||||
#. WEATHER_TERMS['EVENING']
|
#. WEATHER_TERMS['EVENING']
|
||||||
#: searx/engines/wttr.py:100 searx/searxng.msg
|
#: searx/engines/wttr.py:100 searx/searxng.msg
|
||||||
|
@ -206,7 +206,7 @@ msgstr "Jaučiasi kaip"
|
||||||
#. WEATHER_TERMS['HUMIDITY']
|
#. WEATHER_TERMS['HUMIDITY']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Humidity"
|
msgid "Humidity"
|
||||||
msgstr ""
|
msgstr "Dregmė"
|
||||||
|
|
||||||
#. WEATHER_TERMS['MAX TEMP.']
|
#. WEATHER_TERMS['MAX TEMP.']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -236,7 +236,7 @@ msgstr "Vidurdienis"
|
||||||
#. WEATHER_TERMS['PRESSURE']
|
#. WEATHER_TERMS['PRESSURE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr ""
|
msgstr "Slėgis"
|
||||||
|
|
||||||
#. WEATHER_TERMS['SUNRISE']
|
#. WEATHER_TERMS['SUNRISE']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -256,7 +256,7 @@ msgstr "Temperatura"
|
||||||
#. WEATHER_TERMS['UV INDEX']
|
#. WEATHER_TERMS['UV INDEX']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "UV index"
|
msgid "UV index"
|
||||||
msgstr ""
|
msgstr "UV indeksas"
|
||||||
|
|
||||||
#. WEATHER_TERMS['VISIBILITY']
|
#. WEATHER_TERMS['VISIBILITY']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -314,17 +314,17 @@ msgid "author"
|
||||||
msgstr "Autorius"
|
msgstr "Autorius"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -417,19 +417,19 @@ msgstr "prieš {minutes} min"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "prieš {hours} val., {minutes} min"
|
msgstr "prieš {hours} val., {minutes} min"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Atsitiktinių skaičiu generatorius"
|
msgstr "Atsitiktinių skaičiu generatorius"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generuoja įvairias atsitiktinius skaičius"
|
msgstr "Generuoja įvairias atsitiktinius skaičius"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikos funkcijos"
|
msgstr "Statistikos funkcijos"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Skaičiuoti argumentų {functions} funkcijas"
|
msgstr "Skaičiuoti argumentų {functions} funkcijas"
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "paspaudimai"
|
msgstr "paspaudimai"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Kalba"
|
msgstr "Kalba"
|
||||||
|
|
||||||
|
@ -496,11 +496,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Nepavyko atsisiųsti vaizdo."
|
msgstr "Nepavyko atsisiųsti vaizdo."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Knygos įvertinimas"
|
msgstr "Knygos įvertinimas"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Failo kokybė"
|
msgstr "Failo kokybė"
|
||||||
|
|
||||||
|
@ -516,15 +516,11 @@ msgstr "Konvertuoja eilutes į skirtingas maišos santraukas."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "maišos santrauka"
|
msgstr "maišos santrauka"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Kompiuterio pavadinimo pakeitimas"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -554,7 +550,7 @@ msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:28
|
#: searx/plugins/self_info.py:28
|
||||||
msgid "Your IP is: "
|
msgid "Your IP is: "
|
||||||
msgstr ""
|
msgstr "Jūsų IP adresas: "
|
||||||
|
|
||||||
#: searx/plugins/self_info.py:31
|
#: searx/plugins/self_info.py:31
|
||||||
msgid "Your user-agent is: "
|
msgid "Your user-agent is: "
|
||||||
|
@ -667,17 +663,21 @@ msgid "Length"
|
||||||
msgstr "Trukmė"
|
msgstr "Trukmė"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autorius"
|
msgstr "Autorius"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "patalpinta"
|
msgstr "patalpinta"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "persiustas"
|
msgstr "persiustas"
|
||||||
|
|
||||||
|
@ -948,12 +948,12 @@ msgstr "Pasiūlymai"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Paieškos kalba"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Numatytoji kalba"
|
msgstr "Numatytoji kalba"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatiškai aptikti"
|
msgstr "Automatiškai aptikti"
|
||||||
|
@ -1918,3 +1918,6 @@ msgstr "slėpti vaizdo įrašą"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Kompiuterio pavadinimo pakeitimas"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -12,7 +12,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-05-23 21:19+0000\n"
|
||||||
"Last-Translator: Obligate <Obligate@users.noreply.translate.codeberg.org>"
|
"Last-Translator: Obligate <Obligate@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -312,17 +312,17 @@ msgid "author"
|
||||||
msgstr "autors"
|
msgstr "autors"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -415,19 +415,19 @@ msgstr "pirms {minutes} minūtes(-ēm)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "pirms {hours} stundas(-ām) un {minutes} minūtēm(-es)"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Nejaušu vērtību ģenerators"
|
msgstr "Nejaušu vērtību ģenerators"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Ģenerēt citas nejaušas vērtības"
|
msgstr "Ģenerēt citas nejaušas vērtības"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikas funkcijas"
|
msgstr "Statistikas funkcijas"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Aprēķināt argumentu {functions}"
|
msgstr "Aprēķināt argumentu {functions}"
|
||||||
|
|
||||||
|
@ -460,7 +460,7 @@ msgid "clicks"
|
||||||
msgstr "klikšķi"
|
msgstr "klikšķi"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Valoda"
|
msgstr "Valoda"
|
||||||
|
|
||||||
|
@ -494,11 +494,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Attēlu neizdevās lejupielādēt."
|
msgstr "Attēlu neizdevās lejupielādēt."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "grāmatu vērtējums"
|
msgstr "grāmatu vērtējums"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Failu kvalitāte"
|
msgstr "Failu kvalitāte"
|
||||||
|
|
||||||
|
@ -514,15 +514,11 @@ msgstr "Pārvērš virknes (strings) par dažādiem jaucējkoda īssavilkumiem."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "jaucējkoda sašķelšana"
|
msgstr "jaucējkoda sašķelšana"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Resursdatora vārda nomaiņa"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -660,17 +656,21 @@ msgid "Length"
|
||||||
msgstr "Garums"
|
msgstr "Garums"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autors"
|
msgstr "Autors"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -943,12 +943,12 @@ msgstr "Ieteikumi"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Meklēšanas valoda"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1651,3 +1651,6 @@ msgstr "slēpt video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Resursdatora vārda nomaiņa"
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -303,17 +303,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -406,19 +406,19 @@ msgstr ""
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -451,7 +451,7 @@ msgid "clicks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -478,11 +478,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -498,15 +498,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -640,17 +636,21 @@ msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -921,12 +921,12 @@ msgstr ""
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Binary file not shown.
|
@ -15,18 +15,17 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-19 07:09+0000\n"
|
||||||
"Last-Translator: wazhanudin <wazhanudin@users.noreply.translate.codeberg.org>"
|
"Last-Translator: wazhanudin "
|
||||||
"\n"
|
"<wazhanudin@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Malay <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/ms/>\n"
|
|
||||||
"Language: ms\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -315,17 +314,17 @@ msgid "author"
|
||||||
msgstr "penulis"
|
msgstr "penulis"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "buka"
|
msgstr "buka"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "tutup"
|
msgstr "tutup"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "dijawab"
|
msgstr "dijawab"
|
||||||
|
|
||||||
|
@ -418,19 +417,19 @@ msgstr "{minit} minit yang lalu"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{jam} jam, {minit} minit yang lalu"
|
msgstr "{jam} jam, {minit} minit yang lalu"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Penjana nombor rawak"
|
msgstr "Penjana nombor rawak"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Jana jumlah rawak yang berbeza"
|
msgstr "Jana jumlah rawak yang berbeza"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Fungsi statistik"
|
msgstr "Fungsi statistik"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Mengira {functions} dari hujah-hujah"
|
msgstr "Mengira {functions} dari hujah-hujah"
|
||||||
|
|
||||||
|
@ -463,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "klik"
|
msgstr "klik"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Bahasa"
|
msgstr "Bahasa"
|
||||||
|
|
||||||
|
@ -497,11 +496,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Imej tidak dapat dimuat turun."
|
msgstr "Imej tidak dapat dimuat turun."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Penarafan buku"
|
msgstr "Penarafan buku"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Kualiti fail"
|
msgstr "Kualiti fail"
|
||||||
|
|
||||||
|
@ -517,15 +516,11 @@ msgstr "Ubah rentetan kepada \"hash digest\" yang berbeza."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "huraian hash"
|
msgstr "huraian hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Gantikan nama hos"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin nama hos"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Menulis semula nama hos, buang keputusan atau memberi keutamaan kepada "
|
"Menulis semula nama hos, buang keputusan atau memberi keutamaan kepada "
|
||||||
|
@ -672,17 +667,21 @@ msgid "Length"
|
||||||
msgstr "Panjang"
|
msgstr "Panjang"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Penulis"
|
msgstr "Penulis"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "dicache"
|
msgstr "dicache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "diproksi"
|
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
|
#: searx/templates/simple/new_issue.html:69
|
||||||
msgid "I confirm there is no existing bug about the issue I encounter"
|
msgid "I confirm there is no existing bug about the issue I encounter"
|
||||||
msgstr ""
|
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
|
#: searx/templates/simple/new_issue.html:71
|
||||||
msgid "If this is a public instance, please specify the URL in the bug report"
|
msgid "If this is a public instance, please specify the URL in the bug report"
|
||||||
|
@ -954,12 +954,12 @@ msgstr "Cadangan"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Bahasa carian"
|
msgstr "Bahasa carian"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Bahasa lalai"
|
msgstr "Bahasa lalai"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Kesan secara automatik"
|
msgstr "Kesan secara automatik"
|
||||||
|
@ -1108,8 +1108,8 @@ msgid ""
|
||||||
"This is the list of cookies and their values SearXNG is storing on your "
|
"This is the list of cookies and their values SearXNG is storing on your "
|
||||||
"computer."
|
"computer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ini adalah senarai kuki dan nilai-nilainya yang disimpan oleh SearXNG pada "
|
"Ini adalah senarai kuki dan nilai-nilainya yang disimpan oleh SearXNG "
|
||||||
"komputer anda."
|
"pada komputer anda."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:3
|
#: searx/templates/simple/preferences/cookies.html:3
|
||||||
msgid "With that list, you can assess SearXNG transparency."
|
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 "
|
"Note: specifying custom settings in the search URL can reduce privacy by "
|
||||||
"leaking data to the clicked result sites."
|
"leaking data to the clicked result sites."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nota: menentukan tetapan khusus dalam URL carian boleh mengurangkan privasi "
|
"Nota: menentukan tetapan khusus dalam URL carian boleh mengurangkan "
|
||||||
"dengan membocorkan data kepada laman hasil yang diklik."
|
"privasi dengan membocorkan data kepada laman hasil yang diklik."
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/cookies.html:35
|
#: searx/templates/simple/preferences/cookies.html:35
|
||||||
msgid "URL to restore your preferences in another browser"
|
msgid "URL to restore your preferences in another browser"
|
||||||
|
@ -1654,3 +1654,7 @@ msgstr "sembunyikkan video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Gantikan nama hos"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -13,7 +13,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-04-07 07:18+0000\n"
|
||||||
"Last-Translator: omfj <omfj@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: omfj <omfj@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
|
@ -311,17 +311,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -414,19 +414,19 @@ msgstr "for {minutes} minuter siden"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "for {hours} time(r), {minutes} minutt(er) siden"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Generator for tilfeldige tall"
|
msgstr "Generator for tilfeldige tall"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generer forskjellige tilfeldige verdier"
|
msgstr "Generer forskjellige tilfeldige verdier"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikkfunksjoner"
|
msgstr "Statistikkfunksjoner"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Regn ut {functions} av parameterne"
|
msgstr "Regn ut {functions} av parameterne"
|
||||||
|
|
||||||
|
@ -459,7 +459,7 @@ msgid "clicks"
|
||||||
msgstr "klikk"
|
msgstr "klikk"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Språk"
|
msgstr "Språk"
|
||||||
|
|
||||||
|
@ -493,11 +493,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Bildet kunne ikke lastes ned."
|
msgstr "Bildet kunne ikke lastes ned."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Bokvurdering"
|
msgstr "Bokvurdering"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Filkvalitet"
|
msgstr "Filkvalitet"
|
||||||
|
|
||||||
|
@ -513,15 +513,11 @@ msgstr "Konverterer strenger til andre sjekksumsføljetonger."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "sjekksumsføljetong"
|
msgstr "sjekksumsføljetong"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Vertsnavnserstatning"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -666,17 +662,21 @@ msgid "Length"
|
||||||
msgstr "Lengde"
|
msgstr "Lengde"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Opphavsmann"
|
msgstr "Opphavsmann"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "hurtiglagret"
|
msgstr "hurtiglagret"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "mellomtjent"
|
msgstr "mellomtjent"
|
||||||
|
|
||||||
|
@ -949,12 +949,12 @@ msgstr "Forslag"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Søkespråk"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Forvalgt språk"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Auto-oppdag"
|
msgstr "Auto-oppdag"
|
||||||
|
@ -1845,3 +1845,6 @@ msgstr "skjul video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Vertsnavnserstatning"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -21,22 +21,22 @@
|
||||||
# yannickmaes <yannickmaes@users.noreply.translate.codeberg.org>, 2024.
|
# yannickmaes <yannickmaes@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# MVDW-Java <MVDW-Java@users.noreply.translate.codeberg.org>, 2024.
|
# MVDW-Java <MVDW-Java@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
|
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-30 08:18+0000\n"
|
||||||
"Last-Translator: notlmutsaers <notlmutsaers@users.noreply.translate.codeberg."
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"org>\n"
|
"\n"
|
||||||
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/nl/>\n"
|
|
||||||
"Language: nl\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -325,17 +325,17 @@ msgid "author"
|
||||||
msgstr "auteur"
|
msgstr "auteur"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "open"
|
msgstr "open"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "gesloten"
|
msgstr "gesloten"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "beantwoord"
|
msgstr "beantwoord"
|
||||||
|
|
||||||
|
@ -428,19 +428,19 @@ msgstr "{minutes} minu(u)t(en) geleden"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} uur, {minutes} minu(u)t(en) geleden"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Willekeurigewaardegenerator"
|
msgstr "Willekeurigewaardegenerator"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Genereer verschillende willekeurige waarden"
|
msgstr "Genereer verschillende willekeurige waarden"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistische functies"
|
msgstr "Statistische functies"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Bereken {functions} van de opties"
|
msgstr "Bereken {functions} van de opties"
|
||||||
|
|
||||||
|
@ -473,7 +473,7 @@ msgid "clicks"
|
||||||
msgstr "clicks"
|
msgstr "clicks"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Taal"
|
msgstr "Taal"
|
||||||
|
|
||||||
|
@ -508,11 +508,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "De afbeelding kon niet worden gedownload."
|
msgstr "De afbeelding kon niet worden gedownload."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "boekbeoordeling"
|
msgstr "boekbeoordeling"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "bestandskwaliteit"
|
msgstr "bestandskwaliteit"
|
||||||
|
|
||||||
|
@ -528,15 +528,11 @@ msgstr "Zet tekstwaarden om naar verschillende hash digests."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash digest"
|
msgstr "hash digest"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Servernaam vervangen"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Hostnamen plug-in"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Herschrijf hostnamen, verwijder resultaten of geef prioriteit aan ze op "
|
"Herschrijf hostnamen, verwijder resultaten of geef prioriteit aan ze op "
|
||||||
|
@ -683,17 +679,21 @@ msgid "Length"
|
||||||
msgstr "Lengte"
|
msgstr "Lengte"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Auteur"
|
msgstr "Auteur"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "gecachet"
|
msgstr "gecachet"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "geproxyt"
|
msgstr "geproxyt"
|
||||||
|
|
||||||
|
@ -968,12 +968,12 @@ msgstr "Suggesties"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Zoektaal"
|
msgstr "Zoektaal"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Standaardtaal"
|
msgstr "Standaardtaal"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatisch herkennen"
|
msgstr "Automatisch herkennen"
|
||||||
|
@ -1968,3 +1968,7 @@ msgstr "verberg video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Servernaam vervangen"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -12,7 +12,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-03-12 17:28+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -311,17 +311,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -414,19 +414,19 @@ msgstr "fa {minutes} minuta(s)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "Fa {hours} ora(s), {minutes} minuta(s)"
|
msgstr "Fa {hours} ora(s), {minutes} minuta(s)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generator aleatòri"
|
msgstr "Generator aleatòri"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Crèa de valors aleatòrias diferentas"
|
msgstr "Crèa de valors aleatòrias diferentas"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Foncions estatisticas"
|
msgstr "Foncions estatisticas"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcula las {functions} dels arguments"
|
msgstr "Calcula las {functions} dels arguments"
|
||||||
|
|
||||||
|
@ -459,7 +459,7 @@ msgid "clicks"
|
||||||
msgstr "clics"
|
msgstr "clics"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Lenga"
|
msgstr "Lenga"
|
||||||
|
|
||||||
|
@ -488,11 +488,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Telecargament impossible de l’imatge."
|
msgstr "Telecargament impossible de l’imatge."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Nòta del libre"
|
msgstr "Nòta del libre"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Qualitat del fichièr"
|
msgstr "Qualitat del fichièr"
|
||||||
|
|
||||||
|
@ -508,15 +508,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Remplaçar los noms d’òste"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -654,17 +650,21 @@ msgid "Length"
|
||||||
msgstr "Longor"
|
msgstr "Longor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "en version locala"
|
msgstr "en version locala"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxifiat"
|
msgstr "proxifiat"
|
||||||
|
|
||||||
|
@ -935,12 +935,12 @@ msgstr "Suggestions"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Lenga de recerca"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Lenga per defaut"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1895,3 +1895,6 @@ msgstr "escondre la vidèo"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiO"
|
#~ msgstr "TiO"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Remplaçar los noms d’òste"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -16,23 +16,25 @@
|
||||||
# Bubowny <outcheesed@proton.me>, 2024.
|
# Bubowny <outcheesed@proton.me>, 2024.
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# dkuku <dkuku@users.noreply.translate.codeberg.org>, 2024.
|
# dkuku <dkuku@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# danielszewczuk <danielszewczuk@users.noreply.translate.codeberg.org>,
|
||||||
|
# 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-06-20 06:18+0000\n"
|
"PO-Revision-Date: 2024-08-07 01:02+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: danielszewczuk "
|
||||||
"Language-Team: Polish <https://translate.codeberg.org/projects/searxng/"
|
"<danielszewczuk@users.noreply.translate.codeberg.org>\n"
|
||||||
"searxng/pl/>\n"
|
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
|
"Language-Team: Polish "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/pl/>\n"
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
|
||||||
|
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
||||||
|
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && ("
|
|
||||||
"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"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -88,7 +90,7 @@ msgstr "tv"
|
||||||
#. CATEGORY_NAMES['IT']
|
#. CATEGORY_NAMES['IT']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "it"
|
msgid "it"
|
||||||
msgstr "it"
|
msgstr "technologia"
|
||||||
|
|
||||||
#. CATEGORY_NAMES['NEWS']
|
#. CATEGORY_NAMES['NEWS']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -321,17 +323,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Otwórz"
|
msgstr "Otwórz"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "Zamknięty"
|
msgstr "Zamknięty"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "odebrany"
|
msgstr "odebrany"
|
||||||
|
|
||||||
|
@ -424,19 +426,19 @@ msgstr "{minutes} minut(y) temu"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} godzin(y), {minutes} minut(y) temu"
|
msgstr "{hours} godzin(y), {minutes} minut(y) temu"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generator wartości losowych"
|
msgstr "Generator wartości losowych"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Wygeneruj różne wartości losowe"
|
msgstr "Wygeneruj różne wartości losowe"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funkcje statystyczne"
|
msgstr "Funkcje statystyczne"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Oblicz {functions} argumentów"
|
msgstr "Oblicz {functions} argumentów"
|
||||||
|
|
||||||
|
@ -469,7 +471,7 @@ msgid "clicks"
|
||||||
msgstr "kliknięcia"
|
msgstr "kliknięcia"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Język"
|
msgstr "Język"
|
||||||
|
|
||||||
|
@ -503,11 +505,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Nie można pobrać obrazu."
|
msgstr "Nie można pobrać obrazu."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Ocena książki"
|
msgstr "Ocena książki"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Jakość pliku"
|
msgstr "Jakość pliku"
|
||||||
|
|
||||||
|
@ -523,19 +525,15 @@ msgstr "Konwertuje tekst na różne skróty hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "wartość hash"
|
msgstr "wartość hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Zastąp nazwę hosta"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Wtyczka Hostnames"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Przepisywanie nazw hostów, usuwanie wyników lub nadawanie im priorytetów na "
|
"Przepisywanie nazw hostów, usuwanie wyników lub nadawanie im priorytetów "
|
||||||
"podstawie nazwy hosta"
|
"na podstawie nazwy hosta"
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:12
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -678,17 +676,21 @@ msgid "Length"
|
||||||
msgstr "Długość"
|
msgstr "Długość"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "buforowane"
|
msgstr "buforowane"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "przesłane poprzez proxy"
|
msgstr "przesłane poprzez proxy"
|
||||||
|
|
||||||
|
@ -961,12 +963,12 @@ msgstr "Propozycje"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Język wyszukiwania"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Domyślny język"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Automatyczne wykrywanie"
|
msgstr "Automatyczne wykrywanie"
|
||||||
|
@ -1953,3 +1955,7 @@ msgstr "ukryj wideo"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Zastąp nazwę hosta"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -20,19 +20,18 @@
|
||||||
# ds451 <ds451@users.noreply.translate.codeberg.org>, 2024.
|
# ds451 <ds451@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-11 16:18+0000\n"
|
||||||
"Last-Translator: ds451 <ds451@users.noreply.translate.codeberg.org>\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: 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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
||||||
"X-Generator: Weblate 5.6.2\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -321,17 +320,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "aberta"
|
msgstr "aberta"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "fechada"
|
msgstr "fechada"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "respondido"
|
msgstr "respondido"
|
||||||
|
|
||||||
|
@ -424,19 +423,19 @@ msgstr "{minutes} minuto(s) atrás"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} hora(s), {minutes} minuto(s) atrás"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Gerador de valores aleatórios"
|
msgstr "Gerador de valores aleatórios"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Gerar valores aleatórios diferentes"
|
msgstr "Gerar valores aleatórios diferentes"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funções de estatística"
|
msgstr "Funções de estatística"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calcular {functions} dos argumentos"
|
msgstr "Calcular {functions} dos argumentos"
|
||||||
|
|
||||||
|
@ -469,7 +468,7 @@ msgid "clicks"
|
||||||
msgstr "clica"
|
msgstr "clica"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
|
@ -503,11 +502,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Não é possível fazer download da imagem."
|
msgstr "Não é possível fazer download da imagem."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Classificação do livro"
|
msgstr "Classificação do livro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Qualidade do ficheiro"
|
msgstr "Qualidade do ficheiro"
|
||||||
|
|
||||||
|
@ -523,18 +522,13 @@ msgstr "Converte strings em diferentes resumos de hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "resumo de hash"
|
msgstr "resumo de hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Substituição do nome do host"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin hostnames"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr "Reescreve hostname, apaga resultados ou prioriza-os com base no hostname"
|
||||||
"Reescreve hostname, apaga resultados ou prioriza-os com base no hostname"
|
|
||||||
|
|
||||||
#: searx/plugins/oa_doi_rewrite.py:12
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -677,17 +671,21 @@ msgid "Length"
|
||||||
msgstr "Comprimento"
|
msgstr "Comprimento"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "armazenados em cache"
|
msgstr "armazenados em cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "via proxy"
|
msgstr "via proxy"
|
||||||
|
|
||||||
|
@ -958,12 +956,12 @@ msgstr "Sugestões"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Idioma de pesquisa"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Idioma padrão"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Auto-detetar"
|
msgstr "Auto-detetar"
|
||||||
|
@ -1318,8 +1316,8 @@ msgid ""
|
||||||
"Perform search immediately if a category selected. Disable to select "
|
"Perform search immediately if a category selected. Disable to select "
|
||||||
"multiple categories"
|
"multiple categories"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pesquisar imediatamente se uma categoria estiver selecionada. Desative para "
|
"Pesquisar imediatamente se uma categoria estiver selecionada. Desative "
|
||||||
"selecionar múltiplas categorias"
|
"para selecionar múltiplas categorias"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/theme.html:2
|
#: searx/templates/simple/preferences/theme.html:2
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
|
@ -1962,3 +1960,7 @@ msgstr "esconder vídeo"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Substituição do nome do host"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -31,19 +31,18 @@
|
||||||
# rodgui <rodgui@users.noreply.translate.codeberg.org>, 2024.
|
# rodgui <rodgui@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-07-03 17:18+0000\n"
|
||||||
"Last-Translator: rodgui <rodgui@users.noreply.translate.codeberg.org>\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: pt_BR\n"
|
||||||
|
"Language-Team: Portuguese (Brazil) "
|
||||||
|
"<https://translate.codeberg.org/projects/searxng/searxng/pt_BR/>\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.1\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -332,17 +331,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Abrir"
|
msgstr "Abrir"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "Fechado"
|
msgstr "Fechado"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "respondido"
|
msgstr "respondido"
|
||||||
|
|
||||||
|
@ -435,19 +434,19 @@ msgstr "{minutes} minuto(s) atrás"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} hora(s), {minutes} minuto(s) atrás"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Gerador de valor aleatório"
|
msgstr "Gerador de valor aleatório"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Gerar diferentes valores aleatórios"
|
msgstr "Gerar diferentes valores aleatórios"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funções estatísticas"
|
msgstr "Funções estatísticas"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Computar {functions} dos argumentos"
|
msgstr "Computar {functions} dos argumentos"
|
||||||
|
|
||||||
|
@ -480,7 +479,7 @@ msgid "clicks"
|
||||||
msgstr "cliques"
|
msgstr "cliques"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Idioma"
|
msgstr "Idioma"
|
||||||
|
|
||||||
|
@ -515,11 +514,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Essa imagem não pôde ser baixada."
|
msgstr "Essa imagem não pôde ser baixada."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Avaliação de livro"
|
msgstr "Avaliação de livro"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Qualidade do arquivo"
|
msgstr "Qualidade do arquivo"
|
||||||
|
|
||||||
|
@ -535,18 +534,15 @@ msgstr "Converte as sequências em diferentes resultados de hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "resultado de hash"
|
msgstr "resultado de hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Substituir host"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Plugin de Hostnames"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
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
|
#: searx/plugins/oa_doi_rewrite.py:12
|
||||||
msgid "Open Access DOI rewrite"
|
msgid "Open Access DOI rewrite"
|
||||||
|
@ -689,17 +685,21 @@ msgid "Length"
|
||||||
msgstr "Duração"
|
msgstr "Duração"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "em cache"
|
msgstr "em cache"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "por proxy"
|
msgstr "por proxy"
|
||||||
|
|
||||||
|
@ -974,12 +974,12 @@ msgstr "Sugestões"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Idioma de busca"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Idioma padrão"
|
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
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Auto-detectar"
|
msgstr "Auto-detectar"
|
||||||
|
@ -1980,3 +1980,7 @@ msgstr "ocultar vídeo"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Substituir host"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -17,21 +17,20 @@
|
||||||
# LunarCat93 <LunarCat93@users.noreply.translate.codeberg.org>, 2024.
|
# LunarCat93 <LunarCat93@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-06-20 06:18+0000\n"
|
"PO-Revision-Date: 2024-08-01 06:18+0000\n"
|
||||||
"Last-Translator: LunarCat93 <LunarCat93@users.noreply.translate.codeberg.org>"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
"Language-Team: Romanian <https://translate.codeberg.org/projects/searxng/"
|
|
||||||
"searxng/ro/>\n"
|
|
||||||
"Language: 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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n==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"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -320,17 +319,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "deschis"
|
msgstr "deschis"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "închis"
|
msgstr "închis"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "răspuns"
|
msgstr "răspuns"
|
||||||
|
|
||||||
|
@ -423,19 +422,19 @@ msgstr "{minutes} minut(e) în urmă"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} oră(e), {minutes} minut(e) în urmă"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Generator de numere aleatorii"
|
msgstr "Generator de numere aleatorii"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generează valori aleatoare diferite"
|
msgstr "Generează valori aleatoare diferite"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Funcții statistice"
|
msgstr "Funcții statistice"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Calculează {functions} din argumente"
|
msgstr "Calculează {functions} din argumente"
|
||||||
|
|
||||||
|
@ -468,7 +467,7 @@ msgid "clicks"
|
||||||
msgstr "click-uri"
|
msgstr "click-uri"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Limba"
|
msgstr "Limba"
|
||||||
|
|
||||||
|
@ -502,11 +501,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Imaginea nu a putut fi descărcată."
|
msgstr "Imaginea nu a putut fi descărcată."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Recenzia cărții"
|
msgstr "Recenzia cărții"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Calitatea fișierului"
|
msgstr "Calitatea fișierului"
|
||||||
|
|
||||||
|
@ -522,15 +521,11 @@ msgstr "Convertește șirurile în diferite rezumate hash."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "rezumat hash"
|
msgstr "rezumat hash"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Schimbă hostname-ul"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Pluginul Hostnames"
|
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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Rescrieți hostnames, eliminați rezultatele sau prioritizați-le pe baza "
|
"Rescrieți hostnames, eliminați rezultatele sau prioritizați-le pe baza "
|
||||||
|
@ -675,17 +670,21 @@ msgid "Length"
|
||||||
msgstr "Lungime"
|
msgstr "Lungime"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "stocat temporar"
|
msgstr "stocat temporar"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "delegat"
|
msgstr "delegat"
|
||||||
|
|
||||||
|
@ -964,12 +963,12 @@ msgstr "Sugestii"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Limba de căutare"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Limbă implicită"
|
msgstr "Limbă implicită"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Auto-detectare"
|
msgstr "Auto-detectare"
|
||||||
|
@ -1962,3 +1961,7 @@ msgstr "ascunde video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Schimbă hostname-ul"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -23,21 +23,20 @@
|
||||||
# Xvnov <Xvnov@users.noreply.translate.codeberg.org>, 2024.
|
# Xvnov <Xvnov@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
|
||||||
"Last-Translator: Xvnov <Xvnov@users.noreply.translate.codeberg.org>\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: 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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%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"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -326,17 +325,17 @@ msgid "author"
|
||||||
msgstr "автор"
|
msgstr "автор"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "Открыть"
|
msgstr "Открыть"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "Закрыто"
|
msgstr "Закрыто"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "ответил"
|
msgstr "ответил"
|
||||||
|
|
||||||
|
@ -429,19 +428,19 @@ msgstr "{minutes} минут(-у) назад"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} час(ов), {minutes} минут(а) назад"
|
msgstr "{hours} час(ов), {minutes} минут(а) назад"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Генератор случайных значений"
|
msgstr "Генератор случайных значений"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Генерирует разные случайные значения"
|
msgstr "Генерирует разные случайные значения"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Статистические функции"
|
msgstr "Статистические функции"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Применяет функции {functions} к аргументам"
|
msgstr "Применяет функции {functions} к аргументам"
|
||||||
|
|
||||||
|
@ -474,7 +473,7 @@ msgid "clicks"
|
||||||
msgstr "нажатия"
|
msgstr "нажатия"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Язык"
|
msgstr "Язык"
|
||||||
|
|
||||||
|
@ -508,11 +507,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Не удалось загрузить изображение."
|
msgstr "Не удалось загрузить изображение."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Рейтинг книги"
|
msgstr "Рейтинг книги"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Качество файла"
|
msgstr "Качество файла"
|
||||||
|
|
||||||
|
@ -528,15 +527,11 @@ msgstr "Рассчитывает контрольные суммы от стро
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "контрольная сумма"
|
msgstr "контрольная сумма"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Замена имени сайта"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Плагин имени хостов"
|
msgstr "Плагин имени хостов"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Перепишите имена хостов, удалите результаты или расставьте приоритеты в "
|
"Перепишите имена хостов, удалите результаты или расставьте приоритеты в "
|
||||||
|
@ -603,8 +598,7 @@ msgstr "Вы не используете Tor. Ваш публичный IP-ад
|
||||||
|
|
||||||
#: searx/plugins/tor_check.py:85
|
#: searx/plugins/tor_check.py:85
|
||||||
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
msgid "You are not using Tor and you have this external IP address: {ip_address}"
|
||||||
msgstr ""
|
msgstr "Вы не используете Tor, и у вас следующий публичный IP-адрес: {ip_address}"
|
||||||
"Вы не используете Tor, и у вас следующий публичный IP-адрес: {ip_address}"
|
|
||||||
|
|
||||||
#: searx/plugins/tracker_url_remover.py:16
|
#: searx/plugins/tracker_url_remover.py:16
|
||||||
msgid "Tracker URL remover"
|
msgid "Tracker URL remover"
|
||||||
|
@ -682,17 +676,21 @@ msgid "Length"
|
||||||
msgstr "Длительность"
|
msgstr "Длительность"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Автор"
|
msgstr "Автор"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "веб-архив"
|
msgstr "веб-архив"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "через прокси"
|
msgstr "через прокси"
|
||||||
|
|
||||||
|
@ -967,12 +965,12 @@ msgstr "Предложения"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Язык поиска"
|
msgstr "Язык поиска"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Язык по умолчанию"
|
msgstr "Язык по умолчанию"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Авто-определение"
|
msgstr "Авто-определение"
|
||||||
|
@ -1960,3 +1958,7 @@ msgstr "скрыть видео"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "ТиБ"
|
#~ msgstr "ТиБ"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Замена имени сайта"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -10,17 +10,16 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-06-22 11:18+0000\n"
|
||||||
"Last-Translator: nish_j <nish_j@users.noreply.translate.codeberg.org>\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: 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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
||||||
"X-Generator: Weblate 5.5.5\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -309,17 +308,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -412,19 +411,19 @@ msgstr "මිනිත්තු(ව) {minutes}කට පෙර"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "පැය {hours}, මිනිත්තු(ව) {minutes}කට පෙර"
|
msgstr "පැය {hours}, මිනිත්තු(ව) {minutes}කට පෙර"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -457,7 +456,7 @@ msgid "clicks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -484,11 +483,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "මෙම රූපය බාගත කල නොහැකි විය."
|
msgstr "මෙම රූපය බාගත කල නොහැකි විය."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -504,15 +503,11 @@ msgstr ""
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -646,17 +641,21 @@ msgid "Length"
|
||||||
msgstr "දිග"
|
msgstr "දිග"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "කතුවරයා"
|
msgstr "කතුවරයා"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -927,12 +926,12 @@ msgstr ""
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "සෙවුම් භාෂාව"
|
msgstr "සෙවුම් භාෂාව"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "මූලික භාෂාව"
|
msgstr "මූලික භාෂාව"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1592,3 +1591,7 @@ msgstr ""
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,7 +14,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-05-06 07:18+0000\n"
|
||||||
"Last-Translator: Vision <Vision@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: Vision <Vision@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
|
@ -313,17 +313,17 @@ msgid "author"
|
||||||
msgstr "autor"
|
msgstr "autor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -416,19 +416,19 @@ msgstr "pred {minutes} min."
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "pred {hours} hod., {minutes} min."
|
msgstr "pred {hours} hod., {minutes} min."
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generátor nahodných hodnôt"
|
msgstr "Generátor nahodných hodnôt"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Vytvoriť rôzné náhodné hodnoty"
|
msgstr "Vytvoriť rôzné náhodné hodnoty"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Štatistické funkcie"
|
msgstr "Štatistické funkcie"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Vypočítať {functions} argumentov"
|
msgstr "Vypočítať {functions} argumentov"
|
||||||
|
|
||||||
|
@ -461,7 +461,7 @@ msgid "clicks"
|
||||||
msgstr "kliknutia"
|
msgstr "kliknutia"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Jazyk"
|
msgstr "Jazyk"
|
||||||
|
|
||||||
|
@ -495,11 +495,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Obrázok nemohol byť stiahnutý."
|
msgstr "Obrázok nemohol byť stiahnutý."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Hodnotenie knižky"
|
msgstr "Hodnotenie knižky"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Kvalita súboru"
|
msgstr "Kvalita súboru"
|
||||||
|
|
||||||
|
@ -515,15 +515,11 @@ msgstr "Skonvertuje text pomocou rôznych hash funkcií."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hash hodnota"
|
msgstr "hash hodnota"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Nahradenie názvu servera"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -665,17 +661,21 @@ msgid "Length"
|
||||||
msgstr "Dĺžka"
|
msgstr "Dĺžka"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Autor"
|
msgstr "Autor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "z vyrovnávacej pamäte"
|
msgstr "z vyrovnávacej pamäte"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "cez proxy"
|
msgstr "cez proxy"
|
||||||
|
|
||||||
|
@ -948,12 +948,12 @@ msgstr "Návrhy"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Jazyk vyhľadávania"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Predvolený jazyk"
|
msgstr "Predvolený jazyk"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Auto-detekcia"
|
msgstr "Auto-detekcia"
|
||||||
|
@ -1937,3 +1937,6 @@ msgstr "skryť video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TB"
|
#~ msgstr "TB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Nahradenie názvu servera"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -16,7 +16,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-05-23 21:19+0000\n"
|
||||||
"Last-Translator: cynedex <cynedex@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: cynedex <cynedex@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language: sl\n"
|
"Language: sl\n"
|
||||||
|
@ -315,17 +315,17 @@ msgid "author"
|
||||||
msgstr "avtor"
|
msgstr "avtor"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -418,19 +418,19 @@ msgstr "{minutes} minut nazaj"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "pred {hours} urami in {minutes} minut"
|
msgstr "pred {hours} urami in {minutes} minut"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Generator naključnih števil"
|
msgstr "Generator naključnih števil"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generiraj različne naključne vrednosti"
|
msgstr "Generiraj različne naključne vrednosti"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistične funkcije"
|
msgstr "Statistične funkcije"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Izračunaj {functions} argumentov"
|
msgstr "Izračunaj {functions} argumentov"
|
||||||
|
|
||||||
|
@ -463,7 +463,7 @@ msgid "clicks"
|
||||||
msgstr "klikov"
|
msgstr "klikov"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Jezik"
|
msgstr "Jezik"
|
||||||
|
|
||||||
|
@ -497,11 +497,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Slike ni bilo mogoče prevesti."
|
msgstr "Slike ni bilo mogoče prevesti."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Ocena knjige"
|
msgstr "Ocena knjige"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Kakovost datoteke"
|
msgstr "Kakovost datoteke"
|
||||||
|
|
||||||
|
@ -517,15 +517,11 @@ msgstr "Pretvori besede v drugo hash vrednost."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "Hash vrednost"
|
msgstr "Hash vrednost"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Preimenuj strežniško ime"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -668,17 +664,21 @@ msgid "Length"
|
||||||
msgstr "Dolžina"
|
msgstr "Dolžina"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Avtor"
|
msgstr "Avtor"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "predpomnjeno"
|
msgstr "predpomnjeno"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "preko posredniškega strežnika"
|
msgstr "preko posredniškega strežnika"
|
||||||
|
|
||||||
|
@ -949,12 +949,12 @@ msgstr "Predlogi"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Jezik iskanja"
|
msgstr "Jezik iskanja"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Privzeti jezik"
|
msgstr "Privzeti jezik"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Samodejno zaznaj"
|
msgstr "Samodejno zaznaj"
|
||||||
|
@ -1935,3 +1935,6 @@ msgstr "skrij video"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Preimenuj strežniško ime"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -14,7 +14,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 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"
|
"PO-Revision-Date: 2024-04-18 13:18+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -314,17 +314,17 @@ msgid "author"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -417,19 +417,19 @@ msgstr "пре {minutes} минут(у,е,а)"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "пре {hours} час(a) и {minutes} минут(у,е,а)"
|
msgstr "пре {hours} час(a) и {minutes} минут(у,е,а)"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:75
|
#: searx/answerers/random/answerer.py:76
|
||||||
msgid "Random value generator"
|
msgid "Random value generator"
|
||||||
msgstr "Генератор случајних вредности"
|
msgstr "Генератор случајних вредности"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Генеришите различите случајне вредности"
|
msgstr "Генеришите различите случајне вредности"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Статистичке функције"
|
msgstr "Статистичке функције"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Израчунајте {functions} аргумената"
|
msgstr "Израчунајте {functions} аргумената"
|
||||||
|
|
||||||
|
@ -462,7 +462,7 @@ msgid "clicks"
|
||||||
msgstr "кликови"
|
msgstr "кликови"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Језик"
|
msgstr "Језик"
|
||||||
|
|
||||||
|
@ -496,11 +496,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Није могуће преузети слику."
|
msgstr "Није могуће преузети слику."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Оцена књиге"
|
msgstr "Оцена књиге"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Квалитет датотеке"
|
msgstr "Квалитет датотеке"
|
||||||
|
|
||||||
|
@ -516,15 +516,11 @@ msgstr "Претвара стринг у другачије хешеве."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "Излаз хеш функције"
|
msgstr "Излаз хеш функције"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Замени име хостинга"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:69
|
#: searx/plugins/hostnames.py:92
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -666,17 +662,21 @@ msgid "Length"
|
||||||
msgstr "Дужина"
|
msgstr "Дужина"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Аутор"
|
msgstr "Аутор"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "кеширано"
|
msgstr "кеширано"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "прокси"
|
msgstr "прокси"
|
||||||
|
|
||||||
|
@ -947,12 +947,12 @@ msgstr "Предлози"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Језик претраге"
|
msgstr "Језик претраге"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:2
|
#: searx/templates/simple/filters/languages.html:4
|
||||||
#: searx/templates/simple/preferences/language.html:7
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Подразумевани језик"
|
msgstr "Подразумевани језик"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Аутоматски откриј"
|
msgstr "Аутоматски откриј"
|
||||||
|
@ -1932,3 +1932,6 @@ msgstr "сакриј видео"
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Замени име хостинга"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -19,21 +19,22 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# mrintegrity <mrintegrity@users.noreply.translate.codeberg.org>, 2024.
|
# mrintegrity <mrintegrity@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# wintryexit <weatherdowner@proton.me>, 2024.
|
# wintryexit <weatherdowner@proton.me>, 2024.
|
||||||
|
# Wexterity <Wexterity@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
|
"POT-Creation-Date: 2024-08-08 10:01+0000\n"
|
||||||
"PO-Revision-Date: 2024-07-05 07:09+0000\n"
|
"PO-Revision-Date: 2024-08-02 07:09+0000\n"
|
||||||
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: Wexterity "
|
||||||
"Language-Team: Swedish <https://translate.codeberg.org/projects/searxng/"
|
"<Wexterity@users.noreply.translate.codeberg.org>\n"
|
||||||
"searxng/sv/>\n"
|
|
||||||
"Language: sv\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"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.6.1\n"
|
|
||||||
"Generated-By: Babel 2.15.0\n"
|
"Generated-By: Babel 2.15.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -322,17 +323,17 @@ msgid "author"
|
||||||
msgstr "författare"
|
msgstr "författare"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr "öppna"
|
msgstr "öppna"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:121 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr "stängd"
|
msgstr "stängd"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:132 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
msgid "answered"
|
msgid "answered"
|
||||||
msgstr "svarad"
|
msgstr "svarad"
|
||||||
|
|
||||||
|
@ -425,19 +426,19 @@ msgstr "{minutes} minut(er) sedan"
|
||||||
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
msgid "{hours} hour(s), {minutes} minute(s) ago"
|
||||||
msgstr "{hours} timm(e/ar), {minutes} minut(er) sedan"
|
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"
|
msgid "Random value generator"
|
||||||
msgstr "Slumpvärdesgenerator"
|
msgstr "Slumpvärdesgenerator"
|
||||||
|
|
||||||
#: searx/answerers/random/answerer.py:76
|
#: searx/answerers/random/answerer.py:77
|
||||||
msgid "Generate different random values"
|
msgid "Generate different random values"
|
||||||
msgstr "Generera olika slumpmässiga värden"
|
msgstr "Generera olika slumpmässiga värden"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:48
|
#: searx/answerers/statistics/answerer.py:50
|
||||||
msgid "Statistics functions"
|
msgid "Statistics functions"
|
||||||
msgstr "Statistikfunktioner"
|
msgstr "Statistikfunktioner"
|
||||||
|
|
||||||
#: searx/answerers/statistics/answerer.py:49
|
#: searx/answerers/statistics/answerer.py:51
|
||||||
msgid "Compute {functions} of the arguments"
|
msgid "Compute {functions} of the arguments"
|
||||||
msgstr "Beräkna {functions} av argumenten"
|
msgstr "Beräkna {functions} av argumenten"
|
||||||
|
|
||||||
|
@ -470,7 +471,7 @@ msgid "clicks"
|
||||||
msgstr "klickar"
|
msgstr "klickar"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:128
|
#: searx/engines/zlibrary.py:137
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr "Språk"
|
msgstr "Språk"
|
||||||
|
|
||||||
|
@ -505,11 +506,11 @@ msgstr ""
|
||||||
msgid "The image could not be downloaded."
|
msgid "The image could not be downloaded."
|
||||||
msgstr "Det gick inte att ladda ner bilden."
|
msgstr "Det gick inte att ladda ner bilden."
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:129
|
#: searx/engines/zlibrary.py:138
|
||||||
msgid "Book rating"
|
msgid "Book rating"
|
||||||
msgstr "Bokbetyg"
|
msgstr "Bokbetyg"
|
||||||
|
|
||||||
#: searx/engines/zlibrary.py:130
|
#: searx/engines/zlibrary.py:139
|
||||||
msgid "File quality"
|
msgid "File quality"
|
||||||
msgstr "Filkvalitet"
|
msgstr "Filkvalitet"
|
||||||
|
|
||||||
|
@ -525,15 +526,11 @@ msgstr "Konverterar strängar till olika hashvärden."
|
||||||
msgid "hash digest"
|
msgid "hash digest"
|
||||||
msgstr "hashvärde"
|
msgstr "hashvärde"
|
||||||
|
|
||||||
#: searx/plugins/hostname_replace.py:7
|
#: searx/plugins/hostnames.py:91
|
||||||
msgid "Hostname replace"
|
|
||||||
msgstr "Värdnamn satt"
|
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:68
|
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr "Värdnamn 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"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Skriva om värdnamn, ta bort resultat eller prioritera dem baserat på "
|
"Skriva om värdnamn, ta bort resultat eller prioritera dem baserat på "
|
||||||
|
@ -680,17 +677,21 @@ msgid "Length"
|
||||||
msgstr "Längd"
|
msgstr "Längd"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:36
|
#: 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/files.html:34
|
||||||
#: searx/templates/simple/result_templates/images.html:19
|
#: searx/templates/simple/result_templates/images.html:19
|
||||||
#: searx/templates/simple/result_templates/paper.html:6
|
#: searx/templates/simple/result_templates/paper.html:6
|
||||||
msgid "Author"
|
msgid "Author"
|
||||||
msgstr "Upphovsman"
|
msgstr "Upphovsman"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "cached"
|
msgid "cached"
|
||||||
msgstr "cachad"
|
msgstr "cachad"
|
||||||
|
|
||||||
#: searx/templates/simple/macros.html:44
|
#: searx/templates/simple/macros.html:45
|
||||||
msgid "proxied"
|
msgid "proxied"
|
||||||
msgstr "proxade"
|
msgstr "proxade"
|
||||||
|
|
||||||
|
@ -963,12 +964,12 @@ msgstr "Förslag"
|
||||||
msgid "Search language"
|
msgid "Search language"
|
||||||
msgstr "Sökspråk"
|
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
|
#: searx/templates/simple/preferences/language.html:7
|
||||||
msgid "Default language"
|
msgid "Default language"
|
||||||
msgstr "Standardspråk"
|
msgstr "Standardspråk"
|
||||||
|
|
||||||
#: searx/templates/simple/filters/languages.html:4
|
#: searx/templates/simple/filters/languages.html:8
|
||||||
#: searx/templates/simple/preferences/language.html:11
|
#: searx/templates/simple/preferences/language.html:11
|
||||||
msgid "Auto-detect"
|
msgid "Auto-detect"
|
||||||
msgstr "Upptäck automatiskt"
|
msgstr "Upptäck automatiskt"
|
||||||
|
@ -1948,3 +1949,7 @@ msgstr "göm video"
|
||||||
|
|
||||||
#~ msgid "TiB"
|
#~ msgid "TiB"
|
||||||
#~ msgstr "TiB"
|
#~ msgstr "TiB"
|
||||||
|
|
||||||
|
#~ msgid "Hostname replace"
|
||||||
|
#~ msgstr "Värdnamn satt"
|
||||||
|
|
||||||
|
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue