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 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/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' 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' 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 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/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/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( { 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: 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/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 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' 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"], 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/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/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, 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/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")) 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 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 diff --git a/searx/settings.yml b/searx/settings.yml index d7e1dc700..033c077ff 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, ''), 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'), 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/translations/af/LC_MESSAGES/messages.mo b/searx/translations/af/LC_MESSAGES/messages.mo index 17cbca032..c64c09c0b 100644 Binary files a/searx/translations/af/LC_MESSAGES/messages.mo and b/searx/translations/af/LC_MESSAGES/messages.mo differ 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 4b6c9edfa..d62889b39 100644 Binary files a/searx/translations/ar/LC_MESSAGES/messages.mo and b/searx/translations/ar/LC_MESSAGES/messages.mo differ 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 a43958ff6..a56363368 100644 Binary files a/searx/translations/bg/LC_MESSAGES/messages.mo and b/searx/translations/bg/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/bg/LC_MESSAGES/messages.po b/searx/translations/bg/LC_MESSAGES/messages.po index 3c351a41e..b27ccfec2 100644 --- a/searx/translations/bg/LC_MESSAGES/messages.po +++ b/searx/translations/bg/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-25 08:18+0000\n" "Last-Translator: krlsk \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 af2543eaf..8095a3e90 100644 Binary files a/searx/translations/bn/LC_MESSAGES/messages.mo and b/searx/translations/bn/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/bn/LC_MESSAGES/messages.po b/searx/translations/bn/LC_MESSAGES/messages.po index 241c9957e..852264fd3 100644 --- a/searx/translations/bn/LC_MESSAGES/messages.po +++ b/searx/translations/bn/LC_MESSAGES/messages.po @@ -18,17 +18,18 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-06-07 12:50+0000\n" -"PO-Revision-Date: 2024-05-25 08:18+0000\n" -"Last-Translator: MusfiquerRhman " -"\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 4c872adf9..132c6006d 100644 Binary files a/searx/translations/bo/LC_MESSAGES/messages.mo and b/searx/translations/bo/LC_MESSAGES/messages.mo differ 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 019e87510..dbaa4594f 100644 Binary files a/searx/translations/ca/LC_MESSAGES/messages.mo and b/searx/translations/ca/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ca/LC_MESSAGES/messages.po b/searx/translations/ca/LC_MESSAGES/messages.po index d2420bee7..36b6d6562 100644 --- a/searx/translations/ca/LC_MESSAGES/messages.po +++ b/searx/translations/ca/LC_MESSAGES/messages.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-06-07 12:50+0000\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" "PO-Revision-Date: 2024-04-06 00:18+0000\n" "Last-Translator: sserra \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 62872c5e1..6a398ff46 100644 Binary files a/searx/translations/cs/LC_MESSAGES/messages.mo and b/searx/translations/cs/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/cs/LC_MESSAGES/messages.po b/searx/translations/cs/LC_MESSAGES/messages.po index 1e3b12757..490f1852a 100644 --- a/searx/translations/cs/LC_MESSAGES/messages.po +++ b/searx/translations/cs/LC_MESSAGES/messages.po @@ -16,20 +16,19 @@ # Fjuro , 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 ecd5712b8..ab97bdc45 100644 Binary files a/searx/translations/cy/LC_MESSAGES/messages.mo and b/searx/translations/cy/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/cy/LC_MESSAGES/messages.po b/searx/translations/cy/LC_MESSAGES/messages.po index 23a547465..80d1bc437 100644 --- a/searx/translations/cy/LC_MESSAGES/messages.po +++ b/searx/translations/cy/LC_MESSAGES/messages.po @@ -12,21 +12,20 @@ # EifionLlwyd , 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 7a7df4a32..d5f66bd53 100644 Binary files a/searx/translations/da/LC_MESSAGES/messages.mo and b/searx/translations/da/LC_MESSAGES/messages.mo differ 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 2a5daf7d3..da70c88cb 100644 Binary files a/searx/translations/de/LC_MESSAGES/messages.mo and b/searx/translations/de/LC_MESSAGES/messages.mo differ 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 c3e89bebd..42ac60280 100644 Binary files a/searx/translations/dv/LC_MESSAGES/messages.mo and b/searx/translations/dv/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/dv/LC_MESSAGES/messages.po b/searx/translations/dv/LC_MESSAGES/messages.po index 03f658afb..26f269583 100644 --- a/searx/translations/dv/LC_MESSAGES/messages.po +++ b/searx/translations/dv/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: 2022-11-04 07:18+0000\n" "Last-Translator: Landhoo School Students " "\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 4975fdf8c..df9f780f4 100644 Binary files a/searx/translations/el_GR/LC_MESSAGES/messages.mo and b/searx/translations/el_GR/LC_MESSAGES/messages.mo differ 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 96620c882..660a203c5 100644 Binary files a/searx/translations/en/LC_MESSAGES/messages.mo and b/searx/translations/en/LC_MESSAGES/messages.mo differ 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 3ffe61f7a..aeedf13bc 100644 Binary files a/searx/translations/eo/LC_MESSAGES/messages.mo and b/searx/translations/eo/LC_MESSAGES/messages.mo differ 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 b788363ec..285b79c44 100644 Binary files a/searx/translations/es/LC_MESSAGES/messages.mo and b/searx/translations/es/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/es/LC_MESSAGES/messages.po b/searx/translations/es/LC_MESSAGES/messages.po index 9b0362465..e49033e46 100644 --- a/searx/translations/es/LC_MESSAGES/messages.po +++ b/searx/translations/es/LC_MESSAGES/messages.po @@ -30,21 +30,23 @@ # pixrobot , 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 dc7650783..035089308 100644 Binary files a/searx/translations/et/LC_MESSAGES/messages.mo and b/searx/translations/et/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/et/LC_MESSAGES/messages.po b/searx/translations/et/LC_MESSAGES/messages.po index b19d16b84..cd6671d66 100644 --- a/searx/translations/et/LC_MESSAGES/messages.po +++ b/searx/translations/et/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-01 07:13+0000\n" "Last-Translator: return42 " "\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 fbba42ad9..02d38b119 100644 Binary files a/searx/translations/eu/LC_MESSAGES/messages.mo and b/searx/translations/eu/LC_MESSAGES/messages.mo differ 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 8da3d38c7..cf8fa4f07 100644 Binary files a/searx/translations/fa_IR/LC_MESSAGES/messages.mo and b/searx/translations/fa_IR/LC_MESSAGES/messages.mo differ 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 d7bb9eeeb..27c428da1 100644 Binary files a/searx/translations/fi/LC_MESSAGES/messages.mo and b/searx/translations/fi/LC_MESSAGES/messages.mo differ 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 22c1dcdd3..191074829 100644 Binary files a/searx/translations/fil/LC_MESSAGES/messages.mo and b/searx/translations/fil/LC_MESSAGES/messages.mo differ 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 09cfbd910..52d9da738 100644 Binary files a/searx/translations/fr/LC_MESSAGES/messages.mo and b/searx/translations/fr/LC_MESSAGES/messages.mo differ 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 e245e6c2e..1d4467fc8 100644 Binary files a/searx/translations/gl/LC_MESSAGES/messages.mo and b/searx/translations/gl/LC_MESSAGES/messages.mo differ 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 cec1057ce..053b4adfc 100644 Binary files a/searx/translations/he/LC_MESSAGES/messages.mo and b/searx/translations/he/LC_MESSAGES/messages.mo differ 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 856949d18..2d6c31645 100644 Binary files a/searx/translations/hr/LC_MESSAGES/messages.mo and b/searx/translations/hr/LC_MESSAGES/messages.mo differ 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 fd3d724a1..d2e700680 100644 Binary files a/searx/translations/hu/LC_MESSAGES/messages.mo and b/searx/translations/hu/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/hu/LC_MESSAGES/messages.po b/searx/translations/hu/LC_MESSAGES/messages.po index be145f7e9..b0a0a16ce 100644 --- a/searx/translations/hu/LC_MESSAGES/messages.po +++ b/searx/translations/hu/LC_MESSAGES/messages.po @@ -17,19 +17,19 @@ # Kran21 , 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 30e2645c4..87a7c45f6 100644 Binary files a/searx/translations/ia/LC_MESSAGES/messages.mo and b/searx/translations/ia/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ia/LC_MESSAGES/messages.po b/searx/translations/ia/LC_MESSAGES/messages.po index a14a9b524..56572b45d 100644 --- a/searx/translations/ia/LC_MESSAGES/messages.po +++ b/searx/translations/ia/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-06-07 12:50+0000\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" "PO-Revision-Date: 2023-06-22 09:02+0000\n" "Last-Translator: return42 \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 5c26e4c03..c8aa60370 100644 Binary files a/searx/translations/id/LC_MESSAGES/messages.mo and b/searx/translations/id/LC_MESSAGES/messages.mo differ 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 01028bade..830c8ec6a 100644 Binary files a/searx/translations/it/LC_MESSAGES/messages.mo and b/searx/translations/it/LC_MESSAGES/messages.mo differ 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 d7ac19133..cdad247b1 100644 Binary files a/searx/translations/ja/LC_MESSAGES/messages.mo and b/searx/translations/ja/LC_MESSAGES/messages.mo differ 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 2afe97ae7..8b0c56836 100644 Binary files a/searx/translations/ko/LC_MESSAGES/messages.mo and b/searx/translations/ko/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ko/LC_MESSAGES/messages.po b/searx/translations/ko/LC_MESSAGES/messages.po index 94f884fb0..98ede8a29 100644 --- a/searx/translations/ko/LC_MESSAGES/messages.po +++ b/searx/translations/ko/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: 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 3e327061e..fc50fe609 100644 Binary files a/searx/translations/lt/LC_MESSAGES/messages.mo and b/searx/translations/lt/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/lt/LC_MESSAGES/messages.po b/searx/translations/lt/LC_MESSAGES/messages.po index 7314e0a68..e1541ae65 100644 --- a/searx/translations/lt/LC_MESSAGES/messages.po +++ b/searx/translations/lt/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-05-29 09:18+0000\n" "Last-Translator: return42 " "\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 df2c60724..d4b6d075f 100644 Binary files a/searx/translations/lv/LC_MESSAGES/messages.mo and b/searx/translations/lv/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/lv/LC_MESSAGES/messages.po b/searx/translations/lv/LC_MESSAGES/messages.po index 3537e4953..d0db75d82 100644 --- a/searx/translations/lv/LC_MESSAGES/messages.po +++ b/searx/translations/lv/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-06-07 12:50+0000\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" "PO-Revision-Date: 2024-05-23 21:19+0000\n" "Last-Translator: Obligate " "\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 6ac5aabb6..3a15b0a22 100644 Binary files a/searx/translations/ms/LC_MESSAGES/messages.mo and b/searx/translations/ms/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/ms/LC_MESSAGES/messages.po b/searx/translations/ms/LC_MESSAGES/messages.po index 62e04024f..7348caeb3 100644 --- a/searx/translations/ms/LC_MESSAGES/messages.po +++ b/searx/translations/ms/LC_MESSAGES/messages.po @@ -14,7 +14,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" @@ -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 b747dbe4e..17906c453 100644 Binary files a/searx/translations/nb_NO/LC_MESSAGES/messages.mo and b/searx/translations/nb_NO/LC_MESSAGES/messages.mo differ 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 f311c1bf4..a337b8d47 100644 Binary files a/searx/translations/nl/LC_MESSAGES/messages.mo and b/searx/translations/nl/LC_MESSAGES/messages.mo differ 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 caccd5ad5..6803a5ba6 100644 Binary files a/searx/translations/oc/LC_MESSAGES/messages.mo and b/searx/translations/oc/LC_MESSAGES/messages.mo differ 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 81557a771..049231b3e 100644 Binary files a/searx/translations/pl/LC_MESSAGES/messages.mo and b/searx/translations/pl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/pl/LC_MESSAGES/messages.po b/searx/translations/pl/LC_MESSAGES/messages.po index 7d9ba790b..5b163075b 100644 --- a/searx/translations/pl/LC_MESSAGES/messages.po +++ b/searx/translations/pl/LC_MESSAGES/messages.po @@ -20,8 +20,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-20 06:18+0000\n" "Last-Translator: return42 \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 e8080e573..27eb3f3fe 100644 Binary files a/searx/translations/pt/LC_MESSAGES/messages.mo and b/searx/translations/pt/LC_MESSAGES/messages.mo differ 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 01b3827eb..0e116f08b 100644 Binary files a/searx/translations/pt_BR/LC_MESSAGES/messages.mo and b/searx/translations/pt_BR/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/pt_BR/LC_MESSAGES/messages.po b/searx/translations/pt_BR/LC_MESSAGES/messages.po index 868ecdaa5..b949e8513 100644 --- a/searx/translations/pt_BR/LC_MESSAGES/messages.po +++ b/searx/translations/pt_BR/LC_MESSAGES/messages.po @@ -30,19 +30,19 @@ # Pyrbor , 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 2bc3115cc..bc6f266aa 100644 Binary files a/searx/translations/ro/LC_MESSAGES/messages.mo and b/searx/translations/ro/LC_MESSAGES/messages.mo differ 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 fc043cade..ec923f2be 100644 Binary files a/searx/translations/ru/LC_MESSAGES/messages.mo and b/searx/translations/ru/LC_MESSAGES/messages.mo differ 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 44d014509..a275a6e8b 100644 Binary files a/searx/translations/si/LC_MESSAGES/messages.mo and b/searx/translations/si/LC_MESSAGES/messages.mo differ 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 df99e5175..4c489de5c 100644 Binary files a/searx/translations/sk/LC_MESSAGES/messages.mo and b/searx/translations/sk/LC_MESSAGES/messages.mo differ 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 d5ca95bcf..08cadf91c 100644 Binary files a/searx/translations/sl/LC_MESSAGES/messages.mo and b/searx/translations/sl/LC_MESSAGES/messages.mo differ 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 f8f47bb5f..e844e70dc 100644 Binary files a/searx/translations/sr/LC_MESSAGES/messages.mo and b/searx/translations/sr/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/sr/LC_MESSAGES/messages.po b/searx/translations/sr/LC_MESSAGES/messages.po index 725c0ab4b..7660497ff 100644 --- a/searx/translations/sr/LC_MESSAGES/messages.po +++ b/searx/translations/sr/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-04-18 13:18+0000\n" "Last-Translator: return42 " "\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 b56eae548..3a23c7c85 100644 Binary files a/searx/translations/sv/LC_MESSAGES/messages.mo and b/searx/translations/sv/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/sv/LC_MESSAGES/messages.po b/searx/translations/sv/LC_MESSAGES/messages.po index 607d8c0b4..d3125ba93 100644 --- a/searx/translations/sv/LC_MESSAGES/messages.po +++ b/searx/translations/sv/LC_MESSAGES/messages.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-06-07 12:50+0000\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" "PO-Revision-Date: 2024-05-29 09:18+0000\n" "Last-Translator: return42 " "\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 16f9c58da..8f19a8aa2 100644 Binary files a/searx/translations/szl/LC_MESSAGES/messages.mo and b/searx/translations/szl/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/szl/LC_MESSAGES/messages.po b/searx/translations/szl/LC_MESSAGES/messages.po index e178f1e7a..4aed2aaba 100644 --- a/searx/translations/szl/LC_MESSAGES/messages.po +++ b/searx/translations/szl/LC_MESSAGES/messages.po @@ -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: 2023-09-12 14:53+0000\n" "Last-Translator: return42 \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 81a545647..a5fe319a7 100644 Binary files a/searx/translations/ta/LC_MESSAGES/messages.mo and b/searx/translations/ta/LC_MESSAGES/messages.mo differ 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 a73a45700..7c304f4a3 100644 Binary files a/searx/translations/te/LC_MESSAGES/messages.mo and b/searx/translations/te/LC_MESSAGES/messages.mo differ 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 77f67cd7c..76eb6e313 100644 Binary files a/searx/translations/th/LC_MESSAGES/messages.mo and b/searx/translations/th/LC_MESSAGES/messages.mo differ 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 bf3c8fd70..e72db26a7 100644 Binary files a/searx/translations/tr/LC_MESSAGES/messages.mo and b/searx/translations/tr/LC_MESSAGES/messages.mo differ 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 f0ec84c91..4c3c141e5 100644 Binary files a/searx/translations/uk/LC_MESSAGES/messages.mo and b/searx/translations/uk/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/uk/LC_MESSAGES/messages.po b/searx/translations/uk/LC_MESSAGES/messages.po index 759a08434..2a680de9f 100644 --- a/searx/translations/uk/LC_MESSAGES/messages.po +++ b/searx/translations/uk/LC_MESSAGES/messages.po @@ -15,8 +15,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: SomeTr \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 e43b0983d..b285349e8 100644 Binary files a/searx/translations/vi/LC_MESSAGES/messages.mo and b/searx/translations/vi/LC_MESSAGES/messages.mo differ 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 48dae0b3c..c8ca101f9 100644 Binary files a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo and b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po index 732f31fc8..6792974fe 100644 --- a/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po +++ b/searx/translations/zh_Hans_CN/LC_MESSAGES/messages.po @@ -33,19 +33,19 @@ # chjtxwd , 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 65bcc441c..8b6552a8e 100644 Binary files a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo and b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.mo differ diff --git a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po index fd40ab43d..7e7e77c4c 100644 --- a/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po +++ b/searx/translations/zh_Hant_TW/LC_MESSAGES/messages.po @@ -26,7 +26,7 @@ msgid "" msgstr "" "Project-Id-Version: searx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2024-06-07 12:50+0000\n" +"POT-Creation-Date: 2024-06-17 12:15+0000\n" "PO-Revision-Date: 2024-05-29 09:18+0000\n" "Last-Translator: return42 " "\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" + 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'] 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/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']) 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