Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Arcane Spark 2024-06-26 11:40:15 +02:00
commit 57e03a8ef8
154 changed files with 1969 additions and 1955 deletions

View file

@ -7,7 +7,7 @@ on:
jobs:
updateData:
name: Update data - ${{ matrix.fetch }}
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
if: ${{ github.repository_owner == 'searxng'}}
strategy:
fail-fast: false
@ -29,9 +29,9 @@ jobs:
sudo ./utils/searxng.sh install packages
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.12'
architecture: 'x64'
- name: Install Python dependencies
@ -46,7 +46,7 @@ jobs:
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v6
with:
commit-message: '[data] update searx.data - ${{ matrix.fetch }}'
committer: searxng-bot <noreply@github.com>

View file

@ -173,3 +173,4 @@ features or generally made searx better:
- Austin Olacsi `<https://github.com/Austin-Olacsi>`
- @micsthepick
- Daniel Kukula `<https://github.com/dkuku>`
- Patrick Evans `https://github.com/holysoles`

View file

@ -31,13 +31,13 @@
``secret_key`` : ``$SEARXNG_SECRET``
Used for cryptography purpose.
``limiter`` :
``limiter`` : ``$SEARXNG_LIMITER``
Rate limit the number of request on the instance, block some bots. The
:ref:`limiter` requires a :ref:`settings redis` database.
.. _public_instance:
``public_instance`` :
``public_instance`` : ``$SEARXNG_PUBLIC_INSTANCE``
Setting that allows to enable features specifically for public instances (not
needed for local usage). By set to ``true`` the following features are
@ -47,7 +47,7 @@
.. _image_proxy:
``image_proxy`` :
``image_proxy`` : ``$SEARXNG_IMAGE_PROXY``
Allow your instance of SearXNG of being able to proxy images. Uses memory space.
.. _HTTP headers: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers

View file

@ -24,7 +24,7 @@
.. _static_use_hash:
``static_use_hash`` :
``static_use_hash`` : ``$SEARXNG_STATIC_USE_HASH``
Enables `cache busting`_ of static files.
``default_locale`` :

View file

@ -4,7 +4,7 @@ cov-core==1.15.0
black==24.3.0
pylint==3.2.3
splinter==0.21.0
selenium==4.21.0
selenium==4.22.0
Pallets-Sphinx-Themes==2.1.3
Sphinx<=7.1.2; python_version == '3.8'
Sphinx==7.3.7; python_version > '3.8'

View file

@ -12,7 +12,7 @@ Brotli==1.1.0
uvloop==0.19.0
httpx-socks[asyncio]==0.7.7
setproctitle==1.3.3
redis==5.0.5
redis==5.0.6
markdown-it-py==3.0.0
fasttext-predict==0.9.2.2
pytomlpp==1.0.13; python_version < '3.11'

View file

@ -0,0 +1,2 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring

View file

@ -1,4 +1,5 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring
import hashlib
import random

View file

@ -0,0 +1,2 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring

View file

@ -1,4 +1,6 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
# pylint: disable=missing-module-docstring
from functools import reduce
from operator import mul
@ -18,27 +20,27 @@ def answer(query):
try:
args = list(map(float, parts[1:]))
except:
except: # pylint: disable=bare-except
return []
func = parts[0]
answer = None
_answer = None
if func == 'min':
answer = min(args)
_answer = min(args)
elif func == 'max':
answer = max(args)
_answer = max(args)
elif func == 'avg':
answer = sum(args) / len(args)
_answer = sum(args) / len(args)
elif func == 'sum':
answer = sum(args)
_answer = sum(args)
elif func == 'prod':
answer = reduce(mul, args, 1)
_answer = reduce(mul, args, 1)
if answer is None:
if _answer is None:
return []
return [{'answer': str(answer)}]
return [{'answer': str(_answer)}]
# required answerer function

View file

@ -68,6 +68,7 @@
"jv": "jv",
"ka": "ka",
"kk": "kk",
"kn": "kn",
"ko": "ko",
"la": "la",
"lb": "lb",
@ -90,7 +91,6 @@
"sr": "sr",
"sv": "sv",
"ta": "ta",
"th": "th",
"tr": "tr",
"uk": "uk",
"ur": "ur",
@ -1745,14 +1745,17 @@
"all_locale": "all",
"custom": {
"ui_lang": {
"bg": "bg",
"ca": "ca",
"cs": "cs",
"da": "da",
"de-DE": "de-de",
"el": "el",
"en-CA": "en-ca",
"en-GB": "en-gb",
"en-US": "en-us",
"es": "es",
"et": "et",
"fi-FI": "fi-fi",
"fr-CA": "fr-ca",
"fr-FR": "fr-fr",
@ -1760,13 +1763,20 @@
"hu": "hu",
"it": "it",
"ja-JP": "ja-jp",
"lt": "lt",
"lv": "lv",
"nb": "nb",
"nl": "nl",
"pl": "pl",
"pt-BR": "pt-br",
"ro": "ro",
"sk": "sk",
"sl": "sl",
"sq-AL": "sq-al",
"sv": "sv",
"sw-KE": "sw-ke",
"tr": "tr"
"tr": "tr",
"uk": "uk"
}
},
"data_type": "traits_v1",
@ -1826,14 +1836,17 @@
"all_locale": "all",
"custom": {
"ui_lang": {
"bg": "bg",
"ca": "ca",
"cs": "cs",
"da": "da",
"de-DE": "de-de",
"el": "el",
"en-CA": "en-ca",
"en-GB": "en-gb",
"en-US": "en-us",
"es": "es",
"et": "et",
"fi-FI": "fi-fi",
"fr-CA": "fr-ca",
"fr-FR": "fr-fr",
@ -1841,13 +1854,20 @@
"hu": "hu",
"it": "it",
"ja-JP": "ja-jp",
"lt": "lt",
"lv": "lv",
"nb": "nb",
"nl": "nl",
"pl": "pl",
"pt-BR": "pt-br",
"ro": "ro",
"sk": "sk",
"sl": "sl",
"sq-AL": "sq-al",
"sv": "sv",
"sw-KE": "sw-ke",
"tr": "tr"
"tr": "tr",
"uk": "uk"
}
},
"data_type": "traits_v1",
@ -1907,14 +1927,17 @@
"all_locale": "all",
"custom": {
"ui_lang": {
"bg": "bg",
"ca": "ca",
"cs": "cs",
"da": "da",
"de-DE": "de-de",
"el": "el",
"en-CA": "en-ca",
"en-GB": "en-gb",
"en-US": "en-us",
"es": "es",
"et": "et",
"fi-FI": "fi-fi",
"fr-CA": "fr-ca",
"fr-FR": "fr-fr",
@ -1922,13 +1945,20 @@
"hu": "hu",
"it": "it",
"ja-JP": "ja-jp",
"lt": "lt",
"lv": "lv",
"nb": "nb",
"nl": "nl",
"pl": "pl",
"pt-BR": "pt-br",
"ro": "ro",
"sk": "sk",
"sl": "sl",
"sq-AL": "sq-al",
"sv": "sv",
"sw-KE": "sw-ke",
"tr": "tr"
"tr": "tr",
"uk": "uk"
}
},
"data_type": "traits_v1",
@ -1988,14 +2018,17 @@
"all_locale": "all",
"custom": {
"ui_lang": {
"bg": "bg",
"ca": "ca",
"cs": "cs",
"da": "da",
"de-DE": "de-de",
"el": "el",
"en-CA": "en-ca",
"en-GB": "en-gb",
"en-US": "en-us",
"es": "es",
"et": "et",
"fi-FI": "fi-fi",
"fr-CA": "fr-ca",
"fr-FR": "fr-fr",
@ -2003,13 +2036,20 @@
"hu": "hu",
"it": "it",
"ja-JP": "ja-jp",
"lt": "lt",
"lv": "lv",
"nb": "nb",
"nl": "nl",
"pl": "pl",
"pt-BR": "pt-br",
"ro": "ro",
"sk": "sk",
"sl": "sl",
"sq-AL": "sq-al",
"sv": "sv",
"sw-KE": "sw-ke",
"tr": "tr"
"tr": "tr",
"uk": "uk"
}
},
"data_type": "traits_v1",
@ -6200,6 +6240,7 @@
"MQ",
"MT",
"MU",
"MV",
"MW",
"MX",
"MY",
@ -6212,6 +6253,7 @@
"NL",
"NO",
"NP",
"NU",
"NZ",
"OM",
"PA",
@ -6746,6 +6788,7 @@
"bpy",
"br",
"bs",
"btm",
"bug",
"bxr",
"ca",

View file

@ -6,7 +6,7 @@
from urllib.parse import quote, urljoin
from lxml import html
from searx.utils import extract_text, get_torrent_size, eval_xpath, eval_xpath_list, eval_xpath_getindex
from searx.utils import extract_text, eval_xpath, eval_xpath_list, eval_xpath_getindex
# about
about = {
@ -40,9 +40,7 @@ def response(resp):
title = extract_text(eval_xpath(result, './td[contains(@class, "name")]/a[2]'))
seed = extract_text(eval_xpath(result, './/td[contains(@class, "seeds")]'))
leech = extract_text(eval_xpath(result, './/td[contains(@class, "leeches")]'))
filesize_info = extract_text(eval_xpath(result, './/td[contains(@class, "size")]/text()'))
filesize, filesize_multiplier = filesize_info.split()
filesize = get_torrent_size(filesize, filesize_multiplier)
filesize = extract_text(eval_xpath(result, './/td[contains(@class, "size")]/text()'))
results.append(
{

View file

@ -123,7 +123,9 @@ def response(resp):
thumbnail = None
imagelink = eval_xpath_getindex(newsitem, './/a[@class="imagelink"]//img', 0, None)
if imagelink is not None:
thumbnail = 'https://www.bing.com/' + imagelink.attrib.get('src')
thumbnail = imagelink.attrib.get('src')
if not thumbnail.startswith("https://www.bing.com"):
thumbnail = 'https://www.bing.com/' + thumbnail
results.append(
{

View file

@ -426,7 +426,7 @@ def fetch_traits(engine_traits: EngineTraits):
print("ERROR: response from Brave is not OK.")
dom = html.fromstring(resp.text) # type: ignore
for option in dom.xpath('//div[@id="language-select"]//option'):
for option in dom.xpath('//section//option[@value="en-us"]/../option'):
ui_lang = option.get('value')
try:

View file

@ -36,14 +36,11 @@ Implementations
"""
import re
from datetime import datetime
from urllib.parse import quote
from lxml import etree
from searx.utils import get_torrent_size
# about
about = {
"website": 'https://bt4gprx.com',
@ -103,8 +100,6 @@ def response(resp):
title = entry.find("title").text
link = entry.find("guid").text
fullDescription = entry.find("description").text.split('<br>')
filesize = fullDescription[1]
filesizeParsed = re.split(r"([A-Z]+)", filesize)
magnetlink = entry.find("link").text
pubDate = entry.find("pubDate").text
results.append(
@ -114,7 +109,7 @@ def response(resp):
'magnetlink': magnetlink,
'seed': 'N/A',
'leech': 'N/A',
'filesize': get_torrent_size(filesizeParsed[0], filesizeParsed[1]),
'filesize': fullDescription[1],
'publishedDate': datetime.strptime(pubDate, '%a,%d %b %Y %H:%M:%S %z'),
'template': 'torrent.html',
}

View file

@ -6,7 +6,7 @@
from urllib.parse import quote, urljoin
from lxml import html
from searx.utils import extract_text, get_torrent_size
from searx.utils import extract_text
# about
about = {
@ -58,13 +58,9 @@ def response(resp):
content = content.strip().replace('\n', ' | ')
content = ' '.join(content.split())
filesize = result.xpath('.//span[@class="torrent_size"]/text()')[0].split()[0]
filesize_multiplier = result.xpath('.//span[@class="torrent_size"]/text()')[0].split()[1]
filesize = result.xpath('.//span[@class="torrent_size"]/text()')[0]
files = (result.xpath('.//span[@class="torrent_files"]/text()') or ['1'])[0]
# convert filesize to byte if possible
filesize = get_torrent_size(filesize, filesize_multiplier)
# convert files to int if possible
try:
files = int(files)

View file

@ -5,7 +5,7 @@
from urllib.parse import urljoin
from lxml import html
from searx.utils import extract_text, get_torrent_size
from searx.utils import extract_text
# about
about = {
@ -45,7 +45,7 @@ def response(resp):
title = extract_text(result.xpath('.//a[@title]'))
content = extract_text(result.xpath('.//div[@class="files"]'))
files_data = extract_text(result.xpath('.//div[@class="tail"]')).split()
filesize = get_torrent_size(files_data[FILESIZE], files_data[FILESIZE_MULTIPLIER])
filesize = f"{files_data[FILESIZE]} {files_data[FILESIZE_MULTIPLIER]}"
magnetlink = result.xpath('.//div[@class="tail"]//a[@class="title"]/@href')[0]
results.append(

View file

@ -24,6 +24,7 @@ from searx.utils import (
from searx.network import get # see https://github.com/searxng/searxng/issues/762
from searx import redisdb
from searx.enginelib.traits import EngineTraits
from searx.utils import extr
if TYPE_CHECKING:
import logging
@ -120,8 +121,7 @@ def get_vqd(query):
for script in doc.xpath("//script[@type='text/javascript']"):
script = script.text
if 'vqd="' in script:
value = script[script.index('vqd="') + 5 :]
value = value[: value.index('"')]
value = extr(script, 'vqd="', '"')
break
logger.debug("new vqd value: '%s'", value)
if value is not None:
@ -393,7 +393,7 @@ def fetch_traits(engine_traits: EngineTraits):
"""
# pylint: disable=too-many-branches, too-many-statements, disable=import-outside-toplevel
from searx.utils import extr, js_variable_to_python
from searx.utils import js_variable_to_python
# fetch regions

View file

@ -49,7 +49,7 @@ base_url = 'http://localhost:9200'
username = ''
password = ''
index = ''
search_url = base_url + '/' + index + '/_search'
search_url = '{base_url}/{index}/_search'
query_type = 'match'
custom_query_json = {}
show_metadata = False
@ -71,7 +71,7 @@ def request(query, params):
if username and password:
params['auth'] = (username, password)
params['url'] = search_url
params['url'] = search_url.format(base_url=base_url, index=index)
params['method'] = 'GET'
params['data'] = dumps(_available_query_types[query_type](query))
params['headers']['Content-Type'] = 'application/json'

View file

@ -63,16 +63,11 @@ def request(query, params):
'https://'
+ google_info['subdomain']
+ '/search'
+ "?"
+ urlencode(
{
'q': query,
'tbm': "isch",
**google_info['params'],
'asearch': 'isch',
'async': '_fmt:json,p:1,ijn:' + str(params['pageno']),
}
)
+ '?'
+ urlencode({'q': query, 'tbm': "isch", **google_info['params'], 'asearch': 'isch'})
# don't urlencode this because wildly different AND bad results
# pagination uses Zero-based numbering
+ f'&async=_fmt:json,p:1,ijn:{params["pageno"] - 1}'
)
if params['time_range'] in time_range_dict:
@ -80,9 +75,13 @@ def request(query, params):
if params['safesearch']:
query_url += '&' + urlencode({'safe': filter_mapping[params['safesearch']]})
params['url'] = query_url
params['cookies'] = google_info['cookies']
params['headers'].update(google_info['headers'])
# this ua will allow getting ~50 results instead of 10. #1641
params['headers']['User-Agent'] = (
'NSTN/3.60.474802233.release Dalvik/2.1.0 (Linux; U; Android 12;' f' {google_info.get("country", "US")}) gzip'
)
return params
@ -96,7 +95,6 @@ def response(resp):
json_data = loads(resp.text[json_start:])
for item in json_data["ischj"].get("metadata", []):
result_item = {
'url': item["result"]["referrer_url"],
'title': item["result"]["page_title"],

View file

@ -11,7 +11,6 @@ from searx.utils import (
eval_xpath_getindex,
eval_xpath_list,
extract_text,
get_torrent_size,
int_or_zero,
)
@ -54,7 +53,7 @@ def response(resp):
result['content'] = extract_text(eval_xpath(tag, './/span[@class="font11px lightgrey block"]'))
result['seed'] = int_or_zero(extract_text(eval_xpath(tag, './/td[contains(@class, "green")]')))
result['leech'] = int_or_zero(extract_text(eval_xpath(tag, './/td[contains(@class, "red")]')))
result['filesize'] = get_torrent_size(*extract_text(eval_xpath(tag, './/td[contains(@class, "nobr")]')).split())
result['filesize'] = extract_text(eval_xpath(tag, './/td[contains(@class, "nobr")]'))
results.append(result)

View file

@ -6,7 +6,7 @@ from urllib.parse import urlencode
from lxml import html
from dateutil.relativedelta import relativedelta
from searx.utils import eval_xpath, eval_xpath_list, extract_text, gen_useragent
from searx.utils import eval_xpath, eval_xpath_list, extract_text
about = {
'website': 'https://mojeek.com',
@ -63,7 +63,6 @@ def request(query, params):
logger.debug(args["since"])
params['url'] = f"{base_url}/search?{urlencode(args)}"
params['headers'] = {'User-Agent': gen_useragent()}
return params

View file

@ -4,6 +4,7 @@
import random
import re
from urllib.parse import urlencode
from flask_babel import gettext
about = {
"website": 'https://codeberg.org/aryak/mozhi',
@ -43,13 +44,18 @@ def response(resp):
if translation['word_choices']:
for word in translation['word_choices']:
infobox += f"<dl><dt>{word['word']}</dt>"
infobox += f"<dl><dt>{word['word']}: {word['definition']}</dt>"
for example in word['examples_target']:
infobox += f"<dd>{re.sub(r'<|>', '', example)}</dd>"
if word['examples_target']:
for example in word['examples_target']:
infobox += f"<dd>{re.sub(r'<|>', '', example)}</dd>"
infobox += f"<dd>{re.sub(r'<|>', '', example)}</dd>"
infobox += "</dl>"
if translation['source_synonyms']:
infobox += f"<dl><dt>{gettext('Synonyms')}: {', '.join(translation['source_synonyms'])}</dt></dl>"
result = {
'infobox': translation['translated-text'],
'content': infobox,

View file

@ -9,7 +9,6 @@ from lxml import html
from searx.utils import (
eval_xpath_getindex,
extract_text,
get_torrent_size,
int_or_zero,
)
@ -99,11 +98,7 @@ def response(resp):
# let's try to calculate the torrent size
filesize = None
filesize_info = eval_xpath_getindex(result, xpath_filesize, 0, '')
if filesize_info:
filesize_info = result.xpath(xpath_filesize)[0]
filesize = get_torrent_size(*filesize_info.split())
filesize = eval_xpath_getindex(result, xpath_filesize, 0, '')
# content string contains all information not included into template
content = 'Category: "{category}". Downloaded {downloads} times.'

View file

@ -8,7 +8,7 @@ from datetime import datetime
from operator import itemgetter
from urllib.parse import quote
from searx.utils import get_torrent_size
from searx.utils import humanize_bytes
# about
about = {
@ -80,17 +80,12 @@ def response(resp):
# extract and convert creation date
try:
date = datetime.fromtimestamp(float(result["added"]))
params['publishedDate'] = date
params['publishedDate'] = datetime.fromtimestamp(float(result["added"]))
except: # pylint: disable=bare-except
pass
# let's try to calculate the torrent size
try:
filesize = get_torrent_size(result["size"], "B")
params['filesize'] = filesize
except: # pylint: disable=bare-except
pass
params['filesize'] = humanize_bytes(int(result["size"]))
# append result
results.append(params)

View file

@ -14,7 +14,6 @@ from searx.utils import (
eval_xpath,
eval_xpath_getindex,
eval_xpath_list,
get_torrent_size,
)
about = {
@ -63,7 +62,7 @@ def response(resp):
'leech': extract_text(stats[2]),
'title': extract_text(title),
'url': resp.search_params['base_url'] + url,
'filesize': get_torrent_size(*extract_text(stats[1]).split()),
'filesize': extract_text(stats[1]),
'magnetlink': magnet,
'torrentfile': torrentfile,
'metadata': extract_text(categ),

View file

@ -8,7 +8,7 @@ from datetime import datetime
from urllib.parse import urlencode
from lxml import html
from searx.utils import extract_text, get_torrent_size, int_or_zero
from searx.utils import extract_text, int_or_zero
# about
about = {
@ -49,7 +49,7 @@ def response(resp):
return []
# regular expression for parsing torrent size strings
size_re = re.compile(r'Size:\s*([\d.]+)(TB|GB|MB|B)', re.IGNORECASE)
size_re = re.compile(r'[\d.]+(T|G|M)?B', re.IGNORECASE)
# processing the results, two rows at a time
for i in range(0, len(rows), 2):
@ -73,9 +73,7 @@ def response(resp):
item = item.strip()
if item.startswith('Size:'):
try:
# ('1.228', 'GB')
groups = size_re.match(item).groups()
params['filesize'] = get_torrent_size(groups[0], groups[1])
params['filesize'] = size_re.search(item).group()
except: # pylint: disable=bare-except
pass
elif item.startswith('Date:'):

View file

@ -56,6 +56,7 @@ from urllib.parse import quote
from lxml import etree # type: ignore
from searx.exceptions import SearxEngineAPIException
from searx.utils import humanize_bytes
if TYPE_CHECKING:
import httpx
@ -137,11 +138,9 @@ def build_result(item: etree.Element) -> Dict[str, Any]:
if enclosure is not None:
enclosure_url = enclosure.get('url')
size = get_attribute(item, 'size')
if not size and enclosure:
size = enclosure.get('length')
if size:
size = int(size)
filesize = get_attribute(item, 'size')
if not filesize and enclosure:
filesize = enclosure.get('length')
guid = get_attribute(item, 'guid')
comments = get_attribute(item, 'comments')
@ -154,7 +153,7 @@ def build_result(item: etree.Element) -> Dict[str, Any]:
result: Dict[str, Any] = {
'template': 'torrent.html',
'title': get_attribute(item, 'title'),
'filesize': size,
'filesize': humanize_bytes(int(filesize)) if filesize else None,
'files': get_attribute(item, 'files'),
'seed': seeders,
'leech': _map_leechers(leechers, seeders, peers),

View file

@ -43,6 +43,7 @@ from flask_babel import gettext
from searx.utils import extract_text, eval_xpath, eval_xpath_list
from searx.enginelib.traits import EngineTraits
from searx.data import ENGINE_TRAITS
from searx.exceptions import SearxException
if TYPE_CHECKING:
import httpx
@ -108,13 +109,21 @@ def request(query: str, params: Dict[str, Any]) -> Dict[str, Any]:
zlib_year_to=zlib_year_to,
zlib_ext=zlib_ext,
)
params["verify"] = False
return params
def domain_is_seized(dom):
return bool(dom.xpath('//title') and "seized" in dom.xpath('//title')[0].text.lower())
def response(resp: httpx.Response) -> List[Dict[str, Any]]:
results: List[Dict[str, Any]] = []
dom = html.fromstring(resp.text)
if domain_is_seized(dom):
raise SearxException(f"zlibrary domain is seized: {base_url}")
for item in dom.xpath('//div[@id="searchResultBox"]//div[contains(@class, "resItemBox")]'):
results.append(_parse_result(item))
@ -168,22 +177,30 @@ def _parse_result(item) -> Dict[str, Any]:
def fetch_traits(engine_traits: EngineTraits) -> None:
"""Fetch languages and other search arguments from zlibrary's search form."""
# pylint: disable=import-outside-toplevel
# pylint: disable=import-outside-toplevel, too-many-branches
import babel
from searx.network import get # see https://github.com/searxng/searxng/issues/762
from searx.locales import language_tag
resp = get(base_url, verify=False)
if not resp.ok: # type: ignore
raise RuntimeError("Response from zlibrary's search page is not OK.")
dom = html.fromstring(resp.text) # type: ignore
if domain_is_seized(dom):
print(f"ERROR: zlibrary domain is seized: {base_url}")
# don't change anything, re-use the existing values
engine_traits.all_locale = ENGINE_TRAITS["z-library"]["all_locale"]
engine_traits.custom = ENGINE_TRAITS["z-library"]["custom"]
engine_traits.languages = ENGINE_TRAITS["z-library"]["languages"]
return
engine_traits.all_locale = ""
engine_traits.custom["ext"] = []
engine_traits.custom["year_from"] = []
engine_traits.custom["year_to"] = []
resp = get(base_url)
if not resp.ok: # type: ignore
raise RuntimeError("Response from zlibrary's search page is not OK.")
dom = html.fromstring(resp.text) # type: ignore
for year in eval_xpath_list(dom, "//div[@id='advSearch-noJS']//select[@id='sf_yearFrom']/option"):
engine_traits.custom["year_from"].append(year.get("value"))

View file

@ -13,21 +13,54 @@ other features.
**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.
- ``hostnames.remove``: A list of regular expressions of the hostnames whose
.. code:: yaml
hostnames:
replace:
'(.*\\.)?youtube\\.com$': 'invidious.example.com'
'(.*\\.)?youtu\\.be$': 'invidious.example.com'
...
- ``hostnames.remove``: A **list** of regular expressions of the hostnames whose
results should be taken from the results list.
- ``hostnames.high_priority``: A list of regular expressions for hostnames whose
result should be given higher priority. The results from these hosts are
.. code:: yaml
hostnames:
remove:
- '(.*\\.)?facebook.com$'
- ...
- ``hostnames.high_priority``: A **list** of regular expressions for hostnames
whose result should be given higher priority. The results from these hosts are
arranged higher in the results list.
- ``hostnames.lower_priority``: A list of regular expressions for hostnames
.. code:: yaml
hostnames:
high_priority:
- '(.*\\.)?wikipedia.org$'
- ...
- ``hostnames.lower_priority``: A **list** of regular expressions for hostnames
whose result should be given lower priority. The results from these hosts are
arranged lower in the results list.
Alternatively, a file name can also be specified for the mappings or lists:
.. code:: yaml
hostnames:
low_priority:
- '(.*\\.)?google(\\..*)?$'
- ...
If the URL matches the pattern of ``high_priority`` AND ``low_priority``, the
higher priority wins over the lower priority.
Alternatively, you can also specify a file name for the **mappings** or
**lists** to load these from an external file:
.. code:: yaml
@ -35,13 +68,13 @@ Alternatively, a file name can also be specified for the mappings or lists:
replace: 'rewrite-hosts.yml'
remove:
- '(.*\\.)?facebook.com$'
...
- ...
low_priority:
- '(.*\\.)?google(\\..*)?$'
...
- ...
high_priority:
- '(.*\\.)?wikipedia.org$'
...
- ...
The ``rewrite-hosts.yml`` from the example above must be in the folder in which
the ``settings.yml`` file is already located (``/etc/searxng``). The file then

View file

@ -13,17 +13,20 @@ preference_section = 'query'
query_keywords = ['user-agent']
query_examples = ''
# "ip" or "my ip" regex
ip_regex = re.compile('^ip$|my ip', re.IGNORECASE)
# Self User Agent regex
p = re.compile('.*user[ -]agent.*', re.IGNORECASE)
ua_regex = re.compile('.*user[ -]agent.*', re.IGNORECASE)
def post_search(request, search):
if search.search_query.pageno > 1:
return True
if search.search_query.query == 'ip':
if ip_regex.search(search.search_query.query):
ip = get_real_ip(request)
search.result_container.answers['ip'] = {'answer': ip}
elif p.match(search.search_query.query):
search.result_container.answers['ip'] = {'answer': gettext('Your IP is: ') + ip}
elif ua_regex.match(search.search_query.query):
ua = request.user_agent
search.result_container.answers['user-agent'] = {'answer': ua}
search.result_container.answers['user-agent'] = {'answer': gettext('Your user-agent is: ') + ua}
return True

View file

@ -78,14 +78,18 @@ server:
# public URL of the instance, to ensure correct inbound links. Is overwritten
# by ${SEARXNG_URL}.
base_url: false # "http://example.com/location"
limiter: false # rate limit the number of request on the instance, block some bots
public_instance: false # enable features designed only for public instances
# rate limit the number of request on the instance, block some bots.
# Is overwritten by ${SEARXNG_LIMITER}
limiter: false
# enable features designed only for public instances.
# Is overwritten by ${SEARXNG_PUBLIC_INSTANCE}
public_instance: false
# If your instance owns a /etc/searxng/settings.yml file, then set the following
# values there.
secret_key: "ultrasecretkey" # Is overwritten by ${SEARXNG_SECRET}
# Proxying image results through searx
# Proxy image results through SearXNG. Is overwritten by ${SEARXNG_IMAGE_PROXY}
image_proxy: false
# 1.0 and 1.1 are supported
http_protocol_version: "1.0"
@ -106,6 +110,7 @@ redis:
ui:
# Custom static path - leave it blank if you didn't change
static_path: ""
# Is overwritten by ${SEARXNG_STATIC_USE_HASH}.
static_use_hash: false
# Custom templates path - leave it blank if you didn't change
templates_path: ""

View file

@ -174,11 +174,11 @@ SCHEMA = {
'server': {
'port': SettingsValue((int, str), 8888, 'SEARXNG_PORT'),
'bind_address': SettingsValue(str, '127.0.0.1', 'SEARXNG_BIND_ADDRESS'),
'limiter': SettingsValue(bool, False),
'public_instance': SettingsValue(bool, False),
'limiter': SettingsValue(bool, False, 'SEARXNG_LIMITER'),
'public_instance': SettingsValue(bool, False, 'SEARXNG_PUBLIC_INSTANCE'),
'secret_key': SettingsValue(str, environ_name='SEARXNG_SECRET'),
'base_url': SettingsValue((False, str), False, 'SEARXNG_BASE_URL'),
'image_proxy': SettingsValue(bool, False),
'image_proxy': SettingsValue(bool, False, 'SEARXNG_IMAGE_PROXY'),
'http_protocol_version': SettingsValue(('1.0', '1.1'), '1.0'),
'method': SettingsValue(('POST', 'GET'), 'POST'),
'default_http_headers': SettingsValue(dict, {}),
@ -188,7 +188,7 @@ SCHEMA = {
},
'ui': {
'static_path': SettingsDirectoryValue(str, os.path.join(searx_dir, 'static')),
'static_use_hash': SettingsValue(bool, False),
'static_use_hash': SettingsValue(bool, False, 'SEARXNG_STATIC_USE_HASH'),
'templates_path': SettingsDirectoryValue(str, os.path.join(searx_dir, 'templates')),
'default_theme': SettingsValue(str, 'simple'),
'default_locale': SettingsValue(str, ''),

View file

@ -56,6 +56,7 @@ sxng_locales = (
('fr-CA', 'Français', 'Canada', 'French', '\U0001f1e8\U0001f1e6'),
('fr-CH', 'Français', 'Suisse', 'French', '\U0001f1e8\U0001f1ed'),
('fr-FR', 'Français', 'France', 'French', '\U0001f1eb\U0001f1f7'),
('gl', 'Galego', '', 'Galician', '\U0001f310'),
('he', 'עברית', '', 'Hebrew', '\U0001f1ee\U0001f1f1'),
('hi', 'हिन्दी', '', 'Hindi', '\U0001f310'),
('hr', 'Hrvatski', '', 'Croatian', '\U0001f310'),

View file

@ -35,14 +35,7 @@
{%- if result.filename %}<tr><td>{{ _('Filename') }}</td><td>{{ result.filename|safe }}</td></tr>{% endif -%}
{%- if result.size %}<tr><td>{{ _('Filesize') }}</td><td>
{%- if result.size < 1024 %}{{ result.size }} {{ _('Bytes') -}}
{%- elif result.size < 1024*1024 %}{{ '{0:0.2f}'.format(result.size/1024) }} {{ _('kiB') -}}
{%- elif result.size < 1024*1024*1024 %}{{ '{0:0.2f}'.format(result.size/1024/1024) }} {{ _('MiB') -}}
{%- elif result.size < 1024*1024*1024*1024 %}{{ '{0:0.2f}'.format(result.size/1024/1024/1024) }} {{ _('GiB') -}}
{%- else %}{{ '{0:0.2f}'.format(result.size/1024/1024/1024/1024) }} {{ _('TiB') }}{% endif -%}
</td></tr>
{%- endif -%}
{%- if result.size %}<tr><td>{{ _('Filesize') }}</td><td>{{ result.size|safe }}</td></tr>{%- endif -%}
{%- if result.time %}<tr><td>{{ _('Date') }}</td><td>{{ result.time|safe }}</td></tr>{% endif -%}

View file

@ -8,14 +8,7 @@
{% if result.seed is defined %}<p class="stat"> &bull; {{ icon_big('arrow-swap') }} {{ _('Seeder') }} <span class="badge">{{ result.seed }}</span> &bull; {{ _('Leecher') }} <span class="badge">{{ result.leech }}</span></p>{% endif %}
{%- if result.filesize %}<p class="stat">{{ icon_big('floppy-disk') }} {{ _('Filesize') }}<span class="badge">
{%- if result.filesize < 1024 %}{{ result.filesize }} {{ _('Bytes') }}
{%- elif result.filesize < 1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024) }} {{ _('kiB') }}
{%- elif result.filesize < 1024*1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024/1024) }} {{ _('MiB') }}
{%- elif result.filesize < 1024*1024*1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024/1024/1024) }} {{ _('GiB') }}
{%- else %}{{ '{0:0.2f}'.format(result.filesize/1024/1024/1024/1024) }} {{ _('TiB') }}{% endif -%}
</span></p>
{%- endif -%}
{%- if result.filesize %}<p class="stat">{{ icon_big('floppy-disk') }} {{ _('Filesize') }}<span class="badge">{{ result.filesize }}</span></p>{%- endif -%}
{%- if result.files %}<p class="stat">{{ icon_big('file') }} {{ _('Number of Files') }} <span class="badge">{{ result.files }}</span></p>{% endif -%}

View file

@ -13,17 +13,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Afrikaans <https://translate.codeberg.org/projects/searxng/"
"searxng/af/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: af\n"
"Language-Team: Afrikaans "
"<https://translate.codeberg.org/projects/searxng/searxng/af/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -551,6 +551,14 @@ msgstr ""
"Vertoon jou IP indien die navraag \"ip\" is en jou gebruiker agent indien"
" die navraag \"user agent\" bevat."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor toets inprop"
@ -1362,36 +1370,11 @@ msgstr "Hierdie webwerf het geen beskrywing verskaf nie."
msgid "Filesize"
msgstr "Lêergrootte"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Grepe"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tik"
@ -1509,7 +1492,7 @@ msgstr "Saaier"
msgid "Leecher"
msgstr "Suier"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Aantal lêers"
@ -1681,3 +1664,19 @@ msgstr "versteek video"
#~ msgstr ""
#~ "Herskryf resultaatgasheername of verwyder "
#~ "resultate op grond van die gasheernaam"
#~ msgid "Bytes"
#~ msgstr "Grepe"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -19,20 +19,19 @@
# nebras <nebras@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-11 02:08+0000\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-Team: Arabic "
"<https://translate.codeberg.org/projects/searxng/searxng/ar/>\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : "
"n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -533,8 +532,8 @@ msgstr "مُلحق لأسماء المضيفين (Hostnames)"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"أعِد كتابة أسماء المضيفين (hostnames) أو أزِل النتائج أو حدّد أولوياتها بناءً"
" على اسم المضيف (hostname)"
"أعِد كتابة أسماء المضيفين (hostnames) أو أزِل النتائج أو حدّد أولوياتها "
"بناءً على اسم المضيف (hostname)"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -560,6 +559,14 @@ msgstr ""
"يعرض IP إذا كان الاستعلام \"ip\" و وكيل المستخدم الخاص بك إذا كان "
"الاستعلام يحتوي على\"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "فحص المكون الإضافي ل Tor"
@ -1363,36 +1370,11 @@ msgstr "هذا الموقع لم يقدم أي وصف."
msgid "Filesize"
msgstr "حجم الملف"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "بايت"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "ك.بايت"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "ميغابايت"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "جيجابيت"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "تيرابيت"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "تاريخ"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "نوع"
@ -1510,7 +1492,7 @@ msgstr "الزارع"
msgid "Leecher"
msgstr "الحاصد"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "عدد الملفات"
@ -1938,3 +1920,19 @@ msgstr "إخفاء الفيديو"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "أعد كتابة أسماء مضيفي النتائج أو أزل النتائج بناءً على اسم المضيف"
#~ msgid "Bytes"
#~ msgstr "بايت"
#~ msgid "kiB"
#~ msgstr "ك.بايت"
#~ msgid "MiB"
#~ msgstr "ميغابايت"
#~ msgid "GiB"
#~ msgstr "جيجابيت"
#~ msgid "TiB"
#~ msgstr "تيرابيت"

View file

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-05-25 08:18+0000\n"
"Last-Translator: krlsk <krlsk@users.noreply.translate.codeberg.org>\n"
"Language: bg\n"
@ -551,6 +551,14 @@ msgid ""
"contains \"user agent\"."
msgstr "Показва IP-то ви и др. инфо, ако търсенето е \"ip\" или \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Проверка на Tor приставката"
@ -1365,36 +1373,11 @@ msgstr "Този сайт не предостави никакво описан
msgid "Filesize"
msgstr "Размер на файла"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Байта"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "килобайт"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "мегабайт"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "гигабайт"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "терабайт"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Дата"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Тип"
@ -1512,7 +1495,7 @@ msgstr "Сийдър"
msgid "Leecher"
msgstr "Лийчър"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Брой на Файлове"
@ -1942,3 +1925,18 @@ msgstr "скрий видеото"
#~ "резултатите или премахнете резултатите въз "
#~ "основа на името на хоста"
#~ msgid "Bytes"
#~ msgstr "Байта"
#~ msgid "kiB"
#~ msgstr "килобайт"
#~ msgid "MiB"
#~ msgstr "мегабайт"
#~ msgid "GiB"
#~ msgstr "гигабайт"
#~ msgid "TiB"
#~ msgstr "терабайт"

View file

@ -18,17 +18,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"PO-Revision-Date: 2024-05-25 08:18+0000\n"
"Last-Translator: MusfiquerRhman "
"<MusfiquerRhman@users.noreply.translate.codeberg.org>\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-20 06:18+0000\n"
"Last-Translator: MonsoonRain <MonsoonRain@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Bengali <https://translate.codeberg.org/projects/searxng/"
"searxng/bn/>\n"
"Language: bn\n"
"Language-Team: Bengali "
"<https://translate.codeberg.org/projects/searxng/searxng/bn/>\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -319,17 +320,17 @@ msgstr "লেখক"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
msgid "open"
msgstr ""
msgstr "খুলো"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
msgid "closed"
msgstr ""
msgstr "বন্ধ"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
msgid "answered"
msgstr ""
msgstr "উত্তরকৃত"
#: searx/webapp.py:330
msgid "No item found"
@ -525,7 +526,7 @@ msgstr "হোস্টনাম প্রতিস্থাপন"
#: searx/plugins/hostnames.py:68
msgid "Hostnames plugin"
msgstr ""
msgstr "হোস্টনেম প্লাগিন"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
@ -555,6 +556,14 @@ msgstr ""
"ক্যোয়ারীটি \"ip\" হলে আপনার আইপি এবং যদি ক্যোয়ারীতে \"ব্যবহারকারী "
"এজেন্ট\" থাকে তাহলে আপনার ব্যবহারকারী এজেন্ট প্রদর্শন করে।"
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "টর চেক প্লাগইন"
@ -1364,36 +1373,11 @@ msgstr "এই সাইট কোন বিবরণ প্রদান কর
msgid "Filesize"
msgstr "ফাইলের আকার"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "বাইটস"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "কিবা"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "মিবা"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "গিবা"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "টেবা"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "তারিখ"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "ধরন"
@ -1511,7 +1495,7 @@ msgstr "সিডার"
msgid "Leecher"
msgstr "লিচার"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "ফাইলের সংখ্যা"
@ -1698,3 +1682,17 @@ msgstr "ভিডিও লুকিয়ে ফেলুন"
#~ "হোস্টনামের উপর ভিত্তি করে ফলাফল মুছে "
#~ "ফেলুন"
#~ msgid "Bytes"
#~ msgstr "বাইটস"
#~ msgid "kiB"
#~ msgstr "কিবা"
#~ msgid "MiB"
#~ msgstr "মিবা"
#~ msgid "GiB"
#~ msgstr "গিবা"
#~ msgid "TiB"
#~ msgstr "টেবা"

View file

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2023-06-02 07:07+0000\n"
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
"Language: bo\n"
@ -535,6 +535,14 @@ msgid ""
"contains \"user agent\"."
msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr ""
@ -1315,36 +1323,11 @@ msgstr ""
msgid "Filesize"
msgstr "ཡིག་ཆའི་ཆེ་ཆུང་།"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "གྲངས་གནས།"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr ""
@ -1462,7 +1445,7 @@ msgstr "མཁོ་སྤྲོད་གཏོང་མཁན།"
msgid "Leecher"
msgstr "དང་ལེན་བྱེད་མཁན།"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "ཡིག་ཆའི་ཁ་གྲངས།"
@ -1861,3 +1844,18 @@ msgstr "རྙན་ཟློས་སྦས།"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr ""
#~ msgid "Bytes"
#~ msgstr "གྲངས་གནས།"
#~ msgid "kiB"
#~ msgstr "kB"
#~ msgid "MiB"
#~ msgstr "MB"
#~ msgid "GiB"
#~ msgstr "GB"
#~ msgid "TiB"
#~ msgstr "TB"

View file

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-04-06 00:18+0000\n"
"Last-Translator: sserra <sserra@users.noreply.translate.codeberg.org>\n"
"Language: ca\n"
@ -557,6 +557,14 @@ msgstr ""
"Mostra la vostra IP si la consulta és «ip» i el valor «user agent» del "
"navegador si la consulta conté «user agent»."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Plugin de comprovació de Tor"
@ -1369,36 +1377,11 @@ msgstr "Aquest lloc no proporciona cap descripció."
msgid "Filesize"
msgstr "Mida del fitxer"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Data"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tipus"
@ -1516,7 +1499,7 @@ msgstr "Font"
msgid "Leecher"
msgstr "Descarregador"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Nombre de fiters"
@ -1959,3 +1942,18 @@ msgstr "oculta el vídeo"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "Reescriu o suprimeix resultats basant-se en els noms d'amfitrió"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -16,20 +16,19 @@
# Fjuro <fjuro@alius.cz>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: Fjuro <fjuro@alius.cz>\n"
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
"searxng/cs/>\n"
"Language: cs\n"
"Language-Team: Czech "
"<https://translate.codeberg.org/projects/searxng/searxng/cs/>\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && "
"n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -558,6 +557,14 @@ msgstr ""
"Umožňuje hledat informace o sobě: \"ip\" zobrazí vaši IP adresu a \"user "
"agent\" zobrazí identifikátor prohlížeče."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Plugin kontroly TORu"
@ -1364,36 +1371,11 @@ msgstr "Tato stránka nemá žádný popis."
msgid "Filesize"
msgstr "Velikost"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "bajtů"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Datum"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Typ"
@ -1511,7 +1493,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Počet souborů"
@ -1947,3 +1929,19 @@ msgstr "skrýt video"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "Přepsat adresy serverů nebo odstranit výsledky podle adresy"
#~ msgid "Bytes"
#~ msgstr "bajtů"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -12,21 +12,20 @@
# EifionLlwyd <EifionLlwyd@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: EifionLlwyd <EifionLlwyd@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Welsh <https://translate.codeberg.org/projects/searxng/"
"searxng/cy/>\n"
"Last-Translator: EifionLlwyd "
"<EifionLlwyd@users.noreply.translate.codeberg.org>\n"
"Language: cy\n"
"Language-Team: Welsh "
"<https://translate.codeberg.org/projects/searxng/searxng/cy/>\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n "
"!= 11) ? 2 : 3;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != "
"11) ? 2 : 3;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -529,7 +528,8 @@ msgstr "Ategyn enwau gwesteiwyr"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Newid, tynnu neu flaenoriaethu canlyniadau yn seiliedig ar yr enw gwesteiwr"
"Newid, tynnu neu flaenoriaethu canlyniadau yn seiliedig ar yr enw "
"gwesteiwr"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -540,8 +540,8 @@ msgid ""
"Avoid paywalls by redirecting to open-access versions of publications "
"when available"
msgstr ""
"Osgoi wal dâl drwy arallgyfeirio i fersiynau mynediad agored o gyhoeddiadau "
"os ydynt ar gael"
"Osgoi wal dâl drwy arallgyfeirio i fersiynau mynediad agored o "
"gyhoeddiadau os ydynt ar gael"
#: searx/plugins/self_info.py:9
msgid "Self Information"
@ -555,6 +555,14 @@ msgstr ""
"Dangos eich cyfeiriad IP os defnyddir yr ymholiad \"ip\" a'ch asiant "
"defnyddiwr os ydy'ch ymholiad yn cynnwys \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Ategyn gwirio Tor"
@ -564,17 +572,17 @@ msgid ""
"This plugin checks if the address of the request is a Tor exit-node, and "
"informs the user if it is; like check.torproject.org, but from SearXNG."
msgstr ""
"Mae'r ategyn hwn yn gwirio a ydy cyfeiriad y cais yn nod ymadael Tor, ac yn "
"rhoi gwybod i'r defnyddiwr os felly. Mae'n debyg i check.torproject.org, ond "
"gan SearXNG."
"Mae'r ategyn hwn yn gwirio a ydy cyfeiriad y cais yn nod ymadael Tor, ac "
"yn rhoi gwybod i'r defnyddiwr os felly. Mae'n debyg i "
"check.torproject.org, ond gan SearXNG."
#: searx/plugins/tor_check.py:61
msgid ""
"Could not download the list of Tor exit-nodes from: "
"https://check.torproject.org/exit-addresses"
msgstr ""
"Wedi methu islwytho'r rhestr o nodau ymadael Tor o: https://check.torproject."
"org/exit-addresses"
"Wedi methu islwytho'r rhestr o nodau ymadael Tor o: "
"https://check.torproject.org/exit-addresses"
#: searx/plugins/tor_check.py:77
msgid ""
@ -1127,9 +1135,9 @@ msgid ""
"Note: specifying custom settings in the search URL can reduce privacy by "
"leaking data to the clicked result sites."
msgstr ""
"Noder: gall rhoi gosodiadau addasedig o fewn URL eich chwiliadau wanhau eich "
"preifatrwydd drwy ddatgelu data i wefannau yr ymwelir â nhw o'r dudalen "
"ganlyniadau."
"Noder: gall rhoi gosodiadau addasedig o fewn URL eich chwiliadau wanhau "
"eich preifatrwydd drwy ddatgelu data i wefannau yr ymwelir â nhw o'r "
"dudalen ganlyniadau."
#: searx/templates/simple/preferences/cookies.html:35
msgid "URL to restore your preferences in another browser"
@ -1198,16 +1206,16 @@ msgid ""
"These settings are stored in your cookies, this allows us not to store "
"this data about you."
msgstr ""
"Cedwir y gosodiadau hyn yn eich briwsion. Golyga hyn nad oes rhaid i ninnau "
"gadw'r data hyn amdanoch."
"Cedwir y gosodiadau hyn yn eich briwsion. Golyga hyn nad oes rhaid i "
"ninnau gadw'r data hyn amdanoch."
#: searx/templates/simple/preferences/footer.html:3
msgid ""
"These cookies serve your sole convenience, we don't use these cookies to "
"track you."
msgstr ""
"Er hwylustod i chi yn unig y defnyddir y briwsion hyn. Nid ydym eu defnyddio "
"i'ch tracio."
"Er hwylustod i chi yn unig y defnyddir y briwsion hyn. Nid ydym eu "
"defnyddio i'ch tracio."
#: searx/templates/simple/preferences/footer.html:6
msgid "Save"
@ -1363,36 +1371,11 @@ msgstr "Ni wnaeth y wefan ddarparu disgrifiad."
msgid "Filesize"
msgstr "Maint ffeil"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Beitiau"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Dyddiad"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Math"
@ -1510,7 +1493,7 @@ msgstr "Hadwr"
msgid "Leecher"
msgstr "Lawrlwythwyr"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Nifer o ffeiliau"
@ -1911,3 +1894,19 @@ msgstr "cuddio'r fideo"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr ""
#~ msgid "Bytes"
#~ msgstr "Beitiau"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -11,19 +11,19 @@
# lolmeOzzi <lolmeOzzi@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Danish <https://translate.codeberg.org/projects/searxng/"
"searxng/da/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: da\n"
"Language-Team: Danish "
"<https://translate.codeberg.org/projects/searxng/searxng/da/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -551,6 +551,14 @@ msgstr ""
"Viser din IP adresse hvis søgningen er \"ip\" og din user-agent i "
"søgningen indeholder \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor undersøg plugin"
@ -1363,36 +1371,11 @@ msgstr "Denne side gav ikke nogen beskrivelse."
msgid "Filesize"
msgstr "Filstørrelse"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Dato"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Type"
@ -1510,7 +1493,7 @@ msgstr "Afsender"
msgid "Leecher"
msgstr "Henter"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Antal filer"
@ -1945,3 +1928,19 @@ msgstr "skjul video"
#~ msgstr ""
#~ "Omskriv resultatets værtsnavne eller fjerne"
#~ " resultater baseret på værtsnavnet"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -26,8 +26,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
"searxng/de/>\n"
@ -539,8 +539,8 @@ msgstr "Hostnames plugin"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Umschreiben von Hostnamen, Entfernen von Ergebnissen oder Priorisieren von "
"Ergebnissen auf der Grundlage des Hostnamens"
"Umschreiben von Hostnamen, Entfernen von Ergebnissen oder Priorisieren "
"von Ergebnissen auf der Grundlage des Hostnamens"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -566,6 +566,14 @@ msgstr ""
"Zeigt deine IP-Adresse an, wenn die Suchabfrage \"ip\" lautet, und deinen"
" User-Agent, wenn deine Suchabfrage \"user agent\" beinhaltet."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "IP: "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "User-Agent: "
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor Prüf-Plugin"
@ -1382,36 +1390,11 @@ msgstr "Diese Seite besitzt keine Beschreibung."
msgid "Filesize"
msgstr "Dateigröße"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Datum"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Medium"
@ -1529,7 +1512,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Anzahl der Dateien"
@ -1982,3 +1965,18 @@ msgstr "Video verstecken"
#~ msgstr ""
#~ "Umschreiben des Hostnamen oder sperren "
#~ "von Hostnamen in den Such-Ergebnissen"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kB"
#~ msgid "MiB"
#~ msgstr "MB"
#~ msgid "GiB"
#~ msgstr "GB"
#~ msgid "TiB"
#~ msgstr "TB"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
"Last-Translator: Landhoo School Students "
"<landhooschoolstudents@gmail.com>\n"
@ -533,6 +533,14 @@ msgid ""
"contains \"user agent\"."
msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr ""
@ -1313,36 +1321,11 @@ msgstr ""
msgid "Filesize"
msgstr ""
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr ""
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr ""
@ -1460,7 +1443,7 @@ msgstr ""
msgid "Leecher"
msgstr ""
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr ""
@ -1592,3 +1575,18 @@ msgstr ""
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr ""
#~ msgid "Bytes"
#~ msgstr ""
#~ msgid "kiB"
#~ msgstr ""
#~ msgid "MiB"
#~ msgstr ""
#~ msgid "GiB"
#~ msgstr ""
#~ msgid "TiB"
#~ msgstr ""

View file

@ -14,19 +14,19 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-14 07:08+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Greek <https://translate.codeberg.org/projects/searxng/"
"searxng/el/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: el_GR\n"
"Language-Team: Greek "
"<https://translate.codeberg.org/projects/searxng/searxng/el/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -554,6 +554,14 @@ msgstr ""
"Προβολή της IP διεύθυνσης αν η αναζήτηση είναι \"ip\" και το user agent "
"αν η αναζήτηση περιέχει \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Πρόσθετο ελέγχου Tor"
@ -1376,36 +1384,11 @@ msgstr "Αυτός ο ιστότοπος δεν παρείχε καμία περ
msgid "Filesize"
msgstr "Μέγεθος αρχείου"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Ημερομηνία"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Τύπος"
@ -1523,7 +1506,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Αριθμός Αρχείων"
@ -1953,3 +1936,19 @@ msgstr "απόκρυψη βίντεο"
#~ "Αντικατάσταση hostname των αποτελεσμάτων ή "
#~ "αφαίρεση των αποτελεσμάτων με βάση το"
#~ " hostname"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
@ -531,6 +531,14 @@ msgid ""
"contains \"user agent\"."
msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr ""
@ -1311,36 +1319,11 @@ msgstr ""
msgid "Filesize"
msgstr ""
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr ""
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr ""
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr ""
@ -1458,7 +1441,7 @@ msgstr ""
msgid "Leecher"
msgstr ""
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr ""
@ -1858,3 +1841,18 @@ msgstr ""
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr ""
#~ msgid "Bytes"
#~ msgstr ""
#~ msgid "kiB"
#~ msgstr ""
#~ msgid "MiB"
#~ msgstr ""
#~ msgid "GiB"
#~ msgstr ""
#~ msgid "TiB"
#~ msgstr ""

View file

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-03-22 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -554,6 +554,14 @@ msgstr ""
"Montras vian IP-adreson se la serĉofrazo estas \"ip\" kaj vian klientan "
"aplikaĵon se la serĉofrazo enhavas \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor-kontrolo kromprogramo"
@ -1359,36 +1367,11 @@ msgstr "Ĉi tiu retejo ne disponigis ajnan priskribon."
msgid "Filesize"
msgstr "Dosiergrandeco"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bitokoj"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Dato"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tipo"
@ -1506,7 +1489,7 @@ msgstr "Fonto"
msgid "Leecher"
msgstr "Ricevanto"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Nombro da Dosieroj"
@ -1928,3 +1911,18 @@ msgstr "kaŝi videojn"
#~ "forigi rezultojn bazitajn sur la gastiga"
#~ " nomo"
#~ msgid "Bytes"
#~ msgstr "Bitokoj"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -30,21 +30,23 @@
# pixrobot <pixrobot@users.noreply.translate.codeberg.org>, 2024.
# sserra <sserra@users.noreply.translate.codeberg.org>, 2024.
# gallegonovato <gallegonovato@users.noreply.translate.codeberg.org>, 2024.
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"PO-Revision-Date: 2024-05-14 19:20+0000\n"
"Last-Translator: gallegonovato "
"<gallegonovato@users.noreply.translate.codeberg.org>\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
"searxng/es/>\n"
"Language: es\n"
"Language-Team: Spanish "
"<https://translate.codeberg.org/projects/searxng/searxng/es/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -335,17 +337,17 @@ msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:121 searx/searxng.msg
msgid "open"
msgstr ""
msgstr "abrir"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:121 searx/searxng.msg
msgid "closed"
msgstr ""
msgstr "cerrar"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
msgid "answered"
msgstr ""
msgstr "contestado"
#: searx/webapp.py:330
msgid "No item found"
@ -542,11 +544,13 @@ msgstr "Sustituir el nombre de host"
#: searx/plugins/hostnames.py:68
msgid "Hostnames plugin"
msgstr ""
msgstr "Plugin del hostname"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Reescribir los hostnames, remover los resultados o priorizarlos segundo "
"sus hostnames"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -572,6 +576,14 @@ msgstr ""
"Muestra tu dirección IP si la consulta es \"ip\" y tu Agente de Usuario "
"si la consulta contiene \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "Tu IP es: "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "Tu user-agent es: "
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Plugin de comprobación de Tor"
@ -1385,36 +1397,11 @@ msgstr "Este sitio no provee ninguna descripción."
msgid "Filesize"
msgstr "Tamaño de archivo"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "KiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Fecha"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tipo"
@ -1532,7 +1519,7 @@ msgstr "Seeders"
msgid "Leecher"
msgstr "Leechers"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Número de archivos"
@ -1980,3 +1967,17 @@ msgstr "ocultar video"
#~ "los resultados o eliminar los resultados"
#~ " en función del nombre de host"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "KiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-01 07:13+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -552,6 +552,14 @@ msgstr ""
"Kuvab sinu IP'd, kui päringuks on \"ip\" ning kasutajaagenti, kui "
"päringuks on \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor kontrollplugin"
@ -1359,36 +1367,11 @@ msgstr "See sait ei andnud mingit kirjeldust."
msgid "Filesize"
msgstr "Failisuurus"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Baite"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Kuupäev"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tüüp"
@ -1506,7 +1489,7 @@ msgstr "Seemendaja"
msgid "Leecher"
msgstr "Kaanija"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Failide arv"
@ -1924,3 +1907,18 @@ msgstr "peida video"
#~ "Tulemuste hostinimede ümberkirjutamine või "
#~ "tulemuste eemaldamine hostinime alusel"
#~ msgid "Bytes"
#~ msgstr "Baite"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-05-02 12:18+0000\n"
"Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>"
"\n"
@ -553,6 +553,14 @@ msgstr ""
"Zure IPa bistaratzen du kontsulta \"ip\" bada eta zure erabiltzaile-"
"agentea kontsultak \"erabiltzaile-agentea\" badu."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor check plugina"
@ -1362,36 +1370,11 @@ msgstr "Gune honek ez du deskribapenik eman."
msgid "Filesize"
msgstr "Fitxategiaren tamaina"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Byteak"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Data"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Mota"
@ -1509,7 +1492,7 @@ msgstr "Ereilea"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Fitxategi kopurua"
@ -1929,3 +1912,18 @@ msgstr "ezkutatu bideoa"
#~ "Berridatzi emaitzen ostalari-izenak edo "
#~ "kendu emaitzak ostalari-izenaren arabera"
#~ msgid "Bytes"
#~ msgstr "Byteak"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-04-06 00:18+0000\n"
"Last-Translator: tegcope <tegcope@users.noreply.translate.codeberg.org>\n"
"Language: fa_IR\n"
@ -555,6 +555,14 @@ msgstr ""
"اگر پرس و جو \"ip\" باشد IP شما و اگر پرس و جو حاوی \"عامل کاربر\" باشد، "
"عامل کاربری شما را نشان می دهد."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "افزونه بررسی Tor"
@ -1360,36 +1368,11 @@ msgstr "این سایت هیچ توصیفی ندارد."
msgid "Filesize"
msgstr "اندازهٔ پرونده"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "بایت"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "کیلوبایت"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "مگابایت"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "گیگابایت"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "ترابایت"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "تاریخ"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "نوع"
@ -1507,7 +1490,7 @@ msgstr "بذرپاش"
msgid "Leecher"
msgstr "مکنده"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "تعداد پرونده‌ها"
@ -1943,3 +1926,18 @@ msgstr "پنهان‌سازی ویدئو"
#~ "یا نتایج را بر اساس نام میزبان "
#~ "حذف کنید"
#~ msgid "Bytes"
#~ msgstr "بایت"
#~ msgid "kiB"
#~ msgstr "کیلوبایت"
#~ msgid "MiB"
#~ msgstr "مگابایت"
#~ msgid "GiB"
#~ msgstr "گیگابایت"
#~ msgid "TiB"
#~ msgstr "ترابایت"

View file

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-07 00:18+0000\n"
"Last-Translator: artnay <artnay@users.noreply.translate.codeberg.org>\n"
"Language: fi\n"
@ -551,6 +551,14 @@ msgstr ""
"Näyttää IP-osoitteesi jos hakuehtosi on \"ip\" ja selaimen tunnistetiedot"
" jos hakuehtosi sisältää sanat \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor-verkon tarkistus lisäosa"
@ -1361,36 +1369,11 @@ msgstr "Tämä sivu ei antanut mitään kuvausta."
msgid "Filesize"
msgstr "Tiedostokoko"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Tavua"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Päivämäärä"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tyyppi"
@ -1508,7 +1491,7 @@ msgstr "Lähettäjä"
msgid "Leecher"
msgstr "Lataaja"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Tiedostojen määrä"
@ -1942,3 +1925,18 @@ msgstr "piilota video"
#~ "Kirjoita tuloksien isäntänimiä uudelleen tai"
#~ " poista tulokset isäntänimen perusteella"
#~ msgid "Bytes"
#~ msgstr "Tavua"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-04-03 13:28+0000\n"
"Last-Translator: Kita Ikuyo <searinminecraft@courvix.com>\n"
"Language: fil\n"
@ -551,6 +551,14 @@ msgstr ""
"Ipapakita ang iyong IP kapag ang tanong ay \"ip\" at ang iyong user agent"
" kapag ang sa tanong ay naglalaman ng \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor check plugin"
@ -1371,36 +1379,11 @@ msgstr "Ang site na ito ay hindi nagbigay ng deskripsyon."
msgid "Filesize"
msgstr "Laki ng file"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Petsa"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Uri"
@ -1518,7 +1501,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Bilang ng mga files"
@ -1955,3 +1938,18 @@ msgstr "itago ang video"
#~ "Palitan ang resulta ng hostname o "
#~ "tanggalin ang resulta base sa hostname"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -21,13 +21,14 @@
# GeoffreyGx <GeoffreyGx@users.noreply.translate.codeberg.org>, 2024.
# Heyian <Heyian@users.noreply.translate.codeberg.org>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# Vulcain <Vulcain@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-21 07:09+0000\n"
"Last-Translator: Vulcain <Vulcain@users.noreply.translate.codeberg.org>\n"
"Language-Team: French <https://translate.codeberg.org/projects/searxng/"
"searxng/fr/>\n"
"Language: fr\n"
@ -336,7 +337,7 @@ msgstr "Fermé"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:132 searx/searxng.msg
msgid "answered"
msgstr ""
msgstr "répondu"
#: searx/webapp.py:330
msgid "No item found"
@ -563,6 +564,14 @@ msgstr ""
"Affiche votre adresse IP si la requête est \"ip\", et affiche votre user-"
"agent si la requête contient \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "Votre IP est : "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "Votre agent-utilisateur est : "
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Plugin de vérification de Tor"
@ -1375,36 +1384,11 @@ msgstr "Ce site n'a pas fourni de description."
msgid "Filesize"
msgstr "Taille du fichier"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "octets"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kio"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "Mio"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "Gio"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "Tio"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Date"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Type"
@ -1522,7 +1506,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Nombre de fichiers"
@ -1974,3 +1958,18 @@ msgstr "cacher la vidéo"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "Réécrit ou supprime les résultats en se basant sur les noms de domaine"
#~ msgid "Bytes"
#~ msgstr "octets"
#~ msgid "kiB"
#~ msgstr "kio"
#~ msgid "MiB"
#~ msgstr "Mio"
#~ msgid "GiB"
#~ msgstr "Gio"
#~ msgid "TiB"
#~ msgstr "Tio"

View file

@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"Last-Translator: ghose <ghose@users.noreply.translate.codeberg.org>\n"
"Language-Team: Galician <https://translate.codeberg.org/projects/searxng/"
"searxng/gl/>\n"
@ -525,8 +525,8 @@ msgstr "Complemento de nomes de servidor"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Reescribe nomes de servidor, elimina resultados ou prioriza en función do "
"servidor"
"Reescribe nomes de servidor, elimina resultados ou prioriza en función do"
" servidor"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -552,6 +552,14 @@ msgstr ""
"Mostra o teu IP se a consulta é \"ip\", e o teu User Agent se a consulta "
"contén \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "O teu IP: "
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "O teu user-agent: "
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Complemento para comprobar Tor"
@ -1361,36 +1369,11 @@ msgstr "A web non proporcionou unha descrición."
msgid "Filesize"
msgstr "Tamaño do ficheiro"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Data"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tipo"
@ -1508,7 +1491,7 @@ msgstr "Sementadora"
msgid "Leecher"
msgstr "Cliente"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Número de ficheiros"
@ -1953,3 +1936,18 @@ msgstr "agochar vídeo"
#~ "Reescribir o nome do servidor dos "
#~ "resultados ou eliminar resultados en "
#~ "función do nome do servidor"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-05-14 19:20+0000\n"
"Last-Translator: sacred-serpent <sacred-"
"serpent@users.noreply.translate.codeberg.org>\n"
@ -558,6 +558,14 @@ msgstr ""
"מציגה כתובת IP המשוייכת לך אם השאילתא היא \"ip\" וגם סוכן משתמש אם "
"השאילתא מכילה \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "טור בודק תוסף"
@ -1350,36 +1358,11 @@ msgstr "אתר זה לא סיפק תיאור."
msgid "Filesize"
msgstr "גודל קובץ"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "בייטים"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "קי״ב"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "מי״ב"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "גי״ב"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "טי״ב"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "סוג"
@ -1497,7 +1480,7 @@ msgstr "זורעים"
msgid "Leecher"
msgstr "יונקים"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "מספר קבצים"
@ -1916,3 +1899,18 @@ msgstr "הסתר וידאו"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "שכתב hostname של תוצאות או הסר תוצאות בהתבסס על hostname"
#~ msgid "Bytes"
#~ msgstr "בייטים"
#~ msgid "kiB"
#~ msgstr "קי״ב"
#~ msgid "MiB"
#~ msgstr "מי״ב"
#~ msgid "GiB"
#~ msgstr "גי״ב"
#~ msgid "TiB"
#~ msgstr "טי״ב"

View file

@ -16,20 +16,19 @@
# ganoci <ganoci@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: ganoci <ganoci@users.noreply.translate.codeberg.org>\n"
"Language-Team: Croatian <https://translate.codeberg.org/projects/searxng/"
"searxng/hr/>\n"
"Language: hr\n"
"Language-Team: Croatian "
"<https://translate.codeberg.org/projects/searxng/searxng/hr/>\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -554,6 +553,14 @@ msgstr ""
"Prikazuje vašu IP adresu ako je upit \"ip\" i vaš korisnički agent ako "
"upit sadrži \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor plugin za provjeru"
@ -1361,36 +1368,11 @@ msgstr "Ova stranica nije dala nikakav opis."
msgid "Filesize"
msgstr "Veličina datoteke"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bajti"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Datum"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tip"
@ -1508,7 +1490,7 @@ msgstr "Hranilac"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Broj datoteka"
@ -1941,3 +1923,19 @@ msgstr "sakrij video"
#~ msgstr ""
#~ "Ispravite (prepišite) rezultat hostnameova ili"
#~ " maknite rezultate bazirane na hostname"
#~ msgid "Bytes"
#~ msgstr "Bajti"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -17,19 +17,19 @@
# Kran21 <Kran21@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Hungarian <https://translate.codeberg.org/projects/searxng/"
"searxng/hu/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: hu\n"
"Language-Team: Hungarian "
"<https://translate.codeberg.org/projects/searxng/searxng/hu/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -556,6 +556,14 @@ msgstr ""
"Megjeleníti a saját IP-címét és felhasználói ügynökét, ha a keresése "
"ezeket tartalmazza: „ip” és „user agent”."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor ellenőrző kiegészítő"
@ -1367,36 +1375,11 @@ msgstr "Ennek a weblapnak nincsen leírása."
msgid "Filesize"
msgstr "Fájlméret"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bájt"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "KiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Dátum"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Típus"
@ -1514,7 +1497,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Fájlok száma"
@ -1947,3 +1930,19 @@ msgstr "videó elrejtése"
#~ msgstr ""
#~ "Találatok kiszolgálónevének átírása, vagy a"
#~ " találatok eltávolítása gépnév alapján"
#~ msgid "Bytes"
#~ msgstr "Bájt"
#~ msgid "kiB"
#~ msgstr "KiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2023-06-22 09:02+0000\n"
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
"Language: ia\n"
@ -538,6 +538,14 @@ msgstr ""
"Monstra tu IP si le consulta es \"ip\"; e monstra tu agente de usator si "
"le consulta contine \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr ""
@ -1327,36 +1335,11 @@ msgstr ""
msgid "Filesize"
msgstr "Dimension del file"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr ""
@ -1474,7 +1457,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Numero de Files"
@ -1895,3 +1878,18 @@ msgstr "occultar video"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr ""
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -13,17 +13,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Indonesian <https://translate.codeberg.org/projects/searxng/"
"searxng/id/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: id\n"
"Language-Team: Indonesian "
"<https://translate.codeberg.org/projects/searxng/searxng/id/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -551,6 +551,14 @@ msgstr ""
"Menampilkan IP Anda jika pencariannya adalah \"ip\" dan agen pengguna "
"Anda jika pencariannya mengandung \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Plugin pemeriksaan Tor"
@ -1365,36 +1373,11 @@ msgstr "Situs ini tidak memberikan deskripsi apa pun."
msgid "Filesize"
msgstr "Ukuran berkas"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bita"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Tanggal"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Jenis"
@ -1512,7 +1495,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Jumlah Berkas"
@ -1831,3 +1814,19 @@ msgstr "sembunyikan video"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "Tulis ulang nama host hasil atau hapus hasil berdasarkan pada nama host"
#~ msgid "Bytes"
#~ msgstr "Bita"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -26,13 +26,15 @@
# feather1 <verdimario2015@gmail.com>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# unoyoa <unoyoa@users.noreply.translate.codeberg.org>, 2024.
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-18 21:18+0000\n"
"Last-Translator: tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>"
"\n"
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
"searxng/it/>\n"
"Language: it\n"
@ -538,11 +540,13 @@ msgstr "Sostituzione del nome host"
#: searx/plugins/hostnames.py:68
msgid "Hostnames plugin"
msgstr ""
msgstr "Plugin dell'hostname"
#: searx/plugins/hostnames.py:69
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Riscrive gli hostname, rimuove i risultati o gli da priorità in base "
"all'hostname"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -568,6 +572,14 @@ msgstr ""
"Mostra il tuo IP se hai cercato \"ip\" ed il tuo user agent se hai "
"cercato \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Plugin di verifica tor"
@ -1385,36 +1397,11 @@ msgstr "Questo sito non fornisce nessuna descrizione."
msgid "Filesize"
msgstr "Dimensioni file"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Bytes"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Data"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tipo"
@ -1532,7 +1519,7 @@ msgstr "Seeder"
msgid "Leecher"
msgstr "Leecher"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Numero di file"
@ -1974,3 +1961,18 @@ msgstr "nascondi video"
#~ "Riscrivere gli hostname dei risultati o"
#~ " rimuovere i risultati in base "
#~ "all'hostname"
#~ msgid "Bytes"
#~ msgstr "Bytes"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -23,19 +23,19 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-11 21:30+0000\n"
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>\n"
"Language-Team: Japanese <https://translate.codeberg.org/projects/searxng/"
"searxng/ja/>\n"
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>"
"\n"
"Language: ja\n"
"Language-Team: Japanese "
"<https://translate.codeberg.org/projects/searxng/searxng/ja/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -553,6 +553,14 @@ msgid ""
"contains \"user agent\"."
msgstr "クエリが \"ip\" の場合にあなたのIPを、クエリに \"user agent\" が含まれる場合にあなたのユーザーエージェントを表示します。"
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor 確認プラグイン"
@ -1333,36 +1341,11 @@ msgstr "このサイトは説明を提供しませんでした。"
msgid "Filesize"
msgstr "ファイルサイズ"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "バイト"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "キロバイト"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "メガバイト"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "ギガバイト"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "テラバイト"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "日"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "分類"
@ -1480,7 +1463,7 @@ msgstr "シーダー"
msgid "Leecher"
msgstr "リーチャー"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "ファイル数"
@ -1883,3 +1866,19 @@ msgstr "動画を隠す"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "結果のホスト名を書き換えるか、ホスト名に基づいて結果を削除します"
#~ msgid "Bytes"
#~ msgstr "バイト"
#~ msgid "kiB"
#~ msgstr "キロバイト"
#~ msgid "MiB"
#~ msgstr "メガバイト"
#~ msgid "GiB"
#~ msgstr "ギガバイト"
#~ msgid "TiB"
#~ msgstr "テラバイト"

View file

@ -13,17 +13,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Korean <https://translate.codeberg.org/projects/searxng/"
"searxng/ko/>\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: ko\n"
"Language-Team: Korean "
"<https://translate.codeberg.org/projects/searxng/searxng/ko/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5.5\n"
"Generated-By: Babel 2.15.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -545,6 +545,14 @@ msgid ""
"contains \"user agent\"."
msgstr "쿼리가 \"ip\"인 경우 사용자의 IP를 표시하고 쿼리에 \"user agent\"가 포함된 경우 사용자 에이전트를 표시합니다."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Tor 검사 플러그인"
@ -1329,36 +1337,11 @@ msgstr "사이트에서 소개를 제공하지 않았습니다."
msgid "Filesize"
msgstr "파일 크기"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "바이트"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "날짜"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "분류"
@ -1476,7 +1459,7 @@ msgstr "시드"
msgid "Leecher"
msgstr "리치"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "파일 개수"
@ -1758,3 +1741,19 @@ msgstr "비디오 숨기기"
#~ msgid "Rewrite result hostnames or remove results based on the hostname"
#~ msgstr "결과의 호스트 이름을 재작성하거나 호스트 이름에 따라 결과를 삭제합니다"
#~ msgid "Bytes"
#~ msgstr "바이트"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-05-29 09:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -552,6 +552,14 @@ msgstr ""
"Rodo jūsų IP adresą, jei užklausa yra \"ip\" ir jūsų naudotojo agentą, "
"jei užklausoje yra \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "„Tor check“ papildinys"
@ -1350,36 +1358,11 @@ msgstr "Šis tiklalapis nepridėjo jokio aprašymo."
msgid "Filesize"
msgstr "Failo dydis"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Baitai"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr "Data"
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr "Tipas"
@ -1497,7 +1480,7 @@ msgstr "Skleidėjai"
msgid "Leecher"
msgstr "Siuntėjai"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Failų skaičius"
@ -1920,3 +1903,18 @@ msgstr "slėpti vaizdo įrašą"
#~ "arba ištrinti rezultatus pagal kompiuterio "
#~ "pavadinimą"
#~ msgid "Bytes"
#~ msgstr "Baitai"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

View file

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-06-07 12:50+0000\n"
"POT-Creation-Date: 2024-06-17 12:15+0000\n"
"PO-Revision-Date: 2024-05-23 21:19+0000\n"
"Last-Translator: Obligate <Obligate@users.noreply.translate.codeberg.org>"
"\n"
@ -550,6 +550,14 @@ msgstr ""
"Tiek parādīts jūsu IP, ja pieprasījums ir \"ip\", un jūsu lietotāja "
"aģents, ja pieprasījumā ir \"user agent\"."
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
msgstr "Pārbaudiet Tor spraudni"
@ -1335,36 +1343,11 @@ msgstr ""
msgid "Filesize"
msgstr "Faila lielums"
#: searx/templates/simple/result_templates/files.html:39
#: searx/templates/simple/result_templates/torrent.html:12
msgid "Bytes"
msgstr "Biti"
#: searx/templates/simple/result_templates/files.html:40
#: searx/templates/simple/result_templates/torrent.html:13
msgid "kiB"
msgstr "kiB"
#: searx/templates/simple/result_templates/files.html:41
#: searx/templates/simple/result_templates/torrent.html:14
msgid "MiB"
msgstr "MiB"
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/torrent.html:15
msgid "GiB"
msgstr "GiB"
#: searx/templates/simple/result_templates/files.html:43
#: searx/templates/simple/result_templates/torrent.html:16
msgid "TiB"
msgstr "TiB"
#: searx/templates/simple/result_templates/files.html:47
msgid "Date"
msgstr ""
#: searx/templates/simple/result_templates/files.html:49
#: searx/templates/simple/result_templates/files.html:42
#: searx/templates/simple/result_templates/paper.html:24
msgid "Type"
msgstr ""
@ -1483,7 +1466,7 @@ msgstr "Sēklotājs"
msgid "Leecher"
msgstr "Sūcējs"
#: searx/templates/simple/result_templates/torrent.html:20
#: searx/templates/simple/result_templates/torrent.html:13
msgid "Number of Files"
msgstr "Failu skaits"
@ -1653,3 +1636,18 @@ msgstr "slēpt video"
#~ "Pārrakstīt rezultātu saimniekvārdus vai noņemt"
#~ " rezultātus, pamatojoties uz saimniekvārdu"
#~ msgid "Bytes"
#~ msgstr "Biti"
#~ msgid "kiB"
#~ msgstr "kiB"
#~ msgid "MiB"
#~ msgstr "MiB"
#~ msgid "GiB"
#~ msgstr "GiB"
#~ msgid "TiB"
#~ msgstr "TiB"

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