From 7be468d2134f545531906491425f006e647dcece Mon Sep 17 00:00:00 2001 From: holysoles Date: Fri, 14 Jun 2024 12:52:31 +0000 Subject: [PATCH 01/19] [feat] docker: add env vars for common public instance settings --- AUTHORS.rst | 1 + docs/admin/settings/settings_server.rst | 6 +++--- docs/admin/settings/settings_ui.rst | 2 +- searx/settings.yml | 11 ++++++++--- searx/settings_defaults.py | 8 ++++---- 5 files changed, 17 insertions(+), 11 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 011735b55..265a9fd41 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -173,3 +173,4 @@ features or generally made searx better: - Austin Olacsi `` - @micsthepick - Daniel Kukula `` +- Patrick Evans `https://github.com/holysoles` \ No newline at end of file diff --git a/docs/admin/settings/settings_server.rst b/docs/admin/settings/settings_server.rst index daba6d1dd..cf480683e 100644 --- a/docs/admin/settings/settings_server.rst +++ b/docs/admin/settings/settings_server.rst @@ -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 diff --git a/docs/admin/settings/settings_ui.rst b/docs/admin/settings/settings_ui.rst index a5d1076ec..1a6df9a17 100644 --- a/docs/admin/settings/settings_ui.rst +++ b/docs/admin/settings/settings_ui.rst @@ -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`` : diff --git a/searx/settings.yml b/searx/settings.yml index db749be77..d1e51031a 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -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: "" diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py index 93b04257c..6786a78c4 100644 --- a/searx/settings_defaults.py +++ b/searx/settings_defaults.py @@ -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, ''), From 1fe13d0ba4dea086654b30746fa3cc8f2645606f Mon Sep 17 00:00:00 2001 From: Bnyro Date: Fri, 14 Jun 2024 14:39:22 +0200 Subject: [PATCH 02/19] [refactor] duckduckgo: use extr helper function in get_vqd --- searx/engines/duckduckgo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/searx/engines/duckduckgo.py b/searx/engines/duckduckgo.py index fced014c1..feaa719d9 100644 --- a/searx/engines/duckduckgo.py +++ b/searx/engines/duckduckgo.py @@ -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 From df15c21b356c7d3a46bd485e7d158d9377bd7fc1 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Fri, 14 Jun 2024 14:05:41 +0200 Subject: [PATCH 03/19] [feat] mozhi: fix crash, support synonyms and definition --- searx/engines/mozhi.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/searx/engines/mozhi.py b/searx/engines/mozhi.py index 3858ca4ef..63c90084e 100644 --- a/searx/engines/mozhi.py +++ b/searx/engines/mozhi.py @@ -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"
{word['word']}
" + infobox += f"
{word['word']}: {word['definition']}
" - for example in word['examples_target']: - infobox += f"
{re.sub(r'<|>', '', example)}
" + if word['examples_target']: + for example in word['examples_target']: + infobox += f"
{re.sub(r'<|>', '', example)}
" + infobox += f"
{re.sub(r'<|>', '', example)}
" infobox += "
" + if translation['source_synonyms']: + infobox += f"
{gettext('Synonyms')}: {', '.join(translation['source_synonyms'])}
" + result = { 'infobox': translation['translated-text'], 'content': infobox, From 16ce5612dd0ef426b6851ab97b248595f3933d8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 07:59:36 +0000 Subject: [PATCH 04/19] [upd] pypi: Bump redis from 5.0.5 to 5.0.6 Bumps [redis](https://github.com/redis/redis-py) from 5.0.5 to 5.0.6. - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v5.0.5...v5.0.6) --- updated-dependencies: - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 54d80ff16..4674560cf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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' From e9f8412a6e4b399a3335da73b3d321104bb0c4fb Mon Sep 17 00:00:00 2001 From: Bnyro Date: Wed, 12 Jun 2024 22:35:13 +0200 Subject: [PATCH 05/19] [perf] torrents.html, files.html: don't parse and re-format filesize --- searx/engines/1337x.py | 6 ++--- searx/engines/bt4g.py | 7 +----- searx/engines/btdigg.py | 8 ++----- searx/engines/digbt.py | 4 ++-- searx/engines/kickass.py | 3 +-- searx/engines/nyaa.py | 7 +----- searx/engines/piratebay.py | 11 +++------ searx/engines/solidtorrents.py | 3 +-- searx/engines/tokyotoshokan.py | 8 +++---- searx/engines/torznab.py | 11 ++++----- .../simple/result_templates/files.html | 9 +------- .../simple/result_templates/torrent.html | 9 +------- searx/utils.py | 23 ------------------- 13 files changed, 23 insertions(+), 86 deletions(-) diff --git a/searx/engines/1337x.py b/searx/engines/1337x.py index 221297503..f9a0d0412 100644 --- a/searx/engines/1337x.py +++ b/searx/engines/1337x.py @@ -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( { diff --git a/searx/engines/bt4g.py b/searx/engines/bt4g.py index 98a8c3087..a468124fe 100644 --- a/searx/engines/bt4g.py +++ b/searx/engines/bt4g.py @@ -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('
') - 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', } diff --git a/searx/engines/btdigg.py b/searx/engines/btdigg.py index 588d62093..193785182 100644 --- a/searx/engines/btdigg.py +++ b/searx/engines/btdigg.py @@ -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) diff --git a/searx/engines/digbt.py b/searx/engines/digbt.py index ae78f1a9e..fd3d1fb16 100644 --- a/searx/engines/digbt.py +++ b/searx/engines/digbt.py @@ -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( diff --git a/searx/engines/kickass.py b/searx/engines/kickass.py index 12bf9c04d..311c2885b 100644 --- a/searx/engines/kickass.py +++ b/searx/engines/kickass.py @@ -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) diff --git a/searx/engines/nyaa.py b/searx/engines/nyaa.py index c22339dbf..f3862f503 100644 --- a/searx/engines/nyaa.py +++ b/searx/engines/nyaa.py @@ -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.' diff --git a/searx/engines/piratebay.py b/searx/engines/piratebay.py index ba58e64fc..e1f3f611a 100644 --- a/searx/engines/piratebay.py +++ b/searx/engines/piratebay.py @@ -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) diff --git a/searx/engines/solidtorrents.py b/searx/engines/solidtorrents.py index 3cad8e549..c2f7e435e 100644 --- a/searx/engines/solidtorrents.py +++ b/searx/engines/solidtorrents.py @@ -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), diff --git a/searx/engines/tokyotoshokan.py b/searx/engines/tokyotoshokan.py index 33f036428..ad0be1985 100644 --- a/searx/engines/tokyotoshokan.py +++ b/searx/engines/tokyotoshokan.py @@ -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:'): diff --git a/searx/engines/torznab.py b/searx/engines/torznab.py index 70ba78ab4..cfe7e2b4f 100644 --- a/searx/engines/torznab.py +++ b/searx/engines/torznab.py @@ -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), diff --git a/searx/templates/simple/result_templates/files.html b/searx/templates/simple/result_templates/files.html index 0a1424da6..01dfc3535 100644 --- a/searx/templates/simple/result_templates/files.html +++ b/searx/templates/simple/result_templates/files.html @@ -35,14 +35,7 @@ {%- if result.filename %}{{ _('Filename') }}{{ result.filename|safe }}{% endif -%} -{%- if result.size %}{{ _('Filesize') }} - {%- 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 -%} - -{%- endif -%} +{%- if result.size %}{{ _('Filesize') }}{{ result.size|safe }}{%- endif -%} {%- if result.time %}{{ _('Date') }}{{ result.time|safe }}{% endif -%} diff --git a/searx/templates/simple/result_templates/torrent.html b/searx/templates/simple/result_templates/torrent.html index 46cde2a65..befad2c89 100644 --- a/searx/templates/simple/result_templates/torrent.html +++ b/searx/templates/simple/result_templates/torrent.html @@ -8,14 +8,7 @@ {% if result.seed is defined %}

• {{ icon_big('arrow-swap') }} {{ _('Seeder') }} {{ result.seed }} • {{ _('Leecher') }} {{ result.leech }}

{% endif %} -{%- if result.filesize %}

{{ icon_big('floppy-disk') }} {{ _('Filesize') }} - {%- 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 -%} -

-{%- endif -%} +{%- if result.filesize %}

{{ icon_big('floppy-disk') }} {{ _('Filesize') }}{{ result.filesize }}

{%- endif -%} {%- if result.files %}

{{ icon_big('file') }} {{ _('Number of Files') }} {{ result.files }}

{% endif -%} diff --git a/searx/utils.py b/searx/utils.py index 58ff72bb9..0c11ccc65 100644 --- a/searx/utils.py +++ b/searx/utils.py @@ -332,29 +332,6 @@ def dict_subset(dictionary: MutableMapping, properties: Set[str]) -> Dict: return {k: dictionary[k] for k in properties if k in dictionary} -def get_torrent_size(filesize: str, filesize_multiplier: str) -> Optional[int]: - """ - - Args: - * filesize (str): size - * filesize_multiplier (str): TB, GB, .... TiB, GiB... - - Returns: - * int: number of bytes - - Example: - >>> get_torrent_size('5', 'GB') - 5368709120 - >>> get_torrent_size('3.14', 'MiB') - 3140000 - """ - try: - multiplier = _STORAGE_UNIT_VALUE.get(filesize_multiplier, 1) - return int(float(filesize) * multiplier) - except ValueError: - return None - - def humanize_bytes(size, precision=2): """Determine the *human readable* value of bytes on 1024 base (1KB=1024B).""" s = ['B ', 'KB', 'MB', 'GB', 'TB'] From 13eec44b65d19dedddfd85755ed2adab2a22187c Mon Sep 17 00:00:00 2001 From: Allen <64094914+allendema@users.noreply.github.com> Date: Sat, 15 Jun 2024 16:29:22 +0000 Subject: [PATCH 06/19] [fix] \!goi irrelevant results AND display more results --- searx/engines/google_images.py | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/searx/engines/google_images.py b/searx/engines/google_images.py index edd386641..68fcf6122 100644 --- a/searx/engines/google_images.py +++ b/searx/engines/google_images.py @@ -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"], From efd69c4ca96c90ad2238b89ee807399decff5de2 Mon Sep 17 00:00:00 2001 From: Jeff Alyanak Date: Tue, 11 Jun 2024 15:58:10 +0100 Subject: [PATCH 07/19] [feat] plugin Self Information: improve keyword matching This change does the following things: - the `ip` keyword is now case-insensitive - if the query includes `my ip` it will now also match In order to avoid too many false matches, the `ip` keyword alone matches only if it's the _only_ word, but the inclusion of `my` loosens that to be inclusive of users type a phrase (eg, "what is my ip", "tell me my ip", "my IP address", etc). Better answer context Previously this plugin simply dumped your IP or user-agent string as an answer. This tiny change just adds some text to contextualize those answers (eg, "Your IP is: 1.2.3.4" instead of just "1.2.3.4"). --- searx/plugins/self_info.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/searx/plugins/self_info.py b/searx/plugins/self_info.py index 75a2a76c9..b2e714593 100644 --- a/searx/plugins/self_info.py +++ b/searx/plugins/self_info.py @@ -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 From accc1c10322d9ee34b4aafe6e7a5dfbc785b5624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 11 Jun 2024 14:39:42 +0200 Subject: [PATCH 08/19] [fix] setup.py - packaging for 'answerers' to build a valid package Fix installing answerers when installing SearXNG through a wheel [1]. These files have been missed in commit d72fa99b. Here is what have been tested: $ make clean py.build ... $ python -m venv test123 $ . ./test123/bin/activate (test123) $ pip install dist/searxng-2024*-py3-none-any.whl (test123) $ SEARXNG_DEBUG=1 searxng-run [1] https://github.com/searxng/searxng/pull/3045#issuecomment-1961767861 --- searx/answerers/random/__init__.py | 2 ++ searx/answerers/random/answerer.py | 1 + searx/answerers/statistics/__init__.py | 2 ++ searx/answerers/statistics/answerer.py | 20 +++++++++++--------- 4 files changed, 16 insertions(+), 9 deletions(-) create mode 100644 searx/answerers/random/__init__.py create mode 100644 searx/answerers/statistics/__init__.py diff --git a/searx/answerers/random/__init__.py b/searx/answerers/random/__init__.py new file mode 100644 index 000000000..9ed59c825 --- /dev/null +++ b/searx/answerers/random/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# pylint: disable=missing-module-docstring diff --git a/searx/answerers/random/answerer.py b/searx/answerers/random/answerer.py index efdce0407..66147fa54 100644 --- a/searx/answerers/random/answerer.py +++ b/searx/answerers/random/answerer.py @@ -1,4 +1,5 @@ # SPDX-License-Identifier: AGPL-3.0-or-later +# pylint: disable=missing-module-docstring import hashlib import random diff --git a/searx/answerers/statistics/__init__.py b/searx/answerers/statistics/__init__.py new file mode 100644 index 000000000..9ed59c825 --- /dev/null +++ b/searx/answerers/statistics/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# pylint: disable=missing-module-docstring diff --git a/searx/answerers/statistics/answerer.py b/searx/answerers/statistics/answerer.py index 3c38243de..b0a5ddba5 100644 --- a/searx/answerers/statistics/answerer.py +++ b/searx/answerers/statistics/answerer.py @@ -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 From acf3f109b2a99a5e6f25f5f2975016a36673c6ef Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 18 Jun 2024 11:10:41 +0200 Subject: [PATCH 09/19] [doc] hostname plugin: improve online documentation The data types (list & map) should be made clearer, as these sometimes lead to misunderstandings. [1] https://github.com/searxng/searxng/issues/3558#issuecomment-2175058128 Signed-off-by: Markus Heiser --- searx/plugins/hostnames.py | 51 +++++++++++++++++++++++++++++++------- 1 file changed, 42 insertions(+), 9 deletions(-) diff --git a/searx/plugins/hostnames.py b/searx/plugins/hostnames.py index 3c699c4fd..2fdf1669d 100644 --- a/searx/plugins/hostnames.py +++ b/searx/plugins/hostnames.py @@ -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 From f195d98bfbcf96e7bf2532419b1f3804ebd739a1 Mon Sep 17 00:00:00 2001 From: Richard Lyons Date: Wed, 19 Jun 2024 22:55:26 +0200 Subject: [PATCH 10/19] Fix search_url building. --- searx/engines/elasticsearch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/searx/engines/elasticsearch.py b/searx/engines/elasticsearch.py index 7bddab1cb..c721114a7 100644 --- a/searx/engines/elasticsearch.py +++ b/searx/engines/elasticsearch.py @@ -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' From 7f72c48b59aa7f86e0f6d806cb15e8bff514f5c5 Mon Sep 17 00:00:00 2001 From: searxng-bot Date: Fri, 21 Jun 2024 07:09:40 +0000 Subject: [PATCH 11/19] [l10n] update translations from Weblate 3e3c194e8 - 2024-06-20 - Vulcain 0ffab2bcb - 2024-06-19 - LunarCat93 36809a19a - 2024-06-19 - return42 a97aff39a - 2024-06-19 - MonsoonRain 5d7cbca43 - 2024-06-17 - SomeTr ada44ff85 - 2024-06-17 - Xvnov 2f398eb58 - 2024-06-18 - tiziodcaio 11fde5415 - 2024-06-18 - ghose 7de1d0c22 - 2024-06-18 - return42 eeb9500b8 - 2024-06-18 - return42 --- searx/translations/af/LC_MESSAGES/messages.mo | Bin 18477 -> 18353 bytes searx/translations/af/LC_MESSAGES/messages.po | 65 ++++----- searx/translations/ar/LC_MESSAGES/messages.mo | Bin 24943 -> 24773 bytes searx/translations/ar/LC_MESSAGES/messages.po | 70 +++++---- searx/translations/bg/LC_MESSAGES/messages.mo | Bin 26710 -> 26529 bytes searx/translations/bg/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/bn/LC_MESSAGES/messages.mo | Bin 31089 -> 31113 bytes searx/translations/bn/LC_MESSAGES/messages.po | 74 +++++----- searx/translations/bo/LC_MESSAGES/messages.mo | Bin 10405 -> 10263 bytes searx/translations/bo/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/ca/LC_MESSAGES/messages.mo | Bin 19508 -> 19384 bytes searx/translations/ca/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/cs/LC_MESSAGES/messages.mo | Bin 20982 -> 20857 bytes searx/translations/cs/LC_MESSAGES/messages.po | 66 ++++----- searx/translations/cy/LC_MESSAGES/messages.mo | Bin 19685 -> 19559 bytes searx/translations/cy/LC_MESSAGES/messages.po | 101 +++++++------ searx/translations/da/LC_MESSAGES/messages.mo | Bin 20047 -> 19923 bytes searx/translations/da/LC_MESSAGES/messages.po | 67 +++++---- searx/translations/de/LC_MESSAGES/messages.mo | Bin 21072 -> 21036 bytes searx/translations/de/LC_MESSAGES/messages.po | 60 ++++---- searx/translations/dv/LC_MESSAGES/messages.mo | Bin 1462 -> 1462 bytes searx/translations/dv/LC_MESSAGES/messages.po | 54 ++++--- .../el_GR/LC_MESSAGES/messages.mo | Bin 25859 -> 25735 bytes .../el_GR/LC_MESSAGES/messages.po | 67 +++++---- searx/translations/en/LC_MESSAGES/messages.mo | Bin 445 -> 445 bytes searx/translations/en/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/eo/LC_MESSAGES/messages.mo | Bin 18298 -> 18172 bytes searx/translations/eo/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/es/LC_MESSAGES/messages.mo | Bin 20988 -> 21273 bytes searx/translations/es/LC_MESSAGES/messages.po | 79 +++++----- searx/translations/et/LC_MESSAGES/messages.mo | Bin 19338 -> 19214 bytes searx/translations/et/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/eu/LC_MESSAGES/messages.mo | Bin 20381 -> 20256 bytes searx/translations/eu/LC_MESSAGES/messages.po | 54 ++++--- .../fa_IR/LC_MESSAGES/messages.mo | Bin 23266 -> 23091 bytes .../fa_IR/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/fi/LC_MESSAGES/messages.mo | Bin 20311 -> 20187 bytes searx/translations/fi/LC_MESSAGES/messages.po | 54 ++++--- .../translations/fil/LC_MESSAGES/messages.mo | Bin 19578 -> 19454 bytes .../translations/fil/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/fr/LC_MESSAGES/messages.mo | Bin 21318 -> 21338 bytes searx/translations/fr/LC_MESSAGES/messages.po | 61 ++++---- searx/translations/gl/LC_MESSAGES/messages.mo | Bin 20597 -> 20569 bytes searx/translations/gl/LC_MESSAGES/messages.po | 60 ++++---- searx/translations/he/LC_MESSAGES/messages.mo | Bin 18780 -> 18629 bytes searx/translations/he/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/hr/LC_MESSAGES/messages.mo | Bin 20063 -> 19939 bytes searx/translations/hr/LC_MESSAGES/messages.po | 66 ++++----- searx/translations/hu/LC_MESSAGES/messages.mo | Bin 21092 -> 20968 bytes searx/translations/hu/LC_MESSAGES/messages.po | 67 +++++---- searx/translations/ia/LC_MESSAGES/messages.mo | Bin 7507 -> 7383 bytes searx/translations/ia/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/id/LC_MESSAGES/messages.mo | Bin 20201 -> 20078 bytes searx/translations/id/LC_MESSAGES/messages.po | 65 ++++----- searx/translations/it/LC_MESSAGES/messages.mo | Bin 20814 -> 20922 bytes searx/translations/it/LC_MESSAGES/messages.po | 64 ++++---- searx/translations/ja/LC_MESSAGES/messages.mo | Bin 22580 -> 22404 bytes searx/translations/ja/LC_MESSAGES/messages.po | 67 +++++---- searx/translations/ko/LC_MESSAGES/messages.mo | Bin 20766 -> 20638 bytes searx/translations/ko/LC_MESSAGES/messages.po | 65 ++++----- searx/translations/lt/LC_MESSAGES/messages.mo | Bin 18720 -> 18595 bytes searx/translations/lt/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/lv/LC_MESSAGES/messages.mo | Bin 11919 -> 11796 bytes searx/translations/lv/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/messages.pot | 39 ++--- searx/translations/ms/LC_MESSAGES/messages.mo | Bin 9128 -> 9032 bytes searx/translations/ms/LC_MESSAGES/messages.po | 54 ++++--- .../nb_NO/LC_MESSAGES/messages.mo | Bin 18684 -> 18561 bytes .../nb_NO/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/nl/LC_MESSAGES/messages.mo | Bin 20661 -> 20537 bytes searx/translations/nl/LC_MESSAGES/messages.po | 67 +++++---- searx/translations/oc/LC_MESSAGES/messages.mo | Bin 12211 -> 12086 bytes searx/translations/oc/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/pl/LC_MESSAGES/messages.mo | Bin 20926 -> 21187 bytes searx/translations/pl/LC_MESSAGES/messages.po | 62 ++++---- searx/translations/pt/LC_MESSAGES/messages.mo | Bin 20350 -> 20226 bytes searx/translations/pt/LC_MESSAGES/messages.po | 64 ++++---- .../pt_BR/LC_MESSAGES/messages.mo | Bin 20795 -> 20671 bytes .../pt_BR/LC_MESSAGES/messages.po | 67 +++++---- searx/translations/ro/LC_MESSAGES/messages.mo | Bin 19746 -> 21472 bytes searx/translations/ro/LC_MESSAGES/messages.po | 137 +++++++++--------- searx/translations/ru/LC_MESSAGES/messages.mo | Bin 27015 -> 27019 bytes searx/translations/ru/LC_MESSAGES/messages.po | 59 ++++---- searx/translations/si/LC_MESSAGES/messages.mo | Bin 6264 -> 6168 bytes searx/translations/si/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/sk/LC_MESSAGES/messages.mo | Bin 20766 -> 20645 bytes searx/translations/sk/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/sl/LC_MESSAGES/messages.mo | Bin 20191 -> 20067 bytes searx/translations/sl/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/sr/LC_MESSAGES/messages.mo | Bin 24183 -> 24054 bytes searx/translations/sr/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/sv/LC_MESSAGES/messages.mo | Bin 20119 -> 19995 bytes searx/translations/sv/LC_MESSAGES/messages.po | 54 ++++--- .../translations/szl/LC_MESSAGES/messages.mo | Bin 15518 -> 15394 bytes .../translations/szl/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/ta/LC_MESSAGES/messages.mo | Bin 23744 -> 23598 bytes searx/translations/ta/LC_MESSAGES/messages.po | 68 +++++---- searx/translations/te/LC_MESSAGES/messages.mo | Bin 19933 -> 19796 bytes searx/translations/te/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/th/LC_MESSAGES/messages.mo | Bin 28925 -> 28710 bytes searx/translations/th/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/tr/LC_MESSAGES/messages.mo | Bin 20629 -> 20506 bytes searx/translations/tr/LC_MESSAGES/messages.po | 54 ++++--- searx/translations/uk/LC_MESSAGES/messages.mo | Bin 26805 -> 26775 bytes searx/translations/uk/LC_MESSAGES/messages.po | 56 ++++--- searx/translations/vi/LC_MESSAGES/messages.mo | Bin 19977 -> 19854 bytes searx/translations/vi/LC_MESSAGES/messages.po | 54 ++++--- .../zh_Hans_CN/LC_MESSAGES/messages.mo | Bin 19573 -> 19448 bytes .../zh_Hans_CN/LC_MESSAGES/messages.po | 67 +++++---- .../zh_Hant_TW/LC_MESSAGES/messages.mo | Bin 18675 -> 18547 bytes .../zh_Hant_TW/LC_MESSAGES/messages.po | 54 ++++--- 111 files changed, 1657 insertions(+), 1759 deletions(-) diff --git a/searx/translations/af/LC_MESSAGES/messages.mo b/searx/translations/af/LC_MESSAGES/messages.mo index 17cbca0320163d553fa7b6e9a96ef723f12e30e7..c64c09c0bee4ac09b46282dc6f171758d1232a19 100644 GIT binary patch delta 4649 zcmYM$3s6->9LMqHUfy&Cd8mNWRe=CS1QioWOuR^1X=$V;iRSnqQd6;)b+kt9p+RF( zre&qrL#^~SqehlSH7QZlWRbmWvdkXLn3-CseSe;v$!YrR?m4^r-~a9&?)LhS9d#kj zxACEC4gXR?jOmWQMXL7yzc)J@6Gn9}cEe^&!mn-nAJ~)n8Cy?@HztC*-OV(kRq8aX1x| za4pti4~*$zj2E*pp7~8K1+8c}YQXD||4b$SE5b!siLat2@O5?HPej!-tbI}a2cS}1 zg39dGr~oJ9r8ph6ko(cm0MAe$IMaxFvB}zuIu0$U419(<1K*-1I*pphOQYV4vnFFF z>b+14$w$poZl8}u%`>qZ`S(+(qCp*&VKLUDI<}%xdDMCwHE{T+W{jp^7uL0X>h{dD!g+Ea%JByq@6Q1G@oQ(ab=b%zM2{q9y zR0if*@3byM1^6&3gKMoDQT<+WC@3{MY{PEUK>KX_0o&e&e%jmZ^Ru?y!$xXl(Rdri zq9(c*b!}Io##@aSZy9D%-;C<#wAex$E}-EMDih^=47k!}B9diOjcm7h05fns>J;y{ zzGppv+R9c`AYY?0@DonN6Ig_!xeBy9W;q3IK|LzM4XD(-j2dVsYJmNy$Uj8w@k#qU zl*_M)5|G_8Jy2(7FlqtUqQCjkCr+e+nb1JI_+k zi!Y%f+JzeMZPb7*s0lwt4RpxX52M~cg8DA}jGDk?yDN=AjgyGlYd=O}K5BtQu8s*% zP-@1Z_O=o=a1HAIF0#*8pfa!qHDCj3!WU2hzJdz)b<}C!jl^U=Lj`yat1yX^tuwY5 ze+*&&AEKZE=CSem($%6mJc?1c1$EkAL#^Ob>sR*qQB)uucnO|Dt=yB#-v{i3`XJ3l z-5v)u-&Yu;`~N)!AO4P7`9G*kc>B45#G{{j4l2MgI0R>)CVmE$(nbv6Yse7hFVq(= zo&PDY38*ccX6rN2$)I5&1x2(DmAZ|n0h&-NIgSeK6e=UsPCK-x;$}6AneS2T%iyvCk_|1J6cf zq85AO5@fs0v#5RtQCrZ4dhZx26CDNQUjv?`K?9vfeL7YTZMX*ci)$)S9cxh???Fv?Ki+{WQCo5W zb>CwLyMZL2z6)un1>~XnO+$?{6CcCdPz$+$ar*o3<4;&u8q!dEQiyDi8H<|W0qaWZ zBdEh!huWIwP^sLC`YX2!b*NLgquTRHsP|^0CSHJge<@!4{lAKWQn?Y+@nzKBe{B5$ zmAccY4C(iiuGyui_li*yjYH-(Q!yEzM2))>m6^Smf*)ZYJdTbcNgC>=yeDd+%dGt| zoB9ycif%!++dPlz*N$4*QB1`SRH~!-HIj>+QGu19ZpXE#EvZ1wb5k+-*Iv$`VFfP2 ze)tb2V$K!rfF)Q)y$rRY)z}4}L=F5Z_P|}Xeh8JxZ*UEIh+Y#npaNcx+TzAx?0+VO zFKMVkQ)0}mFb(w~X+=H><^*1i>BHTX-i|@)tC5eMx$;W)*Yg6@%6>$pyaU7W0xI?4 zBi#0$sIyhzP*5a=s8e5!TKRlb$K}`;SD_-`V{Jx#h+0wo4x=BBU=4}x zfgD8j`y9Qx|36SrYLB5-c*4H$uWgSibFWhZYNA}!zy;Q!sPDl@)HoH^Dh#7ujk@>q zQD@>lR3LS#S5jDSU)Y8o>Tl=)?nPzbBMisSQ7ilgyW{uR8_%O|L$6U>Q5=E^`1Gh? zbo`W%U`@h3VZmR!&G7^$rVfn`K9P~-4K`=hc_Q-%`|}Hm@&^Sc_lfWZXZ8CcEI4A| WW>4^!!uc`5n@2q84gL}+_526VGu7_^ delta 4767 zcmYM$3s9C-9>?(mFRvmmqFh8l1zN6xkl-~$3KYDg?kYBl#Ue7GfrJ63rsGqZkxjFB z2`ekJij?hZumHp$!$`Yp4KDV;G*r6uf{+P9Kg$53^=rBC6l*sEHP% zR$Pf1rxq)*9^3Iv9F0}6jKTcIp}?Ze7SxJ%qXs;Pe2kxe`PhXO=pF7(P>s63&ek_r zH>3J*L#4VMmEjjq0ltcf_!>G|$t4PkxEBe|+(6wJ$%e}~48@yJ8OTIFW&-~-(LB^d z<*55=t&JE#eI05ct*CkS+UxsAkbg~Zl!hcchU)MEdN6+?}7EJJP8GStA$ zn1c_YQtU@f^dD3v&RWk~FQWqd9F@s$99!r^b@Z?wN|6s$k3tO;Z`+e?dnP8)o`=d* z8S1{p_WCkZ;485K8&DHoMmJ8A(((5L7BUleYpp$j$eb<~7|ct*76!%>GR z1;^qP)WkKYOsz(3*&5rv5woecVgYvI1pF2?ZhDfN$%&}*XG$n&fJ*!W)?)vuMYZp- zK99=CA=Fm<9jov(D)ni+_INj$xu||sr~p=?`t3)Kndv}f=6~4#{J&2@EBO``zz?_{ zOF*0sCVH4^rX1oEqCB{>P@I|JgMY=IfWd; z*J0U#N^LtT1N+d69jGlhj(YswLSU<@kY zcpRzcKY;>^HTkFrt8p1_KpnPj>7IG*0^!%@+P>wCAH`Lpx$EgQ3VNs5op_w?CdKs#{3YCEs7=ewbfHq+g?nVWA z9B;vMr~txv+l65yIwcfFQD82!9Ql~-{8NOlqxSMGTR)Gf)c=nPz&pTz5}iLZ$o=Du9!yNY9|&Z0}(qUd0ud&cm-j z+AtE^Q4=1t?H#E8$L;kuP~%=eW#UR6`A?>Bm4-1GKHeR05^5_7P&byLGO-jjU?pmx zI@Bw5Ek@u@9D>iI0_nj1g`l?X4C;r<`=|_Eb8Mj(b!dJ<9Y!y29}Sp;I<3=i4i=&I z^f6RG`>lsjss9^B<4IHi?_d;uXxp!$0x%PenF&rT1r79PYcP+n6(rX>1OL=s6E|{O8qmafnKy8 zL8Y$K*8hooW1Ih?GS!3X{{^c5H>iof$F+C^wV>w7x}W{uLO~I=;!xa)TFHy3ju%k_ zeS|yk3Tj2oe8uVh2XQ#=L~YGsWEagTR6sviZ&-gt9aay|SvP{5RECAfI0)yt&33^tVd<41@+YJLPs~gN1+}0LkYi$E`BkERa|_77RX{>P?u9TTy}eQG5OdYD>CM6TO4l%S-q$Ud0@2oaVkS_M*n~V=10MWh#hhVlljs z{A=K38b)Ilsy-W)$_2O!??X)-cB{J;Lr{AhhiNzumthOm<3&uyqTAdbC^a~j`je=I z_MjhwoFZd*8=6jR!T{>floz`ztU#r{7PXSKs4duJ+n+++e;5_eQPfs^iZOT<)$eB< ziy_n91>{npi2=kl2QqaIht;bO>h}TgAows(Q0tukr1J_Vz<2ou3-%PhY9CbYdgK?5= zzXbaRsMC4sT-s1HwHO>BE(Hp(NcNhEH zM$`w(ALFNm1r_`AQnNgsdg^y&Y!40{H#sRcFMr}Ve{beMk9THM&FUKe_3TUi9nXzF W(BH9TQj<>ud|vdZ+q0o$M(}TyLhB*` diff --git a/searx/translations/af/LC_MESSAGES/messages.po b/searx/translations/af/LC_MESSAGES/messages.po index e1790317e..783a68dcf 100644 --- a/searx/translations/af/LC_MESSAGES/messages.po +++ b/searx/translations/af/LC_MESSAGES/messages.po @@ -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 \n" -"Language-Team: Afrikaans \n" +"Last-Translator: return42 " +"\n" "Language: af\n" +"Language-Team: Afrikaans " +"\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" + diff --git a/searx/translations/ar/LC_MESSAGES/messages.mo b/searx/translations/ar/LC_MESSAGES/messages.mo index 4b6c9edfa8df552234b2c08d8e4cae22e965aa61..d62889b392b5fb7a5ffc75f4baa4ae0b49d31695 100644 GIT binary patch delta 5327 zcmYM%3viBC9>?*Mh#+x`+~j_bga|K*mmnh12oh0oCk;l$B^c6eD{J#?6RIXfS0}d3 zZnL^owpH5gYpCf|t-5q)%TCHz-E`GjY`1h;+eX>d*zYgTnc0r5gj#@QqY7IsI#d;9Z3ypCv}*B4XB;}7B%iTYDcG0 z{o1Ynz@F4^p)&S8>h5%+)`?^i1&|U${4H_`kItlwyFGKBY5o*C&`@9adU?V1C z6RQ7PI1b-Ojk|}+U_WlQ3_}GFg$g_^mi#M{u{4BYF)GCitgBHAZ9)aO8S`;FYQj&f zZCFhG5^8}s&aoe6qWXW3)z%u^p!a`01*Pgb>Mi&lby)%vxhR-`Y3N106_wT{*2ht2 zzY-P5)2N*`;5^)pd3Y1mp2XKmW?``2e=h|cK@lqQS*XY>Q5ji{TA&uYCbsR{QRA9X zJKSgM=TQBxpaS|Dc@xbKs7o1=>~1szgIV9?Q5c5BsDV$S7TSUeSq12`2w z#4HR-ar=8wDK11E>15kJ9fwk%kK=GF=HMxGw7`7|I)WalZlsZ@2|UOeW;AN23vGLi zwH9^T>rmsL#U;2Kb!7LDue*t-qWMOm0?0#+dn%3mE5(hrLlg3iFuPExJBYl(<|qc> z1=PUHsKBn{M(jcUyW=yc=UZ_wzKHxW$N8%QZ{R{4GsyjoXdXoVN7HbWhDY&Rj0*THj=)b)ck3bQXnQhgAci^=bmq~h zi84_c8HU7Syr>;jp(a?3LHLBNYrH0U4%L4rR^m}q0O3R2vyR3o)XPzsco}tfoUbY9 z4n$MaCCfkskc(PyJZhq1)I!s2eI}~kT-#oS+Q4#Kud&vm=BdM8*oYap9huiLM=12B z;eFHuAEPEdkHL5eHNiCu!duq6sDS*q+Wy!RH9i>C9)cP_5W8WjeV&1RsApq<-v4nF zG+<&^1D{6JL}jRjE3gkPLiJmPdcGbN=u@bL9MnQh_W4d!=9+E21=W8K>cjRs4AlF7 zfT+F01#kzo^Z!`8XS@CTqwY=|YFrj-fzhY{3s7IwV$}TeP?>rhHUA29 z6yZh++F3nn;1=xK3F`IRi8`|bsK_tkV!VyI?PYwu;+T0cYJ9!NeTz1u#=nZ%$Oovm z;S6d+_dVoakp$2x!%>l@BVS8167}hvje7mo+4`rrm-=ngM86p6_WLy|z$4c4IGOrQ z`#hV^9=}(n1aq-Ehx`ws@Cps(cp4QzI8QZkGS=WwEWj2VkL?(WQKQ_Q4Mhby3N_yh z+x|3qsXv3Mc+A$XU>5ZVho>4?ggSysRH~Mt2CTvLxC{S+0er2L($8@$-a{Q#&KNh~ z(U?NL2otc{wr|A{>bo!<_hJb;f1=PzA&lQh?c9e^c*55IiW>M&RABc}JNIXG{vX6d zpaRW79pQYOiK}n|et;VHBPuh2`~c{;A{%LUOg;srdNTIKnV5`AFdR3dCTKw|{2D5t zqt-v70&Yir$~#c~vpFZt>qP}th}=(8fttS&%k}>6qmW3$T@1j;eAif1q)8Zq9@J}A zhPs^dQ4{?Xxi+R1p)z(D9i91k3L4Ok3g9NjV+U$L zSfQKp;i%LWqWVoko#_HpzXsGit=2bC{SMZPa&*W!P1BPtU=dBn{`6KdRBSc(@>DNibP$JbgN>_&SND$_er^ByZE|JuTDX)%Z{gnCb4kv8d;RP#MWV zJuk&(z5gpHDAG<$!cpb!k<7zo)R&+#a0WF|yY)*rSdD(_zu)U{tMlDh&3KVXdi+xI3Bg(`3uRvCRj{^B3q4m&7MF_v=yh~Zu|W2 zsD-{ljr##Lk^dq$uwEENJ;^%OIvdq*9VXzDsP%R)BL5oj8yb|lW2lMGp%%J~1M!A! z@5C7Dy(-;)X{d>ZqbBsCc3OZMKNGc)DvZOmn1;`z)_d2Xpasuhe{8c}LrwS{>aBQy zS}6W8_aBjIs0qelEY84iTw`stzKmJ4zm22tb5w>ytK2}HbP9@aG$!I?`(OnsusV#! zEvNwZSbvWicM{{U4HeKgsJErtVt0WY)Lkk@y~gjLNm{yOZFSe*zWrh4e!d6c5rMvl z*fxLPt@!VPeAhCYy7|@*ecQjM$D8OGk>|4i-yZPduEH>1TG7c+ P-`zPA0(}!JvjhGIV@5fl delta 5470 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 diff --git a/searx/translations/ar/LC_MESSAGES/messages.po b/searx/translations/ar/LC_MESSAGES/messages.po index c6ae7179f..a4b2332ec 100644 --- a/searx/translations/ar/LC_MESSAGES/messages.po +++ b/searx/translations/ar/LC_MESSAGES/messages.po @@ -19,20 +19,19 @@ # nebras , 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 \n" -"Language-Team: Arabic \n" "Language: ar\n" +"Language-Team: Arabic " +"\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 "تيرابيت" + diff --git a/searx/translations/bg/LC_MESSAGES/messages.mo b/searx/translations/bg/LC_MESSAGES/messages.mo index a43958ff6f0c41ec082832f2f7beba579cfddd39..a56363368b44c61b9f99eff5ee4e1a62db1a554b 100644 GIT binary patch delta 5230 zcmYM%3v|!t9mnw}a#{Qn5)nyAN^XQCBykr_FiBX@6rnB=w-I%l*+RFmUv@IorK{2? z)l{iV=hU?4ud1hYSxeo{v?R1rmo=q|%{kqiZZxUAKYgBa=Ja?y&+~gO-{<>#p5I?D zeHyU+lK}5pR8WoKPkw+g2^j8E?f-w8+8Pr~wHf0uFxr@Qn1E{UiAmVs)hFRks84gw z!4T?;FbtPsI96k!F`ijZp%o36uoQ1#5Ds7!4aj#Eqb44YeXtxO@kQi6vx~nv;`^w8 z8ZZZ&P~&>USo>lD^?b}=eN#=LD-HWm3x19Y;07ugw=os(V@qrwYfL<*Aak2Rn1SO^ z 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\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 "терабайт" + diff --git a/searx/translations/bn/LC_MESSAGES/messages.mo b/searx/translations/bn/LC_MESSAGES/messages.mo index af2543eaf9c18048aa66e46f2085e4f0e1c51381..8095a3e90a997f90344b4d74e5bd7a60932d027f 100644 GIT binary patch delta 5188 zcmYM$4N#R;9>?)>5kwJ95fBpL`U=X6pn!-dTfUX3_-+QINN6g7a8Yqwz3XDR>gZ~O zj<0FMUL4a_y}fNyVOi#G*|zzTx@x!9RU6YZD|gqOb-zE)Gn3QwdCqyx%m4h(IS=>t z53V(LT;59&!HtH0kGhPB!;~zKP*@6h|84HJ|g)o{DHjor1kE7?+|ttZ-b58hA5i;V$fmr;z{5Klxug-a`fS zaI`TQn1||D>9`n2P+oz_%x{kJkVM7zs0m}b*Z_K=lF=7?VJ5c48Q2xeP!oGG85>dk z-$zY&0=4qfs0Cd>wf`Dt;$3WHelwlCcETIj4ew(s>=tV~cE0QzBn%trN_gPLd&Dv;lx zPRj<=soah!==~!PYIp&a+N-F&{LZPrgQ=ANhk2ONlg}2;Lk+wOmHPdt0N+9NKZA5J z7f}n;_fGYl9Al8cy(WPN4UmkbI0UsrnlcqXJulOPSy7=OKiOK7DM16zoSi2l>yG@xRHq7K`u_vI{0Rkv3S2 z6R{DwtL7?h#NZ@5P9x5yd<2#0o_%db(lCViO+F9WlaZ(!JOdSR1rES!)S+rZ4R8Qk z<6Ee`Zb2>JGYrL3NDSrzYQ@2!*HYHcGNt+ltR9GJRG1x0~~Z-yn!0vU2KJa zcHW;rt@tD=fUi*lU2)1c{I0eGUEXUhhT}SF$eZc*y#0vU%`W_c(6?y}F2yp`AC8Nt zdvFJJj9Sq+9NpL(Q&Hdf$#@ReIrZfOjrmYzRR0N?B$Z2NX0dhZxC%AFKCHtdsDTD& z*cG0;358!fqgiD}_TTq+y*BlPDI-a9q8h(!v zIBGE8Ih=tL@GJa1rt@Wu#UrQ{pU3`q6*W$mA;yfxRMhcYgyYHZNz`fRG1Okb0@P;h z^zxvH_Moo%A=HXbp#ljXW+zBMvSWFcS;029?4OupY0Y8>>dz^Su!jNF!=x zhcFSp#4dOrIoGDkDEs&EF-+4(wVns<EqETkz+gPUhRVZu7T?4kxbZQ&5`K!HbZ?; z{RU$U7CPl;kc(qhpeFL8GII{Kz@Ly^GHu3^e;u|09+dieQ~(XA>#-ZNU0g@h3cem^ z>x0MJ_8l;v`gmM|Poesqaoz`TI{j~<0(p$9l!TR7g zT|w<}%oBE{Sy)4P1!^U?Q4>YZuq*F}s?WvwSb{t7IIhR?C+$M+pxQ+h*>Q7FTfGw3 zqIVMy(LBTz+e0@Hm7>uYixW`;EWoGO%MDmb`9_JoM#WFrm25%nX%og{6TfsTd9 z4Kxcd0uN!K?*E5QgUDI7LppNv%vj7}!Uj}8pO)Hy&Y;f9E#w@T8MFDjM!S934iA;t z-!Sh!ZU1Pw%h_JqZNm{bWe!_OyRA4`_rD#Z-QdMcREo#VbAC*rCSHqK_#*OEHh*#I z+mQE7lq0YwHleoiIBJFeL3YEmUtq_XiyFTg^#NOrvCMDURoE@)ja@0{p&CAc3ZN1f zVjad1`M0P&3}PR)U<97PeRxdm*av-p^68X^AEFMcixaHC`e6(XMXxHR@eq#lPy;VU z)jyAFxYhA6>MVSMYJU^e?w<3$Lk&O3C?}%cuR^`wgc`TWDZhpa=;IpluZLSy=mQb! zvDYIXwelL&`(L95`~xa8hn@Q4r~q%H+K1KJPi`ctJRCLgI8^@ zdGQWLP(F=1#n(^)gf6nzDIGQ7B-8-29qSx7U?%lVsI5GQ8viFu!R zAphF$26gk7%)1pDy(ZvmdeEdP;5!)bH3pjNsc9Hfy*+IIgK-$J+5b)T b0awEg&s$-e1I;S~zQcj$b^eL9?vVcj^o*q8 delta 5164 zcmY+{3wY1h9mnzW&xMG%H^?IKcMFk_kbff5xL->MalZsnNt-5uT$GLdJEO&1N~8>1 zhb}Sc({}!?vaUwwGR*2}jkKP2QKOGbbuOE+_UYaq=RDmrkH_nG&hK2l=X=iiCDz>Y z+_~%Vf8H{r%J651$C!5L3s>oXf3lu1CY0hBY>N{x5{q5^3hY36wJYz#hLqoO9>fNe zk6>dwi4piQ4l~AY>Un5FMI56}L?4FW8dQf3&h4l`s!6lw@CqseH&Nr=MYVr`vzgyCA+J?9A6sB>lrb?FiNTnH>evTcVkTgu4kE>BD--{aP7-~gl zQ0*=|uVWbHJE)93LY<)yI%}SoX!5TB;;GPtK2(Q6&QaKu@&we%=AtHC>fXPAns5zz zaTBWjepKd;VkRC(^$+5NE0a;q*mmS!k#wR$D@Z~GGz?qeI8>_Vp(d(81-Kmh2siRO%0*0z8H4e+3!B z+(0d`N$1D)eiLgSOczw-iKqe6F%L(g_G%yUT{q`Y171Z1a0}Hho<>S-D(Zbdqb!?fE&>IDf;2com7oe1*zbB&&LS|2y!Y0lK3GOhpaUAJt(P=Hh%*0B2Bp zeh#0)&;*;2Y}6UrgE|Z6P>1YuQ~){Jnq@eoG#0bno^(#S5SdNWx8LIzk4988*orzQIgf&zI@!|~(#^0g_dIuHId#Hgv zaPR-(-hYHzX&ow%YpC`&0}sPeJpS7rhT$4&sQbzGm_0)6UJSoM=$kYSb?gdJKQFGJ z&i_Ny@o7Zk2#munn1cGwPs2}eldCUE;ism`sQ#0EB$vx(3fL-jT#I_~7HXm+xCAet z2Fy;?Z!gBYg!%Yq)b939BcZqq)$gX$L#JBGZLkvmh|6&bmq7FUHJ!t)-MUJJI)06l zF|@Be&oglqK^@DV;aD<#9d#totd9wd*(L>cu1h)0_I>48>~!Ba^|BZsK9JojY?r1D)pXW#{3kUq8B$~ z2nJ9A9mFnp9=qZrY=a$#^I6l!HG>DX%@m;qtVT^3z)$f6YQSA=sI101ti_JFa-{wJ zum;utBxJyiR#C9>9SU?1~?t0&X?Ymea5o<(!G+UlFdPA^|s` zQusSmU>~C<_y(2Y*h#jd4;N7`Kp)nj+Bf0j5s7KY@i1Aa+pqQ7OTeTmxZsHt|PX;@0xk6OuH)I^cf?8*~R^-tn+I16{;DO`^Q)9pg;quRBe zVaN6NhE9?cwvGGBgsSFb6e2G0tKyH)09p+qw1@<<7DT*@oKEUt=sr z&bF!dImaP4(Qk@*Xi0gUC6yLoeh8nlYHpgj-Mnoz1fWT|}LgJE%|e^tt?e zqg^dF#{Ey*-(?QZvp>W-f!B$A0L8G=@%@_!0VbYMXJC64|1acNm}aGRoMP1YOHt#kbLE|-?*6|?g#xKV zeHc7t_EvO7t#mr-{XA4)>z&(C8L4sa-$w;_4b|^E?1_!aZ8;qkz+hCnoO1H70g9;5 zN`B&AyoN0)zmGb-=THHBjUBLUg&imZ)qj+8j&m{ks9%TLx}&J^KSKqipWTU&kQj;qeCdKwo?a@2co1C7} zD?K5ZKjB$\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" +"PO-Revision-Date: 2024-06-20 06:18+0000\n" +"Last-Translator: MonsoonRain \n" +"Language-Team: Bengali \n" "Language: bn\n" -"Language-Team: Bengali " -"\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 "টেবা" diff --git a/searx/translations/bo/LC_MESSAGES/messages.mo b/searx/translations/bo/LC_MESSAGES/messages.mo index 4c872adf946c7d7b5f5fc04a22c31a86a268d11f..132c6006de0655d623a93048fbb4d8d112cbe9a7 100644 GIT binary patch delta 1886 zcmYM!Sx8h-9LMo9jy9T(WmcA%Go?0CST2>0l|I-&5mbiS0)|vZizFeIv`s-61r}vu zMGs{Q(ehB2dI+)=L})LgA}VNshy;TQGNSL#InZ!tKIebWJ?H%I|DHQ%%G(!)-wumz zGkog#rtv-OR`maq;4vnK(2E=<**XRjh%+#Rx%T`f97ntZv+)FGVmHQPFLIdQ{ERgw zY@%X~(VBi7hM71N3sD2+*to*RwWx(Rq9)pbK5WK8cosR#CF?azB)*9w@gZv5C-k$v z`DQy3Bg;C`I>kB_l~53eUe7UVFy;;DZsjTWK_ zcn-CB9wBp^K2#!qP$eEpy_H}FYE$MTU8V>FI2*Na9cE(#>bm2o8|^?<_&jQUCxQB_ z(a8x7?8Yd3jGFivs-*8w6MaBEf-k5Ed#yi_!~Eq(M;XW9 zMr_1z3k}_&n>y#B2Me$WwLqPX&)WDk&f)xU9%wpN;~w0Gx;}bDxbcyaFF}$vZOCIZmr<4I!VCBVHST0a zq+&g&1cKCE;})S7-hg^kEt%9`C3(gPP1ui`FexjtU@0o&ZK(bOs0q&Cbi8N#`>}#J zaY7`4m8k35F@)D}BK|>@KER?ZW#$G*Zy+O1RB@sO^YLS#b(yEmx$imZYF!)m#i<(H z?`o|~c<%(gK38mBp+7IbIB%L$lh_sIlqEfmaYm-hcAu(Fjdg0quX8&OvR+30143%Q Ang9R* delta 2007 zcmYM!dq~x19LMqJ{Ep`Bn74Fx^|}7SU7$+b|rgvSK#k_(vHQ zU5~ZVWD#t^)*nHK7Bn4pK_O~`Fq}|X82uBCB5n4!?6=zwh&Vp5OC*zQ5;p zzF+lAD10|P=9uBLjqfzRy3Z6tIbQZOMUep5q#*gqG zDxs7_*KAB=ev``y*UVh&0@R9@q6So>5)0XQEh@1_OvYv#Z$Txp1Jke*^Y91M_&=?e ztpgZVNv?6iVMh4TiXNa6c!Da`b5y?+E@t2iq{)<`O1;R&l~_z%i%M)4Dxv*28Gl6e zKX2_#qW+U;xMCarK@Ky@&lG%w`8a{PYBLq1R#J;fU=1pvMpVhSq7vPM+Kk<(`<=i7 zJdH}=FD%4cKI*TIZ)nhpV@O*i_n{`pwE9s4=b(e7s6^(YCMdIU5Ou%LP>-kBK` zJu;Qqh#I#g%!wx4g_^L_dIZ(6$NDQOf!|S?_u&Wl5HERH0A>^SQ*Z615!CB8hGiJf zPJDm?oQef(5G58~&dGP2)L;Y$F^FGK&k&wM4S0szF@<_-<$JIMyKo*}L{0RsjSG3M zitDi&kK+s+#l85(y&g85neK&t)D1_isq8!@unaXYf=zf1^$0Rp{v6Cgl{#RpvaYa( za1+G>`0jpos?fD5Zp9lEd%dr*lyMNODT z{exJEMYs=HtT~V5Vun%uUg0{N%DY;MTMHwJabL#<+P8h#7Tq3q!sBcTM3NI8L3BLf zwZ{{PJV_e!wi4d-`91L^pZY&8EuUW!eUUuqM4qN)#P&t*^_`CPr4Ge9Re|W?tf1HV XJP;k4?1^{kFt^p~v<9M!^G2L^jC0h4 diff --git a/searx/translations/bo/LC_MESSAGES/messages.po b/searx/translations/bo/LC_MESSAGES/messages.po index 245f57ea6..904a0b4b6 100644 --- a/searx/translations/bo/LC_MESSAGES/messages.po +++ b/searx/translations/bo/LC_MESSAGES/messages.po @@ -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 \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" + diff --git a/searx/translations/ca/LC_MESSAGES/messages.mo b/searx/translations/ca/LC_MESSAGES/messages.mo index 019e87510ba1d88e1cb11276bc70d77a2c8d101d..dbaa4594f3f60d353bf3464b9f11c03aed0fe7d7 100644 GIT binary patch delta 4730 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 GtLHyD<=htl delta 4850 zcmYM%2~d_r9LMp6SMF5giaY?7S0n=k0R>GE1w>3Usn8%XB{lOxOC7bxBh%1|n#iLx z6H6_zd8O>MjBK*9Msp%6ud=cOE1jCkQv3dRcBY2mv%Ak8|NZYi5BBPMzn3=nIVU69 z)fxUv^fRU_4h~W6|NqJ(j0vDxfw4Flqj8CCe+;`*-(c&nV-WQN)6ns^U}<33a%?_(UEKn3zIreR!^+y6#u84jnt z68qq@*qimuQ3_i4B8K7>OvF%T?}B|%14>YVEkFgb61B6nsPT^>KW06@CSn8DVfz?k zx?w$f@EuhD_b`I>&4(1UqZ6nFenEcBMSkUAr>jXnjzTT?JgUFX)|;#!pvE6TrT93u z#~)Dv|B3N<1+}qw&ePF^gD5ESd{oCWYb6F#pN6^?bCDmjm|t4xanwRvQT-aM`>+G` zw^1AU1hvk0_IWF6oj+p9e*%R|G-yEFHExPha4_{W)C99oDO+W&K?U##D)1*!N9RM1 z-@J*+&=J%^U*iz`5j9Wm&aNq)$$udY=`?7rff1 zM@{?!YTWC#{XJCwk5L;tY3l*J0_q=wA$tG46u1|rFY2-tqjp${TDThf;(e%rdr%AQ zM+I^Sbw`>}m+uT-hkv5_B__BT?Tb3v3{?9dOmQd_QW%W$F#~<5iN8ms{C8At!eQRC;~BwUF)qVJGzoC#x+w)a1Qf&xfF4V;2pY%>RSR%?;_ zW9m?M!-xEsef(O4U!X44xSsC#@pvuuDpcxgaU8yaw_#YK`>CFqNd5=X@E{Fiu?e|n zCWNgBEaWN|Ju^5aMs7&2yor{`(3Hqb6 zl7dqD0BWKd+o2XU(R%y5-ag-f+DQW{kT*~h9{|0pgmr;Qw^)aRrb5WOVD>nNvAGT#O#r;IrB5$1W zp#nIDJ@G3H*86{jLI?(@x`9NXCg_R!>z0iAFy-O|yai{W4;63%Und2SgnF-YP~*p- z7Q7idVg>S%H8Zgnu0=2;437CgVkKPt1@bT|;3uq`(>VWl8n)9=jR)}s9Kg$}56~IZ5nRT$JJR264?<<6 z2Zmub>WB((C{Dt~SdZFJJnv>CdQo>J+nS$2{uN;f4Vs`FJK{p?8q|(AU=|)k?cg8O zg#MZC&SFsQai|5ns3T29eb5GCd%PJnZnCW}a42ZORrWz0YUjI96COmR?j!3l)Mfe# zBk&R`L*Yc1i&3b|l%g^=!#W4`Hr#`{yem)vIh$<5PSjmEfZD;gI2zBPCK}8IkwdWv z3sFb+Fh=7Z)KMHnEp!BR6em#sPKf6_ul@s(7s!+$;~cY+g3f3oDx#-RJ8p10n3rw) zN2nctVe75di>QEuv)#+s2^BzBR0fk#&-)?&1TfjCjFq*ubN=NN6hM`IFaz(VJ{xs6 zj@$Ngs2!e19nmFB!q^;l;XKrWCAbN1LXAI%I`hk@4MYrbkI;)rtZ#}aD5BZcdDaDZ z4eg6juUQ=`fUP(KcjG9GX=@mPtvyvtDI)}ZFyVW0c( z3F=2tflYJr-M>yVQI~0nbvu?(Ka7*mJB*u*tFZ`uI354S-Z*(U_X5{pA51CW9mnzL z!Q-gZpT=%@0RzwpCy!ky#Gq1_j(RW*xnHIjb-7ldGVrKZO6!Y!yko^EQh~uZ z9iy-s)o(Q_podT!c?xyZ4YvIQbhJQ=?eLd<5K`j41+l2Wu0u_bfts)YmGV;id*|=e_+so*C48Cg1NL+;2caT6#`qzs48)\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" + diff --git a/searx/translations/cs/LC_MESSAGES/messages.mo b/searx/translations/cs/LC_MESSAGES/messages.mo index 62872c5e108800ef987a6dd2dd991aee972f7f8a..6a398ff46e63bedbb50075043e98e04e5cabc58b 100644 GIT binary patch delta 5323 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, 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 \n" -"Language-Team: Czech \n" "Language: cs\n" +"Language-Team: Czech " +"\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" + diff --git a/searx/translations/cy/LC_MESSAGES/messages.mo b/searx/translations/cy/LC_MESSAGES/messages.mo index ecd5712b838a2a29926b110f74cb7ad802317276..ab97bdc453abc75348f6ff4648b207e7072a1191 100644 GIT binary patch delta 5164 zcmYM&3s61iKty(q4`XEVbv^dl6kFzs%96!5z_VM5U z?m3WL-W_nYCBW(T1vMM~$0lK)5=>S)l;o<=RW&34#VIcOnI_597p%-K<(%bE<_JE zGY=P`+J9)>k2;bzRH~1m0)HPBcn>OL|3J%d zTzInBp?3bc^**Y9=p^^< zM59;leMZf-XrTYG4!Uhf6DJryZy-+0*X6p; z8&HA0f=X$#t-p!-FdatCa{_flpP<(H6qE4_)W)6IsqV!27)?V7YT{aJ9ct(Gw!Q&% zxwfJL-fN$?TTh_w%m=75K4aT2ppNDiDic0_O(G!2#8OblBuv08RK!nUC9c8Icm#Fp zKeG0q7WykH@C&FN-a(D`@Pk3A9)+VZ1J%C_=i)pZ`u%_ZP{Ej=VIdFRLY>WL)Ijx1Su{}-)u^NB#$5ao7hvjR?$K<;H>tmY$@plgdqk^o=+lZi`$k*eiDRiB zz##0zNvvvbbywa?1W>Z*>n{XBW9VcTMuY!)I0Y~9>)B*=lM{^i8QHS*;YG?1E?#c(& zbErVB;xN2v>;FL~l!p8EK}fm#zfdAk1By@!m7)4o+xnBJ46U{{px&abs0_Z2VR*pW zh6?m3DuCmt@m=NQKaj$oY{MDUL>Dm(zd!|YA2l$j!kuV1Dj*+f!8lt_MfJ-@%`+2~ ziN{gvd>s|Y64bma^xt1vsGbHz)PPF$R@6khQ4{P(-P(54m$DPXu?Mx#-%#UkqQ?K% zw)-mG_5^DtDu4piJSEF0Xo2}S6cOt7)?+wsvhCYY3+zDcP(>_eVqo{>@u?`1N z3)J|-qS6EW1<{`c`_tln>hX7v3k~=8ru-n#zb38S6Ph(GK5I%|R<1ujJvPu^oYfrS YKR@lh$KRLd@%k^8&I$78RJ`r^AKdyA00000 delta 5286 zcmYM&32;}%9l-HN0wLs(BS0XMa3^2@!zCEP6~mE00ShP;7z7#x4-iF#GWAcvTCiwA zLBLTt3RKW34N+;ZLqQ8D58C0YdJPKm_{pRgV8OG1WDuB>qJp2Y?@~6|9>)?Mo~SgnZYbuTSQSV^GCm+kc?~5j?ZEf+=#C9Wi*xhga1Hch)!WKUcxDO zeakq2$I*VPLVXLmu$Mx87dqY^Ot?3PD7Ys_(Up9Pt?@j%^30rg;LhlZiqQ9l21j8k z^;^)4O+{jgW}y=;Mgw>Poo^lb{?;7wZ(#=w*WjPgl^sM=c{;rKDLUa-*ap8v-_IsG zGnbDgcpcjR4m6Vw2bZ9MEJYWv3Jqxcwd6mG!YeeGvbTaCp@DsY1Mm_$U{9`y_Qj#t zA07A+Y=|qu^9|@qw_qRKiEioV=sZ`k8(x#hjZ@zrUEv6H;<3TW!AdmZ*=ULv1ec)w z9!E2_I@F&<-`|YBzau=a3D5VUnM=GGUU(aw_`~qRKhc$*4bQ(suj9Aqdq1FOrXF`M zAG6T+i-QC4KI&y?W_F>c{vdibjw2T#5q(XeBMoVsI3p?w_6qhz_qqgK$q001<8cDs zhQ(MD+AjtFi*8L?n>gjo(ZCDPz>BcH_kREdCm4#g1J^!aV05o$qAOew>KoAatI&Y< zA{Qk(gdV<6(3M_61ITR4)x?%)zjAb*37EAY6N$i5B&<<(s;uJSS z_c{k{Z;M^A3zp!|uotdDSNb-(1s|dPK1cpW|K>jlSJ z&=oVQ&j;akI1=;mAsma(<0SkVNmew9hkfy0ycxG4H!iw@E3idDJkGWP@}Eq@5gJV8 zF*GA*upVAQx8yQ<#q;!FSMsj$i{kg~S-0MF(zF7*E^`?cWX^w-csg5z;>q zl~72dVMuTc8qg$6!s+N1RiXpU3eV?YI`s$9=Zn$jkD@DIjt24!I^OzF--^EXBBpx( zt0>rEH~Qk6;f43mh(Ew|JcUkl4jte;I>E(I{~mq+N94;ErLYf2R2WKt~jd2y4nyu&xw__WuMh7^8eqc^u6TFHX_^46OIFNp5 zzmb@Uw&F^pl=^LtIZ}QSgwpLI*0uEG$JQx&`xb8oKhO=)l{t8CIbK z9}NB-UHS1)KZ~BRf1v?q@avGzb7K=xAq5Z5jp$zA6kZsOZp{=l6N}J*mZI-Hh3#=Y z8t@xv=8obBJb~F*zz+g%!N6b{I$t?9^Zt*e;J~xcf#zWgT#62`5$#Zeqwx)Nz%25u zEpPzlqFXdMI2#>z5gPDsu^X;I&&~n${vW5n4UE1-2WZK!Gj=RQQ*{G+jmprD73h{t zK?A-Uo8ltOz}09bHlbUy630wIOg_`Q+_)dzw-O!y59n=r8C~#+1O+=@3@=_+Pcn z(bL=;3-DKHz}wKRc@5pdz3A2*K)2unB->HyAbyR*GIZ)~IJ9|zIvI1RtUJ8&Xbp)2k~ zx99>k$NJ^*_<5Lck2+CspkBdZbY+9kLo*~e77b(?*2kHlelMD#heG=z>`r}Yc)lB* zXCM0BJE8tzIr*hBW)GTN4Ka5YXe3DDMtI3hUcS0eJncOZP)?j3f* zY_xxC^j39EQ1H{)AJcFQI?*I_fV04g1y_=Tp3*#QkG;@|C*X9PgHCX`x+bezoqDAU=2hNb{aMp5>Ltx8t$r_O zV^W>c>U(n2)8K)ECz6xzqB*JXPf4joecE*IQQW(zdUw~H, 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 \n" -"Language-Team: Welsh \n" +"Last-Translator: EifionLlwyd " +"\n" "Language: cy\n" +"Language-Team: Welsh " +"\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" + diff --git a/searx/translations/da/LC_MESSAGES/messages.mo b/searx/translations/da/LC_MESSAGES/messages.mo index 7a7df4a324fef84127c83e42b4c9d65247f10eb3..d5f66bd53828302b4cae39baff726015ca9a4e78 100644 GIT binary patch delta 5246 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 A2LJ#7 diff --git a/searx/translations/da/LC_MESSAGES/messages.po b/searx/translations/da/LC_MESSAGES/messages.po index f58de303d..6ee2d644d 100644 --- a/searx/translations/da/LC_MESSAGES/messages.po +++ b/searx/translations/da/LC_MESSAGES/messages.po @@ -11,19 +11,19 @@ # lolmeOzzi , 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 \n" -"Language-Team: Danish \n" +"Last-Translator: return42 " +"\n" "Language: da\n" +"Language-Team: Danish " +"\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" + diff --git a/searx/translations/de/LC_MESSAGES/messages.mo b/searx/translations/de/LC_MESSAGES/messages.mo index 2a5daf7d385b37ef990906d91215497b51b4e286..da70c88cb93b933053e3ad383dcb4ca83a3f8c97 100644 GIT binary patch delta 5414 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 MJ0lQWp1axmKcEv-761SM diff --git a/searx/translations/de/LC_MESSAGES/messages.po b/searx/translations/de/LC_MESSAGES/messages.po index f6e328dff..e325b9bfc 100644 --- a/searx/translations/de/LC_MESSAGES/messages.po +++ b/searx/translations/de/LC_MESSAGES/messages.po @@ -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 \n" "Language-Team: German \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" diff --git a/searx/translations/dv/LC_MESSAGES/messages.mo b/searx/translations/dv/LC_MESSAGES/messages.mo index c3e89bebda2ea19da846d5c6f3f1a9be9471d608..42ac60280b1094a774f9c9fde12f28019978c09b 100644 GIT binary patch delta 21 ccmdnSy^VXrBqk0+a|J^qD?`)GvzTO<0Z1\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 "" + diff --git a/searx/translations/el_GR/LC_MESSAGES/messages.mo b/searx/translations/el_GR/LC_MESSAGES/messages.mo index 4975fdf8c8d257352fd0c1951cb03b79236c9559..df9f780f4c946ab0041c8b37b37b3083034f9244 100644 GIT binary patch delta 4712 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 GpZ@_WI|>W{ delta 4850 zcmYM%4OG|F9mnze=MRDc1_A;q@HY@Ko{dD9h7vx2K+1z*ih|3B1ap%`M>^ZTVNU1N z%?LNDWmrKmXB&viQ);f9)68`0nNG@%u$??iSIe23HuwJcyXVZ~;dSr*-G}e}-uwHZ z8;`lxA9r~_9pT$*_!I9kW(;NxRqg+OibojZN3{f_upA?>-nKX6Sn8W>y$k)R|Hk?@ z4x#=Y2I5f+!ZSF-7_a$^LNE=9Va8No7W(3kQ3JMFUqA)Yfm&cUhTvXQKu0hZFQNka z4`$++aHoH%bv_o*z8I5P-@Hm8iH46+3*JNp;LEJTa405VIF7~~OvXx7{~w|P+KSp~ zD{A~pxCGm=6*ZibB!Ol=oe{BHBLh<^fIdd z>$bkndH^;415~O{p)&jlD$qfU!>`b*9ffhQnlK#+)=WZmEVfo)0QE(v>#+>^Yu4~X z3vEJW>Uq?HJ5l|2TYGUh^@FGleS}(XAd38};~))M@H%?%Hflgjw3Dh7)W8f>YG+xC zQ31?D1zwE`qyag8^8-|dohY%OYm4VZ>IP^mtGTJQ{N!Hd=b>s3^sH@p;-QWxhS15pDbP$`PB^#uDo1vTL$ z`#jG+pNSsYOHr3=4QjpyRR8az=KT?BBinE_dRr*m4S<(luU8;yKqzV_qc9PZPy-*f zR^VFd3s4z4fuY!koSwOc+%MzLl^=(3sK91e3mv_tgo4g`9x9L;RBBdX6+Vf%c+$2H z?ozC6@CrM7(mY9qC%Bin?-_5Qa}(86yZ$8Ne&m+b^a#PyzR%j^;4d;%U@T+|TEcZ=6|xUJZPLf);)fHLx4G zm*yZUGZ&C+V){`#xPuD7mmlkJJnHVWqsDh)BKBZ8{sk9eTDbC?n@iJ84t1$rAp)%BL-HMw37wCgK zQJLI@n#bE=JM2bH)MGmwvK`(>?c^9LkUyg)?6c4NF@X9NRKI_s0y7hw`2tW2hNBjY zLd_HF)V(I2f(A@LeK0an3lySuJQo#MHR{YCM=jWd+Ua`hHdOyM)LD0+=Iuqj#s}>4 zk5QTE!w|jymndk#FHjMFjf(gi)U9`M6WNrBK?OJyYj82@vK_*UE@S?L8o!4Npzp+9 z{1y(N2R*6A=al+c!gZsE zaKkYHiN)mLc&tN>Z$XBb4qT0W_$C(dl?lV^sLTZ9IQ>&l8_mlh|N68R)1VH^kz+KQ zQ9J9!GW-AwFf!MNWe&dJ2_^b9gUaK?Uv& zn(7RQMMXFZb?NF*k#5H}d<8XOE(a|0@Q+x4%w>Y}oIr|DXZsjN;?o#|EtrVE#kF`I zx!+zhXPUFKbvT*_TTnZE!`6E-j{0fj_m24z)h}$ibD7dn8OpZiqc%{2TDSpq6x&hr z?n07k-a@zD|3M16O#iSQB6&&mS|y++PQ@@6=ZIRk_#vl#C2GP3Ov7ie8sD<*!CV+E zJPKcZ_ZNCSq9H^Uav}YQ$J-rYdw$JSs&_c@L`aSC=%bsMBIg! za6C58c8;P8wUNUZk0(%<^b7Q=VQ8V#F%<)-7oc9F64di|Fc~kQ77Q$MZuKZkpL?#UwLdk7{PU`sb{ZbV3pf_Dik*q(qb^e&-rW(_Q18N3 z7+B)`yP**^t_4Ys>BS*<8&{&c)cL<*J>En8C#a3SSW5nNCa=+;$bOF_IjhUKkovzL zcK&HrIoH|2daS4YIn?WT2lH^mJm)_kWtc>LCF=Qh-7|z*xM2nkRy^DI*@d zjWwuo)rGy`c39uU5Zd2GJ^u)k@ha+)MK5szOv8t$ zXQTQ*jS6^+wawar`m*+*HrS8)_oul-A%=$d8t06sqb}WCbmIyfj&-Psn@}0pXzT5$ z=X+2SA3$Bc3%33lDl@lHIlW`u7!Of@vov595TaTi4*oT>T6?Mtt zmO8h8qO}6`ooGY_`jTzmhYIjK#^H7Jszdm{O=CFwxrGXe~<+s(f|Me diff --git a/searx/translations/el_GR/LC_MESSAGES/messages.po b/searx/translations/el_GR/LC_MESSAGES/messages.po index b26624644..66d162af4 100644 --- a/searx/translations/el_GR/LC_MESSAGES/messages.po +++ b/searx/translations/el_GR/LC_MESSAGES/messages.po @@ -14,19 +14,19 @@ # return42 , 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 \n" -"Language-Team: Greek \n" +"Last-Translator: return42 " +"\n" "Language: el_GR\n" +"Language-Team: Greek " +"\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" + diff --git a/searx/translations/en/LC_MESSAGES/messages.mo b/searx/translations/en/LC_MESSAGES/messages.mo index 96620c8823a552f9ba4e440e1ae1e248d708dd4d..660a203c54f99c044bfc2b533cdecedf222b47b2 100644 GIT binary patch delta 19 acmdnXyq9^x1P()U1w$h%L(`2jR2cz1lLeyy delta 19 acmdnXyq9^x1P%jp1w$h%Q-h5&R2cz1h6SMj diff --git a/searx/translations/en/LC_MESSAGES/messages.po b/searx/translations/en/LC_MESSAGES/messages.po index c5952c6d6..52de99ce3 100644 --- a/searx/translations/en/LC_MESSAGES/messages.po +++ b/searx/translations/en/LC_MESSAGES/messages.po @@ -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 \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 "" + diff --git a/searx/translations/eo/LC_MESSAGES/messages.mo b/searx/translations/eo/LC_MESSAGES/messages.mo index 3ffe61f7a254de77a317a0096574b9eea747cf97..aeedf13bc0662fa4fcb7080d1b769699da9c02f9 100644 GIT binary patch delta 4633 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 JcTavO@qbwT;MD*C diff --git a/searx/translations/eo/LC_MESSAGES/messages.po b/searx/translations/eo/LC_MESSAGES/messages.po index ce08d4e24..4df460f54 100644 --- a/searx/translations/eo/LC_MESSAGES/messages.po +++ b/searx/translations/eo/LC_MESSAGES/messages.po @@ -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 " "\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" + diff --git a/searx/translations/es/LC_MESSAGES/messages.mo b/searx/translations/es/LC_MESSAGES/messages.mo index b788363ec9bd3eba8a701a1429b70197965f335c..285b79c443eef6053ba5008f433c4dfadc76a13e 100644 GIT binary patch delta 5731 zcmYk<2~btn9mnx2vM7Qg?uzhG1Q(QfC@#2*sNf2cqPT)Q6azfwJrLverlvNoA^NmN zlbEP2?k3F}OL9D1IvoRk>RR6`%~7^vO=hqV_WoMD_m>ZcVImA-KKsH!>C_2eukmc zzrZH=HAdil%(N_D{cMpmjAGV2%)?;ZgBozqcoa498BD{EFbacP+X1!0Sn54c0cE2T z%TVLC8S8K)^@G?$>))r)m4>)B_JU(j0py{QF%=WA7#rg%?0|kG2J3C?fu~Uc-$O0< z6t(jZ(x&+$Q2m?ZEKI^ptZ%(Up*ePJ$A6fD4RJhbU=Bv(FHk!!MJ=?*_-kYj)&@++ zJvakzq5>Gv-X52Qsu!R(R){_|lu^)xUeww6P)D*BwUezFhdWR^{{S`a25LvQQ2ibo z8`7x}^(Lr{wM6!4#iG{fhYBF01Nqm26KK$YX~tq~O1&Jlvn8kn{pR^r)Pg(Ff%{PX zFW?}&h8owF8?6kc82g|C7=Q{qGlu*tl4&%wz!Fr77a7-}7J3~O;BRpV9zace+jtL0 zQGbA1U@+&{46{)ErlK}F6Z_%ws3YC!qo4&3V=p|5O8o=W!ogf=EgWHNWsF4yo`gzq zs&No%+$dDWCYbtjsQxoh{pX?P^?4|$<6_jn<>&gXMT0)o%b7 zMBj-FRR1j0MshI`XQRfwWL%3Lz5nYeC{@7@`z>gRx-5yv8)OZ|E|`ycE0!96X`W;mN?@<9ocCswqM5_(zQaVwu`xtD(`c?sj6f8jv{0(ZM-=P9|2X%Q)pf2fo z%*M|#8M}A3`{$!lT!cE(xu(4Wds2S^2jMR4gE!Hq1==OpN05Yyv>$4M9Aph^3Tmf| zP5WA-A9dTeqK>c*3-K`O$lCIQ&%8ARHQ!`Z00pRVo4b&IrFf_5un+l$Snr}zcM*A& zt*aP}_fZ2Mp#lpg?=N5yhTwM8^Ig~-1ISoD zwSNm1;VaaAsEMMwkyadtI+|^$jO;-zd=zywCsFV9C#ZnG##FqGx?6Efrtw`d6npz9 z=*-hm6J?S#80mHGUu|F!H3=G0-)cEnHeKKl%0XD>v z`sbYgdwsDArV&jYAHkDwNMAGOd$^ZW{G{;Q^b z9mDkge?>uGx__c34C-ZPpfPHq)~L(Y2^BzZ)XoPPN24;9i%oGBYFq^>phc(vm!m#B zD^dNoqED&XML`SfMMZcF705}{z_VDt6V&T?1$AV1P=UAR>opsDp>BUI{=EU8VAS}f zPW!ET5%t=>g`B;0%E|dBQn*NicJ?3C&Yq$!Wh34lP0$hb>FkV=n2s}X465HQT!6<> zf%oohn~wTDKOB{be9XXE*aCO`h7nYwXyY>gs)>X{>ew7{sV-HD5|eLL4q+EwWB_$KnLP{ zEWkQEjm@!)RW$K3)KS%;GPf6XWbdFByns6U&#@W$Zc~V%@B~L-JEAGW>8J@l#Flso z706B01mBwHk5C!=9uqKTfF00qR3;{)GCK|R{8y->-h-|5{=aJ){)}4iim6{krR)pT zxB6Rbijn*>S9=V$!6Z}$hN5;=ljs74)2)< zXHY5n*m&J|3$@dKp?3BJH7;t1ePnT{9d<#TaZgmgT-1Ce=D8acNDUsvWkbln&Tha^ zd!n(Z0XZ0h1=tH~Pz%(dJ{$+}0R92BP{}YmBa5&T^;eKbRsfZm`>3~~`*7P{#?;|H zdthH0bg9M}^U+Ja2z4huMWwVI6`g4pR4V(T?oI|O@G0hbA!L{0*`bJd0H!&7> z`zUa+t+S|!8gN5&wyjYUBx7gnhjBO!wd2L8=e4NuTQLzoK?V94)h}$M-LC^`!9>(u z%fvqDdyRs2bQzW6FHt-D1~tJ0RLAg4`$IJpdsAPCI*R?Meupsu&!OhIi+ujAhvs?G zDErO~MBRaGyY91cC}`)ik<+lMF&_Vm?Xb;gJ7rGfua(XZ?Qpqie;F0XX4DS1qcU?6 zHU7MLehW43E-I6c@eQrmVT}Dg9znfkC$KAigo*eNCtz%r{eL{=*qQn@Bsta(I0Z*$ z+n4qY+)4c?cE_1xxuCcTHUGa+fm-9Z^xAP81>N>8s174A7;`ZV^D!LPp78*uDk!Iq2ti({fhJ0(RuaMKQ;z)xs zQNj;Rd(-Eg;g{uk5&e?w*BAEND#CH7 zg>z9Ks;Q`qJ&&5W64iepYQYt#{x74(Z$kBd%{+e#m9agje#dFeL|3pW-avgg z?w}?L&at0|qv~x?0dz!t^ShuX9E|#Yj6}Uv1*p5_M$Nw#6~GqMI==m;a15K%a1Pb+ zI%-GXpceWLHSzyYsf^0C|C#N;=F~f*`lT5MqXNyuhBy|ZaU$xj6(PT#TUhHT%%Y(V zqcL=HAiL%C27&#pT8H}2bohN!Z&gKMxy$RQEUTVdS`ny^j!g~D&UMvzN~>Is zd2Z7s+2L`OyBD~?TU}P=b+|o_N>8bqUZsm%j;eXCaz|02*H!FrSE%;W$iT5qHKBpN z-O7XFr@E^>j;u+JQg6D$s;^XgU7ntWb6pix^^N`=J#xb;yfrS5tJwctkCc!yH#7R< zk~jDdB@by>>8c3aORflN6OQ@QCT4{c7I{iNfu$3DLH`FM{|?jEZB@6XhJ#spBEh68X0hGCt3z8Z&7UvKLNF^Kwa zt?yzW^*>-wJcq$}84Hc^m}?Y5co4&=73fBPY({nXrF9!BkbS5L-ogw#icjDj6q>bKUq5et~#{EEUTUVMSE7|`FDI0+R<7Ah&Z7>z~P9UE{kHlZfo ziW=ulRN$YZCcJ^lKqqRv`>6Jhu#)*r2zlL#3$Qo(4K!v5hM^y(qdI0{9~_5TaS3Xo z=d5+e8qCiy3peAl*oF!qc97FA8CB0ik5)F>J}5^G_zY@~YEWCV7`2jBI26~TR(=3A z&>7TLfx^N4s{Sj2=PT@E_i|X&o30EcuS|cOKzaoj^fmV==3aAkKVks)sFQ6t`iVAQg zj>lI}1D>_E;UwypP~(QPkD)jm)h-RS&`iw40uKf4=?c_Dn=uJ@qf&nfHSrbH#J8;9 zSRbJR){$3=ds@R#{f444HqzFUQ0+&f+IuEY(7?s0h83uebI^s)qf)sR)nPrV{i~>U z+fggqiwp1os$Dn-Mc37ZY9E7IP%_3~4${wKUT_Mg78moP9+k4|sM~N4b!hxt#&Bay z1dc#ADzMqsxz=jb8TctGkfo>u4r+xV(a!To>j+ff38?;KunMQ3w(21Al{f9E@ou34xEoFW)iI7%N^J(JK@Re* zFa@ZTRU%i|)S^GGL-pH$3hXs(!s8f#=`qgxu^3Oi5cz8s@}C*_I?ln)81m0Hn8_oF z8f&o(_aIl;Jj5349qSCV2dk-HL_bW4b5ia`WhNIDKq+c#oMUld)|&3r~`xW77~m38nyB;mZbrPq58+$dIoBo@u>EN_$)3!1#khiGy*k2GhcDuc21H%X$#i{ut`4oJRHg6g9yWRDicoU(ile`+uV{ z)g#GXWArG(ND5k66slu9cC7?;?cAt6D@8@#gwNp?)akyDH+|^KS4;ixq&Ti=i#AKK zH~t1S(L1PsPoRF^KSnLkKf}3>q1cCdChB`rFq zIA*jnaR-j1eh;-}1DREU4?%5R6l%g;)EOv8eWEK-A2?3~g?tJdu?{bx1{g?uKe6v0q4qpttg}TUkh;fYQ_z3~&I40~O4$t5 zr+F^+!d3S9X6#RW8*0KMs1=?;W%6?zfSss7{Q0rh#KEX~7;4-h*iZLAmx5APfy%@z z48!fH+wr#b9aIM1Lj~{=YOk-^`ZuVQ2WC6hYdC7cbkyO?MvdpOuEm+U|IHM%f({JF z`>2V!a}u>z;h2XpsKDl-+OI^m-L#+rI)^%}9jJ_TqPFfaYCNAD=Y22K`$6c@i#Q5O z(P(R~bqZ>QWvJ9vqB=IBwrn+Oh3ipgpaqr5W2pAWQR7}jwfi$FpsVxz2|q3=dHsikj#mDl^w{I6gxDnn8I^hGwGz+hW~neIw7~ zblkxM9XhY|1U6DXk2(`M6P(noLVcPyqB6GwbxRJS0zYZre}o$E3)Gh0wDliR?E)Dz z5<@){IH)EGHPDNwm8?V!(27yG6Nlny)QbOR-+zbd@52d;!EDqSs7AG`M~$-@HQ^@Y zn`GWXEyQ!3f>L`QwW7zUjzI-Z!@^FLtVPjnlCw^$8e+)3EFJeK~2TlGGCNuLv`Epb4^3AEbQL7F3`n zcm~z63N>*(s{L|QyO-_rHK>U<+V{Iq0qjHdKZ?EZ6zaRs?xCOn{$U$@ZR?Lw6Pr@! z+ujW|p$qkW7>W8`t6?Zy*nd9eSPx12O~55z41}Y0x9o^Tj<-GoKV)%$#SKoq`4DQG7?kWuGFzv zX|~UUW6^pCt8|$i;G%U_?&8w=btC`nO->{6jYux`;y)#pM{cNmHrT-$xZ!!T~ z%evq_nceE^H?20`TQ>e-fOmVr%pkuCYX2<$(6{yS^xD?RC55f6CCB}WX, 2024. # sserra , 2024. # gallegonovato , 2024. +# tiziodcaio , 2024. +# return42 , 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 " -"\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" +"PO-Revision-Date: 2024-06-18 21:18+0000\n" +"Last-Translator: return42 \n" +"Language-Team: Spanish \n" "Language: es\n" -"Language-Team: Spanish " -"\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" diff --git a/searx/translations/et/LC_MESSAGES/messages.mo b/searx/translations/et/LC_MESSAGES/messages.mo index dc7650783c78fd77c72a23233108b25fc0d97522..035089308c72872f79c5302b621a58f3677b9490 100644 GIT binary patch delta 5035 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 e" "\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" + diff --git a/searx/translations/eu/LC_MESSAGES/messages.mo b/searx/translations/eu/LC_MESSAGES/messages.mo index fbba42ad999844cdb96ce4428d9da9772718e519..02d38b119d1c88f241105cb8a956cc5ba56cd689 100644 GIT binary patch delta 5213 zcmYM%32>Ih8Nl%+gm5I0JK+!o2^nJujS|IcS_Luf+vEOx+i*dBA*CGFj@8}))%ACFC`S4XE~ z7WEp;#(9{7-@%FyQeg#!TpEtz6g-BR*oRddP!t`GPF#tta3b6IusObkov|L7BYcfc)G|LAe-*mm z7<9+iqw{?O?SBK##>Kb=-@w+aALfzQF1Q>U<2H2QPHcmF&>g4IKx?CaL}Cc<;cz^M zv#_XR62Lli+~!!{hi>eNSU-d*Cwzf|XYvYq6mO$DIfa+wXXwszIwcbqpgSr?`&C4* z!)DZ{q8Ympi7DKIuCo#iU_H9t_DvTJdIA+lUGFhVkH)% z6W@+4aaDZ23Ekl~EX953QND++^EWKQkmBG?c`>?h8M<&qbYgTG8gUJp+J(`j=s4#w zQ>$bBezgBqwEtdo-Y3w02eDz?^Ax($@LROwDYWC~vBPVzu`Dzm9^JWH$0fggdY&ZbaXPL(yMFUqsLRWi*gC z(4D@E)A2M8$MUX8`<>DI(4*Rj9>Feb=KKF71tUL%rlb~Kpbi@*M%z!L13yQ1crn&{ z@zt?^DH>2E^1_5_^fE3$b{bZq0c^%%d>Aib{qQ;k7dnXs@-cdO&ZCzzvwH}I*a7WV zfu^<^JJb88?NEr0y9NzlEIRH!G=mSs=R1%$H|*&_{!Q8QH1LLnBbbSQMhBio z1N#Rq$M&q&1UI11w_sn~i@mT8C*wK10mslt62l{SB_6>^cma6>Lv?TRzmdYC-pNE4 z@Fwbg3X)W>Lo>1so8V*UkvxUI&o83^AICxX4mQKwKFRnz%%a{6y(0zaJf&zx%2E_q zGgP2ET7*up96jq*vA!OiXe-)(H_pN%XaHA`2G6I=ilfZDCn2mtr9eV z)MyG$FacelI@YJf4l`r>x6sHJ#`u0%E;)}r$rL@)7k=(wZkf_0dU$B^-< z@BxJuG<+QWCmP5_%)l(dcY@|1;3~A=)Q0Dr z|J>MN0UF_L=mK}33w%F5UxQA3f2?mt`|m(MTzk<4pTitHjL!2adWZgm2Ji{G;dAQy ze}O^{Ht(NYl00-^PjrESXaTYzwAL3Q`HuCc8nPjeNl1m|`^b<>-fF0(!d_A%DX%{%MU*;81)4Tj4o$ zo=o0B`{$wo=c5_E9BZ%?e~sJGFX_}2v$)XB=ozg>&u}gJQ*k3Y!Q<#oUP3eTT73Q< zmQ(){7vs>9#z*pNAE;3$Zyjv5oJ42?bL*4xM0ftj~`1`RHX? z8teB(A3!hJZuGYAN9Xw|dPfeSm$McP@Hm>$Gw5smcT5@4c?#a@Y<_4vK^Ju5-e|{S z+<-&T9Unm#JcjP{UF?WwumCeS4>Q;gov#E}<4AO!-=Q0Nr;PlY@=s{!gpICFeqFv4 zeH*4kr$=X^0oR}ld>7qO3TNON2mTDb&2OUteTrt{B6h)?k;!H2i}o9hE<7EJ@fLLB+fx+W!PDqO zzr==Hjo#MxaWH;`o@F67(w&u|0ggu7uSYLc4UWe3$f<@m&<*5{N;Z~{ovHUnGmsib zVE~0mXhf^ffOf1iVP5zUajZV-H-Pw@XJ`(SuUV~n`dNlG=*c(5?0&G{o@nIP*#2=y0vnrEcMvHJd z^@ZqVt;MH(|4&lrLBsuHICo5=JHBjea$EajQ|jgDPRF2UItw##37YC<=uXpUCSQ!t zkE1Dn2ea^B*bM)RrK}&a#wC~UYIK4s^s-Dt7oLYr@K!9qrRcZ*A#}o4_&qNm7oh%q5~(Q6V5;vu0dbZd1&gF#`ZhW zBU_1%-x%GF2C@eY-~f7w)A9MyD)R5duhC!t$76?&&@=ohc5HcFGEsiC8#-Y>^xHlJ zou>+&XEGYlT=cuK1aomcy5XH@zh_eM!Qt5O8s_leB$}#E(H;CJKF{J{-9a8^U?22S z7Gf@rLNic}1~eTTlqW?|SL~Z^?f-v<L_6FUT#g3v2Xunxur;nj{zlvRryIV52J|To zz|0PD`(eScIGX1Zun+S`Pf{r0!5(zNGiU(k&}968d6?QUidy1j*aeHxiLb>zI0xbZ@$&ThbR@Nf~y>a&+ah(SG-#D_VlK zTNPZ3EvVO`8T$(od-NJQ&j)A#Cp(jWCv4z>9exU?GD|k~EOcdE(Fu#uc4g>6*QCY2alkE9P2{~;0Tj59H{paXHzs3^$1>MrY2{zn`#$ypqM^nEHop>cWaZPYj@MSdMU1*B; z1>Z&ceTZi4lTbf{w*Lxk{}VcHB8@v^!)&x;d+dR^Xex)H9m>%Tm1w)`(F|1KtvDNP zSC3xPqiFjR=z`8-FT8;E>&Ah?MAVbQ?K~(zQ??4d4YlZ@c@?=S(P6w48_>XVdc<}L zc16!X4>XW|=!#2mDvri7T#Y_I(qw{DNWnd8K)2#YH1Z6-B1WEruJ{skg5KCPaCkl% z?N^DeuqxCSqwQCq0j)!BUbGcGl>fjs%pV=6U;tlZKl~Z(Sa?Z1(GWC{ap)ns9zCS9 zu`k|*2DBDU?N)S4>%#M0SV(;z4#98na_rxe{5$X*3Z{Mm8sUTJ0IQL<(K>X6`@{1i z!Q*J)r_ui3;4Dnei?`|~MO*+pzPH!|vp zsW=?%I2sLXA}+)Qn1)}V@4v;~*obaPZ~mEtzrq`EJ(A=oDWCjbL7`_pFL4HPHKVQg z7`}rJG^2oY<5En)PtlY&pqcpr4Iurpcxzgt_d5>_yaWg05Nv_-(f)TQC^Vz+AiC$v z(Se@9=2(No5N$+P_AWZWztI6sh5DE1INzh~8?g%WiQWK~pnJX?$KxI}BZ-!M;zLx0 zo`vP;A$uAPU_Cm(7IcDbq5ik<{!U&_HHkGTw}C$vkwN`QiPY=s1hQ`-j5&YILDbU@G%RYbZG2 z`p{rAI`KBN;qLJM?eM-H4fHTN!N=HiCc^s$bcN?a{RgytBl;n0UKr2U9W%ZEy(l

(TZ*&`j;crfZA_cm$h%|Bq3y z<0))f33}}s&^=2piX$(^nba%L)4dr#OyV%1{h#R{U*8(^3%3hhz(M4^MIWIHYd#=; z-g-c||6O?C7WBky?2S%PiWOLie(|2h>9`qf-<&&@h1uxOcvtlKKr|zz*cL~k-<8Rj zkMoh=p=jkm^3S$Jf8~K4PogRN6rK12UWucMHk@cn<`Z;uz}HXyET*TkroT6wJUmbV5(u2*^TLJ^{_hT&J*Ya&!O$t;iLE`bme73(cjy9=M#KSTU>@~e=;5wNP%xsIXeRE!T>L$H=xWf0 zJJE>`U_U&Dt~`sA<^uB2aSG8b8;SOxjKz2>x}|?a7q$%zFtIbd*oz*nLpTbP%i}NK zSabyspew7!F8BhPf!C1Fdh`|=&;>N0YzFatM|97-qk$FS92|*7-v5mh9QZKW@pEJs zqVLd*Ts}HZ{m5V?Ud;1fqo3@B*d6aj`>#P)_F{Ox9T!nQgtotKOdQxW%=iA!qENt# zWjF)3;XG_LHvS;piyYi&El$M~=wU4#7ez1OB+SEn7ibh|dhpq4UIHe`%`w3|3Ct)+3k1g;n^wcNN!?*+OzYje#_2|SW zFb&UO0XAU5AAycn#{(`yZdmjf5<~PaoZ$Nkeh+XiI^b$_1zXSn-oy<2CmPt1P(P08 z)IUS}oks&{RvEX;t|b30dC;B*8Q2|rV;?lqDd_td;r(26!rRf)d@s7lcpnLZVI#AX%vF*`-a?wEY(No<&ydQ-Q zT!991U3fnmy&ZR=<5i>MJe3HA=g|Q-q2K(M(ShDZ2dYN{I)Q%azQim{XMbFIC$wE5 z`g~}pS70Xf8_-w7X3?l3>a88sDIt=qBbeb>^Ey(-8%zvnx~AT$;Vd|rled$A$>?rX3As=xmOKM MZR$O(a)0vw0AZ3nHvj+t diff --git a/searx/translations/eu/LC_MESSAGES/messages.po b/searx/translations/eu/LC_MESSAGES/messages.po index b6822c7ed..01f652726 100644 --- a/searx/translations/eu/LC_MESSAGES/messages.po +++ b/searx/translations/eu/LC_MESSAGES/messages.po @@ -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 " "\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" + diff --git a/searx/translations/fa_IR/LC_MESSAGES/messages.mo b/searx/translations/fa_IR/LC_MESSAGES/messages.mo index 8da3d38c7727115e6ac1c9b768cf17cfacb86466..cf8fa4f07b2813ea758cc43c8f0b928ff93861cb 100644 GIT binary patch delta 4761 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 diff --git a/searx/translations/fa_IR/LC_MESSAGES/messages.po b/searx/translations/fa_IR/LC_MESSAGES/messages.po index 960f860c9..4968cbffa 100644 --- a/searx/translations/fa_IR/LC_MESSAGES/messages.po +++ b/searx/translations/fa_IR/LC_MESSAGES/messages.po @@ -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 \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 "ترابایت" + diff --git a/searx/translations/fi/LC_MESSAGES/messages.mo b/searx/translations/fi/LC_MESSAGES/messages.mo index d7bb9eeeb02911c81a2e15a8b29d51e4a026bcc7..27c428da10301d98f0b0db01c20cfb96dfc4c6f9 100644 GIT binary patch delta 5214 zcmYM$32>Ih8Nl%+;Rp#(?npq+NQfaokcb9>$QcAtuqZ8ODXFd32((i%>PG=-5m0e} zS`;i$DlICt9~7Z=1{G2$0Y^|MP(ko0Qan&}P^t9)&$}~aGW>S;-Q(G3_kEMYtLq$F zRVQ`4dEMoKfBox(&<^WnTl@dNvn@iXNA)AT3_r(K*r;XF-WfYl?-uJfU<2wmN5^A* z>QgZXZ^uSB3x|e~3UeqlrlA_Yi*I6GEMyf2^oW+B6A!~u9F0wJKJpWm^Iv=1hz9fz zEWxwrxc03RyW$Y)J+O%N!z>EjXm|!)a5oyjn`knQU_QQw4Y6Tv2yL+iGI!{SMK}~4 zKLcIxL3HO2qw_6B`!B^Q_$)4G{m_8CHp5kTIc~yC+=mW)1DoR^bjKf}3w<4}-zEfN z3(c_%3vm)oM+0~j9k(aekD?npi77jrrQn30qi1soJ(5Ow$xiaH1NF}6&Ih66CZjv5 zM0Z>jorhV}7oizjhQu0Hqw8!%19&Zu{JY?O8XRye`W`l+{t>#fi|B$aSlxbk=z?9a zBNn0kN8xoi0Uh@wn!!!c&1eAI(7<=KCI3cpj0P@t_yA4S*XRN{yb>IzPGu4R{5b z+BMOQ=(sItre2QqooN3WwEtmr-jis*)ENp6Jck|eE3{)C?~)z!(dWhJ&P(xbEJOQk zK)(-vM*F{nZsZm0im#*NzKni@GpT!_$W$uKqTubHhhCE9$eR&fz$>sCeH+e3KaHM8 z&-?-!NP~{aPMhI)>g})$e}-n@Ptm`kM^%kYeg6+oF!FcN$j_oX{u*5%gRhAbG(+3l zp=Xzm?yxl0C!+oDMgw{Pd6B{b^fLYy-RM>{fIZlg^}|~f99XY&vQSGjkPhhODMl}6 z8Ft6fXh2nHY8RkqxhS?jfyLBU;dQtdoiD3PayeV0fpx{&_rIJ1eZp{bXLq0zRz>Hc z5idk<_j3FJu1AlkL4F8)wL>vFZVeH=PQvnI;_bj|EB71H1NiSYOIT= z(1HI(1N$6jV{2CPvOSJIUx8QRTJ$LP;VpO`CtwAQBscsHufb{@gO`vuF^nl7|Bq9+ zry!Z=5>BIjWw#{7OVErwiS_Ug=uvD!-{aTNfDd7BJce1=q%awui}k5@Mvu4>;VkUNp&kN8U7NY_5L;IJ<=flx}Z$$gu zTKk;ypB_8hiAFdBU0^o4z{BzRLUiKCVtpCfenif^z{yu79UehSV%ZXul%lQRs($DQ95qWkUlyk8U87ze4PvgFa8SjSczOf`&e^UV)};Ji6l_qMy=5 zXaLV+Yut=Zv=_a6Z=xAE65HQJ$DPHN*o5z}8|i`sk_tU37~w#4r=zhWPKZ8$9?2?n z2kW96F_(H89k&x<^aUonMXKsbQGS`r$STMm7yw;m^^IOV9;Z;XquE z?(qHS8N8YLC)feY`D??8r=l5}fsVfqN8%j33~SKLy^lRuKU}2H9E%9w)D1vWUxDuY z7Ho#!L;Kx{F7yx@=ws+Y&!7uGiyp}f*ci8>8{8G^N8|I;So{0`Ta^=d*OWQrRc=l(aX9U4Xg&;*$HfiU!rH-qJI)#2V6^U z;1)E19cX(En#$wY6Td-sP;`9~P$_!$1JH59usx1NVhJQCVnScBv6Gkg#$hQ_}su@CiAI1zJ) zCF}hZ*ZTf1rBKL&KEsp01t+7K_yi5$t60yiNEYgZ-j(5Kz_%jboG=O9@d`9!YtT#f zJes*3SQihV;|^mH>xbhMoG^PtlBzan00rnoC0GypV-FmRKf;-@{RonrZ~{kRmm89| z;9m6397F@i9GQGETcH6IW6A~kP-uYV=vh^u?YE+VO~ZybBeqw?`Y$ny_NCYxSE7OL zLo;y@9d{g^|1{>{r|7&FN0NUR%pq)TgHBL@8CZ-)+6!H%FWRp>wvUeOFb}k7i(wDNT3onV*>+)%!yIbj7uOGt={~dnYG-d&Tv2)6b3CnDIZD C2p@?6 delta 5331 zcmYM%32;}%9l-IIgakq$+{6Hq6aoRc5(JYXU!uW$1xN~PKlZ^D7t0;h!bh4>xnOG14;)}_8FxE0f= zzl<691~$OAaBvhQqQev#($JDw$6+4U!KLVc<-v#0Kz@fVumOAHGuRl9BmbgH{Ai0w zE#ts)v5h2j*cPOvh>18t0-5{|cR_ z8XbQCUGPIR11Hdp{S)nf9;dN>^fiUGSWbSM;B~wiQ?sKe1>2(o^RX#*MR$A$y3pOh zDM;+m9PEP$EXQ4F05`RY$K{~)0!+BGqR>!^PB;ubqw(m`%tUvx0CR8&y7P7DM6aPc z+Ku)*5?Y)CZzF8-p%5H#}c}F1QqP zaRu6cGn%;Jw%%7oijF z2=2lm)c2zErg4squqoQF9lFtcEW%z13ZChFbRp~AaW$Iyz39S!K^Oigcq(`v4fraW z;v2zKUIE87LNk^X>TS{f9nt=YLJCfNJKAv&ID@^%XQTU!ehHbdHat3Hn-hKm#wvp4boT;R1C0(gcMx3aikw zu0khTk9Bbq5<|2V-PvJuf|KY3=R*A|I?tDAf1@skPG|rRU@xq~VYm;?NTPn1`0`9e z??M%Nxt>4+*n&>*BDz3LsP78T_lEWZXyAuJ{jX@CComn)B1wuaqw{5PV_7E=wV~j^ z&ggL)Xj22EPCK6r89R zdYMYl07j!bpB$Wp4X7_b?@A>)?qPI+b!Y}Qq2H4&X#bsPruJj)Ym5eX3=>9jih={r zVeL-P*X{~>W*Ob%$a~>*>LbwG{Q~|iDT?-?;~y`G`#p(%M|PkesP~ck7JY*D%PfpH z*1VAX`{Br;q4w<2Z+#K+i!8buy{$jSCb$zv;XyP*t$3$wZ;y?!H@d(ObiNTt_M>s= z@BbC(cViuP!QDN{zYCtHf#CS&#%EKAroI^cr7;jmMzjGPcrZNw7rI~)@0Pc`F7gX7 zYJvt(fcaRAepjX=u}77di7zE6IPmxAj^06!+`7oDdFxrB+Rgn}6u93G592TsD~xD4INqi7)2Xn@b7 zJKcr3cp!KIJ(BeA#v5o9%)%_%bI@@`nBx0Ch{EkO+!;EoLSK&!!KcxMx1g8ob#$i( z&;UO`|8_i&_WK&mTtoiKxC2|D^NkNq#=EIc!yMoLmnk^$VKh}|&;ey&T))V)PDGqw~KR{6la*nvr+=lYb*UNrQfhGw~{Vc4PVB zPS>CjuSffBMJIR_P5FNGQXWPFK8@aqOQAifB+hJO^hmO?BX&tpFlA%VGntJ}xCq_R z3T%zlXumhm+xs38WArgPVb*|nTxT?ZUTAv>n#nQP1MfpOun|4##5M}1_EmJ?E^Lc` zLV}OZh36eg;|02*m$4WPWHgrGRIHsiv~NQ*_c}W7n^=1p@fXxjU@PDMDFfp(UyKg; zE%Gl~%MUYg3{Cyn;5GD)@IUXh6KA12Y>$pF3GGAiX6j?{A-o@bEB=cHo;=u3euA`9 z=s-gWj>p+piF?r0_ZbrZ=`;bSP_IH4ynvfAbtr$l;8t9XA7BdJb7!29AEJTWAL@^y z>pg*)tRL;AkcNklk5}{&y7SCo@eZ@m%hmx+VKLUh;pn(g*aat`mvAMTvBxkSH=;+d z4O4Lk`u*6AiP;n`h6kgE$Elx)BWSP2nRo%cJY{8Z06#-NrH`NiJc}8)9lc9C(E#>^ z_Csi3$1xp03+>m-$iEHW(ohf6S+yrNMI#-I^|1`?HvwH>I%eP;bm9th!CwX+L&tB# zWPBDqlC5aK+tKxEMv#98?g z--PFNN5+A+KtE73Z>HccgX(O>)~OxZW5o94 F{{f1&ECc`m diff --git a/searx/translations/fi/LC_MESSAGES/messages.po b/searx/translations/fi/LC_MESSAGES/messages.po index ecae06bdb..365f23349 100644 --- a/searx/translations/fi/LC_MESSAGES/messages.po +++ b/searx/translations/fi/LC_MESSAGES/messages.po @@ -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 \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" + diff --git a/searx/translations/fil/LC_MESSAGES/messages.mo b/searx/translations/fil/LC_MESSAGES/messages.mo index 22c1dcdd3da3e1bca97dbb858509cd4ebdcf003a..19107482945c7b19c3e16e28decbdd8f612dd4f1 100644 GIT binary patch delta 4683 zcmYM$3viXi8GzxR+zGc_07FO!NJs(+<_6B|^C?MD>il7M9BDE*27s@cT z=_n11mTGYfPQkG~AXKZ>QnBq&q*P%*k*XkAwN@D|NLu>7o}DQZ^6c*a@9wwX?w*q` zw{-h&N4MD9IVqbX{uOlNKXzqU`~SbUvZE-K>PgJQ_pl#!h4!4BC>laN4}EVerekBU z8PlkL9eZFa_QV^oDT-pz?G)zH@GPcakKDwIS-}Eyz%tCjDl~veI0#$O0Pe(U+=9OU z=im{XO8o?uV^Lqm!WK+n{%9?QOd8f*In` z(Ec;f)Xv9Vcmo>nYAnKa=)$(5{r6yuAfw+>@Wms+6X-E`7rWz!=-z*hPSl%<6Xm1t zl?JP@H}x^-LYmQumW1awqVwE_gYm9B@^6PNG>pSewBuA=s4Sg+i@E89q2+n89@H~P`DIc=#igTSr(3_y%622dFTYo@hV)0 zrg#TB;j?HaUJSk(Jd6f<9L?nE;6KrR7h)7lksD(}Iyz7vv^_7h7vW&)rQvyVXrG0y zZ~?Bw#ppx_(d&2=9q%nP;4@f)=h1$#d@j9(BD@2O(TsE;S3K%Ob|Lx=vi;E!9ESfu zPjwbYT>A#|&@C-M11U!{P>(MY?{jAU}j9WVzSXb8H3 z3iSOs;rTbw3D+RI8Qp`Pr4Do$`#e^a`R z23P(RI`MO8>R&>y-|J|gXR!u9LRVTuG@gwTOvQTi%rsyrPC*y20=)%y1=}!<`o_4IQ8tW?(M*VgVY^2z0<2bifJd`;*aunnQgi`u-gB^I{H8o+q0#imeShux`v9}Q#^+W%4X+WjK5zkr^x zL%0Adu3|jz{{s|y;e+V?e$)rJ6PWrs-P+{-w=$Ey{M8x2`)gdR~wpv>hl=P zOcbCW#aCh<9D{D{^cwQ-gZVT}z?FD6?nEalWqGc=3az)GE1iouxDXv^73Si4G~gd& zDRy8P{tn%ubLifGhMAaINB)hlAD7-O7>NFXF&z1VizZ?&eglpCcFe*ybmE_&-;UeR zjO;~I{3aUc-_dc;B40Dn=jeES>-hr~%VHEfowuMJ9|&&3-qhRC34V@7yboQ$e(Z~H zqSxtPI1Rhdai)w)*o?EO&qM=%3|-i-(0;K)6kN#(ycW-5Kdc*_*s~cphWb);!bi}R zJ%bLg7oBiF8t@;{OdUffJR90Cpj(s97liNkLAEp&^`&5kLUb!eqA%8>hp8ddmxkvz zqi5kZd=kHd_Aeqz2d+dHREPa>5^|iP>%#L*X#aM6()+)af_u_9Hu1qS7xSp!h#sC8 zR^SfwRKF2C9z2Qpw7-LHQ5SmH(z$ypF&nSJ7@DD1gGaHy_x}t9SI~u~tS4XIZb2cs zl3JXIjp&Nn(11J80e^`G{2cN}Q}j2q|EK6JNgtocWInoujcB0rFy@5UQ?SEoEW!;~ ziJfSNW9XiLgl^G!^i*HOdQ9i;PR8+Ai*0CNyU~F6;~+eNj&l*+5>^%a>NMA~JR@oe z&PP+Y6tBP)_#obkcFbu^oZ=>QFPEW*cLkcUeOQ36pyR%a);~rA&*biTUGpZz5`V#r zqrtE30VgWay z0epdGJ|)(aIPLw=R28Bruft@Vj-1bECc4rM=$^Kt8QPBNxC^Ur4`$>0=t3@_8AzX& zcrOP_sORH-7@I_)nZf~_iG8k#qOaj15PWYAE9L$CpzXb~Fex6tdh8dLH9(7q|y5uR_yQl9Tc$2)~1 z@Em$Qb7v&}o~S_gei~*of7EILZ$?k=dNcz+M6YEB8rUv0^4HK0oKx5xzeFcYX-S-! zURX{&8$A=_(f+G&F}9=Qe}eIfoNK$qzn9yV8c!PVcv8G`U~6VPsiZ17K5F>ANg36n r2UpjOt*(#1Ts|u~o>%$ZwD^|#G0E{auHM`;zN+bXa=c}FW%B<3CdJhi delta 4802 zcmYM%4N#R;9>?*+y@0%#yi}r~Tms=LsK5;|B2s)o1lcvELIy?4QBzq)Szi|)anRIJ zRE(q-8+I{q*R&jTh^AU|$Ejs(%^{n_T+5xtrp#tj*WGnp_xtlXGwU#X&NX4B$gpX4@BFGWEr_z8wcp z-)(KfQ0na%iJcgQT{y)U$DE`vn}*OhV}h{?)v?C93>Cl{)W91s8n>VV*@wgN2r7^> zn2py_{e2I*`f)P#EX=@Pqo4WBZz*WvUW~xAn2P(Gk=HA0j`dmtXn#4OU~~V0XfGsQ!(% z-eP?P^?o}l#c$z2>_G+mF(%xANP>4!dg>?=p zfO)9Em!h_=5!rUL1C^n6)I`Uy5PMML{L^}O2>G8%gJ-BaU*prMx!zkZ%ww2LIoN?Wwg+-g=wf4pF*W-j;+r}4Yb6zudwZF z(MNkDDr3Jx^*d;vzl~ZzH!jEbQ4@~hj_Wo(it6v=Q&8lSFb!v-UR+~sz!lUtp)zv| zV=#mx%`Tb2$T>1uI0C1k0;;vHu&zRF@j6r>+mK8+W-ofIifF(G2cza7`iwr6>1Tg9fT4>;?D=dhtJ~)M|8PAQBZoB5DgBL0!jj7>p&DgXI{Cji{~Mih6G!>g?>t zbbK?7{A(qj(xB^b!FmNlssDiL_%l}HP%7HHHCTd2P%FNTIt!(K_pGeJ0o1pk0&BMJ zwe4-F@!K5=imcN%96^4}aenE=OQ=J41=a5-)WEk;f#1b23?J!cD%Ls-HGv;JI2M)B z9Mm}D>~p7pf(DvoJN&|Sn1wp^m8d`#p$1%LpRYtsycX4O6DqLXsPWoR6COZKcnCGl zQCsgq`a7nFf<8b#LQQZ1wc@W)1O15F`+uP(jNqW?OvG7-qxz3T?e#cRAX88uR5R@J zd8l!gq2_785Z(VK3W{_)>hw1wSv7w^1=fc(_yg*&m1QsyIh}`ESuK}a*R~#Y-I`GW zbYK7v+xle;r+yU`$lozU_un&ygN0$J2Pvq-_9#|j3u?e?I1q25?z@LiD+LgXdLEAo zz=s+y7gO+;wqB14XcsC2e?mto?WLeo+=q{2dY1ba&~vCg+lrcaC$bCXHB7_PsOxqO zm6@b$H;^1_K5G0TR3N3e7=MME@yl%TKZ3$sM$r~Dp;ojN^%>oagYZq%9-px7r?8Ov z1zd;mEK3vZMXmgGTkl4#^d!dO$Eb1oF%GW=$iGr|hlX_Ya=HDOf!eFts53AZBXAWe zz(!O?UPS!?(u(>-JB%9m6I9?|VKiPtO?(&itr?N)W+cU-pcEIQA}vD=JPY}PGV@Ub zZbW71C7g(DsKeTidjB8RJNN)~GtQl85Grs#Y9Rr95KB?F%c-F-mBKRAKwZ{%@hR#b zpjHr_=dLgr^MY&BOibizDWDST45|A+lfqD} zK>hP_{<+vG(@dheWkMkuir=tR_L@l5WmAQ?mt=NNFNGCpt$5H)nq5_V5f^2G_ zBnpan3=YF$)Bp=n*JeE`rOl|lJdO(V&!`DMNA>>}lkg6X#RTr?{lkXZ`x?|1EJ7Xf z<%Q%wm%@4)itrc)@FprSKVd84JRFYYsDYNFwxk{hV<#%0KU#ZH89Z;FU&dzYw^8qH zncyDgo(Yb-mtWAJQ+yefvP|w+B0h#1_-R|8kBWQ)rr-{&!go+-CyG@l@EGJ+86T!% zC064GoQ+?h-p_U>xqp*YUDh$U}s0lZsGP4aca3|_)^q>a# z9_L~dS4R^pE$ix!DGv%MT3f$xWmkG!V~A%-QP;uv4v#EOsEi0I>e@dd;Po!0e%9aQ z3Cqg!W#{DQW_49%%=Fq9507aG^%m13JvZO$ok5{y{L4|^*%WR~?ss4Q%d{--{{Wqh B^R@s0 diff --git a/searx/translations/fil/LC_MESSAGES/messages.po b/searx/translations/fil/LC_MESSAGES/messages.po index 51b0a6c61..08ed3d2b8 100644 --- a/searx/translations/fil/LC_MESSAGES/messages.po +++ b/searx/translations/fil/LC_MESSAGES/messages.po @@ -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 \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" + diff --git a/searx/translations/fr/LC_MESSAGES/messages.mo b/searx/translations/fr/LC_MESSAGES/messages.mo index 09cfbd91036498a7406d3b999db6c348ededbc16..52d9da738a8ece0de408edefe5d28d5b466c3bc0 100644 GIT binary patch delta 5517 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 diff --git a/searx/translations/fr/LC_MESSAGES/messages.po b/searx/translations/fr/LC_MESSAGES/messages.po index 3daf058e1..7b5a0128f 100644 --- a/searx/translations/fr/LC_MESSAGES/messages.po +++ b/searx/translations/fr/LC_MESSAGES/messages.po @@ -21,13 +21,14 @@ # GeoffreyGx , 2024. # Heyian , 2024. # return42 , 2024. +# Vulcain , 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 \n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" +"PO-Revision-Date: 2024-06-21 07:09+0000\n" +"Last-Translator: Vulcain \n" "Language-Team: French \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" diff --git a/searx/translations/gl/LC_MESSAGES/messages.mo b/searx/translations/gl/LC_MESSAGES/messages.mo index e245e6c2e223587d1867e33fed1b9d45d986ddd8..1d4467fc8ab2b85eec98551e988110d93f15afa1 100644 GIT binary patch delta 5426 zcmYM$32;``8GzxNl@OAMEFrQazkno&1d@nIWKmgzB$mZSf{3glvQ&t*g7RBvMK;j_ zRcRX)3W5u?{>3U<+y-eCDk@5?mNKY=6>SHYq8$tE`*P2W4Dg(D?peO`opW#U@5jgV_v6y-fG@y}K zfwR$ZO~EZVg!*>u;rgd2l+jSqE?#g18o)R-8RM}lPQ&K796R7zB!*}Q_P{-8z$efJ z&!9WcB5lr>hxR`oCt)eBXZ>gyh4Zn~1^mNan1QwEz|q(WzmM+t7IdM7!F!QCL_fo7 z+=dhJQ#639+sET-(0T*9vB{XUVKxOPT!5ZU5u`{J$Wk#0&-aKY!W9QUHBKaDP&$(45DykOg4F&cO&n&Qe} ze{|e1G-Gw4ejVC>BHDi@I&X451v@T62QI+`u0T6Jg?8K-p6^C?^ajqsx6pq5xFCKf z2BZCJ(2b12Zg>+qZdq^@&iDO)kb7vlS zD!3NC?HkY|+=7$wIrPYi_>a$gG!UI{EE+%qI_{y1$iFGx6goVGd_$sV(bVlnUghWz zX5uMy;5TSsndJRWEX6E*9DV)-UW_T^Z*-Xd#$r|}uR4xLPAA$~O8zgWaEOM{*s?7C zDL4fmpq@l0YT2E%;uYx8G@%*UhAzAdJ(^e0_xd0j@G-2!FVVYI!eovw!)&ZdQt-^H z(TQr%j9iPv6xE|UvY!*I#9Uk#>W`umZAJU z@{HP}m#G*3c_(hbJe-9FbO#zh5}o)ybm7&Zz7Fm8NN9f?-O$!h-yYnF&hrvBXS!$) zg)$o6MkoFT^Y9EhK`vLuJ{BF{fEhUB+;h%< z7KMBoet-tB7@cTosINdLT7xdU9`msY?e{eLJcS1O0=m$v=tBF$^LNns4~6>2*v$9; zC z)e{t4;7K&X7tugoK?m-|b2~v_$9K>p`w9)bkgwNGSdQNQHTZrSpI~(Sk1FDyDT~oh z`=e<4^A(&wZ$`A626y&3aw(z{Xh7ehf#mTH8F6dO#{~MjVmZ3grReLq2JL?mo##L3 z<<6*zGf{;7s3*|*8>+}ZKft0}X(0R23gjnm^gOb5^Z^=a&ZY4}1z1bHJ@&?#*aaU! zQ~ihF9yHMX*cm@UkL)ZufAc%ChhQ8XxM>9{35!u*F$|j zn)3J2fk#69OLU>H(Q#+d+nzlj?$;gNc^~xoKy*XH@P~NK0P^qIy+(s)@*cYIhj;;g zf?k?4=tLz0Wul#w+mznz~9V-jzY|7En_o9I!!m!!Z)Dmsqt zq?j9`RcIzgU@?xt_IMk*(^cpK8^XE+-RYU0;% z5xT(@n8o_hHVQ7d15M?-n2ATx+j|V%QJ0Z%3d_-Ye{7D!F$+gy4%VZ0>Zb5~E#^}H z6?)WLF&lSc(uH24kib{b_wpz@;rMIf04Cv;)PI3Iiay3%EFBeRtP;zq4@Ec7h`t3s zK?7Qk_HRPh+ZNilk0SpqX!t!1dH6co@c{}sl$96hj};!{qW7JCI1!{)8K-uF$34310N3UP3X=xqdVA%2DA%(&0a(M9}Mk( z4fUhJ&(Tc$6V1%m=z2NHx;V1)&>x$fLcKTo-VQ`39)~X65bBfA0H&k2d=5I{eOQ2N z(1n`N56upA=X{jyIy?CZqip1Q(%! zFGVxD9DSQsV;Me)1lB5gk3s_t$I%Q7OFhzNVp{6IZ40wgg&p5XPaQ8lm76-+eNOs? zYJA>2n*;HKyt=DM?G+)^kUCPDS5DMP+qGpS5MZ z6Im6PCn_sawY~q9p1QhfUv{ch_0WvegaKpnQopTvI=$1iiN@)-GcmKq#qXxAPNZ%a NH7+gnyV_UN{}1{&LyZ6c delta 5449 zcmYM%3zUy#9>DQut}(_G8RItkFJgquP+?LuxlTqHEnS>aY$$D4BKqravZ+?opiX60 z>9R{ljkeWI*e<$~%hHN2=5(p+xE>wnINHAx>2kuJ zXa>$l$E!fw55}vRKa8VLgKuCHtZo@XF;2uRoQrmxk4^Cbbj8cjiPl74N7fSF!*bk* z zY(V`YG-H*>8pCLGo~f_zgO6NA^v- z;2zKm7qbaRN+kc0)KZ3S9fv!B812PpG zqV1-m*Y+N?{d{ym4`D~<4^L9C3ASYZa2W+p=kL+`e=i!qGVG2|qaC-S6Mc;a@&kH^PN0Xi zVSBC^7GqbOgto6iGhB;q?aKIk6{frK;1vpeu^!LCb{&!l#-Lj;5&4#cJJ10ZB6Ef% z=t|ec=kG_iq6^rC_TP`=@h5c4e#>9{OoUlyl79zW!~+9ZhIZV6rua+r{ddT>CLBUj z*QjIi0V>37>SbuZ^U%O5a0X7q9NZV**W+2#4WS6mC3p}WxCJLPAB)ie&O!$+#YWg0?LPqXuqrwh4d^<|#3|?&O-0AK<>Y(ze>w#R zx;r*l5F7jv8}s}TG>{eOfX~MI3+O;~XaMW5F>XZLZ9(7v0}c3dbe?)Nki)+B{vV~_ z1jl`Ve)#Q>i+ z;aP=tcoR+82j~PJqXF(i1KE%EJAfxwg8cG^qv+N(;j3lf<#-K_LQj1i?#Kw?9kl=B zW!(Q1g%xGVw|x`(Vh?g-!dK|Z^0^|OjY2e_GtfXv(SUnlV;q2^aTL1JXVL3fhqiCt zGa08C{Q!09N&cO%FAq#f1@^&8bfS644_l}~b|_pvvY`A45=$59tQgE-z&~i(Ja`8E^nQe{=pdes$6`H?eR04h=tM>6 zX-}c;x}X{A7oQJD1G^mE%A3%3X>5WIqyPR4D=C=L4d}p|(TP4q_ih*3;RKqxf^sIo zrdWuh&`eB`uh^AiW+VCt3V z)+|ORSP|c^LsR`GR^x~0ic{>H6P|+{gD@0}a1N$T^)d>kZaG?i0bRk%=vmkp-+vtI zpQ8bPhpy~!tRF|WBlGti~I$8@`3E><4sDkH>oE#mVzi(ROW+SD_NQIN?F`aK4Kk-W{0o{?}75vfKg5 zKRBAADei}Ms7CjCe5_v|-`|0^^ZY(^#lNCkSv)XFbuV-)`=R6C6`#*X17C>6-v1>O zO!ZncW$V#Yeuj43k7wW^oQtOoO19(?^h@>xw!<~p2DjlDJQN)=IC)=-W@HnN#oQtB z{$EXD2@mFA2^I|{-Pj+qa5Z{8Uqn~>7UtkSbmDq6r41^R+tLDEc`>@M%h60ui1k~s zA@$jK^7nr}g$6u$5ItN=VuQ_?M|~T*=X)_14`4R_h$;LTy`C*DNdjAl22g|jaVyd! zG#!@wPwhA~;0K10e^3A8JTQROn1_EwC)g05zk`jae}eh=Pqf{)Xh27zzo6GFqbh0N z5N%h8oiT;BuZ+(}R>uMiw}N{W)Dv?l80vKbadhl*ciK@hp$hp4@0l*73jb>qZ3by z^}Emj?m-Xvedu`UrzsRr_zODGtLTU312h9)V*wtD{x@21X|j@Hv|V>Ju)gR-mDn6d zq2o@*Oq_{kU^ddOA}mY_VJRBgK<&^eLmG!LaTzW7w4pY?gqui{)wEeozpscJa3MCg*=Vy(kFmveY%({WYs*|yn IR&C7u9~yH~kN^Mx diff --git a/searx/translations/gl/LC_MESSAGES/messages.po b/searx/translations/gl/LC_MESSAGES/messages.po index 4748d9c65..c35c17b0b 100644 --- a/searx/translations/gl/LC_MESSAGES/messages.po +++ b/searx/translations/gl/LC_MESSAGES/messages.po @@ -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 \n" "Language-Team: Galician \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" diff --git a/searx/translations/he/LC_MESSAGES/messages.mo b/searx/translations/he/LC_MESSAGES/messages.mo index cec1057ce732db96c3772a7aa4d3cf021ec14aee..053b4adfce588fadc48ef172cddbf26f014b2504 100644 GIT binary patch delta 4327 zcmYM$2~bs49LMp44;~6nKp_@G76ma>@VTM5q=JZJY9Tb0sI-_lE|sacHP@*W%1Y3o z(cF?Yl`Qo!m1~9*PH0vdnv)}GI;P_?PMeu6-=Fu)Zj}5Q@)ZD!ypT?_wzBI%@#El=ombHlPoW;t2c!i!rsG zF~K+wY3Gfe$r6G)~5NREp+fM~sLu#)I9FuBIm{;5^jIi!m0VSi0ZznZoPt`(QdGZ9$dB2~FSXlmZA9(n zQEY=JF&@vN=DCHACh`)l8b(_aF@kbB@?-k&OB0PowJSnRGyzlaaa8-4kRP*(U&`QC z>qn>w>ybIl0o2xWAsC4oXsmTS7Epc&HQ+{!#5((a4{AXN zP+RjAYTO?&3vZw@nnD^hPgXqn*F%o27>bH)6e?xK)=8)pKZVM~GpK&$w!Fl?ufP=Q zSJ?O4ZT&9PLOw^0+lczAzHxZaKqpXOnaY2jO7UcneV(t3(B~8r5$nM(O+CWh^Fht+~W**e>L(Ih8sFYs7@#y2DpMYhk zn{Y4o$20f<#-+Gd_cW}cybLu?9F3K+;i#<{gF1ARP?>!K9epPAc~FGQu@_dMR(24z zHBG3Fr!WIsPyvUs939?hRDB{&#C+_7wKxh-q85_c+1<*ysI95(O#XGKwo{=1KDF*c z)iLL(h8kcRdT_3NzW}uY2ZQl7RQr{v{%cSZZbY@)j0)&u)Oh<*<27jjbvTN__?<1E zLUm|Ceb*OJ6a0&JuIzMoplHW4gFk?_5k_z)Dm=TWFk%^{7CvBY`>QCJ#zU z$UW|hcBt>P18Sl^_z>QYt8fcyfWevWACm%WDQac2QKx$$^2M6hkuT8HVNd)L)&JHV z*?&(r_wT$9`|@H2YUQ;UhFee_>ycQ^1ssDB+)7GeDJsRYQ0*6?CRm1xaRpvRUk~?! z`U928^encG`OQ5%=)xF<8sG`!3o}n+K33x!cmjPmlY3KtMi-(cst;J@ zYfhs2T}Ry;w~-{8zO2d#=V3ArO7(Qq02QbV)L;azLrqkNDOitMc{3{27g7EGvh{8J z?#+2ODr4PH3oAyAHyJhFEI<3tvnl77RXiC&T%)Wp7)yOTD)4O7 zM7daid8iD$f(q;%)Jk{Q@GKuF7q&g2EW-C13991Q7%E9h3TjOtE_dXL)3`5 z*o<0H)Bty)G>oI%4>NHraxTpRRJ*OHfcIk<^P59FBv5e-HQ*Ig3Nt9^GkgxUf*Q=g z_faeR+SZ>&eMQ$$1K&bzk!PTL@kHZV%6{bBnXj-j>OT!(`u@{+D8y`4;CxKP7j5}1 z)WCJ9mDJ;5ykOt&80=Gq4P~Ej z26CO7q+#w#@-d!rF)EOm7=!aL3YVk4f^}GkZ=*7F1(otY?fbUF35IeEDx)RC$-f#- zr9uJB!ELx6i*R%vLE#2|mEbuXgZ=Z}6)!_&Y#p}8_fY}uMooO!zHdPVco{X{4b)cr zlTZHj!p{lRq3Vwsa3pG_MX0@WONYgZdisZTS(@>7I(3Nd0A{eP3idumm)gccx(Zja>G3-Ej4l3mea~;nA&%WFVH-!JUCEN5bF64=Zw9p delta 4482 zcmYM$3s64}W710;GiFT6)JK~pR-G1u86&3YjHbTQ(Q2KTet$hXQ@wLPyL-;= z{`Y@&&*f-q*cWYK&iN#7yWw9vOrjKvI`iTSty*Ps`VA@@1v6SrV`Q4@WI8u$`2wz+{R7@p(?kcLIn%TV{Nv^HTr z^^KT|U8sppVKn{?1K5v4F=CMJcZ?ZMK@rbI4Y&}sk{Z+ib@&9XLZ#|6ybqTr8{@%e zkTK13sDO8(#@mO3@gSDrr??2CSdGU22_`VVX|N5OtXok7Y)7TA0|(-7Q2~Z96AzK|QAV0M_D{Wyl>e)4+0(lm-@}FZFcG&tE zRI1OT0=tY_$!%1B?MU^DM+NLhr96nbJ`ah_EJe13V_GOE;x^R4dvGkii|TLzHPJQH zv-}RVN1}OK6<`Kx!YWi|euR1?)waC`M^kUW$+!zO-dT*-`Tqw6MRW_*F@eLah*MGZ zTKbjn5z(I2D!Qh3M7!Uru2-*5P{Gj@kne z9CCGx#XL;IY@Cksu^y}O2 z8|e!)DAIORMs{2Gq9*9Za6F7k-4WD4J@)zu)QV5q>*wtCFHsBm8ol^0)Ofd1{l9l8 zXky<;_r^F>Wa+2@1E>iL(TByTfy!)sD(e23sB=CCH9;+E#Vb+ctVccKt*H54MJ?3% zwJq#Jb$B23OnXoRpF$na&+YYZP?@-m8t^V^!q{v#z(J^hhae}_+=qG;rKkXFa0zZe z_LgJLQOIJ%tEh^V=k8xAlftl2QiF%QIh|$=KoJeyKXP}qY z=c`zWn&<*516NS}3I(!nMxdV24^bU!P%o55B&((iWAHR8<>yiT|AWdv zRFS)P;!zW1U>4?JB37U>y%5!JRT25ug^e`C<4c%}yHP7Uj&XPzHDEvTF_-z$iqd%- zseK%Bkjy01=~!Z|MNL$X%GlGWd0xgW>>Nk_711AP&_HK#KK7#qDj9E&8&*@FiptO~ zR0cw*ekXANo<&V?5qXQ7Z*evz^19PsLW^+_Hls53fOIhEZMW{k!Ld|_=YJsut*9L}(Oyi&!kPU9` zq3#=7<_0_+6~Js9f{!8}vxYBa@NLwwyp0;yKgs=dEI=)60VeAFFQuSkwGNdD2lb4$ zA%8oV4%~$Yk$q|A@mIwN+=>cdFIHf;t$&B<)T5@j*GHnpEkrG(6hFaw{NL~Yga_P| z1yPYdii*4wpTncL8)r{-kLNe|Aob*F#w^3-n2RUyJ-mVZESS!qJMkY;3p$Nyc+s}s z4U+$48ocH1kI4{>pq__XQ4uOt8&Ii#-d^8@)2P3JO6^yu`);BF37>Ave$2;t_&M@1 z1vA(;xEkl+u^HrFn^Lu z51|%t!d~w~=5x$-d*KfHxgn;)O?@^hl@n3zvrsEriVAEcDxmc^3^(Iwd;^E#U+{7K zCn}?rm3#$j8k?I;aM`ljb?dU48dubYUP|zV`O4Qf)vgP*C5HRL>&ioIgEPbBfwcCh zu<}rF*iesW1@-E{^Wjm26SIoOm6a5RE@yA^MD@1z?&N<*s3C8DWMmt~?%vkWk)nXd Z=N8Ww*Tvf6^k9oO@-2JIhcgFw{tJSa-R%GX diff --git a/searx/translations/he/LC_MESSAGES/messages.po b/searx/translations/he/LC_MESSAGES/messages.po index 57b17d828..18c85da91 100644 --- a/searx/translations/he/LC_MESSAGES/messages.po +++ b/searx/translations/he/LC_MESSAGES/messages.po @@ -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 \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 "טי״ב" + diff --git a/searx/translations/hr/LC_MESSAGES/messages.mo b/searx/translations/hr/LC_MESSAGES/messages.mo index 856949d180519833a75f9f5be278d8fd97691ce4..2d6c31645954a96bc6363ba68d497d21d7966758 100644 GIT binary patch delta 5165 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 diff --git a/searx/translations/hr/LC_MESSAGES/messages.po b/searx/translations/hr/LC_MESSAGES/messages.po index 2a3f7e640..c704b4bc5 100644 --- a/searx/translations/hr/LC_MESSAGES/messages.po +++ b/searx/translations/hr/LC_MESSAGES/messages.po @@ -16,20 +16,19 @@ # ganoci , 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 \n" -"Language-Team: Croatian \n" "Language: hr\n" +"Language-Team: Croatian " +"\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" + diff --git a/searx/translations/hu/LC_MESSAGES/messages.mo b/searx/translations/hu/LC_MESSAGES/messages.mo index fd3d724a11f94361a8fcb72a872c2fddaeda5c42..d2e70068057e64c2c34fc27451a89f29ef75a856 100644 GIT binary patch delta 5262 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, 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 \n" -"Language-Team: Hungarian \n" +"Last-Translator: return42 " +"\n" "Language: hu\n" +"Language-Team: Hungarian " +"\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" + diff --git a/searx/translations/ia/LC_MESSAGES/messages.mo b/searx/translations/ia/LC_MESSAGES/messages.mo index 30e2645c4d355785b8bdf28f058eef48bbe5c06b..87a7c45f6fddf02cc804e2ad5230bc39bd7fa7ee 100644 GIT binary patch delta 2032 zcmYM#e`u9e7{Kv!=e+K>x#?EB3%9AYTh!cY<<@F~6qcdXq=GeOnY9*aNLhbWZ~bE- zk>)Ch+>$0COmX@O5;5377Ud#HQi|vYR;>0%4*!URQQxl|Xx!~{&U@eUoacG&dGF44 zoNrHltSo#l@bePCb^QLYz}f#l2Ns2}km(Te3M0``EMuPH-8g}pFIZeq!LB^H_dKgYvX()?quGLCNhOf@Eoqf8MLz%WT%zU zYP1uzn3zeP0r!Sm(FE3_omh{}*oQ9Ii&Z#`t~-IYdOXfg<4w%JMiZS!6DwtM4d&4M z+oGN2^nWQA*2N2tpo#QhEk1+S;co24qu7HPvhk4hqKPDEVtde!U>JFY(PBhLgbfcHi z`(KaO-$diToy5WWNVmc;8fX;V_!PSFMDz@L-?``oH1I{t;ooQ>Rh+;Y?8GlKJeuek zTTXk7n@8tKD+9V3I`Kig54YkF`Z#6iYaSc05jUWxdplY|f-CV2wDKe9*%?DZgwN4} zzQ=z29sS5R@rO7`c!GfoUO)rBg;ww`TG=?7@o6;RS7-u1qi0|aU01a%gcX=W<8`5} ze<<1$-4fk~l|KIiR|b4jp{?DAyuuKFuErF*a2oAY8PPc|p%zUfkK_~XhMDH zeNUkU>_Q7l&_Z_OLiP_IFc`s)&;aZB;0)M}w_rco+5^#p(L-pU!)Rikp#^+_SH1_3 zuh=kyt(c`6AH#O^taM{?BZD0b%=kkzzzDkW7+S%vXh$xgUo6E$v65!AvfI#vyW)H^ z8mAXMLj&j;+Jg_{Nqh{;YU#h9*>)awH`tFP8xErZC*t*Q(Z^{PJxp`xp_@l5Z=@U( zS&dEDj^6(`T3A0?$aBc~3rU<0=IFl*KjwmtqOCiL2AD!CosRRf@%``6z_aLMbO~KQ zkDiGv|4NNhgKnHhH(nFx_oIpT_=bb0(T!e2Z+sPR!2L+K!g$@_pNl5b<3)dE1`n0| zk-k&9alzn)ir>=d#p^RgEw|UVw05+#rFBa-6r|5q-BpktTec>X&Q|9N(~?|cCS6^( GBJ&^pV!aIj delta 2156 zcmYM#du+{T9LMqRxu9#c=g?}ar;X}4I5wqq2^E)UGIt^BmT4m*Ql(<%5_S8DWofcZ zHcrI&gH1!kCDaiT4gRqymW_yXX%LqgL6;>J#2VTA(>{r&?dy4dp6B~~zu(_;s-^7C zSnoma;9lcv8$bE{1cRD={Cd^HtQ*rdYB^bhf%yY0ijz-S3 z3C<~)!Fn`gF!fhyaGg}5D+$f3>!W(}yOTy$P>UUgnaCHOmruoaci3sfO*QH7+k zXedTd2~C%rZxsw!W0goTR_$DiN^A>i!`G<9zH{>*P>JowbUf(hC-E!hji`iTWYY^r z;sBhCic^c824A`d>rt)Qgi5F$iD7$Ci5$diJc`5c5^8-LW?~0wUzlvv`Uq-XgvD5l zeA{AvDY2S#`rns99S^i2;XHs@%zt+C^Qc5FVIE$`f%q3zU>aF0#wDmr*MutUJ}QAn zs03f3UWra;Xqh4UuiIM0104{@K{yiC+DcSnOEHcsQ0sT2I{T!sPqssgG}AG_5!7YvPvz-9oK@gbMf$Rf+ZKs&FtW z@e)+LGSt4AsJl^x+UH?ZpZ|IWdN(Iffls4e#jnnr&RfpAsKBkxHdL#%nW3d)E=F-8 zjze{BE9%mHi%MueW^uk9XTWQC3Ll~>dX8LR zd+X+D{MV^{dCn**p&_VFmZ0L4qbi^3=CeJwU_R=AYShPV4Ju$A>ay%a1xlb2ID$&x zoSQeJ3TSaY#m>8eTK675#SGpjO|&w-*GaXtiJy8jbt|u1zkFTti\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" + diff --git a/searx/translations/id/LC_MESSAGES/messages.mo b/searx/translations/id/LC_MESSAGES/messages.mo index 5c26e4c0394af996cd7d7a57b16574598d763886..c8aa60370add6ce23b723c46a5e41e0a56a84306 100644 GIT binary patch delta 5260 zcmYM%32@fM8G!N42}uMA#2^qLF&u$_5D;RJQ&1Fw2M8r2rz2KV9jjES!uZju)dCGx ziH-#=G<8HkTl@fVfVP5KTkC=7Xp16P6;mozD2QD4dHC;4nGC<({q}hG-Q6$H{6xmV z6&a~LZL=E#e@146P=Y1-*8cyeq$q?Os-5v%EXQ+jXl$Q|Wz?s}`rX)q`oidgm`nX3 zEWpR`ENsF{LP&+*Q)orQQM?ATnLQip&;c`|_2|TR;vl>S+u#P|C%nR6U2r!V&~dE7 zlHz3C711d;hV~g)$@-y*LIn+Pp$i^E1ITV4g2~9kZdinQSc9E#G`jFiti(Ie@vG24 zpG9}R5uI-<+W#e-iSJ`0>xXLcT8M98XZ#qm@Dw^QqeBR7F&Eu&2Xvv{(ZNW};bI(u zbvPZDp#dC1$9)^?`5lvu6=KQ`B@~>n96g(U=#dOXcQOvU;zV@kx1-}4&>c0R{nkd) z*pm7dG-EF#dkJr%>+DA}d$=R{cfr#%IG}*pwFp~dXLM(M&;>`w&&Qz)PQp^W7VW

a z&D58%{$I5JNwj|po`~}nqWw}GDLAkUOR*Q)aU9z5n)vy2bmw#M7OY46eSm&He1i7> z0^P{h*aN>q$MxU>X(ir{{gF(iLK6jVe;U0cuOKfY?7{AM6nzaPrHQ4{Zs?g;pn+7Q zI~|2nu@;BmQ)v6%=mGSoj$#|%e`Z+{c{?=n5;P;d(FF$JnTcb2EqZp>pgWus>r2r7 zPoM#?qd;ajnNZ*)Hz`9XAo<2W1h zyCp|;Gx9AS9!BST8V%q%bld?nv){zezw1W+dHNxjgEnPl$kPm!n2lr6fwgF0Q}HgG zk2!b*{rm*>#ul6hKVblWO~N|77N1439rAjT1+2uY@%oI$#Rt$k(tytMM2bQS3Qfq`VJ*6& zUFZZKqZ51)>xa>aPNMy@h;}+wq5=FIJ?jR%9Cx6ZXjPfqo!RK!YC!K+Y6S%Ycm|zd zJ-WcASl<>u-yYlliblRO*58lrK?D8_^Y9>&tZ)pSw~U+Xf<4gj1Ce!8p@u>M4WrNr zCSX2JiOxm?x*0QZE;_-Tv3&tL{$9+&rSbDe(49Vx2JkdG&$?JoV~+2CGX)p^13KW( zXvg=?bl^K3&Cn<4LjOV+IvPJejxOMvGq4=Ae*yYM)()Mo63@Z`=sY8^jqiUv1p}Cd z?tD)4hv8z z=$RFtpF}Zh4?g1#uw3v&*p9U#nT>JV^6ewF!B?I^OxgpLsNe*8pv|=D|ibI z#COnfxdX|+x3x8`SL3-j80(QfVHKLvchMB?LyzinEXV(#6Sd>b`9;`&;euO=T~7b>Qm4ZFT}RE63s*! z9see}^S`4D??E&A8J^?&KSaUETk^$h0Bz9)%g_a@&>aqojz<@)Lnpi|x)5FH0ql)S z(7W{lj>Ol{Uv_ylNx$+la{d(*T&OP=V+|U}RoEV9qC1<1p8XH*W)nO4|h;7(li>t%jo6Xjb@_tMafRPpaZ+ddVlmTRO6Y2 z(7-3e`n33YJ({W8WBo34o}XaK0ZS<8aC_p=Z7UyW_j)Yd9V~ z9nIvbdt|xj0$tFZR^ShCAksDb8V&5D;pE@v(i}UUKvSMOB1vsAx}z?!UWN9rK^GX0 zW^6LL!)e$HZ$me-9NXbDXy&$|8+sM(|IZW!o6@(pz^+MyO5I2)a?9(_JP zMkl@>EAVmj2)CmF?L?3019aR+$X7);fGictMkW6tNzJCBo(fk|Fy)ic)Xu@qI1k-v zBbuS#U>0shceWL~;!F4o+!xz#9g}48N9a-9gFSII*5TWDBlf<;jiz|V6x`uP^gSQI z4mje{5LRFv_Qj)k6LuS$q_hEjt}8GH(`cYCqL=Qi*!~aXyC>{LkGR8S$%f0Zfc3*b z3SP1i=tL8vQ?Wnw8E9&kq7$q{&vXsC&}MYp4y?kz;0<^pwqJKS|1hO~BTmQP;&qrg zj{FayFo%K@u0+rHIn2dv*b-mH7WhW2zlZkU6YKv*13QA*_+4zz9-oYFg??U)eXtY_ zc*6Mj{wLAkf_3Nwv(N?RpgW(7-i`aBkD~ooqZ9uQo$$rzAJOrzp!4mD?H{0--h+<+ zdOZ1e;IY{8G`iEQ+N8YzeTIeTLOr7W(Fum20gl1~oQTdh1M~6v=&iB+ZnXbGG_YT$ zDEN*aMR&LcU2rRU6g$z^u{Zh^o<%)ONcy!x13M25pbr|rh3F+7j?Oa`Gx7V_5$n;T z9d$ni2Q);NVHWjYVHbQ7d*C*7!cTD~o<;+kk-n*DdPe$h=M?9rKkxLX%=DTrtMk)S zdi^vj{b8TYnJufTOREM9sT$O@qF+{e)qsa{)73TkS?NoLZY@aXTvnN#zMytv=Klbi CIwl1G delta 5379 zcmYM$32>Ih8Nl&Pz9fFP-4BP zqA(mDMYJ+PrBbD~;Ive%+E!XKL$x?i3rrE)aV%x5{r~gsOqsxMci%mpeRkiMoZXyp zYD-4?yRm*8@2gBxP|4!oTD&RBm3FQWcI^dron z{#VS$&#(ahg=0fVH_ui`!#HNG#ahh57tsN)M1PJ3@@sT~cd-&b#BX6<+a$1d*nxTl z8dwch;4*aFbJ3S^jO+iDLQfu?$8K0&k}NzK4P*|Ql=;{hZ^2yrA-2O!NDSdMbeY=xalL%0kpF@@96fitlP=b}5l4PEH|=mumD z;VB%7yRi;WqXArVX))^cXnfJScXp6fS%EV=+Qie?qnNw#GUBQ52F*EKzDQo z?U%tr&BYej3eDK1$R0yybe*f(k$(diPlF5Aq5~F2Z^4$-m!ms-09|lXe7+4`=tV5U zSJD1|Kr?q7hvP|f{1x1AGdUzWqCNRHlB;QO2UF017GZ0=9ZmHbbfJxCfLm|`zJN}6 zGI|=vQU4sBcM#`zF;=1dzKw2lCJx3M(iA+?&FDhAu@C+dP5tNS!e65cXLGf+WwZnh zxC~8k&uAq&ZX}wq>R6wQ_Md_FPcNk4g!O30JJ5kEu?$zEseBF{uoLaS2krL;y0b%g zD;`Gs4dSBsx{gBok3%;!1-oD!GAPWH!2Lra;!xI zyC=FT`T%+d9zp}zi0*hR&ca|2JILogoI}TD(`Wz%<>cRi<7qIp)6ouf$hRcifTk>s zyux7}X5sVbxLs&q`>+9oC77`R7=|ja@^y64&8W zJczu)p|~4^umYXvAbtn`fhnx%o}{)G&CGl>fZNfdxf6Z8*Q0@N!Tz`dTj0?&1<&SV z%)wLWnV&-^`UcHRHmeg;C`5N&iB2#Y^Ke3}Pe z+=gDFL+D*NhhDP(q5O=@mX|&-I#~3M-QO^y@#226g`@c(0Pu<=bxhUoQluCY<|x9pQqrC zzd-{jF6+W$Cucg~{YzD5Je?UMx93jNNMp#8gJ+LR5V z-~vO?2q&O{OhI=x1Dkh(zJ?2svkUj4fj^H6@Bn(-JMi^7p21s#j&EI&^eaXGm#shp ztFGYuJ5rbu8*Yo+8_~A44a27JZNRV=FA=otlmv(TP`}AENuPB{rfP+Z>;7 zM}ESK{mH)*9HZt=&Y}V33`l-q=z{!&tN6!>m!h|~0jJ_>9E3;F2@80)OzlW?!AaZ4oqYIotC-@Rg;eVq3%4-I4a2~eD?YI)n&}BqZj(yN0 zt3?-_g=S;{7UJ#bI_Xsu%)nYSkf(73?!o2w1$q}24NflA6109dn%XoP;KS&VJ%KK? z6}^PJ4ybuK=e-o`Ai5;5I36975-_eQAq5UsJ^Z3u) zex>MLD8oy!3wjAhqw|hMGcgU_@Z90#-@-x~zK@I19iK%f%3zzO_#!OE*4Pufp&6+~ z`_04kcmul7=jfgJ8rx$YH`+VU70a<24eZttteh>K;g&&~L-$KWIh|c#HG&5(gHKzYfp&NyQ(aD)sq5+LTk7gn| zum<_Ygn3A8;R)mw4j-aBE#T&Q8H@39EJx?5M#oJ?@5~zX$R1Cgr^6-+p7Azxf|v0w zJb-<%^6I305jyZr9EVa4{~6?M=ulA3ni4Y&RkKZMXsX7KLNzT`8HEoOLD!hiR9k_(__Q+m`i;LX5pQ&ePwh_eBOw?c>W|B@Y~UM&;>t0$Nw3f{}{US z)94+!5G|ZU{vFV9QnGLt^lbW}6Az3IMJF1CPCPlbPeW5a8=YrKY+sJ{Ye09rDz-m_ zzLp!%jc!lJ!b|7`uc48?iTU_DG>|6rh(3v)j_qHf{V$*k7F?UW*R9ZMy63m?A# diff --git a/searx/translations/id/LC_MESSAGES/messages.po b/searx/translations/id/LC_MESSAGES/messages.po index ce0fb6410..0cf14b93b 100644 --- a/searx/translations/id/LC_MESSAGES/messages.po +++ b/searx/translations/id/LC_MESSAGES/messages.po @@ -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 \n" -"Language-Team: Indonesian \n" +"Last-Translator: return42 " +"\n" "Language: id\n" +"Language-Team: Indonesian " +"\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" + diff --git a/searx/translations/it/LC_MESSAGES/messages.mo b/searx/translations/it/LC_MESSAGES/messages.mo index 01028badea9887173fc3d3a78660b4163b5e5ba2..830c8ec6a01c747f4d0dd1124838dc8ac97c5ff6 100644 GIT binary patch delta 5572 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 Y!}b5cqo*tl^{<~<5#&Ex@l4?V085^HLI3~& delta 5496 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 XK0YnTQ$g*IW6J{C(n>A+iT{5A3}jBK diff --git a/searx/translations/it/LC_MESSAGES/messages.po b/searx/translations/it/LC_MESSAGES/messages.po index 4293f3997..b5acfeda0 100644 --- a/searx/translations/it/LC_MESSAGES/messages.po +++ b/searx/translations/it/LC_MESSAGES/messages.po @@ -26,13 +26,15 @@ # feather1 , 2024. # return42 , 2024. # unoyoa , 2024. +# tiziodcaio , 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 \n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" +"PO-Revision-Date: 2024-06-18 21:18+0000\n" +"Last-Translator: tiziodcaio " +"\n" "Language-Team: Italian \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" diff --git a/searx/translations/ja/LC_MESSAGES/messages.mo b/searx/translations/ja/LC_MESSAGES/messages.mo index d7ac19133b2e78255bbcbaa52d567536e68d2d96..cdad247b1f2cbe1159cc8461cbd2bbd4d407f877 100644 GIT binary patch delta 5323 zcmYM%3y_Z28Nl&(Eo<$PWm&?C+q&$!Y-}vcy5Ba04Y8Y0vT;e>LYl}Xf^>XSf*2J> zLQ_+s?I58Qm&Xfni54Vu{gup|Nk4^B#P=#Eyp{t0&{R~XkUVDslO2FJFqVG-NCmo zjrx0-iHEU1p1|Qzl!(5h(13=HM6JYPtc@$t0WStOqJg(zPuztKu?G1+y2c-^Ftcf# zP-iTnJ{ldjIJg{#QGXG;Fn@G{LOu<*&YE@4~F+QIv|^(1AsmjlIwnk3=V$7@UFR z9zBJnxDu=IeKdh~E#h$nXuT9&*kDZ9Fq(n^E6}rTD&52F)Shv$pX3729U zT!r@k9rnYw(Q((&9n9ipYZEkq=4j#_TC)FU(wBzDScY!##NZrsqMxD(K92)%H5%|( z@Hm!HKZ#Co7w4FT1!%uM=t2iz364UKbZLTu6K=pl+>UPjNp#{GbmEJ_Yr&gn;&r+5 zZgF<7B|5Gnx?_c*-V^QLAMHN^jhh%p!H$#Afzz-JK8AK&g?3yYo^M81v<)A}ooK)2 zToAt#d1(IvbRqX(M;wHXn;D#oPx=1Oqu^H6pl`ud^s=P2;i6z`?0_ZcTTvC98k~-v z{cJRm1?Wnb-~?QarT8`4-j=VGcEwEJ{}Kuw!B8~wN;LB-bVuf(6IA2vz@dFLI&M9> z!fm1c7qtIbG@(n#n;88Ey_AjG#S6{HOy-YDDcp@^=)n2tM9a`b)}ohZGkQsP;(hoo zcEyamxPJ+{#Y4~|y*ISqkKL&M2>am*EXMaS;RH7*cm#FZ$C)-m0~8^1M7`0KP73XF zgVpG5Uxbcdj#F_1dSus;uY1&rit&1&36!Gap6$T?yTwaGhgHZoB3g%T-S3fCINFD` z@dP^X6q;BKF2uU*e;xc8`g{d;#+Q))ql5fWf#-1&_URP=My&6|{`aO~9}N%SW#ko( zhUByDI2jFe8K+@xLA=$A(H&WdPP`F4nl0#iy%$aRFy4d5(7SaDJ=%1FreWg*1<$+% z8mIu>k-L#xq7rmPlhFWkFaw_sb;ld%1+@PftipY00y$mcvu=SSsgFT-;+N>%NnE1f z9cV$#OO}r&&=Z}oKN_eEooH03k3;*75ABoD1qC7b+J6iBVS5eJeE;90 zP#+JYfj&bo*OzDlSJ0JzAFNXt_iu>aox9L+UC{}8qX`Z|zo=zs{0ZnzO-JL;!h{(v zq~OXHqXU=W?UkUf-x~DHcA}YohEwn&dfUtSdYw$64IN)n6u-v(k>9Ck0-C^l?1M`~ z{hcEA--(aVV4&k@y(V4IId~Ecco93{cla!}>ctNVZa@P)QxgBBbQyY7JA%8AU*u>H z`YU=IP4u7WxGUHmQ~2r)#zaR7zojq>?O2}!;@c55MiUu;4jh3dIsr{|I=XYup%eWA zJ%Zin)*iwkcm=(@#ry{Qd>~pMhs>9VswlXEAIA;REbK`A33MeJLi?L&fCFekAESwU zflhc0-LbsBalcXM^GDEyJ&i8xxzN51D}DbDQ1F}Ih@U3khQeSE^fl>?O>iXMfsdfK z`f)VDRhWxAf*+z2p2J7+A86e2{;}h5BK7f@&HT|G3TFBNy2Yo_TmB7J;djX29iqws zaliSuE!~3lJBr5n96i!6L%jwMQ@?``-M9~gSYYoavITfG*B^D z)Ifc44-P~Fe2XSjiyPJzvx5DQH#VA$j@uOcb#N=TrTuj@&e0)>c%suZtfk=`-jCHo z za2~x>&H3uI!k%cqN_2-F3GEw0`+jss4xtl%g0A!{oPu@A`1d2uK%Z|y6HM%;VBme& z9RG-gcpAwe%D9(zAIG38eI@uBdiHOj6MuzHa5+5h#30|E5;Xn@bmDQr>G-Jc{{jjI z`a2q^?#MW^Cg@J&hWZ$+NBtqR-xO?*kB9m?>_YujOv9tWPtn9a#|7B%zBtZG%<=ty ziNaVOypA34dwd7mj3OAGMbB*U==e7viO*2Kfqr(CXyimCWMX5mN3y^T(xpW<9rW4z*E z-{6qoNHoq^O#F(%GvPt@1ALXJH^(_R4`<;Sw2IaM+Ym=l}PN6C z?O&q{{Q=$KMAL`jl@*{Lj9zGm320*T(5-zA-GPm0V%vke(0*^CiM@-)`4}7G6?_tF zaj~pdd%@aHoBETPxBpCTZ!#t&`QMzTY00K7kJn0GX!Y-m_|`c>z7qKIcZRXtmJ|*qv|A2R8CF(AE(APO8@`> delta 5481 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 Q?(zcu``?f)GbaW87qg#(hyVZp diff --git a/searx/translations/ja/LC_MESSAGES/messages.po b/searx/translations/ja/LC_MESSAGES/messages.po index 1f6669f64..207ef63a2 100644 --- a/searx/translations/ja/LC_MESSAGES/messages.po +++ b/searx/translations/ja/LC_MESSAGES/messages.po @@ -23,19 +23,19 @@ # return42 , 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 \n" -"Language-Team: Japanese \n" +"Last-Translator: tentsbet " +"\n" "Language: ja\n" +"Language-Team: Japanese " +"\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 "テラバイト" + diff --git a/searx/translations/ko/LC_MESSAGES/messages.mo b/searx/translations/ko/LC_MESSAGES/messages.mo index 2afe97ae71c2c50a45c4f9b3761ca89dcd3e93e3..8b0c56836e30bc3b79e03b40f964147f75dc68f6 100644 GIT binary patch delta 5262 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\n" -"Language-Team: Korean \n" +"Last-Translator: return42 " +"\n" "Language: ko\n" +"Language-Team: Korean " +"\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" + diff --git a/searx/translations/lt/LC_MESSAGES/messages.mo b/searx/translations/lt/LC_MESSAGES/messages.mo index 3e327061e2b4f5acff196e7cf0c70189441d6edf..fc50fe60994a12ee0e92892f836c614cb128a492 100644 GIT binary patch delta 4843 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 delta 4977 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" "\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" + diff --git a/searx/translations/lv/LC_MESSAGES/messages.mo b/searx/translations/lv/LC_MESSAGES/messages.mo index df2c60724e2e19b5271337b5b276ad10e1b5f380..d4b6d075f2420c4aa25e0425aefee4bde27a6da9 100644 GIT binary patch delta 3224 zcmYM#drZ}39LMnoI3OUPaFmNEhwum-1p_q>Ua&A-rp5+oTZ);MV_1nPQh4e3hqjoe zW9ST9Q|Bc`E%VIgblzr~)^fB)GDMrs*`Se^nKo+J`*VKJ76V?t=l*@Z&+|KH%lxgC zftyLLZHAxo{0-&L8>Q0!KY4M+L{iMRj>UeI$D_KIBEM!j|EA#_jK|M$HXcM5_F;dF zpivG$<_VZ|9tKh|90%h#dSW3a}Nm@GVpZdeDP^VLA?`llm8;+Ka6( zU^M0F7>ngdGEAlFS>IIipa7Pm1~y-q)81}sn1xYXfO_P#4e>Yt1nKNOV-FDk$S)H)L}9H(HU-v4Q~VJ7NQRfHOhc?}hDC2FB1s0nIpdmSpE zHK=|YY?_M-x8u^vSQ_${XB{XfHlCjJ$bnj5Gi=|)BVkFAeNb5id{Es%wp zXf$epBGlV53AMvA)I8;=4J<;fQ-$ik6a$K|mIr-;eTccZ70IqSjc;Nb>P{4K6DKnB z%cyZ1xJe420hNhH)B-z@A!avL;3?FdN#JvMDGo#R-!zQ;YvOHGaG}is)P$#P`64pb zbf5x!V%yyrd;w8T#{!&#+WE(*x8gHY=1$>DcnNo4g2xH$Ao?g@@Q{D)q=yQ!Y#yK@ zi_LTba$_;&TwH+*QK@S~^}mk1QRWeb#__J@Qg$O#nMtVnO4OxYjG;SZ>+1qMC^b@N zwHbApcA|E21a;P}=*3Rdf?+gr3MK`0wqsEJ{HVZQ#L$-v@IQeZb8`-HipI zGUvaRaf z86)v`41NFi*oMcbh~sjY6bGRes6kCwZ_DdZN443O51=x03^^rp7PsSV)IzJck!oLu zx&xmg$uun((2lS2pw!3voNqB7YUksTCR2gh$!gRc*n$e^C)822+xBjZq1=aRj~>Zq z2D&i{XW;W#jkiRm#*2ix1h$K zMUA_R%1kTjXs@F-_yjdiuWc_)$af-1Lq+OAr8paPSqjjPub|$F4LA??q9!s;^>Gh_ z@5g@`5geMB5*G9)t#t)YB;N}Q9!jkWk1q6Q7LJ)v_*`&EdQ3zxH)F0VW@=4s_2Lzo fD_1pTCVGNjWtE2oBfQO#!Ck)9;XzN{vhe=^b3!*X delta 3327 zcmYM#dra0<9LMnk4|h-z2)W4vauMV*#7G1$1uAVYZ>T9^YMP61F%_DW^0PD$TQ|jQ z`qZ>6-E>wyuK2@LbSuhi=Cm9oE!Q%&=Ak4FE$23yVgzGUHTk#>>iRpO2wx7d1p1;8y{0B9mccd|yn1|sw57n;@wX=2{jVYsy z8HM&MzLVtsSMHk?5P(2JV*7fi#O$R=FMDx>@D^D&2lBJ?A_=8SE)f>U|^3Dus!!7AcR)I|B1gp*JioP+AO1jpeT zY{d>#W&_xb+Cxzrj77a&P8o$#3iYV>e-A2!Cr~^33>9$?YUh`ctefAl7>7`)&F35x zSP3d)Q&9_7qvn~9R5o9xY#~VL1kh(YJu6d zy#^IXEh;1RsPSu&?;z8N>c0s!z6~Sw{NS8e;xsK9QZ`rWbZLl~*|-z2&VMWGgow#K6(O+k`lGEoyxMeV2(bu{x( z8(3xQ*P)J}6?Nu2Q1f)5=J%oAp7+twPES(MM4zK}(2H8=B5J@DR3`dR-*Ekyga4ue z%it!i#B$W#@L@RS337a<9u;5#W zP`CIJDph^9{#R6nZljKD2z99<*o8Kdz=zJf95b;Bwct8b;4dSmV%kwh?Hr__0Ux0v zJb}7g7m!!mTtlVwE-KYg8ScP1Ya%K`si^U#sPXer3~GV|)P!DJUw}IENvJ^QqEh?>cH>G^V2N4oI@vgZ^-U>- zNi?iREw~r8;C|FZ$52Oc67>yu8uhwew$ImX`#qda{e9$qnX+s*BTG?7wgHv;mr$3` zhvBSmE>h5fKiY;rPzxlEcNfe=9Z@OjEN5ac)}eN|($+U%D9;YoVFxPk8>spIw9kX6 zBMac-IqHy1L8-|?j@cCBUR;D)=r7y;H|j3vRp3<2Sk#UmL#2KzDuX`Mf4u{!JMjrJ z)O?M~-~j4Qged=tY~}>_Oy;6Gtio_?!3cEl5!{I(*n=~$7i%yq&mFf2b$1$28`_NO z--$u^Ch92mpyof6NB&hfPDKQEV" "\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" + diff --git a/searx/translations/messages.pot b/searx/translations/messages.pot index aa7f968ae..8b2182f6d 100644 --- a/searx/translations/messages.pot +++ b/searx/translations/messages.pot @@ -8,7 +8,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: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -530,6 +530,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 "" @@ -1310,36 +1318,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 "" @@ -1457,7 +1440,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 "" diff --git a/searx/translations/ms/LC_MESSAGES/messages.mo b/searx/translations/ms/LC_MESSAGES/messages.mo index 6ac5aabb660077bc04f430210e92788e9ddd9d96..3a15b0a222b23336213b30ed78ac1eee42bfd6d9 100644 GIT binary patch delta 2911 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" "\n" @@ -547,6 +547,14 @@ msgstr "" "Memaparkan IP anda jika pertanyaan ialah \"ip\" dan ejen pengguna anda " "jika pertanyaan mengandungi \"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 semak plugin" @@ -1331,36 +1339,11 @@ msgstr "Laman web ini tidak memberikan sebarang diskripsi." msgid "Filesize" msgstr "Saiz fail" -#: 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 "" @@ -1478,7 +1461,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 "" @@ -1639,3 +1622,18 @@ msgstr "sembunyikkan video" #~ "Buat semula keputusan nama hos atau " #~ "buang keputusan berdasarkan nama hos" +#~ msgid "Bytes" +#~ msgstr "" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/nb_NO/LC_MESSAGES/messages.mo b/searx/translations/nb_NO/LC_MESSAGES/messages.mo index b747dbe4e90d385753d63fd1afe8eae3c35adaec..17906c453c3dd8f5f7824b29c08dfabd1989cbd5 100644 GIT binary patch delta 4745 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 A@&Et; diff --git a/searx/translations/nb_NO/LC_MESSAGES/messages.po b/searx/translations/nb_NO/LC_MESSAGES/messages.po index 7d74d7269..93ee9e22b 100644 --- a/searx/translations/nb_NO/LC_MESSAGES/messages.po +++ b/searx/translations/nb_NO/LC_MESSAGES/messages.po @@ -13,7 +13,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-04-07 07:18+0000\n" "Last-Translator: omfj \n" "Language: nb_NO\n" @@ -549,6 +549,14 @@ msgstr "" "Viser din IP hvis spørringen er \"ip\" og din brukeragent hvis spørringen" " inneholder \"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 sjekk pluggin" @@ -1356,36 +1364,11 @@ msgstr "Siden angav ingen 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 "Byte" - #: 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" @@ -1503,7 +1486,7 @@ msgstr "Deler" 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 "Antall filer" @@ -1847,3 +1830,18 @@ msgstr "skjul video" #~ msgid "Rewrite result hostnames or remove results based on the hostname" #~ msgstr "Skriv om vertsnavn eller fjern resultater basert på vertsnavn" +#~ msgid "Bytes" +#~ msgstr "Byte" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/nl/LC_MESSAGES/messages.mo b/searx/translations/nl/LC_MESSAGES/messages.mo index f311c1bf481d2ec01b00700ac3a32d584b30c4e5..a337b8d47c5087423b0fed930c92157136e4d61a 100644 GIT binary patch delta 5323 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 R;i-yNndis7HuC=T{{xgWMtT4M diff --git a/searx/translations/nl/LC_MESSAGES/messages.po b/searx/translations/nl/LC_MESSAGES/messages.po index fb8943c3e..698b013e1 100644 --- a/searx/translations/nl/LC_MESSAGES/messages.po +++ b/searx/translations/nl/LC_MESSAGES/messages.po @@ -22,19 +22,19 @@ # MVDW-Java , 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-12 12:24+0000\n" -"Last-Translator: MVDW-Java \n" -"Language-Team: Dutch \n" +"Last-Translator: MVDW-Java \n" "Language: nl\n" +"Language-Team: Dutch " +"\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'] @@ -564,6 +564,14 @@ msgstr "" "Geeft je IP-adres weer als de zoekopdracht ‘ip’ is en je gebruikersagent " "als de zoekopdracht ‘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 controle plug-in" @@ -1378,36 +1386,11 @@ msgstr "Deze site is niet voorzien van een beschrijving." msgid "Filesize" msgstr "Bestandsgrootte" -#: 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 "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 "type" @@ -1525,7 +1508,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 "Aantal bestanden" @@ -1968,3 +1951,19 @@ msgstr "verberg video" #~ "Pas resulterende servernamen aan of " #~ "verwijder resultaten op basis van de " #~ "servernaam" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/oc/LC_MESSAGES/messages.mo b/searx/translations/oc/LC_MESSAGES/messages.mo index caccd5ad5226ff36f1e41e2d3f576a786f19c9f4..6803a5ba64f1b21eaebca960fea54984e85db48b 100644 GIT binary patch delta 3689 zcmYk;d2Cfh6oB#RYv~HK(t>R*Qs~A~mR7Nf;?fkAKnw^XxUdBkMQsGsP)(npm?*f^ z;sOaEY9!+B3rLJgBB=`o31|cfqE=#5;u4KSQNi!)n?G#Y{_dSSbLPyMxvx#l*)}_Q zxL?-efv>OmsqiO;W?gvJzqQlUxqoYlj&HV+~8!yHQI1Q)cTFkgNh zn+zwpFi=5Z2!pX0y&oGLk3+eifCjh~^Kl7QV>_OP&!T~MpyNMA`+tf9@c?GxG3#;df|a*{7uA3_+g{ zi#A{`^M`Y|$irqd&}1Lrtmu5CNMRA0U>llPM|}Pi8h8^{;tOd1U1 zI41jZkxe};X$2Nz9g=)F7Y#fa4KO`A3k@(EsbaV(wzr`RNFv{1HNT9r5l7)`*ayEt zwLKWK2pC!#rIVM0Y{WloFMpaVyv6=*`oo!_}UQJnP2Oj=BJE;{l$^!T>M zp0}eZw4?o2M>}va_fMcp$}0(h@`N%h#SwTawqOljgPx`p(fdm{N;W)5gT;RsO<+B` zl+DpM(AvF&Ch`%Q_ma3q$XahlP}Ou;goi}r6r6J0(gHar$xi>~x( zbl^*9>E1>b6}mfb%PLNmbCpkJU0V&B%4i&dXQG>TB^v2kti>B~8a|3w;}P_u<3e`I z)aRoq-GYv9N0)vda>Bw>=sYi$vT4@rwb*e7x*1*QguBu6^#!`tZmh!}&;(AQ5Z2~8 zbleg&@Lkb+V*5&T{6lC$YvTR7GB#}}4V!3i;4XBt_QZ~d(7@ejB0r)l{5^UC4V*_A z6Ig^!P>i;hp$n-*PiK96J_b$vEbH&YE$D!WvBMN}!Wn4CIcOrcpaE}311?7=Tp3-3 z_Uk})C9Fl`zK$+zJ377#-J;}PE}W_10H&#E2u#etViD6 z(1?6kgo)^i=3oQ1Vij&e6Y4^@b~l>H=kfj^`nrFMJ%4|G;=;@_dFd@}37T;o8t^#-jl)i%vrm zn~5g2D7N2&?(Ir6fzJ4R3pR7V1C5`kPA{Mwop>Va_o5Y9jRstUnYa$!nhofM?2PI4mM&wj>7_+fbRKJB=>LywqQH@fwU7Hw+{>OAm-tBXxv}XtvQB0|Fq?@ z3?CGs0SBN7U4RAHf(Dp^2EGd2iuutc=%KqWK7SHTcq1BT3+Cdh*c-RU_O5#B@1F09 z5B8!152NirU{A*A#K+LgPoN1EjZD8C<>(n)qdCzpK#0yZ}vP85(EBNb2w5 zSwn*#KwHo~`!ISScKklxA4f}^KPsJ289IJ2T9KycrSbVJG@*IumMz3Scr(^wTPYWQ za&5w!a64Mcs?Hnx{+60oxF?a-TDi2fv%ab#HND@AjMOW|CB0Jbm%f^jT2|hk$Zcq< oY-k+UFgA6v;*mt^@j(w|rfRDWWTX-`1GAs48j(oVja;4h4{!icVgLXD delta 3819 zcmYM$4Qy7`8Nl(=w;w{Wh4uwOV6?Qz%SZXt4#$ve1%p!}IAG2dwVgxk6fv|4Y-X1R zBZCIms31ncuZ#?w;C!_sb3@!pl=(3iVCt+4=LaAJW`Z6i*Y{=!-F^oKSw9%*C!Wm zC^~*5ehtTBKF-AQkc2Rs20!5ze)(VvUW6;~Mtl%m*=NX4_#$4Hl;!&SqR$ONSDrx^ zav4_O6g08#-+pMgu(&`*%fmBUKD9p$Wc;20R+?pF$_@#!5Vg zj;}1wt#};z+@)wmuExa1EE=w0F80F)w6ynN8e7qoZ$u~9hCa75nnj=AjZ{B$#{Pro zLf%1s!pHnF&gVE5i__#^LgO3lFQw9nHTXXBX(O7#kI|ak9Zk>_R-Db?aro0D@_hJ=U%q9XAx+ zlMFiXIP~;<6J5Y`%-}U>BF$)tUPhlgbTON3;P>dzf5jU|(Ez8>iO$CBFK`6c`IN)) zHRz^IK*vo*15Za2nTalNUbF#?dpo9ZNkYR?+>HiU9tYU(itdm1H^lp!&=ov_Ca?ny zxGUc8KqvkKI&L4D&;c~wyXbsJ(fN`SvGFN7up8N~a1IUJpHHPL9D)WIjc(N>bfT-! z604piB{q%^tIfD zmcA36=n%5#@IEfauh6ZyldO1Q!g4g;1~kEkkas^kihOKB2cCcbU!yUBjxMamQeJ8k znuzZ4WHga!@p=aO9hi*<`T?5QU1*70(S#pB<84P1c^!>=Fxpi`{VmCdbeLH$Mmtdz zy4S7mK4NH6m^YKfx zM0uCw0{2Awd!vUijRvSjD=`XrQ^O>5+;`Ey-@`U+K)<9Xqn6vV(HD84LNbQNL>k{g z1Kb;35xoyx$IHEZD_!~=mf8#D|`=mW5ZGWIu`MfFz^*~sG8 zr%_4AD_Drf(L_$80}Dsy_O={Nq(6GU3M=vQczpx*;CeBdz%nGaa3A)>-$XlN|6VNg z{Xa&-3{PPVeuX#T=usiufosq}-RKrojLwa(#tN=4MH8Qco`oCG)7^pvxEejw>(Ft( z!VB;zOk7cxMlalhPVg6G@!<`ej@{_Dd8atx;%&;u4mAIo#+Z)MaR8`mi&D*k+W!=bLd$q z;~xY+Oc`{muZ+%1XgF{|>{yDWT(3eC+Jpw!idN>i=)QRW?`T4Y(TaS8C3qZ%V>i0@ zL&ouccdSJ#`WS|xKWuETEIm=*nYTdaQ3aL a4x-G;whgN&%AZSP`>4DWacI=6P5loFIestz diff --git a/searx/translations/oc/LC_MESSAGES/messages.po b/searx/translations/oc/LC_MESSAGES/messages.po index f4dc1dbad..ddd9d9911 100644 --- a/searx/translations/oc/LC_MESSAGES/messages.po +++ b/searx/translations/oc/LC_MESSAGES/messages.po @@ -12,7 +12,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-12 17:28+0000\n" "Last-Translator: return42 " "\n" @@ -544,6 +544,14 @@ msgstr "" "Aficha vòstre adreça IP se la demanda es \"ip\", e aficha vòstre user-" "agent se la demanda conten \"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 "Empeuton de verificacion de Tor" @@ -1330,36 +1338,11 @@ msgstr "" msgid "Filesize" msgstr "Talha del fichièr" -#: 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 "" -#: 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 "Tipe" @@ -1477,7 +1460,7 @@ msgstr "Fonts" msgid "Leecher" msgstr "Telecargaires" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Nombre de fichièrs" @@ -1897,3 +1880,18 @@ msgstr "escondre la vidèo" #~ msgid "Rewrite result hostnames or remove results based on the hostname" #~ msgstr "" +#~ msgid "Bytes" +#~ msgstr "octets" + +#~ msgid "kiB" +#~ msgstr "kiO" + +#~ msgid "MiB" +#~ msgstr "MiO" + +#~ msgid "GiB" +#~ msgstr "GiO" + +#~ msgid "TiB" +#~ msgstr "TiO" + diff --git a/searx/translations/pl/LC_MESSAGES/messages.mo b/searx/translations/pl/LC_MESSAGES/messages.mo index 81557a771a221662eca84115cf158a66b8355e5a..049231b3e001b93fceecaa2b707e0097b6f930e9 100644 GIT binary patch delta 5546 zcmX}v33OD|9mnx&NCJc;gnbo;7zvP-U_e4dNdO5DmVh9eFpvR~kQvNOn3Gs}YAah% zkRWBTs34*S2xSDZc+iS~N1%#@raf5kv?|3)J(QNZl-loa-fcaY&%O8E<$wS8z85&Y z`?eE%ZrixeX>E)-)y0^6{0*jHY*%9_nl9J}Gq4|y$HBM^HEyT%WgJcY0A}C~9Dseh z8Pg8OVJuF^1e}FwSl-PzrY(iFH1xto)WXfEiB6&>xQ<%z7RF;-cXz@>RR0b*AJg$! zT#X&@_8$C?IoJwIQGrawjyR)-$6Aib)T>b&`w412r_pxUj#_XxdawyK;4Bv6CDg#~z1_?r=*VgMemikT90{3u`?Xd*aZx(8&58*JZ zLY?Vu)PhGa8&9KBe-pKEEH_%2NsP+*cd-q9P?4vjQk-WkL=7B^O4%e^e*o2g9;*LR z)WkKYevhEWJ%Juvhw9ga>UUVrS>GI|pdFpUYCMDLIGh_2hsCG?C8(X0VSikJ8n@cI z9&4ySgUVE_$9)SrqwY$7h&hDH+&Sb;HZ2&7&J7A0_$?~3Sn^(n=@^GE zqMq-?K^Q^)m{0jJ4dc>z*KrndI_5CmjV(A8QwA8r8*CQhMs!f~qzt4@@Bau2I-8xS zl)Q>s_*bY8$UCU_`T{EAE0~90qb^rpX4Ciq7>`3xXI_AsrvzK$WF#gt6SW}++pxZA zppZbr=4gX4&!Z-K1vQ`<=V1#ffcy;itP8M&dH|J)H&K@=i3_A7>WR8bIsDL_n2U*6 zi3%u;ZCKwp6g2S~)WT2M`eszeZMOYI)Q(=U^#j(!s7$v3*{NNz|940$7Qf=cl&5 z4mHn)Eb^~~pQRxQccMD(vmGL+NZ&*)^lQ{Y=j`+Is0CVV{S#FGKcT*KU!mrU$#yf) z7Bx>-)Ll!>CjSax2o2hKq4j=L%E~Yq=c5MtQ47?gcJKu1!?Om}e>*Budr=F#h6?Z) zDv)k6GAWZ{C zQ;gd2G3X&zJS`{Ayg(#;$-|7bu_759GQ-DFcYkYQP3Ds{G>ZsnZ?PpMdUP3MW7u3<*KpoA$ z9SXWc@w`KtxEm^^>8J>EP$?Z@pFd>V{ivPRquyr+_u!ML`7-Wx-(gfsw zn?xf|+@ z3#q3eF`CuL(KzN51)b>yR76)$JGg<0JhsR^n)awv_Cqa@jXK-WsEn1N?$B%;fI-wz zJcr8cK~%qYus6OR)#3f6pa5cu-JN$q);4LVGhK|)Gq*ON0^EU0={_vS_mFRn893T) zpO3mTVe3lNxF=C}YYP^!zWIQH1}2ShGf<3*d@?H1MW}&~VJ1F<3ivoG1Lsjkco`Mw zRn++J@G(pp>;41eY1D?AQT^UShvPOEC@9sP?{^pKYt2QyHlt9_=b#o|jImgUIA>LPIK+mbjN=IWC~yj5_O-@%*C$`{SK> z0R#9w>P}Qna8n*e1-1bP;bv4O-o{q=TjWz=TCgp4nn?bY+S@0(Dal5Cct)Z+Jb>{y zAN%8CRR5pCKZ7y&F>3rpY>$_a*VQq9rJ$6>PH_jc#YE~U zsEKd4^?|5`hobtAwDn?CW+tE(T!30=3F>=LZJ)0~-GLqU`SX~_`eqLWEp*5}IF7pI z@1auMg1SVXS^r_5x0&h&+RHk?nveP}6rt|YY}@`YYMzy-KsR9rABAnULlY`hM^U%_ z7%H&ys2%+gHSo`7c+e<<46_-;m7Ykx58tMQdLcFa5#`6RPBCTs98&)~d*!TA}v{Fg9ga#opdMMbb8 z;LjTE4fzT@dAWIaW#tad%FFfS4viem+14sDYe;(Q#-A0u(P3t&Zc%-e*E8;a`-l{b zXpV_oyQe&^d`eBdZ+S(qF6{MJ_&k1ZeK;EQiAXrpQyZ*xo5OYfiYl5s%W4M5$1;VW4jXrJkmo9A+DEBR_@%rl;FP8o*^3kNf#rzj$qpZ6C delta 5254 zcmXZe2~gK%9>?(q{@j0#gyfUdZR94f< zBn`(X&wrT?Q=3w)rS0rCreck4P2O8Nn|rwFy6=y_XQt`(JkRerzR&l0ob zfI`%Q<*5Eu)*6hU{uF9s&Ke3@aEI;Cgj(n=jKjmI0bin0_Z{ZoWz+=m-Q84XS#wc= zj6!Xo7!^=8cEZJ|Os_-Mam-cTjVocprmU-}rO26+nbF8WnLID#a<*Ow_;;sEifZdJ(Gs(hi$fg1J(Z*R6rr| z#_%Fd6zWnAK)w4hr~szoK%9#j*N9qYcf8|9vY!TBqE^%`J%#=88{08B!A)%x>P)+! zCWymSOu-zSj)QO;YKNy$sc%OGcpWv~lgP`#5Ql<)dFo%X8(Ss$)ZfeU> znVF3WU@_`woqu0<1sIGaND|Eq)I4i33^$<0Z$-`fDu&`7bTq+13L$vR z+J*|~&*+O^p^oMPYNBuK_wP{?UAN!=X}{k^?f3yIkZ_)e=Ie;6cR|h5GnM=+fJ7R? zF%{KunC*~{ig+Aqp%PRev+Vau)Pzsi`XW^SC8!^^I@EldF$}k(=4nRVt;4D0Ujdw? zK^Zu0J%<|b9qRJ@gc^7swLtIycL$NEADU=X|729g2BQ|pLIpS;6-Y5^=a1vVjW`ta z4l7Y-w-Ob3GgjgUsN3F?pRXsGIUO~@u5{ZE^{zia1#khmhvqUW&_{S0+E@%Kpaj(T zL8x_{YzmPSCSxVe!wCEY^`6h7CQ8e2Gc^?TgOrDAFSSm`T(vpvD!W=ADE3eOQFbz|*#U6*}A}Q%@llkJ}FIs5ATlbu>R?I6gpSB%D9? zI@=zoTRjN1qhZ!j7*BlyYD2$4-S$nW@ER(R|6p(IHqw2jd8h@RwXU(QN4=UCP&;lyZR{2dhw#Z$=%_Yp9eSKrPUUI^(~h7Wfu*hpu80ntb<2l2IEOj)8jr zlPGkjVTyGrDu4#m&UYhon8T>E{TVeu&?wg!RDemSlx876C8pHYpGV!9UDmy*{`)b5 z_05MAnA7|NH869uyYoe;OSBvn;ESk%`>;PAM+JHXwe!2EyA(La4J;Bhz89{-OpL>$ zsEwRQM?3jD1&-6)L!~%pth-QwbsFl~EJS@@i(2?4^usq$N3|Eb;t{OJFVG*S7P#Ll zFqQg3Ou&~5$bT7yRvN0Y!#MYHJ&n2(+p!YQqt19}A!)-R?2Y%Z7URdemv0N|PHaOR z#U50Et=JDgLS^J8dho$`^3QLB@l0@2Hv*O7LR4mEpnmCU?Dy3eK>bDRgIiGjkE8m3 zjtbzS^(rcWJE$Gs#X9UU(ap@u4h5dB*@>g@Yb?gtNp4`ZsEOZ3omnd?rGLR-JZI~F z!*J?XFc9xx2;M{W3oLSvAQIKy!|Ehah@c?@Q!yX4!^Nn9%TWuiMos)YMqmSm;_KEH z>rvGBljw_|p;CPY9|n%v&^hFJI_3%mrRV`_pdZ^0!%)-$F}9wF3LqWTKg-s0QJEQw z8b1@Y&>YnJUtqtlMg_9Xet!kS^!}SDXrcY~!*SH@{v!tAm#9ngwe^<$?kRBtebky@ zO+#J2;i$Va#kT(%HBTKX(2W>bP2mr=!(LR%yr|oL6cyMR)Q&Eo23|r1b{X~De!_kj zTp z)huiCF87|uNDA~6FzdDKW8Ndf4rtbj-1+|A\n" "Language-Team: Polish \n" @@ -333,7 +333,7 @@ msgstr "Zamknięty" #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED'] #: searx/engines/discourse.py:132 searx/searxng.msg msgid "answered" -msgstr "" +msgstr "odebrany" #: searx/webapp.py:330 msgid "No item found" @@ -529,11 +529,13 @@ msgstr "Zastąp nazwę hosta" #: searx/plugins/hostnames.py:68 msgid "Hostnames plugin" -msgstr "" +msgstr "Wtyczka Hostnames" #: searx/plugins/hostnames.py:69 msgid "Rewrite hostnames, remove results or prioritize them based on the hostname" msgstr "" +"Przepisywanie nazw hostów, usuwanie wyników lub nadawanie im priorytetów na " +"podstawie nazwy hosta" #: searx/plugins/oa_doi_rewrite.py:12 msgid "Open Access DOI rewrite" @@ -559,6 +561,14 @@ msgstr "" "Wyświetla Twój adres IP, jeśli zapytanie to \"ip\", i Twojego agenta " "użytkownika, jeśli zapytanie zawiera \"user agent\"." +#: searx/plugins/self_info.py:28 +msgid "Your IP is: " +msgstr "Twoje IP to: " + +#: searx/plugins/self_info.py:31 +msgid "Your user-agent is: " +msgstr "Twój agent użytkownika to: " + #: searx/plugins/tor_check.py:24 msgid "Tor check plugin" msgstr "Sprawdzenie wtyczki TOR" @@ -1372,36 +1382,11 @@ msgstr "Ta strona nie podała żadnego opisu." msgid "Filesize" msgstr "Rozmiar pliku" -#: searx/templates/simple/result_templates/files.html:39 -#: searx/templates/simple/result_templates/torrent.html:12 -msgid "Bytes" -msgstr "Bajtów" - #: 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 "Typ" @@ -1519,7 +1504,7 @@ msgstr "Udostępniający" msgid "Leecher" msgstr "Pobierający" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Liczba plików" @@ -1953,3 +1938,18 @@ msgstr "ukryj wideo" #~ msgstr "" #~ "Przepisz nazwy hostów w wynikach lub " #~ "usuń wyniki na podstawie nazw hostów" + +#~ msgid "Bytes" +#~ msgstr "Bajtów" + +#~ msgid "kiB" +#~ msgstr "KiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" diff --git a/searx/translations/pt/LC_MESSAGES/messages.mo b/searx/translations/pt/LC_MESSAGES/messages.mo index e8080e5733a4c3a4965c58b2c77be08390800366..27eb3f3febe02ad22ffa88e4311b9f2d0b6fa478 100644 GIT binary patch delta 5139 zcmYM%32;``8GzxNm5>F(E`dl8h>?UPY?83=B4I1w#93}B6PKtLVjSA=1hB3MO> z6l{?xOX;HgB3MAI*4n~|6o;)%q2e-#6=_*Su-NzIo|!UCo^$R!+xMMwZs5ktDN9~X zNt|k&{zAl`-YHSk8tdv?`~RQyO`<4+>IS?8H(@i}8=fD*w$x9A`ZcUaJ!%@8g_%_I zF$Y^RZr(&tpTp7T#xbRZL|=yc1ia zTQ(7$XeM^XN6}PoK_}jcPP{Mpr$i`xh_3hqn$k~#U!fhpK{NGzsAm?&?Hi!&TcQKE zL)(?1{kmfj_CecCLEF`Y_lY?ajC>*1;v%%+IrQFNLOWbTBT3_~6=Nf`U+-W)oJ)N$ znyH=WDSr<=8^@7@A6>u>n8ktP&?lnKaUtp!?1k=mCAyH2c=I}9HT7v&iMzt{{{;Vw zZdF!Myai3s1$V%knLx+wgN}DM*7N>PqTrrQMI(DS)L%e5Y(^Kd6FK0~e)JHYL?gU_ zPMpfurwcYf`}IdB8jUWb8a*>L=%Jj4Wy~Kfr(na^(Uk5-_wbM5`9bVN{TTMe^xLAS z2M$69UVx^2DZ0QlX#d|Lf1{oJFu)Vx`4_c2P6~o1l9%ADiOO&;egX z7qAQMcL`0cpGn_mAvZ8;h-R!Ka$%w#n2zJnev^%E^1#D(BQ!{7_Kwu^ zu^9W{1iT+7;~PjaqQ<=JjXiKY)*=@q+K zEiXkUUV-lMDjbRLq8Z2|oHCq&?)@tCP_0K7unq118alxnp}sG?eK8Q%Y2 zQt(5v9dmIXnxX^f1RtOaJcTag6Exy;crz08nq5M-D!)^_@Cv+-`grtE@4&yO@JUAd zZ{%y0Xh&fS1tUF(Hzz>v=Q%X8ysq(CXpRl37oh`m#a!%#et3r9RGf-VxCh7JA#~ir z@;DRi(ccN(%gMi~sN#Vcn1~KkgT?qH8rc@)Z}cudocJ=@?>dgcH122xj>X$?1^S77 z4Q=-xx&&O-NePN*+NBVL9E@Z<1)EqedApczV9A4*{l1y}w)I^bb+;^XMTzC=5Gi?&PY z6K5;lT zzy0V!K15S{2Hl#>!SO!?^3Y5TM#mkCZtcBj<`UB>cp7SP2|k5om_8)_Qk0{6JPH{* znuu=Ai|7Cw(G>p<3vdtG{ur8x)9A#P(RSZsDSCuo^djF$!9#cmP31>ugEQC`8?fQk z*cBhf73lM;I1mel$G<%$V=L-!;!AiGP4S!&{MQ#Zpj(l3SG=_ac=H!|7YeuWqGxzf zjV`Dbd*fU*((ULicoW^4!f;rd?9jAY&4@DO^4sBnJE~FL{Hhd&B zcpP2n63oWc*csQM9sUyDAI2=||3LeHj&9w*(1l$`4`=Xh*R)6bo{R|YJ2~ThiAq= zi)!Y~Et>tvyd6!4rzESIZOuqtEqFUMxwr7=*~#f8kEJE+O1GtEmET!Z-mS8{XY!fO i9nzA!%b(9oj_o}(E&0ysIod`D)dn)c*k)w;6u` delta 5253 zcmYM%32;``8Gzv%5+Gy~5?Ljzfq;RS5FirvAW0xB5d%dQO&AGKM9^3^(O+Oxrl?hf zsK|&SN<##yvB(q{L&2q`R@|z#3{{l2TFM{{GA@O_FZa%raeU6X_blJ}&N-K#HP6Of zdNwY0B0XVKz@Oo9LC_f!lC1sz&*_XHXioJ%*a6RDTTHn+eBJ}QQ|}Yi$74(C6_L}i z1@$US#(9{6wKz5iV!{0sQhD$eR^msPfPI<84!MyO-vAN-8GX5s>j$A{34>oFZ4Ls$9&I?-#$oIw*7;U_p7 z(>sO}FG1Tci|Xqle}(q1L$_cX#!USl3a02FcEvZ*6`n#@64xnQK_c3&OJr|Mq@Igr zrVxoG7>!Oe1D&V_ZC4w)3e%`R(24xJl8roYqK2r!tLQ}gu^S#nJA8#^=sXU?i)jCW zL~F*%BP-AVrlP5@Mz?Yqa(;s~Xol*pA^%Rag9k>q2S?yObij*|KVb>=IIf5Tm*G`d ziMG29UFiZW#HHxg?M5d$gt_|{$W zieJI$cmRvAZMX1wMdVC$%WBZAxC;$~|KR^y%M z7JZ0(rGxL$erZ`@0BzBJQ_u|Fg1)aoZfdXy&Dc8RLIoSL$bSNb-8`^kBO2KoxB^e2 zhiw+K`hE^xi+5med>U`UCY*^^^N^$kOYnN!fH&e%(Kt2&~cx^WPAbbzXy}N z|NFv1a2So~&)5tOju+7h;<@Aokc@s<+Mw-wqM6D=Cn!Jzya5el9NMn}uPg+;b~Df| zTZ%Cw-%6nhUq?@Ohg^b*;};D&K+8NP!&J0=K3r5FL0enu%W`e@O&SqXWH)W@I0>!6tOT53o0$Mpu}@oun9C zhxV&R`_030T#Q3-{{ZrzP2mC$yx*AxVZ(ehfFbD0%g{Z$9bNG<^qamJZTClXg3ltq zKo{~g_QJDRgYCGpyYOCYjXAMF;jh+V=pM~P_wZIs$J@{emZ4|jLG)9)0sZFhLjU&r z2JJUyaQIuY3=Nf{){noS?K#~(E&$9&&Q&B zUXEs_5mMF%KCGgOYF za58ql$IzA6NA5-sTO%4k6M88Bg6;5gPbvymItAUT8XSSEu{}1Snfw&fy#IfX9-Ki}egR#q2b=Q zM>Ewks^_4A7or1>LQ`Cd1~wCIzW{A_Cw9Pr&s8Z@8-y@qCBKfZ)b=oZZ5 z#2MgnG^O{UDP4zsaVy&Y59ox)a0`Bh{$5x*Jj~pB>`MLl;pE@FIK%@F-REdz3FJ!? zBU8}SwMGwHAM`d9;36D}V{sRnx$|fSf{~$V*qLf)bRk2~{^Li+!jw$ofh$^!rfdaz z{Z^wNl8xw|zlE;kINI)8%*5}p3$`B>_8W|D-8f_ygXw7hC(w!O(OdA_7zOv_ZS0Dl zV}JA{df0N&iAJCSmY|uazyh3)<8cd?<3G`U1;t??W6;b_L$_un^6d#$qnV2BrQpDa z(Y<{aP2Gp++4ut2;05f5%g2Ntk{8iEegl~^cn95@q#MHiZPAtX#7=k}+I~EmiJOpl zW5EInHmt=QjA0!%U;-Aiv8J*VeLoGm;~Jcf+wl(kZ}j~3lJNWRD9+~jdw31@FXitM z9EWE3OZ>U_zfD=g113BExy)^l8V8}iXDDnt8M zp<7skgYXV)h1)Ta`GegQ+>6)IJvxF;a1=cg$8aT{MF(8ShCA_{Sb;mS9DhV7D5YXR z_o53~kFD@IOvat)ID0YXg98+d@Ex?nF*J}ypQkX3LfYhTf`yYCH)qU>YhJwK?zy#%7p|^v-fTf} z` diff --git a/searx/translations/pt/LC_MESSAGES/messages.po b/searx/translations/pt/LC_MESSAGES/messages.po index 1fa95dea2..d4353aaa8 100644 --- a/searx/translations/pt/LC_MESSAGES/messages.po +++ b/searx/translations/pt/LC_MESSAGES/messages.po @@ -18,19 +18,18 @@ # diodio , 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: diodio \n" -"Language-Team: Portuguese \n" "Language: pt\n" +"Language-Team: Portuguese " +"\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'] @@ -557,6 +556,14 @@ msgstr "" "Mostrar IP se a pesquisar por \"IP\" e mostrar o user agent se pesquisar " "por \"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 "Verificar plugin Tor" @@ -1368,36 +1375,11 @@ msgstr "Este site não forneceu qualquer descrição." msgid "Filesize" msgstr "Tamanho de 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" @@ -1515,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 "Número de Ficheiros" @@ -1961,3 +1943,19 @@ msgstr "esconder vídeo" #~ "Reescrever os nomes de host dos " #~ "resultados ou remover os resultados com" #~ " base no nome do host" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/pt_BR/LC_MESSAGES/messages.mo b/searx/translations/pt_BR/LC_MESSAGES/messages.mo index 01b3827eb809876a5b1c9252f26f9d3621aa3cf7..0e116f08b1627c94e70dd6a9a979db83eb6adb56 100644 GIT binary patch delta 5262 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 VWAL~23nx59$IlH, 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 \n" -"Language-Team: Portuguese (Brazil) \n" +"Last-Translator: return42 " +"\n" "Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) " +"\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'] @@ -570,6 +570,14 @@ msgstr "" "Exibe o seu IP se a consulta contiver \"ip\" e seu agente de usuário, se " "a consulta contiver \"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 verificação Tor" @@ -1385,36 +1393,11 @@ msgstr "Esse site não disponibilizou uma descrição." msgid "Filesize" msgstr "Tamanho do arquivo" -#: 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 +1515,7 @@ msgstr "Semeador" 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 "Número de Arquivos" @@ -1980,3 +1963,19 @@ msgstr "ocultar vídeo" #~ msgid "Rewrite result hostnames or remove results based on the hostname" #~ msgstr "Sobreescreve hosts dos resultados ou remove resultados baseado no host" + +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/ro/LC_MESSAGES/messages.mo b/searx/translations/ro/LC_MESSAGES/messages.mo index 2bc3115cc68e85b83cca37936df3134821f4d2f4..bc6f266aa132cb030e596b71eafc5014a744c618 100644 GIT binary patch delta 6876 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 UCF7jZ@jaZm<8Oz4S31S@A6~tM-~a#s diff --git a/searx/translations/ro/LC_MESSAGES/messages.po b/searx/translations/ro/LC_MESSAGES/messages.po index 337c0caf8..8f9394d11 100644 --- a/searx/translations/ro/LC_MESSAGES/messages.po +++ b/searx/translations/ro/LC_MESSAGES/messages.po @@ -14,22 +14,24 @@ # alextecplayz , 2023. # microsoftocsharp , 2023. # return42 , 2024. +# LunarCat93 , 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-29 09:18+0000\n" -"Last-Translator: return42 " +"POT-Creation-Date: 2024-06-17 12:15+0000\n" +"PO-Revision-Date: 2024-06-20 06:18+0000\n" +"Last-Translator: LunarCat93 " "\n" +"Language-Team: Romanian \n" "Language: ro\n" -"Language-Team: Romanian " -"\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 " -"< 20)) ? 1 : 2;\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 5.5.5\n" "Generated-By: Babel 2.15.0\n" #. CONSTANT_NAMES['NO_SUBGROUPING'] @@ -180,22 +182,22 @@ msgstr "Despre" #. WEATHER_TERMS['AVERAGE TEMP.'] #: searx/searxng.msg msgid "Average temp." -msgstr "" +msgstr "Temperatură medie." #. WEATHER_TERMS['CLOUD COVER'] #: searx/searxng.msg msgid "Cloud cover" -msgstr "" +msgstr "Nebulozitate" #. WEATHER_TERMS['CONDITION'] #: searx/searxng.msg msgid "Condition" -msgstr "" +msgstr "Condiție" #. WEATHER_TERMS['CURRENT CONDITION'] #: searx/searxng.msg msgid "Current condition" -msgstr "" +msgstr "Condiție curentă" #. WEATHER_TERMS['EVENING'] #: searx/engines/wttr.py:100 searx/searxng.msg @@ -205,22 +207,22 @@ msgstr "Seara" #. WEATHER_TERMS['FEELS LIKE'] #: searx/searxng.msg msgid "Feels like" -msgstr "" +msgstr "Se simte ca" #. WEATHER_TERMS['HUMIDITY'] #: searx/searxng.msg msgid "Humidity" -msgstr "" +msgstr "Umiditate" #. WEATHER_TERMS['MAX TEMP.'] #: searx/searxng.msg msgid "Max temp." -msgstr "" +msgstr "Temperatură maximă." #. WEATHER_TERMS['MIN TEMP.'] #: searx/searxng.msg msgid "Min temp." -msgstr "" +msgstr "Temperatură minimă." #. WEATHER_TERMS['MORNING'] #: searx/engines/wttr.py:100 searx/searxng.msg @@ -240,42 +242,42 @@ msgstr "Pranz" #. WEATHER_TERMS['PRESSURE'] #: searx/searxng.msg msgid "Pressure" -msgstr "" +msgstr "Presiune" #. WEATHER_TERMS['SUNRISE'] #: searx/searxng.msg msgid "Sunrise" -msgstr "" +msgstr "Răsărit" #. WEATHER_TERMS['SUNSET'] #: searx/searxng.msg msgid "Sunset" -msgstr "" +msgstr "Apus" #. WEATHER_TERMS['TEMPERATURE'] #: searx/searxng.msg msgid "Temperature" -msgstr "" +msgstr "Temperatură" #. WEATHER_TERMS['UV INDEX'] #: searx/searxng.msg msgid "UV index" -msgstr "" +msgstr "Index UV" #. WEATHER_TERMS['VISIBILITY'] #: searx/searxng.msg msgid "Visibility" -msgstr "" +msgstr "Vizibilitate" #. WEATHER_TERMS['WIND'] #: searx/searxng.msg msgid "Wind" -msgstr "" +msgstr "Vânt" #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS'] #: searx/searxng.msg msgid "subscribers" -msgstr "" +msgstr "Abonați" #. SOCIAL_MEDIA_TERMS['POSTS'] #: searx/searxng.msg @@ -285,7 +287,7 @@ msgstr "Postări" #. SOCIAL_MEDIA_TERMS['ACTIVE USERS'] #: searx/searxng.msg msgid "active users" -msgstr "" +msgstr "Utilizatori activi" #. SOCIAL_MEDIA_TERMS['COMMENTS'] #: searx/searxng.msg @@ -305,7 +307,7 @@ msgstr "comunitate" #. SOCIAL_MEDIA_TERMS['POINTS'] #: searx/searxng.msg msgid "points" -msgstr "" +msgstr "Puncte" #. SOCIAL_MEDIA_TERMS['TITLE'] #: searx/searxng.msg @@ -320,17 +322,17 @@ msgstr "autor" #. SOCIAL_MEDIA_TERMS['THREAD OPEN'] #: searx/engines/discourse.py:121 searx/searxng.msg msgid "open" -msgstr "" +msgstr "deschis" #. SOCIAL_MEDIA_TERMS['THREAD CLOSED'] #: searx/engines/discourse.py:121 searx/searxng.msg msgid "closed" -msgstr "" +msgstr "închis" #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED'] #: searx/engines/discourse.py:132 searx/searxng.msg msgid "answered" -msgstr "" +msgstr "răspuns" #: searx/webapp.py:330 msgid "No item found" @@ -510,7 +512,7 @@ msgstr "Calitatea fișierului" #: searx/plugins/calculator.py:12 msgid "Calculate mathematical expressions via the search bar" -msgstr "" +msgstr "Calculați expresii matematice prin bara de căutare" #: searx/plugins/hash_plugin.py:10 msgid "Converts strings to different hash digests." @@ -526,11 +528,13 @@ msgstr "Schimbă hostname-ul" #: searx/plugins/hostnames.py:68 msgid "Hostnames plugin" -msgstr "" +msgstr "Pluginul Hostnames" #: searx/plugins/hostnames.py:69 msgid "Rewrite hostnames, remove results or prioritize them based on the hostname" msgstr "" +"Rescrieți hostnames, eliminați rezultatele sau prioritizați-le pe baza " +"numelui hostname" #: searx/plugins/oa_doi_rewrite.py:12 msgid "Open Access DOI rewrite" @@ -556,6 +560,14 @@ msgstr "" "Afișează IP-ul dacă interogarea este „ip” și agentul de utilizator dacă " "interogarea conține „user agent”." +#: searx/plugins/self_info.py:28 +msgid "Your IP is: " +msgstr "IP-ul dumneavoastră este: " + +#: searx/plugins/self_info.py:31 +msgid "Your user-agent is: " +msgstr "User-agent-ul dumneavoastră este: " + #: searx/plugins/tor_check.py:24 msgid "Tor check plugin" msgstr "Activeaza plugin Tor" @@ -597,7 +609,7 @@ msgstr "Elimină argumentele urmăritorului din URL-ul returnat" #: searx/plugins/unit_converter.py:29 msgid "Convert between units" -msgstr "" +msgstr "Convertiți între unități" #: searx/templates/simple/404.html:4 msgid "Page not found" @@ -1152,11 +1164,11 @@ msgstr "Copiaza hash-ul preferintelor" #: searx/templates/simple/preferences/cookies.html:57 msgid "Insert copied preferences hash (without URL) to restore" -msgstr "" +msgstr "Introduceți hash-ul preferințelor copiate (fără URL) pentru a restaura" #: searx/templates/simple/preferences/cookies.html:59 msgid "Preferences hash" -msgstr "" +msgstr "Hash-ul preferințelor" #: searx/templates/simple/preferences/doi_resolver.html:2 msgid "Open Access DOI resolver" @@ -1176,11 +1188,11 @@ msgstr "" #: searx/templates/simple/preferences/engines.html:15 msgid "Enable all" -msgstr "" +msgstr "Activați toate" #: searx/templates/simple/preferences/engines.html:16 msgid "Disable all" -msgstr "" +msgstr "Dezactivați toate" #: searx/templates/simple/preferences/engines.html:25 msgid "!bang" @@ -1371,36 +1383,11 @@ msgstr "Acest site nu a oferit nici o descriere." msgid "Filesize" msgstr "Dimensiune fișier" -#: searx/templates/simple/result_templates/files.html:39 -#: searx/templates/simple/result_templates/torrent.html:12 -msgid "Bytes" -msgstr "Octeți" - #: 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 "Dată" -#: 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" @@ -1439,11 +1426,11 @@ msgstr "Versiune" #: searx/templates/simple/result_templates/packages.html:18 msgid "Maintainer" -msgstr "" +msgstr "Responsabil" #: searx/templates/simple/result_templates/packages.html:24 msgid "Updated at" -msgstr "" +msgstr "Actualizat la" #: searx/templates/simple/result_templates/packages.html:30 #: searx/templates/simple/result_templates/paper.html:25 @@ -1452,7 +1439,7 @@ msgstr "Etichete" #: searx/templates/simple/result_templates/packages.html:36 msgid "Popularity" -msgstr "" +msgstr "Popularitate" #: searx/templates/simple/result_templates/packages.html:42 msgid "License" @@ -1460,11 +1447,11 @@ msgstr "Licența" #: searx/templates/simple/result_templates/packages.html:52 msgid "Project" -msgstr "" +msgstr "Proiect" #: searx/templates/simple/result_templates/packages.html:55 msgid "Project homepage" -msgstr "" +msgstr "Pagina proiectului" #: searx/templates/simple/result_templates/paper.html:5 msgid "Published date" @@ -1518,7 +1505,7 @@ msgstr "Sursă completă" msgid "Leecher" msgstr "Sursă incompletă" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Numărul fișierelor" @@ -1961,3 +1948,17 @@ msgstr "ascunde video" #~ "Rescrie hostname-urile rezultate sau " #~ "șterge rezultatele bazate pe hostname" +#~ msgid "Bytes" +#~ msgstr "Octeți" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" diff --git a/searx/translations/ru/LC_MESSAGES/messages.mo b/searx/translations/ru/LC_MESSAGES/messages.mo index fc043cadec6e1d76ef8190e436ef17027e50e51a..ec923f2be9dbe12e766e24e73a3dcc6e86dea82f 100644 GIT binary patch delta 5481 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 JZ}M5!{{fWPlsy0d delta 5463 zcmYM&3v|!t9mnw}k)#AcDr>cyMuXuX&8aZ7D|0zr7<+&6d(N5Tcs$6!2S%fG=+u0bEXglcfjdK)#6N2tJ0Z~*#*5FC?{A~O~vF&j0ow=e7A&Dac&V>q5hbzF~%^BC2>8_T5* z`=M6gc~rai};VIcR6Zgqm3p8O-HZX`x1(mZAJyS$`@I^~;U$d1I#hjc zPO?_64GzX&RQq()O3t^w(t-8YNS08b891l`m10}mhFY=%)+$to7f=JehC}ftDsT+@ zCS!3F#-rjd!&bQ3e&2|i@Fs^u5{aFty}gR+@Gka7FOIUdARg86P*lgGtP`ynsDWpr zmU@vjAJy(H)XM$Z=8I7EoiY+?P>u?`2UYPPs^Jlg!c(Xvtw+_rg{praRqqLE<~|&d zJZy%lw+wY{SEA|{q9#;~G4yXfB%y{?)-UmO@?WEtEG5dl73rwMlY`tavjV$fDQaMc zt;emOq0YkRsDWHS&G=i)z&n_%`#*wLqH!s#Yf*bvirR|bqei|THS)u#8J|XVa26W_ z+wwc8cK4AP8lTQ?J{DDfFls(TH-p?_glzY zWA37su6d0600pBD`27i;bJdhAL59`e_8=*Id_B9Yq7nCV!CY@4}{ z12MR}F+ax%$Q3u+uo#b`0!`>)%q%RxCU^z4BAPf%OrO(R|N5Y)hXI3)U# z=#5P=8~t$s`r#X>y!dhG5ci58hcTfWAUX#LlWxXu?kQRzZ&?VUb+BOz!=m@#GwKuqYl|9)BvWURv^o|5LG`P18_B}-3Cw`$(V)ds8jDz zp1^-aweQxK`yWFhjw=w2lTkm03vdJ$q2By+sDb@}3fzF2X<$G17m^6n^&EohaT==K zP27n(;i|t273UMwgLbSx>#wD|Xe-pA-huD2C#DT>2eJg2oT;?l#F^wn65YW07)X94 zuEBTkO$Ppm$T7~>IH~B|#yAEwEcg!#nQz*#BF<5~u(R-MC zCR(HN15kUIiV8ddHS_7n>uMHbIBrID@TtvLqYn4?sDVAj(HQbGJ#>ySFOyKf{irQC zj_T+PYHKcGH|#jv-Gb4$n*0RpjNhPc$3trawj%!wb+}ulxC2N;9r83(yFBIT-xQOG zz=NnmRDiutUyOI zzd}MwcMEkWd`Gzr1FXHUBjsaIOS=G7Zw=}U{1&zMyRZXRU|T$g>iD0im2JVgYl7j( zxi`H>+n@h)D9|3|*$NJ-gAJ&_@8b|J9w=16+iC9i0DfX=0-+d%(U^xLQSCgaj!)s& zSc9E#I|nTmtH!YYQ6%nBppgfTb$|Nx!6xKaTMMo0P)k>Y>fivXgDU(K&*86d-8gq; z{J6W?l8&gE4?rElG*tU6heTHrub~2$A#aO0f@<(@)C_$mxLXj2v&i>F&7>5y#}%l6 z=aJPmH!u<7Cc1|$2X#gYaVc)WRCL{5 z&#Zyz_Fkhp9)_zhAG7g4*b1jla#v&_GEv8@B%!^oz%u*`Mq$Qe_e>OEYx3(*OSc7e zSP$T7tj5l`d5XKIM=^l>EiA^LFa&?|lDm@IP}h4e_SgNdB%!_k0eNMO|5SHCsTe|j z9P%ca+4v00?f3Ew_muC(9LkR)H`YY|f*XNz@hg0YeeuLJ_i2BCuai%h&VN+Uzu7^e z0YAfGcx(pyk5ADL4`;fk{-pH=Y6kuV`0*^(zXyrGQJ{v8Paoi5#C{RZOu@k0ZDCSyMSW8iX_o5G;LaoGURKRKs##(HP4^eTO z<+>dQp}u!Q)lYIrD8MLNFdj9+8P@q2PCnn}H(0l#2Dk@xZBL=y&{v*^tYtRSp zptk%jw$p`aKhKT~HS?k9hhuRZrsE*oiqUup^YAI^Of2%u56blNO(|HKyTnr!9O~yi zKgDx7yvExr#q+1gNB;0ZkHy}eKD{Ennk?koxVU}ZP2-cI68a_&h~MZF-^s6kRD4o$ zyeBq(t$7iy^+{jU`UzvnF0q8=dTY TPs*$f-hS1a8;fglDt-P3GS7#C diff --git a/searx/translations/ru/LC_MESSAGES/messages.po b/searx/translations/ru/LC_MESSAGES/messages.po index 5254e691a..f0768e971 100644 --- a/searx/translations/ru/LC_MESSAGES/messages.po +++ b/searx/translations/ru/LC_MESSAGES/messages.po @@ -25,8 +25,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-14 07:08+0000\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" +"PO-Revision-Date: 2024-06-18 21:18+0000\n" "Last-Translator: Xvnov \n" "Language-Team: Russian \n" @@ -566,6 +566,14 @@ msgstr "" "Показывать ваш IP-адрес по запросу \"ip\" и информацию о браузере по " "запросу \"user agent\"." +#: searx/plugins/self_info.py:28 +msgid "Your IP is: " +msgstr "Ваш IP-адрес: " + +#: searx/plugins/self_info.py:31 +msgid "Your user-agent is: " +msgstr "Информация о вашем браузере: " + #: searx/plugins/tor_check.py:24 msgid "Tor check plugin" msgstr "Плагин проверки Tor'a" @@ -595,7 +603,8 @@ msgstr "Вы не используете Tor. Ваш публичный IP-ад #: searx/plugins/tor_check.py:85 msgid "You are not using Tor and you have this external IP address: {ip_address}" -msgstr "Вы не используете Tor, и у вас следующий публичный IP адрес: {ip_address}" +msgstr "" +"Вы не используете Tor, и у вас следующий публичный IP-адрес: {ip_address}" #: searx/plugins/tracker_url_remover.py:16 msgid "Tracker URL remover" @@ -1376,36 +1385,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 "Тип" @@ -1523,7 +1507,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 "Количество файлов" @@ -1961,3 +1945,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 "ТиБ" diff --git a/searx/translations/si/LC_MESSAGES/messages.mo b/searx/translations/si/LC_MESSAGES/messages.mo index 44d014509db3cf96417cbdf5c5e9251f7a12ad6c..a275a6e8b232f534b69aa4e553e0344d14916889 100644 GIT binary patch delta 1554 zcmYMzOGs2v9LMo9j*iY~zRki%nT16njWsH2C}J2E#U!;zDN9InQP{3UjT@89LY$PS zAQG}RR&*B<1+^^E9=IqXHA+xH=z)+(Sl{1tpkZb{_dM?XKkmKDJFf2tO{Yc=7(R{s zviU7VY4ray9%Bq&Gr^w+Cous(Vl2*K9)7dq6gIgTug7G}L7i8`pUw+l7S!d#qQj{iuQlQ3>9~LVRS$Q|pb}j{1#;1MJ!~hZP9n3F#G&tBsv zsvf2aEW;owKo177->%Q1F1&&pa255|iVzj`Xnl$Kd84RD?~YJ z-EM0QrZcX?o!ErRxDQM4K5GArbryFqUch3^O){nzgQ&pMsKVxP9j+o@lS#WY4i#{q z*P|MBfd*7%7m?!3Fsfq5I%<82+n9fjs%QaEU<_re)vc(9v=7xG2et1l>a|`(ZdJ&* ziQdVC4|T$2+=~xTnf}63jOFD%id9&PH;^SWgKFhZ)c$nZr;0bD3MfZaT8HXLGwK;> zkF0b5J2>EWm%UO}%7_}kAS!S-YW^CQ;|OlSc~qf^ zv>|Yq13w39c`Ir|w;hk5Hcp@deMco&$OEAORj5ww$9f#VQv945_IaL#$2=3x&Dd&J tcqZ4$ZDeRElJz2zTG2}{s}T_>goz>w zMMxnSmH7~f5j}JTi-Lj-wkXSp>LE&e==S~9K+EoaX6DSy|3Ck8&X9M}>kq^Q4;Vhp z{8sQwaMb(%iEA@v zHOxhf;lgFxzlqxD4kqFQ493^icNj_kBQC`SjKC;%jmIR^{A{Zio;+qB< ztTm^sr%{0iF${;1uNmb}l^D0<6Btc@3Ki(Sbq2Nmsr9*a7InY?D$&oFLwvJn2hxe= zq3=aySdL1}hdOD!?H|B0`fV7FW4H>hp%Q$CO5i0b;493)FQ|kQS)_#5pkIwFJCKXI zNBO9Y%8}g67E~fN7=(4G0QIPOjrMwr9dEVc2T=i!pyG7f@smg{rZ=4WYr+5nI^ig4 z<12RJBr1U$n1r`c3BEwhe~+rvS3B-dSDiQ(wJsHxUcbQKz{`D@hU3uIoyChQ1kP7pky%?;3mw&!`O@d3pA8K z9`(@)%TR%LVlwVVrkD=f_oH5;A=F0WsFMbeBA8#O^^qJ;daUu7ML!93z|FW%?|%~w zmHrm$DgJ;eStL<3F%$LvSEBCSUhKja)cm(tg>GJYC0dIL+>AxIANSx0R^kG(#FSFL zG`;^dG_(lNd{3B7)4cR8kN9ZRDc=OyeG)*Gy&AcpHTb#Mjgb%rt0Td%dFe5 zl=!BRh5`*?Ax@w+p10%Qu!MdzWk|;=)XCdX^ZQV@;GVrcZ~M_a5Sq6ZOK}G(!Cut< z=P*&FyF{ZJzhe=WC-*-LnGR~L=s)3p43oal3YW8s{+Y02P8$P};Zv?KZ_c_oG3 j$(e{6$JxqoO3a+g*-qo9C&JN!Nq2mk>+g!rgfZt2qjH*Q diff --git a/searx/translations/si/LC_MESSAGES/messages.po b/searx/translations/si/LC_MESSAGES/messages.po index d936ace9c..a730e42f3 100644 --- a/searx/translations/si/LC_MESSAGES/messages.po +++ b/searx/translations/si/LC_MESSAGES/messages.po @@ -9,7 +9,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: 2023-11-23 06:13+0000\n" "Last-Translator: return42 \n" "Language: si\n" @@ -534,6 +534,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 "" @@ -1314,36 +1322,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 "" @@ -1461,7 +1444,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 "" @@ -1593,3 +1576,18 @@ 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" + diff --git a/searx/translations/sk/LC_MESSAGES/messages.mo b/searx/translations/sk/LC_MESSAGES/messages.mo index df99e5175b17b407ec3f4bc648611abc658eea9e..4c489de5c79c8f608be8f05c1fb2d3dcd0da9d35 100644 GIT binary patch delta 5214 zcmYM&3s~3H9mny*RlvU&P`P+XKtK=#QIW*BXo8mnv6LKngWOQjEuE5@^PidaBRa~=<4aTM`INAcw3){ov0UD zr=vghIoKJ?(1pLmTw~nkc?w-px&#o^(NH9cH8YULT$xG)Jm>lf4qfSxvRG`a6D>7DX4zA z)_e@0J`I(zSx8J~9%`O7r~qC@&9|*L`PU0OX^{J{E53tT*-2C?TkP{|s0nXlBz}kL zA4+tOU@YprQd9<4SXZM0SceLHBPx)ceaJrt+U%!6sXBq0-~uY37R09pyBpQ-Aa=a>E`>-Mj-xtWLv_4kJKRUDxE&XvFLzD-mY}{1 zt5E&dq89QJ#^H9LR){*c9>z?=b|DnxAn!SK$l}6u0a-WUP6s`5Os(Tqux7-n(#Ds z#`DPgZqrI3h=v>1d#FI#(Hs28JdNfpad1*5>z11qTXAL9ScF- zvP#reHKALPe@bBveuX;KdC8=ek$-|3VAT-kgRvI*F<|OZ6C6QeHy@x@cE@@jwE+Dd zruSXg1w&BxJ`$(ms8se}6IRo(5F1egcjqqYnuVdBC!#WuW!v*mpVnfG!^O6~4H?3` zjT+}mRI0zmW!Q$}asDuF3?3Lp{uSv(8kD-fqf+}1+ukBZH z`YKGv8Z5+5PyzR)QCk~_8ZQgGV=gM-BGhj}?zt4SqLubRE$U0vhzjfg4#XDJKz@8j zHINHc?`MrcO`M223u%~uS*Qu;p)y;6`Wdngna6EvC}@RmUpTmD5B`5#E(E)Ck# zh-~NQawhsvFSgFImSRuZe}-E5bEp-s$8xN~Jp2K*$D?zcg-t@$r=#9~8nva%bKFiO zzoJ0{ZbU`49hLgssFfT+W$GBF;8oOCbRF$%Su|>bGz`NW?1$4)<5i%>tHdE#hYIAB zn}SYf3u+5)qF(qn>QDuYalY04F@pMd)QU?{6PDZd3gi`2jmp3|#nCTn8I7O!zI)n-NKGTh#iNJBj20$U|fnxn2HUkQ~fzAgEx>HYT8hlOUiZ5 z$Z*tzV=x>iJ9W32M?tAthI*mKx&x!AH)0hwqaRLXc^aq~nZuM}BJROr{0o-huyM}+ z3+zBXislGDfp<{>j#vAiigxe~5#qU&0OO{g^Y* zM$}$!#T-0`1=wSf^E+WFYQ=S^!?_<7z$tVGQ8+_EslAMyu@x2REz}G5Q2ku_PC#L( zdK7BKNvK-K;@`U@w2FbUPSfV zWS`fg2H1tVR(nws9kcaMP?>8*UFYvn3kaI*1Q3p0sVBH8sKdjk`#ljAz+Btm8B_r3 zr^EPb+x}bBp?V7yz#h~DAE5f5L1pG5>X2SRjo*s8RX?D{3+Y?v{IApy)IimRo{XL| zygc>2TKzoF_c`kA8T-(#AkVk)&-r+Mk@P$7fYkKJ)S(%vX`ZN*bv~ZmL)-m5dq*zy U@x)|aa(Nz1$oKUW6rA<`AFWs^d;kCd delta 5328 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 LRW-gn<#^(MIfpWF diff --git a/searx/translations/sk/LC_MESSAGES/messages.po b/searx/translations/sk/LC_MESSAGES/messages.po index 57d047d19..84f1cfd24 100644 --- a/searx/translations/sk/LC_MESSAGES/messages.po +++ b/searx/translations/sk/LC_MESSAGES/messages.po @@ -14,7 +14,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-06 07:18+0000\n" "Last-Translator: Vision \n" "Language: sk\n" @@ -551,6 +551,14 @@ msgstr "" "Zobrazí vašu IP ak je dotaz \"ip\" a user agenta ak dotaz obsahuje \"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 "Kontrola Tor plugin" @@ -1363,36 +1371,11 @@ msgstr "Táto stránka neposkytuje žiaden popis." msgid "Filesize" msgstr "Veľkosť súboru" -#: searx/templates/simple/result_templates/files.html:39 -#: searx/templates/simple/result_templates/torrent.html:12 -msgid "Bytes" -msgstr "bajtov" - #: 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 "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 "Typ" @@ -1510,7 +1493,7 @@ msgstr "Odosielateľ" msgid "Leecher" msgstr "Príjemca" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Počet súborov" @@ -1939,3 +1922,18 @@ msgstr "skryť video" #~ msgid "Rewrite result hostnames or remove results based on the hostname" #~ msgstr "Informácie o sebe" +#~ msgid "Bytes" +#~ msgstr "bajtov" + +#~ msgid "kiB" +#~ msgstr "kB" + +#~ msgid "MiB" +#~ msgstr "MB" + +#~ msgid "GiB" +#~ msgstr "GB" + +#~ msgid "TiB" +#~ msgstr "TB" + diff --git a/searx/translations/sl/LC_MESSAGES/messages.mo b/searx/translations/sl/LC_MESSAGES/messages.mo index d5ca95bcf1babb2dc8173c5ecb0dd07f9b7ae06d..08cadf91c0e1a2acc0fc49a9b94c94dfe87c81b6 100644 GIT binary patch delta 5229 zcmYM%32>Ih8Nl%kfshO2zQPem07+7ggaCmMu-qsz6|jsT6+0~`NHr~^2+mgr7^Fm` zatKAnYN1l`0KZZhqR3d4Skys43#iZvilWq`RxQQa|DShf>M;Cv_ub>!XLmowQ(H1l zKbVm^*{bpSz<)IvA#}$4TxxcH_wIx1*UGRC##COqwf5%q%0lMRVqYLGBOl*h5 z7JA@NtitQ@7ia*7(Q(IP{T#Zn&oO0(ixiwNvr}?5m!U_}8Qn<!MrGfPass zc2~3>9rqHNsn=rtDBAxWwEtOj-p|o~sS6Ywn8DjA#2mC^3EFWW`h7UM^D%e}PDK0d zL4OBcK>IhK8+ikJ;VE=n78gkKuohb&nM#GF6ukXw(Mz%oc^P3J_Qbc)*Kjdvl-3)g zXP%7)(jMJucbtx8I24zo?fat#(W80`TloIpqhRF!L?ge5?l`x5vOp`mG%?yod-istTe1tR_IGc?tQ(Tu!{F8mMlNWMhhb9SF3-~ueCUWnN^1sy*Vvv3Z2)C@|;(Fq!2{RleIJ81vYcs=G3wHdn!J?jNH0e^>P;yikHt|(3JzykDc zrIt`IfR*S3zeX3>5bImw_eWy;V`${NV*MF3(0!PL2au$MH_-VmpbLG6j>{(s*K37& zzW+`XoS+xxV!!B6G>|da2(LmXm>k=uArpj|n2B@a_xb4SsYL_$B|6XY_`MEY?|y9N z``;Wp{2_MOiAMM*bb)>70)L6$Uq>fC8tcc={-@9%uCwTZ-(fyx@fMw@HF}4-p#k*A zT;G3{1sshIn2cVMndrcI=mNK+8Azc&B+JqM51<*^iZ1Xd8sHu@kmt~GFXE+*ps(z8 zOnFx4C>VL`z9HOzrRc4$!{*HV5IVt={gZ)zMBn)#wEcZ7#*fhjTMS5c*dDzTg=oJL zY=QmJ`L7s2{zp)l8b7QEKqha=9p*&ap_wScN-Ra6;cVpJv9J&gWG%X(Jy?o| z(D^Q6b8J*Wma%08`LCfcn+AV~ev2MOJ(|Lo(EtvjKOo1@9bSm_4BndmXcb{Etj1>e zV|3@Yp=Z4q4SX3ISRMMyxiv*$D}^k!<4@`iDH1d7b;Z zk4{{G{=!w@ES!%nd=Q=g2zsYZqZ>qqf83f>C7J3LEk-lY2iy4mD`Ue%Y|Dph(FNzn_7!M`*5cK;2~GWn z(epT-`WM&@hYd{vnSm~}0NvP~NRq<}^a%H1Th581GpyE zr=uyK8|#bE30I;=wGqwWBj^$BKm$ml^X*6bAHtL!PEqjIpG7n91==y2Jeu+jXaL>N zOW6}wV;{8N9yB8j=sd5XJ3oeISj~H}pnRKMjp^ z9y-zOXaLKw18&6rxC?!*@1aNZS@dgk{C}|obFbk3U?p-t!yV}Nr_u4LeH02Pyo&DZ zLoCA2(C5^K(YE)-OQ}Z#t3Z!zB-Y|J*au%iH}WYOSd&r7{~_h08JvPHJToyBZl>UX zJJ8Fs8VzU@I>Bx<;%BiNHsCV+5IwS6MklGR#bWA9uq!@{V{kv-h*?xTf}5}sSKtia z|8o>fZO5@8Y{7Eujfe0i{06-fH;zkw8EY|%`U>>&twuAk1DoJ;=sW*2=HLZ1V~xir zXWtUrP%p%6)(@2w+<6W16A&iE`Z9Ea`>-i)iuH%lg?3;e?!tL^IJVbJNOm|HN78;L zvd2)5-ieHf$%e`>W#rWq+|kvTi__2rZiw}tqGxs+x|0-UV;wqfJ?7$rvHejjqP`QI z=V)v{5j`FKWFq-@;(yU#iZicFo>gn~%uCP-2E}?cy5M*;fXV2%>6n9ap8(xhbK`+}0^u1m{-+RtgNkD~|N4*!Ck#cl_5oo`0XrQyu zSM(F~hwcvavagKo52Yx0`JP5IaWH;3jt1}v=3@S&Wa0K`zb@#6rO|4%-z0Rt>1al7 zLo>J-4e0JzzXwaHcVA7RCxyLeWPigS;#cS`y*fRi&Gi}S$J@5cO21sNzft;EUAO0^ z2lZK;nciLYSflI#g9`_g4;@gMp3|>KX8OMJZCU9dRUIh8Nl%kUlJe(3K9^BA&?LVVgex{g5eYhau^UiDxebaKn|UF3{miN7*Rk4 z!K)S=JD`B3wJo6anvPODfT5zbE!6^LC^&#xrF1~8wf{fw&Xi&D+ue8H-DjWOeUn3L zGY&kPk>1}S^U1)!OEN+z#OfSt|Nl3kV+dJPC*rv{1q*O)Y+sDssV|N7m#{VUUq@fV zZ0c`gF20X>_(vQaLOT4NLOu;;j5-yoF%y@eFRY0E3=L!hI>9fn2DjqbcntX;zUM~~ zw(pb#)(`trzZ`wuTSDUY>%lfA)Jo|n8E?*i?!GR>(CW9pc7pm zor|m?EWp9I5@+B}G=SdcCGS^$dpCI1FcPJC4;r=TlqL?>*H&+kVk zT!zKC3hloc&D=X!hwq~Ax8j7G$u7~NLh^4UB{aB#N;II+cn(fNQ#}iv=q@zCMK}~6 zL#g(twC3| z9_QgEv|lFOTUfnp(KP0spn!H4#IRbg}W&@a0{CH*U<=fpaUF2#t6sI z73P;F?M2a^XyAR(_b~wOhUKjO7wc)iUz(2t8g)Twq8k7aL;~+ z*|-DU^F8Q52e36BMq&wHqAM?8Sq{)0eZNnv*P!DJMf;D&88{COU>CaOd+<_BXI+q_ zqyard>(R5Y2R&r_(EyI41N;k};B>727@ueIvh8_j;OE487c|gfY>VYc^1=XQymXjO zA&-Wc=!^5w3Gc*QT!;>^6mxJ@bS*mJMr?&Iqg(PDbevb>^Ec6Pw#Davh|fR9eDD8W z3a;!3I^glx;RHJIX*44l+#R2vg-*~34YUxQpcK!XiTJ!49d~f74@3KpMn7Z|G28op zBZWMiiw@L`9;PK|08gPSe=hnG+W!^wtZYNy`v{$29~$6c^b2|%?f(Ossho;Xx$ zyOCd<;b0Z{H=-YDaAl`$^81@l;X^b7`_PPhjz<198rW&{lX^DGcpjV3Pi^Oc$zQv@&@CH- z20jkY!Aa->W}yMz5$g-kanlb`@XPlcUWgmv#f+^~jG=#EPuRyjr)Sv_3jIQKfY>&&)fYzcJ zdoi|eMz>}=I_`n^{7CelXke$YgZIDtpd@wG=x?QqunXRWrfg;O2{aSWpeueM*5AMa z>hGZw|1GwkLNk>b9KvPT79H>E=nNd|{cohu4O_4S?m{QpkFM|-vMb>fnt_UolL?35 z5b9H~3$8*}+=8Bs&1eAIV*LX&^?PIeD5f3oTMF)38JD_{j6%C*S9k3tTe|UV} zfS&%V&x_T~RJ~(lb$rUb_lB4<{ivHOxT+doH>@x^XD^FXTZB4QAj2Gy@;w6#NYNA1a3> z0nJAl@MWev2O7chGVFgf3t|cETfR3Oy+NfTp&1crrmHIzSz| zk}-Hb&P4mA(Lh!ppY^Z?-GUux<_@6GkD~#c#&a=m1lx!`(d(POl7f3QD>?@qpb7in zeK-k50TNx*uKn7wDF>8kGc;kG@}yE~p=N!#aEbr(>q~{~!fZeFRJK zYb?To(fqE)YJN20J?Iwf!y5b^r(u7hGqsQ6v$z3!;i!6kG2vWH;h)j7@+tcLIEH6_ z|NltALzq1_ImIQIMZE^S_ZOo9Hle9oh@OFE=s-WkHuy_41Fs^VittXX{|9})^`*%c zwMXk+FzrMo6pFDN=ioTB{Z(|OZ{ct}fh;-<7?+%lW^_f*qt|aMn)3HB2X~|6?2YyP z=++%Y7jkMG`ENrZbA0k*KITyGh_-jb66}o*G$FQM9-S7Qg$_Iq4d`CJ4f5&>(gd~-D=*l~y{mRhmdSR@OjW(c% z?@Dy*?nVP#lBQr}YcUtsVIIDWt?^B?@7X2He{#j>GA$WBT}h}6k69! T%S}zCFth&ivJb3 diff --git a/searx/translations/sl/LC_MESSAGES/messages.po b/searx/translations/sl/LC_MESSAGES/messages.po index e2358a124..65ba3f53b 100644 --- a/searx/translations/sl/LC_MESSAGES/messages.po +++ b/searx/translations/sl/LC_MESSAGES/messages.po @@ -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-23 21:19+0000\n" "Last-Translator: cynedex \n" "Language: sl\n" @@ -553,6 +553,14 @@ msgstr "" "Prikaže IP naslov, če je niz poizvedbe \"ip\", in uporabniški agent, če " "je niz \"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 "Preveri Tor vtičnik" @@ -1356,36 +1364,11 @@ msgstr "Ta stran ni posredovala nobenega opisa." msgid "Filesize" msgstr "Velikost" -#: 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 "Vrsta" @@ -1503,7 +1486,7 @@ msgstr "Sejalec" msgid "Leecher" msgstr "Odjemalec" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Število datotek" @@ -1937,3 +1920,18 @@ msgstr "skrij video" #~ "odstrani rezultate na bazi strežniških " #~ "imen" +#~ msgid "Bytes" +#~ msgstr "Bajti" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/sr/LC_MESSAGES/messages.mo b/searx/translations/sr/LC_MESSAGES/messages.mo index f8f47bb5fd71053bcd1f164a6c8dee240183ea21..e844e70dcc1fa3d1556ce23e2c3063ec4486aa1c 100644 GIT binary patch delta 4762 zcmYM%4OG|F9mny@qx2u5f`A|-@+b%hh!NleIB^z1fF=ea4_nKrsM8rHvmcX=p3ogZ zv$VEmrv~oiLFeB!wmOqaoqCFnoP33>@0FaTe-bI{_Z*JaQ?4*fB*aNz2AH9 z?{6b-`~3SYALrvx|2>BPCi@r@gNgU4_W%FVLyZZbnt>B=I)>vT_IVRdroP_ts<$bSDOYMx^lhku+v{?*|I4`$*Bs$*`Ho2pW41#05QPysih zwyXu&ZnFiInHNwK^x$kfgi876)-Q2B_1mcN=0ubKF%(Lp-G;TOl{H``^h?`I; zTZ~)ERjVb@&crIvz*0`vR5GuTfj;6X!k;!VE(noQcJl>ri-xf(G`YQvMDq!n3FW z{*LiDj9OthuRA?Ywq~FL&qehw!bYq>ZP5|rU1lz#`rSkYa0?xE%w}{BvYCZS(GukR zm?qRpoNijcP5g5&X>8$ zgHF7Q8fYhBH{tJ5DUD@Rt$Ye<;(S!<=b*0VLiES)V-BuF^?L;a@mHv=JdEmp40V=H zB$NLX3Lo%5nfMp#n)vWgdN2^fQ0=1msKdFKi~I2*JcnBGq$%!MSdZG${WuDHQ31Yb zeak-YcPMCrQ>e&3wDohypSi+^ItHY=ht7j)7l|4;78Q6B24Oa82&DzFi3z%f(Z!?qR^$z?lgWd}0cL)(kIQ_Lk);J0xB z`e(XH8*v$LBM)9c{W|^?^(%M>wbC(J?zM}= z>C|UqKCVM8;Ryk`EbR5WRr5%wSrj{@4sRviFchnE_0~yQn=+e89a{ z8Tcgi8r*^Jq9%Hj=u&VQD)6nSmHreb;a=22`Y;kdK>e6q&tusHW$yBz0&{phjmCD= zUUu2~VbtmU18TzeP%9opl3}i)UfB`kU0a!j+R7@_nOcil&<;$-Bd9}r$)TWuhO8r4 zNCfYM@u}Jid-vLF-(1Z+BxB^+Tw$@E2^suy4DW-EQqf z9rit#j{7i_`OQfRTFE8+4St4C;r@AU>LW|s05egicovd6Q-uk*+CJZf+VdV%Mm|K1 zdj)kiZX!dPnE7u1Ms&h>u$jUr>_T2@W*>5(%?XUhyQqmLe}{j9;{&Kv??65OEh;1L zqXPSz{a&v>WpXM`Mh6wps~Cz$7Lb2+IKhKTyo&2_`a|x&V0ut{dEdkCz!OlZ&P5IM z1ghUts8fFmwV=!B!Ou~L?+!-c7_QbCOhw(YTczYbg+kFI?tsftd-t@he}U=Leaqaf zn17R^7d^WFmnrBCcpWv-XQ&P%*3mWYo+hBaPsbR{M+LeVbrzmL9lBMhb}g8U&)WJM z7)8AgwIzdi@Av;a1r2!BdRJdipIGa5NJg!!2;;C4b)D8>0zQulxDPeK0BVIdP-ny} zb$?awM+IDtdR~X+>exyl3%l@MYETU?qXPL9C*UnCz|nQ?p1 QjrTsjC?wFkvL@L7f35fji~s-t delta 4888 zcmYM%3s9C-9>?(mF9^KiE52e}gax^XqH*y?x(X|#l7=Fvs7RV_nW#%?ifp=%w?U@F=SNDO>;A zdKuOKDk{aduoH%{ZwfdH6EFd_usn1$U^xXvJ`>e&iFG-KQeT5Q7WK%F*~l+V^ag68 zW>mWt>sjx>Lw8Fs-NzT}4e45X;yYh8m~PS`t^dRY)W1Sy zsF)+&1!o}JYZf5q&8)>#+>Q$9V{41`6l$x_Ab~jM-xRdMA8<1MfQXYT&b|ei!WXtEl!jQ40&>3aFliKHdM}6qJ%;Z}ALx`)t*eT^|msCMH}8J&vS;_2vhC_GHzZhQ=f;uai$ zt*C*!@L5yJ6HozWq6WARldu@IqJ{SPYU^55;LoD^Z^j34H)@L_=ClwAqU-TL}lmza=uJ6Y9+16k7?sq4F)BuFlSi2AaT;o%D>xIQ8O?)Fpi=9gGVlxr<3`kXU@Pjn?necD1p8qN zs-HECp?fVZ=1GU)qpWF9ep;qz@Dv)ca@ow1nw^0*&*gv%k zM+Fv(jOUmn3YstjHDN#0K=;`CFjR*E)CXn^YJyp)6<4AHt45uHRj3J{M=!o)eFfFN z33Yv&F+}(O1O?sm&uoLssDW;vCJO1}2IfNr8i~3E(WosLfC{VvXW$~#p*xEyr1Uas zVZIFa5Jw{4B9n(5b^jlrP>7Z2!zNS!e@6xODSGh&>b6`(K9a`I*XTLS!X@}Vs@Dn7$`o)L+X4)Ga8(;aH2x)Nzc!i~Si!g?1kJFqGEm7=_PZKBfk6=ujV~>jT{_ z$QtAZHUL?)$-`8vLhXG6>Y8oF*?0_Vu|H91o@PwL6FK(&xAQF zi_tgXhl>Yq`28b}&d?}0kRnWzZ|pcYzyB+E>|7<|g1pgrA++SB(?hpP>> zqT8swO6E_ZPVZ>cKxNiPa18YtjqSd%1}M(Y&b7c;5?Z| z?1JY}skw$J7(?E*f?QmNMW~e>v!2BH)X$(YRWQsAyd3YMz5?}p1O6TxQ5o)*d#9aa z22v>DK{>|bZqzCL2P(qTsIB=9HPC;sJ9f%*+xNDPLbZDcm8nNjfiFXCWvz89DuV|w zT*vq$3h6vJjY{3GsE(fBx%bwOI^EGYl*5>S3Dl}%oei0|)9#qDI3(3D;WEHw88G#zO0@a`fmC7C118<@NioMTWc^_2!TpW*6 zaUs5j4`SkIcjYTl?dmZLUq_8|ZZ!E<#~*p1(?6WMq!pE-7iXgm;R1}oHFy-aAwOpR z{cgq%q6Tb3ZQW0{URmUB)f1@O@CtIH&AZqEe{m>i&&^oU5x~aJ)#E-LUgi_bjAh6!kpRSt-LHoQcZRY}ABvQT>)!>rh*~L+^F} zU#Adh%*RJ(FifRz}H ziz+x;LnzeoAQeBxO8gPyaOwk1>He_+!TB|hKeVu^y6cMIz&ZI%H==h3%5B}3c?0sB z;(F$KJaef}>AgBIG%F`DyWfz3Sxp!Eqz8FV)}L%Vwc*stlZ{QjtT|rKD4H!E5*h3% ZqVRNHX{2WYg)d7xcepdc" "\n" @@ -550,6 +550,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 "Додатак за проверу Тор-а" @@ -1359,36 +1367,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 "Tip" @@ -1506,7 +1489,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 "Број фајлова" @@ -1934,3 +1917,18 @@ msgstr "сакриј видео" #~ "избришите резултате базиране на имену " #~ "хостинга" +#~ msgid "Bytes" +#~ msgstr "Бајта" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/sv/LC_MESSAGES/messages.mo b/searx/translations/sv/LC_MESSAGES/messages.mo index b56eae548c077a5c20cd7d0d87bd1d08bf96d5f7..3a23c7c85cb681e32fc0c53f391c6ae6fd2afeb4 100644 GIT binary patch delta 5214 zcmYM&32>Ih8Nl%kfe?})F#*CUr%AXafDjA`R6vMOw2Gr#qPBwyqM{kbdVDZQRlp91 zpe-;I1*<3?^NrO40y|HpLARt0x{|Kg4$IJ${|fCl9bHik z+HQVy31(AYj%I8P5_5PBoo5Fcz^ARqzlY%%5A5(=^fX>V{Q|nOJZ5#mPH4NX=!AW+ zJzj;jpMVuO747#Dn!zp6ZD;_y(7^Y%CjUnA9S=C*;Xi1qa<~dk&>Eev6INn(bik?6 z`*1k*8g$@I*aUaR_n)B)Jc|9X7TwB@?6dRqOHt@aVK|!d8g$}0=*07*&qP}dabWa$cXaRi zqAMI0>(kJH9z_FMfLyGw3_Xl*pbOoB25<;_F@HEg!H&&3CKGi=1L=hxo%3;dpF-`_cDDuq%FpZbI`O~IEjf+e=j<*?z^$>2dV9>q8_@m}Fbk)kTRj~e=g|}e zQ!)pcJIqH{ltu^Gf)21V);~oD`W$Wl6;8xlqBdi9p?f_YN8$@;Cca0{&X8`&8JLcq zt<)nF4B#nrfJNv8%VK?HeE)oWz7CE2%~*dM4RkX$!W~Fb!d`T|bLd2MXumw7aJ~Y} z_5Qb_-~h##gT0~y(Ljb_JsgD&FeW}9iwqDZU?$!f-%mqt&kQtxS?D-(Agd11a=FG8b+CESjM;=mdX81AGS!y+9TNwrSbV#wB021IzNc6a1ru1 ztmhvW@CBODlQ;o?EF=Hr6vp&Pem*~iM*1F_s=s4n{1{!~F?65|?wB8xhUgcx3zEce zH5%akXuF5dz*F)0lW1TI@g98D7pp0>>X)Qu6JAbzFS?>L=s=CHOtz#DFQHzHuB0Cp z;t;$P$6_~}g1^Qk=ovVRO|cFQsA>PCeX1=5?`<#4$8vPQYBUp*(24HCVyr<^yaL_h zzoPv%$NER;g!|A;96=}i3i(wdoWcUk;XBOusnC{!6O^JI`X(J`@~q1e(I@(G=eioq=X(Hr|Ny z(E-1Rp1^CU*P`vp_^rbXR-pCk&}%vle}PlbdDdZ(_kR z0W&I+m1pBT>W$F}pNr4e#QMv4aVxM3?{~-dKcnNE!zVFg5czk2d4rOaFT*10Yq2%H zi+p>+A@n+CS0?5~^U+i{MKe{3j#q{gu@Z;iiun8(+O8Je;?tGn-vKhKk{3nj-gJod zKCwP1*2kc!y9M2X+t7P|KiY2^h}&YQ+o=1{u7erkje6|#=*$d509f~VI#Wbsa+IWP}qk? z^ga5eJBO~MEl2j^Aw(w_fCg5Du51K8hIe2weu-wZ5wqI9EqXgTqy46#3#>^@h1nFE z^WbT8qBZEiub~6%LL>bcJK+&rjdkcXTs<`D_ab(s{s!_<4M%Vi<`3hB;Jw%ex1*W( z60h_Aw;Y~)neN6_ym%5jU@2kWj@4+&)}t%ihz;-~Y=`^Nt@#-<72k+% z;lx;dfE+VIPZdwVMna(Hlev?e+Wop3(Z!^LPoOVI)Th`IOzI??M( zW)~Eu3~47%?D=tgb1-@o4dtu&{@-Z(GtoM9)lJan z9Y6+u_Z3VakvgW#tqUVn@-F~zuK&MR{C$Px7JI~yX>W$ z^p#y6&P>16eOJ6E*sdpUwTTfcA4n~Wv^zXE6Q7Drf;eEAU9ny;$&v}(ow&w F_dk02BFq2) delta 5359 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" "\n" @@ -561,6 +561,14 @@ msgstr "" "Visar din IP om förfrågan är \"ip\" och din användaragent om förfrågan " "innehåller \"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 kontroll plugin" @@ -1370,36 +1378,11 @@ msgstr "Denna sida gav ingen beskrivning." msgid "Filesize" msgstr "Filstorlek" -#: 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 "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" @@ -1517,7 +1500,7 @@ msgstr "Distributör" msgid "Leecher" msgstr "Reciprokör" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Antal filer" @@ -1949,3 +1932,18 @@ msgstr "göm video" #~ msgid "Rewrite result hostnames or remove results based on the hostname" #~ msgstr "Skriv om resultat värdnamn eller ta bort resultat baserat på värdnamnet" +#~ msgid "Bytes" +#~ msgstr "Bytes" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/szl/LC_MESSAGES/messages.mo b/searx/translations/szl/LC_MESSAGES/messages.mo index 16f9c58dab03b836fd48ab5f393875f0878b1e73..8f19a8aa2ef24a53c3b3bc6bbec1f3ce8c3fa559 100644 GIT binary patch delta 3996 zcmYM#du*1~9l-HJZ?+WZh0?Mz=v#rd(2LUA77K_B#DY@Xs>2jT3H64!3CS4EfL8)8 zY;2)XH&`}nKpH25Ir2`1+k$1xT?`{dkLSm66t2VD zFpYQP8<>NY#UT`871BQ)>M8IOTKF>#7oZdMpc8D2Zo_(>e}Hv(1Rd}L9EpF&DflT) z!19u$eKR`Y3Us{H=!)0jMCK3qr6FWfQG@)1>HJ}gFbD0}h2_|T9k>?n#{=k!M~+R} zm!QwrN2j6vZ$vXP8%N_JG>~Oj#r)v`3Pzkp2ly$PiM?pUBhewu=lL&KfTwUgo07>9T(zkbeyf@$Uo;I?2HXwKvT63$!<7=4){lG!qaF9bBNBsOVNx} zMkk{IHJ}-4kIqBe-+^YJ8|~LqPX4V}6&tLMFV@B9@1T)yMF-rD-iBw;0d}JS?LphU z68$x<d43cA^su;Fs{{Nbung=)mvd4fqi{;5ZsN(G+yc zn$a^b7aOn}o$x6%Gds{s_s9BO*vR~0F9io0MpJbb`3V>KV~708B+?@EITfu%18YM2 zb>K=|jArxza{j_wXupqfHeN*g)pO-4z5neLT>00~NbkezaV7TQHgwOgp&fJhOx9pA zc4Ip(#~tX0>tmdW1rtN~Dt-m23eRCb9>VF?Pa;F!|0gK87aP!tzK5oACwdEBL<2jF z&GV~(fMfVI?;)i zVjbRtw%d&E{Z{mSKYHkXjAm*84P-xh7BbPJ=(vAPk^d|T!&ErH+vtmT(E;8^Z^b9* z`+uSVe~t!_L%wZafW9wACoD(XRiObjqT{uqJ%FBpUi6x+M$bwg+J6)BQ4HJB_AjAZa{yn$ z!|2wmXd?ecy0$6Vvn^P|^C0>SKY*SYlRz=>o^V_xCXryP3RtX;TU`bop3#x+FxKXzK%{fjJE#} zUC>puT`QBBsq`WW9=^M=7?-0B*PtsKL_55K9-`y1{)1S5AwK^H9k8G|8K*2d6}M2| zh8(YO1YP-gWXsdx3WfPpWVa-N+>SQrLIdbUGw=@sj%bH=zY=0&;Zt>9XFyK`>_mv68$BbvE%4C zr=#bh|3GicRkUB>tR$1ES+^&rwTTKF%tae?p%bq{@Bd>s9iPAo+>Jf>D=f#tOkYvf zh|HGaujgdWlzlcLbE^F6b(vF>db2V&SNCS+&uCB0XzrNNni-tDFDtXOCM!2@QSTeS gP4zx|wrpZ%L;W3DnLjtKDaf?97iMP`cHEowU&l>-bN~PV delta 4106 zcmYM$4{*=t9l-HNA|eSAe-cckDJ2m>Bqd~SdMT%rYlL1;}p!# z3!yF6Vh%1r=1qmCDLBy@n`&qUARKZ9;pd=Pu# zBDDYW=)wok`F@EFtRLQ^(3=M{yM&OAE0Le@48K?-Y(@v}#sX}{YCMiJFs*B{^Vw+s zd9l7cnnK5~MKkjg?1-;mChLd&6z;~i(TM+yrm_{y#4R-9PTdjmBOjmx&!K178oh}wcpD8glV2V| zZzSeWf@WkCeg!9@<6nqw$|wKhc<>Sroaj7qU&7Vc;Xi1~?jYF?IYi-vg*X_8psAdR zZeS6*p=HrkXh3VxOl^v8NBcJwkbhILp9c;+fY#rQ9e#~w;8bk?V|@NsbSD?liT{DV zC7+`6+(ZNWFWRqT_rxyvB=zp-M%Sk(aR0(K^bCKB{Dj}|s~?_614yS)Gov}^5#^!* z6rwvVK`&=ztS?40TZaZzkM4XkIzF|Xf&=$re|#HF@rSX)$LIo|V^3_yFE$m5(21*X z2tI&LxD;LJ2k6mlMDM~5EW@|Z^)4WpNrkHvO!+6V;RX((9=?=JG#E|QD5NP&K>L3O z4fOF?UmdMS1A74-w*}|m>u5%^dBwP|p&Z-!{*R?FiU$+Wf$NaIp#j}_GkS)~s z>+lkK=F|CXI__I&1{dR3u>rq{SJ4mISUxf%a2`&=U3i!8|8)u*F}E;;QX9~-K8dF4 zG`iDs=z{-3Q`(BY6&ZXy46p}QU~lv&9!2}l!eX3@2D$;gq+2m%LnDP5cmnUklA`3S zW}s)e9=$YM(1mtIo6w`!i!SsQmf+9PejlNC;0oG)9i8VE8VG4geGy3q^5ahPqebY% z12GLN(2NX2CmI>sN23#si|vzR`&2aW>1ZIe=zL3J`}ffdth^_cbgburk!?mN+>S1| z2c2Lax^Oev?;!e`9ziGm0Nv?%bo@2+$ZnzwWpZ)cU|zHr+P{B_f@f8UPF#b24<3#k zrlS)rKo?qp2DS!Gbv+u$&u}*W7QGY2eM5M^4c`JZpxl1Rri6ZzJJK4^fW(Tq$&zTV+6 z^fE7wF2z(150+D~!w)eVcc5qYI`VA_M{ojuh)ytogVVt{4lB_BS0Eq7us*iGh8?Ky zLjyX5X7U6M#fxR+-?Qq~6 zz^~B$$I-z5gx-m>gUG+H--X!mV|1ccCyn+3( z=aA%Ee?J;PU367+4Z5-V6oo7bJJ87Ypr7D3(bQdzwxSE(iS^Fq$q^M|N1oq@rnCnA z*KHZ*;W~8QZRlIlh#vJZ?1ZVmQEA1p;DT!l{bd~_?Wp}rTnf1#{0+4!Dn7s#nf&b$&m!YcGGjX?wXHhL5bu`BC`A5rj$75fdivEXW1&+bbkYt6CBa{A%(9Enx=c`A@ug8=r-$KF2UPX>A>_Z2f zM^kt?);~d0egl1-?nJYzlX^k44?5rASRamVum*kY#-SOXP)+`wXnJgzk1o6z4eWbp z3ZIG3H$-2IZbviKhz52Lo$n|*?qu|A^a>ilb#&aVYVz;E4qr}QoBU`gn(EQ$M3bU3 zqYKg3XE}Dm=g^eCj9%WovHfstKY=d%cQg}MuoSQMpwOK{w^1Q{1Iy4)\n" "Language: szl\n" @@ -545,6 +545,14 @@ msgstr "" "Pokazuje twoja adresa IP, jeźli zapytanie to „ip”, i twojigo agynta " "używocza, jeźli zapytanie zawiyro „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 "Przidowek sprawdzanio necu Tor" @@ -1343,36 +1351,11 @@ msgstr "Ta strōna niy podała żodnego ôpisu." msgid "Filesize" msgstr "Miara zbioru" -#: searx/templates/simple/result_templates/files.html:39 -#: searx/templates/simple/result_templates/torrent.html:12 -msgid "Bytes" -msgstr "Bajty" - #: 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 "Typ" @@ -1490,7 +1473,7 @@ msgstr "Wysyłocz" msgid "Leecher" msgstr "Ściōngocz" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Wielość zbiorōw" @@ -1686,3 +1669,18 @@ msgstr "skryj wideo" #~ "abo ôdciep wyniki na podstawie miana " #~ "ôd hosta" +#~ msgid "Bytes" +#~ msgstr "Bajty" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/ta/LC_MESSAGES/messages.mo b/searx/translations/ta/LC_MESSAGES/messages.mo index 81a5456471c76c6671a5e21593a1883f1192f556..a5fe319a757c6993458393048db710503b59b1ec 100644 GIT binary patch delta 4198 zcmYM%3rv<(9LMqVa#8RSirmBt7ePosK_L*!YnTdNP$CS7QX5^^Oovmn`Q%hIUAl4( zhh`U}(u7$rl9Za&vW%`%(`H$&vP{f*CkyEN<2hRn`JD5d+yDH}c^>OXv!~&J$2lA9 zx7F~cgTDj$+bck||Ns0OWQ;%6c8o#aK5ji8yHiiHj>2x#$6zmM1g&c3B|ssg%VKDr&{wdiTYej#I?u-rU5nKd)Na%z&QLI2jFGYxSqjo z|4h`plW;5Rn_LQmcyJDVu@g0+Z$D!wngAq5GXS+ldhT z$5EO236+sn?9Te;Hiank32`HiMNK#sm604&#KqS6s8f0p1F;e#a3yM?8q`9&Q2q8< zoAD0nAE7qzEjn8058L4~YN0laMy;*^F{lBlsLb4F%|m`nKEIUua%3-NF)9<)r~qnE z<6gGbp#t3#O8&W5rpY!OMMd6%O8sfnL>F;5{)MU!KALHd$Jhq@N=N0P>>))s&YDev~7lXC)Fl&r88I|%( zRA7@(fjM~;w8IBc6U{?Sun33Z)2JiZW!oE33w@0J@k?Y==6BQr9XJAe(5U&cQ438) z9qj|CJF)GcC~Z?w^3(a$=62h%TbxD z#yMDz#pvPlst;Q!W}$=mdjAhl;K%gfD>MufP#Kwxnz$5|viYdDVkwTq4XCp`gi7^M zRR5EhfM-wv`3`pH3qtjeM70k=r<6i21*LvBregyt)xV(5>XL|@W@C(!er%?<4jQVbz zNA+(*WyGJGrUe2}0rW@pk46PP6uFni8Ad^8G8q-|LewQ&hi5$mgnDhNhVa?MXHo6` zaqfpI0=X6@4e4rTVJ0rdM%;t?9+brs4D)S91-fl0Sz>)tM}cpKIgjJ86Q|+01b5*L z$Yu$;FGi(&H_pcv)Q4#V9|y8*W~1uMP#M~e zI+{kzz*cmEDa4L)Bh5hVJRcv&hfo7PL+wam`$3X56*&!)fqk(Q)o&pxbG4|2Pol>C zWxa;_;I*Z5{UkL|fc3Z;kJ$Pwwy)H#M`AOtp#ndR+R$&PyU}Ki zU=r1{P~(bF>s4lwe+^i}1Lih0sD;18P`rt1@0I1Ac@(Pt5Ng3isEJmhQohMPZ$yp% z5bwcLsG|xU?LN=MV4jUYw&$kfaAIHYOg?@`71abkD+dT z_&E1JyG!r_^;I|eFS7o#?C4Ey76sH5maWh9>H^cG~H<|{@8@Ei_ieRG0B91pHx6h`E@sma0x z)E`0akvWP3u^k`ANM_mS;j4%Wy!#Y4fDp{1J{*6<6*!xIbEop|Q{Ov{f5P!PUSNGw zk?a1iQ6Zx$slSCg+r4O$?doZsZUuqvuga z=Rb>&6{et*M`SxGC{-8pjd>S4kYhJZ93c13Tt~I1&T%i>BvfE4F$QZ;Z$UH0<1tjK zFJmCa6u22q!j05tq5A(&K>l@htvpcV0r$ISH5fI~1Zz3!Xr8n6dJLt09CiCIpcabb zLg=iAqsHf>=3k0x--62Qi}v|@h2&oyzT<&*conrH{|DULo`BkEiFFBT;!UW_)`%MS z6)K=}sQ$N5f%PeJ??x_a;UZLkOK=Eob13NS4q7i-Bj>sur=niJ3e?$cv-KmW1zRx@ zeI9g8LS5zpOvftJ1{mf@Wj+v?|iA|ax;w>mw_&$~Oz6Y6c4?ic87 ID(uniKLsSkF8}}l delta 4357 zcmYM$4OG|F9mnwt|Gzx=SDp&O5c#8`JZKn+Se6eY$^=aN8^To7IZhNiIwvl1!tbbQ zK2`H6+dOHQ_CN}AIFjRP;#oVZ*4mc3rU#;_ESqhoZMe;v?)~B3oq0IC?!CYJ@V(!A ze?M$F8FsoO%-h7(snI4#Hhn zga>gjUcq_zcl2X%yfFb|JX1zN3sj;eT#SkMC~Cn5*M89X3g*z>ikWy3naKDP?8I?6 zka{AH#2}_%5o+90RR5(~@ zGM+^(^f_vwf1~`w`fqrerAouI8=KOwSx@Q5#*sJD#E+49Cf)i zp#t8GT42BPu=5xypmtQII-Tz&k$(+5M}soZg{oh69j>7!yzZXga?c~~u$hQKO_+e{ zHxxBK1GRy%?s*>SlHZT&SBMI{#G{~&mCh>s4)tZIOq@q9xamcm?Z1#86Hg@rvrtF! zkTc|*k2$eK`*HKTTN5;f6j)C3>kD7=6=im)N}c>-#o zbmYh6@QY-bBGmi~F&Ar4^F5EO$0=ywo5-7D-gh1T*x$jJtEf!$x%U4cKgQ2H zsvW1Hc9@03F(2!(0(IuUbI(6QW$rSDFu><_f!_bc6!fJ#g%hz0=VB6HBZ{U5vvCvZ ztbc^czzNg>KSO2iZPZ)x2h783s3T1qW>cPt>R*7P@d5M{c{K%1xDqvBo$Ig(7g0Zk zx}*WVPUA5SmGUCg(S=YMT7nv1gX+H$bp+pa^#)YG4X%A#8u?d5J896seVB6jbJhq2?Km3M@0|*@<##P=`sV4pXpy zhp0e8r~wtI=ZjGbSEKqZN42lR{vDzM+=iO>In?tXI$uQfd)cF)_qheNz%Nicejhc# z1=Q{BMJ@PG)J}C_WB}Da3H4fyK#j{oEif6i@C?*ojtam-4cLr| zdxThq`Q^V|N$@uD;%)k4Nx-0{koLdF@F1;c7&#k=cg~G3{8O_x~db zCuoSvupfxGF^UQMP?6poWz19zjJAQ4BHtcUgHv!l&caSq0E38eKrhR0jWq6Yw9HjyZfBmSGus9Gf{#foz+zsQL|5`P7$V z0v<*M`UYx&5AiYVLC)07B6=TgK$2)SqaTku+mX{Ur^b{2cnX(X$39dFgRG_i7N7>! zIqOkh#75*e&3=r9KE*#+cZJE)>TJF7)ql1AqN z=Ub?O-KYg`p!yG-Xfu8fnI_m6mrf>oE{)Z?` zr=bZ)VlQ6Bz*KgHeVB&D)9mY5gEOe_!?oD$+A9lf=C(C-kiX8>_xho7ap{C z=wmF``~MXM?I1)HLvRJ^ZP<#+NGlG%8~M&+8^8f9rNc?=!U10+6ZE@;bTt!7_^&uNqB3M)NV-or=nGO`C#%0=-GP}oUf432xqrg#zR4(z~J@epQW$sD`mI@B5N z#&6>(EG57(b8W`zIkz`x-+^2QGd;v#R@{Kf=v$~e_uCNpS7d_-KOHkL7H47x&PS!Z z0i&@MmFf=Mj@_vKk3V9Ma4jnE=TJv>6gAHW&OX!;rIg$DN#&e>A`MGvP()9lQukxj zg6*h@PNOEegt{xy^X>BtREl#^?WN8d)J~s7ZEPQo#}3qn|Kg1FD(u8T)a9Fj8n^@% z*eXoMt*8JGp}r4YsD(d61sGY$-+s(S{;rtW&IadERKJUugEvt}=w*N1eLzqPHlogY zkMm7b%6m~e2rRHWo$6eOI)XJg3%B43{1CZk=D~$Fpq*%@ePhMyIx}tAvg%c~FHbn2{ diff --git a/searx/translations/ta/LC_MESSAGES/messages.po b/searx/translations/ta/LC_MESSAGES/messages.po index fcf7af3d2..4722762eb 100644 --- a/searx/translations/ta/LC_MESSAGES/messages.po +++ b/searx/translations/ta/LC_MESSAGES/messages.po @@ -18,20 +18,19 @@ # mukmckenzie , 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: mukmckenzie \n" -"Language-Team: Tamil \n" +"Last-Translator: mukmckenzie " +"\n" "Language: ta\n" +"Language-Team: Tamil " +"\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'] @@ -558,6 +557,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 "" @@ -1350,36 +1357,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 "" @@ -1497,7 +1479,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 "மொத்த கோப்புகள்" @@ -1911,3 +1893,19 @@ msgstr "காணொளிகளை மறை" #~ msgstr "" #~ "முடிவு ஹோஸ்ட்பெயர்களை மீண்டும் எழுதவும் அல்லது" #~ " ஹோஸ்ட்பெயரின் அடிப்படையில் முடிவுகளை அகற்றவும்" + +#~ msgid "Bytes" +#~ msgstr "பைட்டுகள்" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/te/LC_MESSAGES/messages.mo b/searx/translations/te/LC_MESSAGES/messages.mo index a73a4570002cb7c01c378a081b025ab327b181ad..7c304f4a36c8156ca387a3d2fdda051bb99b7bfa 100644 GIT binary patch delta 3536 zcmYM$2~d_r9LMo}0RD}_ACBWcKRa>g?q(7e*uQ6n|SE6v0y zHEPrvEqxlXiIGf9?HJV34)ZQ0H5o@Sbtb0ok7s9Mkk9Tu`}}wJzq{}2r5&E1$~@l7 zA%0s8Kj--u!N2OJs{Q{ntEDkbsLsY1EV1>i=udrzwH)>8Cm4u_a41&cIBe3&7(Xn) z7C0Gs-)m-4XiY;2hT$sIKxJ+RQ)#Wn?zDf83HTTlFeb>D=GYbEFcmxE1XTZG)PV1! zCj2pW!b2Fs_~r}+P2dKq<3ntVYRrOgEW~`&3O_@BO@*zWLcLdmTKPp}(WVwP;3JH} z2GqnNgWWh;7{>T!AO&@thygemo8dHUhsCG?-m=fPS$82xF#AvwK7yKHjeULr75558 z<1JMGfDpHTIC_=BWC|Lf7itT#Q7Ijdq4+W~c{2~y?+qkLW)o_~yOCdWfIsSY43qI3 zDia=pXkkItcGj3s@~?psY0!#$TeDF!&qb|hEGobYwq9hPPqXcFQ43jwinGkNuSQK^ zlYPDui>ZHzT0nRk@=sPwd>c2_nHWwzAG_cT^u>+VEvOW}iyCMTY5@nWm8cAzL=F5S zY9ZH9@BM}9{}{WXua|r)Wr^4x`=R!7JSxyEOu>by0DDn^D^RIFfh@+HLj}Hx%EWzC z<{sJhe=&)A0KxTsA5;dsLnvtAai|wwwa&M`j+)3y)C(K12zR0~AuE?~na) zFzUVK*a6pJW5!UQCkNfYfvlNY<&+EcrW_kr>FrA z+4du-_p4Bc^*j5#1~uXHsEOV{#i_N=>(HwK>nW&X18QY~VF;I4eb;VPub97bKs-!TvGqTbJl=Zg$~K-OfwCS4hL9Tl%b zH@DrJM4>wkBdv>2EBpv&;!)JZ5)<7svK)s|Uyr(G7f}6gV)iVZ_d)7l|4cornY_Ed!K@()N@enCs7%> ziUaW<48qJz_x)Vd%BI`;YpAVx2Q$gwDO^n5hgm<1OZ$=kFbdT)tiaz;dsNupP3>G% zfK#ZzPq97vKjYqt7`#k<0cJ43gaKrc`g-0wWREg8@B5J@PTz0jOLrt{AT8fRg0kyYPsEOV~cF}Yg?hcrb8fYf! z{rR?iH74l(@1~&Cev9hxv-`l@M$I%d*A3JS6=)D@LL)E%XWIG})Px*l@#a@lyvRKF ze?Fy%e?LeYX7<>`vV?!hN1(9fL}F z2?pXi%*XAht-Fgo{3ygbU$pe`ILBJ;_jQUxCV8Bi(CDVlgZ42#PP>SDPe5u$bZS~w lYHuej@+&{5Hui(&&ibUyzD`_fOt6zX=wMT)VfYol{{Yr~d4~W1 delta 3667 zcmYM$2~bv57{>7fAL0h0AczQv2#UCYiMU`YZh%`U=;)^@rWUEAA`Wi#O}T{5xHM{r z+E|)xE^L-FuDRq^AgJ7;mCByl1Zm1~~J=uq)%y7>8p~3+H1qT!}IGF1Eu1sQDLB z8$U$tr_CbR-!!2SNWT**fPVba#0(6L-8VNgWL9ct@RO7BvX$HxCPlLpjgy8 z-B9Z$VH6HT&3^?wE*kS`=*C5;QWl^#+JFkI2vyo*48o&G5zH0Tyjw_BO${pZC&(Yu zgvpxM4troXR7KpVz;c49zZ$uAU_ug^A9Y`u?H{w(&!7^zY_DHI zB~*c0?@)W(UZga&zN=*E$#8zy2W%tn>20NY{_>JgQr7P^c*@jB{$UoL9lVALb% zh~#7vQ0opuB{~jO!Av{uantC|z#P;9TT#z)4{GBw)D7QRuUc=S0=bQvUyIrJ3{|1& zl#61RHK_Y{UM$!vwNW4{}39z80dm3MxCyDId4?Kq8|CzS zqE7iJ)ZueuExw68SZFSTn!h8Of0(d@U)ty@a!$=%Bo|YUgD|`!)y1hE8k)EtwZTc; zhF9=CoE76__y`HwxMF#Su>)q|BGmi~$iX(#Iyvj*V=n#mn267iDW+#bO;ol)Z%n1stv3lw88UPJ|0i3{*P>X~PEch10iRDUDt za34XPh2t2n_x~CV9j5w*0ov@=lYR;ki927@QC#Ss?-&z3?HL1^yfjkFbdU=K|f4JEj-MQzh?W( zQ2~E|<2a;;QS17=-~<$do=FU3&=`b!a2?)3Z8VS1np}w5AP*H#A!_4;sL~!qW&8^^ zoO0U_=XvRRU({QZjZ1MA>TEqtqW%MD^zLKKOSlj@6y`MU!z%2LYniP_a2mD2JsgJq zeVza7jYnmckD*wIEwKdG;%Pgc*3YR(HV$EYX+Mus`lAeJfy=1Os%`%_tDEd*t zbX-n<6;Y4C=NOE`Q;c~B-Pmv#aT5LesQc3gI_s{$w)6`y3-@?vRMM!!WHzXH(U_U^ z0|t`~=Hhv*Mq)9gggqH+P>*JKs#B44)W&m=b7z(zNt@4c8{R=3)}=$8gg-`A*mIbM zN<4*ns`T4%3LeG;0ty&z%vA|1Q3sUgcDHLXV~$@ zsDO8&)+@uNdjG$rp@@IPIDBaP5gATkDX7CX6Sd%{$fv>_MFsd9YT>9+&Rfz4L+DS& zj<^uD?pEsw>s^e_Id!F2QbCQl8`Q z?bRrCS>Ei$yTU@R&H1;G!w{m6DI6I`ww_%;U Iv?`zf0Bs4HIRF3v diff --git a/searx/translations/te/LC_MESSAGES/messages.po b/searx/translations/te/LC_MESSAGES/messages.po index d903ea608..7f9d3f8ab 100644 --- a/searx/translations/te/LC_MESSAGES/messages.po +++ b/searx/translations/te/LC_MESSAGES/messages.po @@ -11,7 +11,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-07-09 15:34+0000\n" "Last-Translator: return42 \n" "Language: te\n" @@ -540,6 +540,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 "" @@ -1334,36 +1342,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 "" @@ -1481,7 +1464,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 "ఫైళ్ళ సంఖ్య" @@ -1896,3 +1879,18 @@ msgstr "వీడియోను దాచిపెట్టు" #~ "లేదా హోస్ట్ పేరు ఆధారంగా ఫలితాలను " #~ "తీసివేయండి" +#~ msgid "Bytes" +#~ msgstr "బైట్లు" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/th/LC_MESSAGES/messages.mo b/searx/translations/th/LC_MESSAGES/messages.mo index 77f67cd7c4c688773a15fec9468337fedfaac4b9..76eb6e3137c4c7d1256ce3a4abb53209987e0e37 100644 GIT binary patch delta 4683 zcmYM%4OG|F9mny@Gb)G*2KaXZ3W9pQ2U=uJ#9{o!%{bD?UeB=LU4}ot0AohtSK+Gt|IY_QjR~Q84&(454#!^C9yrXHBCX zKkn?r+0@_1bc~8ICJm=zFzcIY3Il1V!DM_Eeb|N?@D3`VYp998K<(%bD&TvlfCBij z3}bN@uElR*zwS^do3sC`AVglBnHntTtz5_jiGzTcCW2f_d)HS$(1F#!)_Mf5_`VVTMfi$XL ztTPb@Qy+)gNFHjT`R?;l)H=&B5m&{Le+}3|Lq4{k23|s?>ZbD+YT-MmfCJ*~k;Nj% zYDS~(MlNcBB77LGQMlz5o1xG=ehO* z)DDZW4(Fj3dJpv+yHNcBJQL zE9zG3ipyYUIO<3vP=WYR8A!o$oP<+wt8MqpDGEA^^QaVeqay7^?fe_mgn>MEO*9m> zgORBIvrwOxpcY(?oT8~i-K7^%8+i@2&Rh5(zK4VL{(C8C;=8DYLwPH@12L$}m4q2M z8P%@}m9aY1(XDpv>u>_~&6tnB!5r*E&6}KPGn<79a3+R&6qZmJjmuFxdI2?Yi}N*9 zng$aOM@P#HRd9KX4Uo_5klK>>V)>oAsz zF3-!T30iPG?!~eACtQeka4{B-v0uR*m`D9IEt=JB14L3TEL|)R{*SO$d%c-IZia#SB#7C8*n9;jF<>>Z?)x){Q0q zODVL|ptHJ<#hAmV+TjM&*vR! zu^NwpIyRyvSdWT)Glt_!s0_6^_n{UzjDdIrHU5}uKY<$Gg+X}1ef|+@16NT2e2$vO z>vJ8x#&8<$p*n_)vjIh;CiI~uOhql2j+!Xb)pJoB$VYuo%tkG+1hv!UsCk}29rb!- zJO(E0o29_QP=Q9GZuwATPi6utuu`nR zdK{+rf1W~jfH9w-Cioo(J`+!2A%;z`6V1aK>b0m#c?tC#KSTXe>PLN3Mo#2g4#%RN zVHsY=SFi_b`S#HUi|LfC_g_jO8=FuQ9mZVz16Jcb{0>%T+Q1H?p6M;rM72B#zPrp? zJb}Bh1526o3A~5uSH=zJg_~+D#uw1jPCulej?t6tMD?g0Zg=%xp>}!#zm4Z{2M!?0 zdNS9F%1juKU#b5AYWx}`cC!VO@fgNo4=RxUJo3MsLOiox$LCN3EBOtffzP6L*5N#b zoRYbYWZMj$Y6Hqg^=rfm+~xcl)2Wwn4%+A@Ou#NwMsDPje?{~q4L*#RX3V3QhKjfm zHSy0;{f;{?q5|o~xfuJf9be&GkJ?Bp>gaxrqp%-;j1Nq=fwX!Q^o))=e~U5HJMl5R zf*F`L!~QFF5$bNdio@~GxD!7^&C^t1-H2*`9#b)%?U!KzDzG+;NACcIpHk>T?ujX# zWp8aWZlQh}wbRFD+ks7}g?FG*xDS=Nw=oINp%&~zWh{1%J)%jdakZ#^8vp)PL*=cNAm_%!3o z|5x{TX1s-DbwuVgp^RFHkK!6^#~_R)D(Q13pvH|sEjZU%i>Ik?!xk+0uFXg<>JG$k z!BR0BC$PR*tO9ODj@!J8>d=or!GwACHS9sPUqnrG7d39gd>hDIRC^t&eH-cskE4!u z78gq6*P;S`9X;*fBn5T2fekofft{ckby<#L6rROs?8fJ?4>x1o<96I_RR1c{r&O;& zPSL!K*?0w);Ghy4z*8lhe*z87G$`^naT1Lg6aL zV<4+5)gw`7mw_|!9aNzIL`@X9+jilake9;W)8W}gKF%!NL0UZ zsPVZ-pq?qFptD!AWXf!s^e zjoM&Von2=Es$Ppe);C)zD6$SzWanJ{x^qyy-BC6wphk?)IOlGxpuQIiFu1|~bG{ID zNoz0xL!aSCQdMRBD*H2WWy5NJ#<2VVe|_}E5dZDC_CSA&uWX?IcFMRQf5NzJf#I1C pC1z$#$(-!>r&ovglQUNh_V1gX7Uuu7FvsW5s;Un6AFiDj`d^F87BK(- delta 4868 zcmZwJdrX(t9mny*O)jDciXy0>0#ZQ)t6UUO5h>zOK~bq9*P@_kkzS^CdB8d=om#9F zl1^i-bEcbXjo1zi1~1JzWhOSWYrC!tn60*(v2)YJYO}pRJ}24!ko@v{opYXZ{ho84 zAHVGN_@U3k=?U@PZ}^MyFlH2v@>lMEf1^T-@gX}J!*D!?Vumd*#IfX8*!&jsCEsY> zi37;D;6QA{KscjqG*%8b#tWNJ^?!;XjBj2gp%ooO4e&1VF=zOijvr$Q299tCtVPwYxA|?> zW>otYREQ7YAbbZk;oo8;cA*ybS9G+32PBxJ@nnNlG0Yl;e&pj&$08Z|m>GO&prxpR z%24&{tS{hT@(yYtdr;#Xwa<^E#(6)C_(zdAOMx2nph9#DGw`3N4iZPYA)9B-Lrq{2 zYT_$VTUU>4yV;70Pz!3H!roMV9aXQ@K0kz7z%i`Du?kKO{mCxg~50i z*&XA{(dPJ=D2%~0)Pz=BE3DP1Ev`jPWHS;8$Gl8p1qFL>I^J*}m~mWcZOJ55sMAps z%|k_M1**d`R7f|X7O(|X|FC_25;fp?WS31h>P&rw!MgtsNob(K+>OZ?j_NoM)p0Ru z;40Kv*n~P{4kq9}RK0Vk$aSN(@Tx8U6ep4I#|#`2Wz1B}$3YH>Z6p-h7Ss&iLUnKk z$KiR@ims!|?^++CCho;+Pwj)S93xR%(S*Fa%rR8EPSgZ0qS~o*hXZQ@Nhm}UkaJ>^ zQ7g$uKBkbb&GZi@-51{J5 zjr#pDzapUlE}&L?3Dwb`P|e7uk9aPBm> z-VRhpeHen8h4MpDFQh4$j#;<|x8epOIFO%GMQBSJ@z-Iw&f7s9+(Z^<9$+*k&|0A? zKux3;D{&Y84ZlORyT%WP+TB1+AZ&(fDzbZK8L}Iu329>9v(LYoLHx@o@FV`R2H9S7 z8MV@T7>VgK-G~&UCRB|P=wLqn95vx@P!kxO>DHTM%|T716m#)aRQo?VHgOxZl7X|_ zy&HpL$k(CC4!ffnAqHkj7*h7f>$U6-ryh-@7 zTp5UZ5R4P>C@#k8t^65ijSc7suM%;9;#j-cTJH=M1?RP^}Ggk>K#=3Zd-mGHQ@JF-={dB z9z+WxbpPYn5PvFUqdHoM8mJ2Ma0lu%e~cQi57*Pd4>n&*rD)Yd#xTFeC3pv)#~fzm zg`L)O)( z{1A0Jo?7IV{}|QJTj;2RE)rV7E&CvZ6QuHF+=->AJ-&(RcvOKq;cQg9YSi%(QzN@?3D1@)Y({r75FmJh4~u)j+rYNnEDf$y|$>ZgzdrC9TN9ROkV9? zpC?KQCl#xaw&qG1|88MixjUgSdJiL?jJh3psFiHT7<>~);yF~v|BTwgZ!rrSD%}Zx zfa=FNN1}^uRHljLiwjRRSSVvSM2jQFi7|RHzd^YS=6EV9M!;Mo!ej-Ds*FQz6$lc9#wxkY68bmZ@>$v z3H-1|J<}OksR;g2Y(7f$G4&&fU8loJD>aYJ#oE0X8R5ht+?BJ5U@d zKL=H>3^lQ>sEPf;=FeFBQ40#-%FWb_@<{|@nY9kf$Zx?p_yvx`(a*Z4b~Z+m|FZp3 z@FEYNtj*6o)6hO*Xp@g;O;&qr*bz^e8c`hJk=4FCCc(>V9r=#9-JX6)sZq&OrcX<1 z&yTP23E1A-@n&zw{@&BO+TTs89XxzzZ^x-eMW=dC|KGFFS@FIjPB->;9DdBh%$$^n YM-ST`^Kesnwcqfj$M^b4O~HWw0yZC6W&i*H diff --git a/searx/translations/th/LC_MESSAGES/messages.po b/searx/translations/th/LC_MESSAGES/messages.po index 5e633d2fd..8fb4eba0e 100644 --- a/searx/translations/th/LC_MESSAGES/messages.po +++ b/searx/translations/th/LC_MESSAGES/messages.po @@ -10,7 +10,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-03-12 17:28+0000\n" "Last-Translator: return42 " "\n" @@ -546,6 +546,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 "ทอร์ตรวจสอบปลั๊กอิน" @@ -1345,36 +1353,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 "พิมพ์" @@ -1492,7 +1475,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 "จำนวนไฟล์" @@ -1654,3 +1637,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 "เทบิไบต์" + diff --git a/searx/translations/tr/LC_MESSAGES/messages.mo b/searx/translations/tr/LC_MESSAGES/messages.mo index bf3c8fd709251ffeff879155116df15e04016709..e72db26a7ec5413a4f51aff1008f7e344e3b1ab1 100644 GIT binary patch delta 5229 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�N)u%NNJ&!`sZLuqhFzshtv YyxPBgPWo8t2Zv40XzE#A_ffO|0RiYN<^TWy diff --git a/searx/translations/tr/LC_MESSAGES/messages.po b/searx/translations/tr/LC_MESSAGES/messages.po index 96ec8370c..43a1bcbdf 100644 --- a/searx/translations/tr/LC_MESSAGES/messages.po +++ b/searx/translations/tr/LC_MESSAGES/messages.po @@ -24,7 +24,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-03 14:40+0000\n" "Last-Translator: sygmamess " "\n" @@ -561,6 +561,14 @@ msgstr "" "Sorgu \"ip\" ise IP'nizi ve sorgu \"kullanıcı tanıtıcısı\" içeriyorsa " "kullanıcı tanıtıcınızı görüntüler." +#: 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 kontrol eklentisi" @@ -1374,36 +1382,11 @@ msgstr "BU site herhangi bir açıklama sağlamadı." msgid "Filesize" msgstr "Dosya boyutu" -#: searx/templates/simple/result_templates/files.html:39 -#: searx/templates/simple/result_templates/torrent.html:12 -msgid "Bytes" -msgstr "Bayt" - #: 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 "Gün" -#: 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 "Yaz" @@ -1521,7 +1504,7 @@ msgstr "Gönderenler" msgid "Leecher" msgstr "Çekenler" -#: searx/templates/simple/result_templates/torrent.html:20 +#: searx/templates/simple/result_templates/torrent.html:13 msgid "Number of Files" msgstr "Dosya Sayısı" @@ -1955,3 +1938,18 @@ msgstr "görüntüyü gizle" #~ "Sonuçların sunucu adlarını tekrar yaz ya" #~ " da sunucu adına göre sonuçları sil" +#~ msgid "Bytes" +#~ msgstr "Bayt" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/uk/LC_MESSAGES/messages.mo b/searx/translations/uk/LC_MESSAGES/messages.mo index f0ec84c91682a362151aab17ce99ec604904510e..4c3c141e551c3d43b55fc3695c18c732d527fc55 100644 GIT binary patch delta 5448 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 delta 5461 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 S%Dk0\n" "Language-Team: Ukrainian \n" @@ -557,6 +557,14 @@ msgstr "" "Відображає IP-адресу при запиті \"ip\" та ваш user-agent при запиті " "\"user agent\"." +#: 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" @@ -1366,36 +1374,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 "Тип" @@ -1513,7 +1496,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 "Кількість файлів" @@ -1924,3 +1907,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 "ТіБ" diff --git a/searx/translations/vi/LC_MESSAGES/messages.mo b/searx/translations/vi/LC_MESSAGES/messages.mo index e43b0983d01d97f134719a8cd55138daef117284..b285349e8f3f2c4a70453d643c2e7ea146eb516e 100644 GIT binary patch delta 4568 zcmYM$dr($I7{~E_xf2Ko2q+4eD7+#drh=Fd3MgSBV!~vmVL3#38PZA9I+aD5XijF? zc$p+4nu^p{Gt;KaP#I}vsX5t{j5kWNKd{lXtnaV0GdYf*vwQYD`|PuO&g;reo;4di z&QH++>kWT;d5r0c?ICLY|L38e#st!wiwXEJ_QEFH-;Difx7v0G2Gjn=dIE!JpTaOa zkKx#jCB`_$L>n`ej#3Q3ji`aITHi(md>^CmV^ji1FbU725(tVhCI{0|O}Q7c-HN_Z10p{+O*_n=A|PiH@T z2mSFY)cC_l&gLjaF~2#_g(kR)aTvfq`Iv|^a2jgDU8oA|v+aY{?@-VGfGX`d?19~= zggx=bBx5LQVO~_c5_Fi;OyoiXYpwODW6*%1xD>Vb&!8sQV(-6Y-GveKe~8R!4x%PF zZSVhzirHQW|p8Tu^JV43l?AtD$ZH! zuUJa^cT~KQy^V>)v8ZuVdQ*R`sG1J#$$hB6k6;$AK$UV2YNF3jl{sWRZv7dRU>B-l z-PXTR&jt5!D-wxn$D!gRIrc`Hy^)0}+!$#GRNMYpsEq4yF3v?wbQ1M?o<#+`fJ*o> z4njXRT+ex}S=d1P7E~pi7A|-d&3j0d%mHM3OeYS+KT)SQnU8}UU`<2qVFoIZd{hOB zu?8zJA6sqzY3n7_R{V)n+A)E=Bg!}qRhm>(;324hqiugFYHKE;RyNbN8&Tt5MkUgM zRNZVxovjYk0y|L?cVjmGgAscFv-yf>q5@PRW%%EjKpnRGa0o6&je8wc((R~IzT5Wi z$4uH^pyK?2DzQKBo)U^djn70aWVqT67bW(_L{x@Vs0U}_y*MAW6-SV7i@Aad6rN(t ztr&xPZZfj%=5ACa9zk}`Jc&wpGv18NxCB2#M~A17@23Kk;9#som3SFe;cGY@uONR- z6;bkV5msUwvYi|bW7a}HRHfQbE8UBlrvp{dZ%}XBnE}*anO&h{82*KNFgw*oloccKDxp+8=>_phQ7zky01oU#OAPt@}Xs0ou$j3@9}^bT>y?Ld8K_M;N}8iVm1hT$bl#cS5& zOcG;$Q_O_|)}b=qiwf`&-izO3DUQnGYlu&vwrW3y<0r^p^ELkv+x(5WIGE3zCa$&4 z!wA}sq87Xo9b%hxTr9#*@JGxY>IRCN~{F=YMOFXMIOKqTyEP7SR@y`d+hw+)_UI6*zZ>-<5_XGQx>D5Hcn}q+0ky)FsFkh9 z9=HuvnVmQRKSFI?2p<8hJPGwqe37s73`^fC}JPn=p&^E2zW{pjLDWwH1F^ zJtN$+6NE}I5mkXuLXnJ+Wq_d%EjU0UtvJSb<9D zMby^3jjC7&@G%cX&@+n9FD9V&x&jqw8Xm;isPRKt zW^bH;gRvI1;?>9yvm5o@_}$uVy@Cn!U&m0r|FOJNnji^RVg}B_-58B={Kje`FREnY zFcB+JXJsyG+%i<)=TUD(t91v)(*6J|@GvH0@))*O?|-2#uoAU`*{HW*6)Nx!)ZVot zNt>gni6RT!`{}6mXjGz8(Tnpi4>zC^ID*=WbEpMhKu3YEa=~8{Qt19Zk4KewIx3-u zQCqPQ6{s0?CibAt$fu}7)q(x+IIh9Vs05bZ=AN1TsEU1ycVOpj)L$jd=BuGS9D`ax z9VX*bs1HvwW@9V9h9@uzmyLD*N3$ALne8|LFW^Fq9LN6&@M%;<;)~t0QG^fBURvz9 zr8`TXf6L=hTat(BFULBZg4)7;I0z46AH0mJROEQKTJM{WcWx8Jmu4aSmR@YOE@A593>?J^jLZ)Y^&K;!D;W z7(hGXcK3_w#BiY!=b-`=pdKi(^b delta 4686 zcmYM$2~d_r9LMp6_vH`}1W^zoi9?PM!6QWj^c6I`Q42LhO|8(W5rdAYe3How%zJEV zq^7`*DGY%$vor_0?3yvlN-MOY%Q7>HPV4*Q*_j;mv%Ak8|NZYi4{X}$SJ&X@d>-Z9 zVfYj0XUrw|L$GT9|9Lsmm;kB=F&2;D0Q}UpU%<<#|8DDXQN{#OPqe0EAoUy!#nBjs z6S3GB$IPNImxc$?i)T?C&s+aS1rXfdoj4r(Q6Gp3Bn>acd{iLin2T#rf$XvF$0F*7 z@p24^HYT0*O)dp3yZ}RR5vJe@jK|HW0nefW`v^7hm#CecMUB6J3aAGcVP7gc@Fq+^ z&p`g+WvKqC7{&S~lY(}Xk6K^`^4Bcjzp+?_3$YosU`UMHKN3|>vSy&h=b%!2CHBP< zRKR687#E>7=Afeqc2ZE}ji`?Mt%p(9;Z5v=$540R6l#HP``nL4^$Wpp?2p<&5^DZD z`+PiV{t`^Y(pd7Z0jp_HYSy9#u0y4$!TLCAXHTL6Z9^T^o5*pR2J zou|-Rgp+74LCv>i5c!Xw&|o_>qjuJc+&gm!HSsab#xGDQjf`^_8jRX`nl;CohYHY# z%G`8o87jafsLWJ4wqX@&qTB6*wYL3!Or(7aDnqTPetYfnL#Rx>jyK`ks0H&lV7)aH zQT`;YCr|@6zXp5MP0fM%)%3>ejeT} zr8FFMw*67ic;IB%?0RBd7_QFcVu)DL#pF(2qga z;?+o#X~i*k97{1Q+5MSPfm^8GiMlgkDQ;%^rI3H^IGzSAn1xF1aMbHJ3B5QUhhqgQ zrCU)uZ9pAW6KZ@L>aOg^G(3#jz_+Nkpc^&rAN$;!>bRfQEb=lZHjub_6=hwbW& z7oyIt9<{(j=*7pZPuTWnFp%~(R6s9cI=+JH|1Ihc{b-;6=}^#w3RjT^qauw)?KHuf zj)Bxipg)d9r7|D2&;WvD<_qvmsNvmMr;7QPqNaU%xdPVBt{ zs0CY46SSii-j6|e2=#q<9X0XisGWA9#$P}k^+nV=5u}9;IwsaFm}Jy|Y}A>K!yuf3 z`Vh^w&zGSlszNPPiwdL;72syn?cR?3H7)$7z&^&scpi1PN;7zM{W$++6g0uO%enbD z0aI}~>IgPq0X~SmuMaA~PSk664%N@YMd|&(pngcD<18$|^|%?;FJ`E_p(Ko9eKV4R zQaTN_<5CR8`Iv&st@Wq?TTl}pM+Kge?d~uWmr(cNB;1AL@GNTnG`?MB>_cVd0}RG< zw%(J=`A?uBl9zi1&OxQ95p{;UQQzvL*3+o7>_LvvM2v8cY7DBq0``fxCAL!EJ( z^;OgcPM|(u7g6)3@b%IWjz%5vWYjvf=%~X^+wdGJ(l;;z&mh@0p@nV$MW~~gkJ@ns zYT}hhS92%!#{;MozlRFwYt&JMk9X%8fVu;j{)+k#4e+_Y+QnlN^{LnofATr@H=l`aYLYRT2NhV2 zwYUv?P#LK&a_`3TSV{dHDwXq!*(Fw?NA*eWPRmh&S79Ko$3)zO%6yAsA9Uc2G#o{p z>F~+!TTz5@)K{WXb|3a$Hsqd}M^TwOY5m$hzks>4|BLrxE?+hM%-Dz5Vo-_u{cx62 zD5K#m)U8aK;x15NoobzjI_u@u8uU_MhbdT(N_7h=z`dyc9k%{H_MzU1O8s~4bI1H? zAB0SGcM^@7I1!b~RMf;7s0oLmQdfwfI2%K-0<~}@YN1jbZo)>M{j#^^@=tOv6G{U^n0@tVQ+vrM)t8reA>Xj_T#N zw7(El6X0LzYtM|$_LtYhE$HLtYu}xm?eVOnesahf|KOa_iMhkaj>>6YoN=GWtAXuZ mS$_q2CexvFWRk}-z0%h6 diff --git a/searx/translations/vi/LC_MESSAGES/messages.po b/searx/translations/vi/LC_MESSAGES/messages.po index c960b69b9..bed2469bd 100644 --- a/searx/translations/vi/LC_MESSAGES/messages.po +++ b/searx/translations/vi/LC_MESSAGES/messages.po @@ -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-04-07 07:18+0000\n" "Last-Translator: vducong \n" "Language: vi\n" @@ -549,6 +549,14 @@ msgid "" "contains \"user agent\"." msgstr "Hiện IP của bạn khi gõ \"ip\" và hiện user agent khi gõ \"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 "Kiểm tra Tor plugin" @@ -1370,36 +1378,11 @@ msgstr "Trang không có diễn giải." msgid "Filesize" msgstr "Kích thước tập tin" -#: searx/templates/simple/result_templates/files.html:39 -#: searx/templates/simple/result_templates/torrent.html:12 -msgid "Bytes" -msgstr "Byte" - #: 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 "Ngày" -#: 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 "Loại" @@ -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 "Số lượng tập tin" @@ -1955,3 +1938,18 @@ msgstr "ẩn phim" #~ "máy chủ hoặc loại bỏ kết quả " #~ "dựa trên tên của máy chủ" +#~ msgid "Bytes" +#~ msgstr "Byte" + +#~ msgid "kiB" +#~ msgstr "kiB" + +#~ msgid "MiB" +#~ msgstr "MiB" + +#~ msgid "GiB" +#~ msgstr "GiB" + +#~ msgid "TiB" +#~ msgstr "TiB" + diff --git a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo index 48dae0b3c8b59098c236c048ed12901b0e986d88..c8ca101f97be4adac8e8de9afe4f8d065889409e 100644 GIT binary patch delta 5278 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 U7aYhf$&3lqR_&x&&GO*?0V3%YfB*mh delta 5399 zcmYM$3v|!t9mnw}`R5;UYl8?&h(r*)0p%S@(THqth#J^)S#>IMx^~D6@k*LJx zVmhuvjXP}q9`jh=outs0hOkb~^~Ow80>!Aqn2$ZM48w3M#^Y{eZFdwk{wyltyQqcQ za9rB?gQ)ppQT^lb5lqKw)_1?8&<<0+8aNx<<6P8Em!lS1Z*D>M;C5j) z*5Vv&MkO#l&Kp;ViWi_ZwipAdSV2J(R-vBFM${wOj@rpy?1l$WJ3oyY*M!>9EmS{0 zjWP<`Vn@`8B_Mlry;19oL?tjGp7Ym&GpNvj60-~+AYO^u*^{URcU${j)ItX_5s#qy zUqGGQbsUN}P~&^?X6qz#%v@9=W4mzv+Cd=|%BU1OU~G@prB{_25P~R*dNcM9zh7NvKDTSS~$*3Hv6Fx z&qN*d2s0lwZVKw;iY%UwtWNmS;WQ9Is^ zT3{cxPHgoJsB!P0c6iC+7F7S}?p{LOkelgJF_!h+Cm$4uI8`Uo%*?T0Zs7Kl#RiBC9#t}Fa%P{Z|h5ZyXaU<&Jn^76wM@`VV zhjYyBx}kQMi>fa)XQ2|GhZ?^W=V2AWB=zL{HL#cp9qpsmp&a?9 zxJuMB+=g6bw+BP;7;0PtDzSI55}VPFi+XwOW!Q&!74qZu@n0dH#@U#d!uj)f+?o_# zFx-Qa@gj1SU21P`0**mVbP>Og!KvQMSAsg)Qq;**pc2@CdNe;nUGHa6i66oYd=vF< z-3(CB1h+91@1vf%pVc%`4C-X!kepn1)Xwu!6HLQ!e8l2MQS&TE^&E}`B9KY?Dd4yXhYQ497)O_YvWXpqG@sD8OtpO4zWWQ(Vp#i)5o zFiiKqj6!cJ9!E|58;rykQ4`dnCO(Q0_%>>SGZ>B+%&Vw`KEq(VjXwMWHP0Pu*A>t_ zZP2It-+_WUbiyd?ib|v}YQi*&vrzqpq7ul(C@etrn~7?li%NJQYN0YzBCD)@Eo%Pt zigo`tQqX|Ss4rX%YQo=QB-WuOI)Qr0&Y}`%M4iA5^K(@H7SuZw+20!%kD5OPmEZu> z_a+kq8ZefEj%*5Qf$69W7oieaiW*pftvf+o$F-Y1%WW%@K~!fmJoccMPAZ(ucc$n+9=1(kRm z>QVg_HSU77Up8-Aec(&0xR2Ut#2{~{3Amnk5^91EP&@w6;wFo4S$xl8UzRsdG^&5H znTAR%2X#U-vGxA1rl1qp;8nP4)Pm2NFPaBYpX9@+{_mj{xN0_|PU^13e!k~wZ;#qo zH`Kft=HOO&{v#-KreQ2#61CII$dCI6|EXURFOckyDL4eR^ZBT8 zD^TOAEPe_Ds@P-=JIv?J1E>k>P!pW6`cviy)_%qO)at)N^$#B6B_4)4(VnRJQc>-L zhS>ejv5Gt_rJ(?o*b%F5u=r1?BRz*bun{$}pT8zFVHi&3gAl(@dCmL;wa`t}#CK2=1`Ts=B1Rw=#?3;tZ$a&>2Gwt`#jja=z11JL z__VdZAFx8BHT=`!&r#1XXt*7jIS94DDAYBYfO^J1L?yh=+JA)_zsuTBTKz>-qF2p8 zGX+g_7rSBC5nhKJ)XwtF$yPrD)xQKs<5S4hcV|$Eg^cvZKY)5f@fMH3MB)h+mm&QF zZZ!ohw85)zKerCskwb7Vpq|||tN$OWe|WCe zq14BrHj;$uHx2{(17aElO)wADaj{vB3B;AS5O<&tTaaI5&d0C5;h2RSnp=rI@EB@= zkIm0e^L}mWFHg0%8E5xDh6;6vMefK<)SotG{Cg<$L4Wq7v_DcCq?oi_K2s1MIf)Cn%J`bvwRu=p3|Hq<;jE#8N`+{x|$h3+&Q#}0TM=i}F?Z}ptqxL~0)^V_, 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 \n" -"Language-Team: Chinese (Simplified) \n" +"Last-Translator: return42 " +"\n" "Language: zh_Hans_CN\n" +"Language-Team: Chinese (Simplified) " +"\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'] @@ -563,6 +563,14 @@ msgid "" "contains \"user agent\"." 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 网络检测插件" @@ -1345,36 +1353,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 "输入" @@ -1492,7 +1475,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 "文件数" @@ -1889,3 +1872,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" + diff --git a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo index 65bcc441cf0b0906bf5d334c9b20fa7bef84e49a..8b6552a8ed3b24fac6f92a669fb0057eeabd0f3d 100644 GIT binary patch delta 5067 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" "\n" @@ -554,6 +554,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 網路檢測" @@ -1334,36 +1342,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 "輸入" @@ -1481,7 +1464,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 "檔案數量" @@ -1875,3 +1858,18 @@ 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" + From f6f622f7e5627cc5afc8919a8fbc451b6003c9d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 07:22:07 +0000 Subject: [PATCH 12/19] [upd] pypi: Bump selenium from 4.21.0 to 4.22.0 Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.21.0 to 4.22.0. - [Release notes](https://github.com/SeleniumHQ/Selenium/releases) - [Commits](https://github.com/SeleniumHQ/Selenium/compare/selenium-4.21.0...selenium-4.22.0) --- updated-dependencies: - dependency-name: selenium dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index ca4f672eb..2889b5666 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -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' From 1f908a6222638b547016f5c21472ae26a76adbd2 Mon Sep 17 00:00:00 2001 From: Richard Lyons Date: Fri, 21 Jun 2024 15:58:12 +0200 Subject: [PATCH 13/19] [fix] engine unit tests. Enables unit tests in the engines directory by adding __init__.py, and fixups for the enabled tests. --- tests/unit/engines/__init__.py | 2 ++ tests/unit/engines/test_command.py | 29 +++++++++--------- tests/unit/engines/test_xpath.py | 47 +++++++++++++++++------------- tests/unit/test_query.py | 1 + 4 files changed, 44 insertions(+), 35 deletions(-) create mode 100644 tests/unit/engines/__init__.py diff --git a/tests/unit/engines/__init__.py b/tests/unit/engines/__init__.py new file mode 100644 index 000000000..9ed59c825 --- /dev/null +++ b/tests/unit/engines/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# pylint: disable=missing-module-docstring diff --git a/tests/unit/engines/test_command.py b/tests/unit/engines/test_command.py index a7d2d2d56..2123ab168 100644 --- a/tests/unit/engines/test_command.py +++ b/tests/unit/engines/test_command.py @@ -21,7 +21,7 @@ from searx.engines import command as command_engine from tests import SearxTestCase -class TestCommandEngine(SearxTestCase): +class TestCommandEngine(SearxTestCase): # pylint: disable=missing-class-docstring def test_basic_seq_command_engine(self): ls_engine = command_engine ls_engine.command = ['seq', '{{QUERY}}'] @@ -33,10 +33,10 @@ class TestCommandEngine(SearxTestCase): {'number': '4', 'template': 'key-value.html'}, {'number': '5', 'template': 'key-value.html'}, ] - results = ls_engine.search('5'.encode('utf-8'), {'pageno': 1}) + results = ls_engine.search('5', {'pageno': 1}) self.assertEqual(results, expected_results) - def test_delimiter_parsing_command_engine(self): + def test_delimiter_parsing(self): searx_logs = '''DEBUG:searx.webapp:static directory is /home/n/p/searx/searx/static DEBUG:searx.webapp:templates directory is /home/n/p/searx/searx/templates DEBUG:searx.engines:soundcloud engine: Starting background initialization @@ -140,10 +140,10 @@ INFO:werkzeug: * Debugger PIN: 299-578-362''' ] for i in [0, 1]: - results = echo_engine.search(''.encode('utf-8'), {'pageno': i + 1}) + results = echo_engine.search('', {'pageno': i + 1}) self.assertEqual(results, expected_results_by_page[i]) - def test_regex_parsing_command_engine(self): + def test_regex_parsing(self): txt = '''commit 35f9a8c81d162a361b826bbcd4a1081a4fbe76a7 Author: Noémi Ványi Date: Tue Oct 15 11:31:33 2019 +0200 @@ -168,11 +168,12 @@ commit ''' git_log_engine.result_separator = '\n\ncommit ' git_log_engine.delimiter = {} git_log_engine.parse_regex = { - 'commit': '\w{40}', - 'author': '[\w* ]* <\w*@?\w*\.?\w*>', - 'date': 'Date: .*', - 'message': '\n\n.*$', + 'commit': r'\w{40}', + 'author': r'[\w* ]* <\w*@?\w*\.?\w*>', + 'date': r'Date: .*', + 'message': r'\n\n.*$', } + git_log_engine.init({"command": git_log_engine.command, "parse_regex": git_log_engine.parse_regex}) expected_results = [ { 'commit': '35f9a8c81d162a361b826bbcd4a1081a4fbe76a7', @@ -197,7 +198,7 @@ commit ''' }, ] - results = git_log_engine.search(''.encode('utf-8'), {'pageno': 1}) + results = git_log_engine.search('', {'pageno': 1}) self.assertEqual(results, expected_results) def test_working_dir_path_query(self): @@ -207,7 +208,7 @@ commit ''' ls_engine.delimiter = {'chars': ' ', 'keys': ['file']} ls_engine.query_type = 'path' - results = ls_engine.search('.'.encode(), {'pageno': 1}) + results = ls_engine.search('.', {'pageno': 1}) self.assertTrue(len(results) != 0) forbidden_paths = [ @@ -218,7 +219,7 @@ commit ''' '/var', ] for forbidden_path in forbidden_paths: - self.assertRaises(ValueError, ls_engine.search, '..'.encode(), {'pageno': 1}) + self.assertRaises(ValueError, ls_engine.search, forbidden_path, {'pageno': 1}) def test_enum_queries(self): echo_engine = command_engine @@ -227,7 +228,7 @@ commit ''' echo_engine.query_enum = ['i-am-allowed-to-say-this', 'and-that'] for allowed in echo_engine.query_enum: - results = echo_engine.search(allowed.encode(), {'pageno': 1}) + results = echo_engine.search(allowed, {'pageno': 1}) self.assertTrue(len(results) != 0) forbidden_queries = [ @@ -236,4 +237,4 @@ commit ''' 'prohibited', ] for forbidden in forbidden_queries: - self.assertRaises(ValueError, echo_engine.search, forbidden.encode(), {'pageno': 1}) + self.assertRaises(ValueError, echo_engine.search, forbidden, {'pageno': 1}) diff --git a/tests/unit/engines/test_xpath.py b/tests/unit/engines/test_xpath.py index 24f14127b..380dd1d6c 100644 --- a/tests/unit/engines/test_xpath.py +++ b/tests/unit/engines/test_xpath.py @@ -7,25 +7,43 @@ from searx.engines import xpath from tests import SearxTestCase -class TestXpathEngine(SearxTestCase): +class TestXpathEngine(SearxTestCase): # pylint: disable=missing-class-docstring + html = """ +

+
+ Result 1 +

Content 1

+ Cache +
+
+ Result 2 +

Content 2

+ Cache +
+
+ """ + def test_request(self): xpath.search_url = 'https://url.com/{query}' xpath.categories = [] xpath.paging = False query = 'test_query' dicto = defaultdict(dict) + dicto['language'] = 'all' + dicto['pageno'] = 1 params = xpath.request(query, dicto) self.assertIn('url', params) - self.assertEquals('https://url.com/test_query', params['url']) + self.assertEqual('https://url.com/test_query', params['url']) xpath.search_url = 'https://url.com/q={query}&p={pageno}' xpath.paging = True query = 'test_query' dicto = defaultdict(dict) + dicto['language'] = 'all' dicto['pageno'] = 1 params = xpath.request(query, dicto) self.assertIn('url', params) - self.assertEquals('https://url.com/q=test_query&p=1', params['url']) + self.assertEqual('https://url.com/q=test_query&p=1', params['url']) def test_response(self): # without results_xpath @@ -38,24 +56,10 @@ class TestXpathEngine(SearxTestCase): self.assertRaises(AttributeError, xpath.response, '') self.assertRaises(AttributeError, xpath.response, '[]') - response = mock.Mock(text='') + response = mock.Mock(text='', status_code=200) self.assertEqual(xpath.response(response), []) - html = u""" -
-
- Result 1 -

Content 1

- Cache -
-
- Result 2 -

Content 2

- Cache -
-
- """ - response = mock.Mock(text=html) + response = mock.Mock(text=self.html, status_code=200) results = xpath.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 2) @@ -80,6 +84,7 @@ class TestXpathEngine(SearxTestCase): results = xpath.response(response) self.assertTrue(results[0]['is_onion']) + def test_response_results_xpath(self): # with results_xpath xpath.results_xpath = '//div[@class="search_result"]' xpath.url_xpath = './/a[@class="result"]/@href' @@ -93,10 +98,10 @@ class TestXpathEngine(SearxTestCase): self.assertRaises(AttributeError, xpath.response, '') self.assertRaises(AttributeError, xpath.response, '[]') - response = mock.Mock(text='') + response = mock.Mock(text='', status_code=200) self.assertEqual(xpath.response(response), []) - response = mock.Mock(text=html) + response = mock.Mock(text=self.html, status_code=200) results = xpath.response(response) self.assertEqual(type(results), list) self.assertEqual(len(results), 2) diff --git a/tests/unit/test_query.py b/tests/unit/test_query.py index b4f5f8a0d..4c609760e 100644 --- a/tests/unit/test_query.py +++ b/tests/unit/test_query.py @@ -247,6 +247,7 @@ class TestBang(SearxTestCase): # pylint:disable=missing-class-docstring self.assertEqual(query.user_query_parts, TestBang.THE_QUERY.split(' ')) def test_specific(self): + load_engines(TEST_ENGINES) for bang in TestBang.SPECIFIC_BANGS: with self.subTest(msg="Check bang is specific", bang=bang): query_text = TestBang.THE_QUERY + ' ' + bang From 9a9ca307fe53ea8ed9d18a06a1a7da9fa4a1c28f Mon Sep 17 00:00:00 2001 From: Grant Lanham Date: Sun, 9 Jun 2024 14:22:20 -0400 Subject: [PATCH 14/19] [fix] implement tests and remove usage of gen_useragent in engines --- searx/engines/mojeek.py | 3 +- tests/unit/processors/__init__.py | 2 ++ tests/unit/processors/test_online.py | 53 ++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 tests/unit/processors/__init__.py create mode 100644 tests/unit/processors/test_online.py diff --git a/searx/engines/mojeek.py b/searx/engines/mojeek.py index 585a48ff8..6aaca021b 100644 --- a/searx/engines/mojeek.py +++ b/searx/engines/mojeek.py @@ -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 diff --git a/tests/unit/processors/__init__.py b/tests/unit/processors/__init__.py new file mode 100644 index 000000000..9ed59c825 --- /dev/null +++ b/tests/unit/processors/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# pylint: disable=missing-module-docstring diff --git a/tests/unit/processors/test_online.py b/tests/unit/processors/test_online.py new file mode 100644 index 000000000..10e0deb97 --- /dev/null +++ b/tests/unit/processors/test_online.py @@ -0,0 +1,53 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +# pylint: disable=missing-module-docstring + +from searx.search import SearchQuery, EngineRef +from searx.search.processors import online +from searx.engines import load_engines +from searx import engines + +from tests import SearxTestCase + +TEST_ENGINE_NAME = 'dummy engine' +TEST_ENGINE = { + 'name': TEST_ENGINE_NAME, + 'engine': 'dummy', + 'categories': 'general', + 'shortcut': 'du', + 'timeout': 3.0, + 'tokens': [], +} + + +class TestOnlineProcessor(SearxTestCase): # pylint: disable=missing-class-docstring + + def setUp(self): + load_engines([TEST_ENGINE]) + + def tearDown(self): + load_engines([]) + + def _get_params(self, online_processor, search_query, engine_category): + params = online_processor.get_params(search_query, engine_category) + self.assertIsNotNone(params) + assert params is not None + return params + + def test_get_params_default_params(self): + engine = engines.engines[TEST_ENGINE_NAME] + online_processor = online.OnlineProcessor(engine, TEST_ENGINE_NAME) + search_query = SearchQuery('test', [EngineRef(TEST_ENGINE_NAME, 'general')], 'all', 0, 1, None, None, None) + params = self._get_params(online_processor, search_query, 'general') + self.assertIn('method', params) + self.assertIn('headers', params) + self.assertIn('data', params) + self.assertIn('url', params) + self.assertIn('cookies', params) + self.assertIn('auth', params) + + def test_get_params_useragent(self): + engine = engines.engines[TEST_ENGINE_NAME] + online_processor = online.OnlineProcessor(engine, TEST_ENGINE_NAME) + search_query = SearchQuery('test', [EngineRef(TEST_ENGINE_NAME, 'general')], 'all', 0, 1, None, None, None) + params = self._get_params(online_processor, search_query, 'general') + self.assertIn('User-Agent', params['headers']) From b8fa4d61958c5c78d312376bfcfc5d2c5863ab69 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 25 Jun 2024 08:00:09 +0200 Subject: [PATCH 15/19] [fix] bing news results return invalid images Closes: https://github.com/searxng/searxng/issues/3502 Signed-off-by: Markus Heiser --- searx/engines/bing_news.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/searx/engines/bing_news.py b/searx/engines/bing_news.py index e93f7fea3..2e759bc7a 100644 --- a/searx/engines/bing_news.py +++ b/searx/engines/bing_news.py @@ -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( { From 39ffec87b7f8631bb0ab3ba74971fbd4bcfa7520 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 25 Jun 2024 14:15:24 +0200 Subject: [PATCH 16/19] [fix] engine zlibrary: handle seized domain The domains of zlibrary instances are known to be seized from time to time. This leads to problems when, for example, the automated tasks try to update the engine traits (aka fetch_traits). The search function should also generate a suitable error message (currently either SSL errors or empty result lists are returned). [1] [1] https://github.com/searxng/searxng/issues/3610 Signed-off-by: Markus Heiser --- searx/engines/zlibrary.py | 29 +++++++++++++++++++++++------ 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/searx/engines/zlibrary.py b/searx/engines/zlibrary.py index c29c9135c..0eed5f621 100644 --- a/searx/engines/zlibrary.py +++ b/searx/engines/zlibrary.py @@ -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")) From 0f9926b89a1b3fba80390f06369dffe86b5865ae Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 25 Jun 2024 14:59:04 +0200 Subject: [PATCH 17/19] [fix] brave fetch_traits: layout of the settings page has changed Signed-off-by: Markus Heiser --- searx/engines/brave.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/engines/brave.py b/searx/engines/brave.py index c5780a02c..fea7fb69d 100644 --- a/searx/engines/brave.py +++ b/searx/engines/brave.py @@ -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: From 1449824165c53c04d6c825515fc2d707cd5b4907 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 25 Jun 2024 15:12:54 +0200 Subject: [PATCH 18/19] [data] update searx.data - update_engine_traits.py $ make data.traits Last GH action has been failed [1], the bugfixes from - https://github.com/searxng/searxng/pull/3611 - https://github.com/searxng/searxng/pull/3612 were necessary to update the data. [1] https://github.com/searxng/searxng/actions/runs/9278028691/job/25528337485 Signed-off-by: Markus Heiser --- searx/data/engine_traits.json | 53 +++++++++++++++++++++++++++++++---- searx/sxng_locales.py | 1 + 2 files changed, 49 insertions(+), 5 deletions(-) diff --git a/searx/data/engine_traits.json b/searx/data/engine_traits.json index 413d98ae0..19abf0755 100644 --- a/searx/data/engine_traits.json +++ b/searx/data/engine_traits.json @@ -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", diff --git a/searx/sxng_locales.py b/searx/sxng_locales.py index 0c45d05c1..d6f4f71fd 100644 --- a/searx/sxng_locales.py +++ b/searx/sxng_locales.py @@ -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'), From 837f3bcd101274b7cbea95e6ab2c19282e8b2937 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 25 Jun 2024 08:53:20 +0200 Subject: [PATCH 19/19] GitHub Actions: Upgrade data-update.yml infrastructure --- .github/workflows/data-update.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml index f9ece7433..ee3576eee 100644 --- a/.github/workflows/data-update.yml +++ b/.github/workflows/data-update.yml @@ -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