mirror of https://github.com/searxng/searxng.git
Compare commits
4 Commits
54d1c1a4d7
...
f1276e07fa
Author | SHA1 | Date |
---|---|---|
Valentin Rieß | f1276e07fa | |
dependabot[bot] | 2fbf15eccb | |
searxng-bot | 08c5f258d8 | |
Valentin Riess | f584ae31fa |
|
@ -173,4 +173,5 @@ features or generally made searx better:
|
||||||
- Austin Olacsi `<https://github.com/Austin-Olacsi>`
|
- Austin Olacsi `<https://github.com/Austin-Olacsi>`
|
||||||
- @micsthepick
|
- @micsthepick
|
||||||
- Daniel Kukula `<https://github.com/dkuku>`
|
- Daniel Kukula `<https://github.com/dkuku>`
|
||||||
- Patrick Evans `https://github.com/holysoles`
|
- Patrick Evans `https://github.com/holysoles`
|
||||||
|
- Valentin Rieß `<https://github.com/v411e>`
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
.. _nixpkgs engine:
|
||||||
|
|
||||||
|
==============
|
||||||
|
Nixpkgs Search
|
||||||
|
==============
|
||||||
|
|
||||||
|
.. automodule:: searx.engines.nixpkgs
|
||||||
|
:members:
|
|
@ -18,4 +18,4 @@ fasttext-predict==0.9.2.2
|
||||||
tomli==2.0.2; python_version < '3.11'
|
tomli==2.0.2; python_version < '3.11'
|
||||||
msgspec==0.18.6
|
msgspec==0.18.6
|
||||||
eval_type_backport; python_version < '3.9'
|
eval_type_backport; python_version < '3.9'
|
||||||
typer-slim==0.12.5
|
typer-slim==0.13.0
|
||||||
|
|
|
@ -0,0 +1,164 @@
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
"""`Nixpkgs Search <https://search.nixos.org>`_ makes it easy to search the huge
|
||||||
|
nixpkgs package index. The search backend on search.nixos.org is an
|
||||||
|
Elasticsearch instance.
|
||||||
|
|
||||||
|
Example
|
||||||
|
=======
|
||||||
|
|
||||||
|
The following is an example configuration for an nixpkgs engine with
|
||||||
|
authentication configured.
|
||||||
|
|
||||||
|
Credentials are available here: https://github.com/NixOS/nixos-search/blob/main/frontend/src/index.js
|
||||||
|
|
||||||
|
.. code:: yaml
|
||||||
|
|
||||||
|
- name: nixpkgs
|
||||||
|
shortcut: nix
|
||||||
|
engine: nixpkgs
|
||||||
|
base_url: https://search.nixos.org/backend
|
||||||
|
username:
|
||||||
|
password:
|
||||||
|
index: latest-42-nixos-unstable
|
||||||
|
channel: unstable
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
from searx.exceptions import SearxEngineAPIException
|
||||||
|
|
||||||
|
about = {
|
||||||
|
"website": "https://search.nixos.org",
|
||||||
|
"use_official_api": False,
|
||||||
|
"require_api_key": True,
|
||||||
|
"results": 'JSON',
|
||||||
|
}
|
||||||
|
categories = ["it", "packages"]
|
||||||
|
|
||||||
|
base_url = "https://search.nixos.org/backend"
|
||||||
|
username = ""
|
||||||
|
password = ""
|
||||||
|
index = "latest-42-nixos-unstable"
|
||||||
|
channel = "unstable"
|
||||||
|
search_url = f"{base_url}/{index}/_search"
|
||||||
|
show_metadata = False
|
||||||
|
categories = ["it", "packages"]
|
||||||
|
|
||||||
|
|
||||||
|
def init():
|
||||||
|
if not (username and password):
|
||||||
|
raise ValueError("username and password need to be configured.")
|
||||||
|
|
||||||
|
|
||||||
|
def request(query, params):
|
||||||
|
params["auth"] = (username, password)
|
||||||
|
params["url"] = search_url
|
||||||
|
params["data"] = _build_query(query)
|
||||||
|
params["headers"]["Content-Type"] = "application/json"
|
||||||
|
|
||||||
|
return params
|
||||||
|
|
||||||
|
|
||||||
|
def response(resp):
|
||||||
|
results = []
|
||||||
|
|
||||||
|
resp_json = resp.json()
|
||||||
|
if "error" in resp_json:
|
||||||
|
raise SearxEngineAPIException(resp_json["error"])
|
||||||
|
|
||||||
|
for result in resp_json["hits"]["hits"]:
|
||||||
|
raw_result = {key: value if not key.startswith("_") else value for key, value in result["_source"].items()}
|
||||||
|
r = {
|
||||||
|
"template": "packages.html",
|
||||||
|
"title": raw_result["package_attr_name"],
|
||||||
|
"package_name": raw_result["package_pname"],
|
||||||
|
"version": raw_result["package_pversion"],
|
||||||
|
"content": raw_result["package_description"] or "",
|
||||||
|
"source_code_url": _position_to_github_url(raw_result["package_position"]),
|
||||||
|
"url": f"https://search.nixos.org/packages?channel={channel}&show={raw_result['package_attr_name']}",
|
||||||
|
"maintainer": ", ".join(raw_result["package_maintainers_set"]),
|
||||||
|
"tags": raw_result["package_programs"],
|
||||||
|
"license_name": ", ".join(raw_result["package_license_set"]),
|
||||||
|
"homepage": next(iter(raw_result["package_homepage"]), None),
|
||||||
|
}
|
||||||
|
|
||||||
|
if show_metadata:
|
||||||
|
r["metadata"] = {
|
||||||
|
"index": result["_index"],
|
||||||
|
"id": result["_id"],
|
||||||
|
"score": result["_score"],
|
||||||
|
}
|
||||||
|
|
||||||
|
results.append(r)
|
||||||
|
|
||||||
|
return results
|
||||||
|
|
||||||
|
|
||||||
|
def _build_query(query: str):
|
||||||
|
return f"""
|
||||||
|
{{
|
||||||
|
"from": 0,
|
||||||
|
"size": 50,
|
||||||
|
"sort": [
|
||||||
|
{{
|
||||||
|
"_score": "desc",
|
||||||
|
"package_attr_name": "desc",
|
||||||
|
"package_pversion": "desc"
|
||||||
|
}}
|
||||||
|
],
|
||||||
|
"query": {{
|
||||||
|
"bool": {{
|
||||||
|
"must": [
|
||||||
|
{{
|
||||||
|
"dis_max": {{
|
||||||
|
"tie_breaker": 0.7,
|
||||||
|
"queries": [
|
||||||
|
{{
|
||||||
|
"multi_match": {{
|
||||||
|
"type": "cross_fields",
|
||||||
|
"query": "{query}",
|
||||||
|
"analyzer": "whitespace",
|
||||||
|
"auto_generate_synonyms_phrase_query": false,
|
||||||
|
"operator": "and",
|
||||||
|
"_name": "multi_match_firefox",
|
||||||
|
"fields": [
|
||||||
|
"package_attr_name^9",
|
||||||
|
"package_attr_name.*^5.3999999999999995",
|
||||||
|
"package_programs^9",
|
||||||
|
"package_programs.*^5.3999999999999995",
|
||||||
|
"package_pname^6",
|
||||||
|
"package_pname.*^3.5999999999999996",
|
||||||
|
"package_description^1.3",
|
||||||
|
"package_description.*^0.78",
|
||||||
|
"package_longDescription^1",
|
||||||
|
"package_longDescription.*^0.6",
|
||||||
|
"flake_name^0.5",
|
||||||
|
"flake_name.*^0.3"
|
||||||
|
]
|
||||||
|
}}
|
||||||
|
}},
|
||||||
|
{{
|
||||||
|
"wildcard": {{
|
||||||
|
"package_attr_name": {{
|
||||||
|
"value": "*{query}*",
|
||||||
|
"case_insensitive": true
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
]
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
]
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
def _position_to_github_url(package_position: str):
|
||||||
|
path, line = package_position.split(":")
|
||||||
|
return f"https://github.com/NixOS/nixpkgs/blob/master/{path}#L{line}"
|
||||||
|
|
||||||
|
|
||||||
|
def _get_codelines(package_name: str):
|
||||||
|
code = f"nix-shell -p {package_name}"
|
||||||
|
return [(0, code)]
|
|
@ -2409,6 +2409,16 @@ engines:
|
||||||
shortcut: pgo
|
shortcut: pgo
|
||||||
disabled: true
|
disabled: true
|
||||||
|
|
||||||
|
# NixOS Package Search
|
||||||
|
# - name: nixpkgs
|
||||||
|
# shortcut: nix
|
||||||
|
# engine: nixpkgs
|
||||||
|
# base_url: https://search.nixos.org/backend
|
||||||
|
# username:
|
||||||
|
# password:
|
||||||
|
# index: latest-42-nixos-unstable
|
||||||
|
# channel: unstable
|
||||||
|
|
||||||
# Doku engine lets you access to any Doku wiki instance:
|
# Doku engine lets you access to any Doku wiki instance:
|
||||||
# A public one or a privete/corporate one.
|
# A public one or a privete/corporate one.
|
||||||
# - name: ubuntuwiki
|
# - name: ubuntuwiki
|
||||||
|
|
Binary file not shown.
|
@ -39,9 +39,8 @@ msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-26 21:13+0000\n"
|
"PO-Revision-Date: 2024-11-03 09:08+0000\n"
|
||||||
"Last-Translator: Atul_Eterno <Atul_Eterno@users.noreply.translate.codeberg."
|
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
|
||||||
"org>\n"
|
|
||||||
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/es/>\n"
|
"searxng/es/>\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
|
@ -1246,7 +1245,7 @@ msgstr "Tiempo máximo"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/favicon.html:2
|
#: searx/templates/simple/preferences/favicon.html:2
|
||||||
msgid "Favicon Resolver"
|
msgid "Favicon Resolver"
|
||||||
msgstr ""
|
msgstr "Buscador de favicon"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/favicon.html:15
|
#: searx/templates/simple/preferences/favicon.html:15
|
||||||
msgid "Display favicons near search results"
|
msgid "Display favicons near search results"
|
||||||
|
|
Binary file not shown.
|
@ -10,21 +10,22 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# omfj <omfj@users.noreply.translate.codeberg.org>, 2024.
|
# omfj <omfj@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# combwizard <combwizard@users.noreply.translate.codeberg.org>, 2024.
|
# combwizard <combwizard@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# laaknor <laaknor@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-04 21:35+0000\n"
|
"PO-Revision-Date: 2024-11-03 09:08+0000\n"
|
||||||
"Last-Translator: combwizard "
|
"Last-Translator: laaknor <laaknor@users.noreply.translate.codeberg.org>\n"
|
||||||
"<combwizard@users.noreply.translate.codeberg.org>\n"
|
"Language-Team: Norwegian Bokmål <https://translate.codeberg.org/projects/"
|
||||||
|
"searxng/searxng/nb_NO/>\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
"Language-Team: Norwegian Bokmål "
|
|
||||||
"<https://translate.codeberg.org/projects/searxng/searxng/nb_NO/>\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
|
"X-Generator: Weblate 5.8.1\n"
|
||||||
"Generated-By: Babel 2.16.0\n"
|
"Generated-By: Babel 2.16.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -1051,7 +1052,7 @@ msgstr "Det er ingen flere resultater. Du kan prøve å:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:19
|
#: searx/templates/simple/messages/no_results.html:19
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
msgstr "oppfrisk siden"
|
msgstr "oppfrisk siden."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:20
|
#: searx/templates/simple/messages/no_results.html:20
|
||||||
msgid "Search for another query or select another category (above)."
|
msgid "Search for another query or select another category (above)."
|
||||||
|
@ -1882,4 +1883,3 @@ msgstr "skjul video"
|
||||||
|
|
||||||
#~ msgid "Engines cannot retrieve results"
|
#~ msgid "Engines cannot retrieve results"
|
||||||
#~ msgstr "Søkemotorer kan ikke motta resultater"
|
#~ msgstr "Søkemotorer kan ikke motta resultater"
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -23,13 +23,14 @@
|
||||||
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
|
# notlmutsaers <notlmutsaers@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# ljansen <ljansen@users.noreply.translate.codeberg.org>, 2024.
|
# ljansen <ljansen@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# zarlin <zarlin@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: searx\n"
|
"Project-Id-Version: searx\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-28 21:07+0000\n"
|
"PO-Revision-Date: 2024-11-02 04:00+0000\n"
|
||||||
"Last-Translator: ljansen <ljansen@users.noreply.translate.codeberg.org>\n"
|
"Last-Translator: zarlin <zarlin@users.noreply.translate.codeberg.org>\n"
|
||||||
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
|
"Language-Team: Dutch <https://translate.codeberg.org/projects/searxng/"
|
||||||
"searxng/nl/>\n"
|
"searxng/nl/>\n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
|
@ -493,7 +494,7 @@ msgstr "stemmen"
|
||||||
|
|
||||||
#: searx/engines/radio_browser.py:107
|
#: searx/engines/radio_browser.py:107
|
||||||
msgid "clicks"
|
msgid "clicks"
|
||||||
msgstr "clicks"
|
msgstr "klikken"
|
||||||
|
|
||||||
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
#: searx/engines/seekr.py:193 searx/engines/yummly.py:71
|
||||||
#: searx/engines/zlibrary.py:137
|
#: searx/engines/zlibrary.py:137
|
||||||
|
@ -662,7 +663,7 @@ msgstr "Voorkeuren"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:68
|
#: searx/templates/simple/base.html:68
|
||||||
msgid "Powered by"
|
msgid "Powered by"
|
||||||
msgstr "Zoekmachine"
|
msgstr "Verzorgd door"
|
||||||
|
|
||||||
#: searx/templates/simple/base.html:68
|
#: searx/templates/simple/base.html:68
|
||||||
msgid "a privacy-respecting, open metasearch engine"
|
msgid "a privacy-respecting, open metasearch engine"
|
||||||
|
@ -1069,7 +1070,7 @@ msgstr "Er zijn geen resultaten meer. U kunt proberen om:"
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:19
|
#: searx/templates/simple/messages/no_results.html:19
|
||||||
msgid "Refresh the page."
|
msgid "Refresh the page."
|
||||||
msgstr "Ververs de pagina"
|
msgstr "Ververs de pagina."
|
||||||
|
|
||||||
#: searx/templates/simple/messages/no_results.html:20
|
#: searx/templates/simple/messages/no_results.html:20
|
||||||
msgid "Search for another query or select another category (above)."
|
msgid "Search for another query or select another category (above)."
|
||||||
|
@ -1235,9 +1236,8 @@ msgid "Max time"
|
||||||
msgstr "Max. duur"
|
msgstr "Max. duur"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/favicon.html:2
|
#: searx/templates/simple/preferences/favicon.html:2
|
||||||
#, fuzzy
|
|
||||||
msgid "Favicon Resolver"
|
msgid "Favicon Resolver"
|
||||||
msgstr "favicon-resolver"
|
msgstr "Favicon Oplosser"
|
||||||
|
|
||||||
#: searx/templates/simple/preferences/favicon.html:15
|
#: searx/templates/simple/preferences/favicon.html:15
|
||||||
msgid "Display favicons near search results"
|
msgid "Display favicons near search results"
|
||||||
|
|
Binary file not shown.
|
@ -8,21 +8,23 @@
|
||||||
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# abhabongse <abhabongse@users.noreply.translate.codeberg.org>, 2024.
|
# abhabongse <abhabongse@users.noreply.translate.codeberg.org>, 2024.
|
||||||
# tutakrab <tutakrab@users.noreply.translate.codeberg.org>, 2024.
|
# tutakrab <tutakrab@users.noreply.translate.codeberg.org>, 2024.
|
||||||
|
# sahussawud <sahussawud@users.noreply.translate.codeberg.org>, 2024.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PROJECT VERSION\n"
|
"Project-Id-Version: PROJECT VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||||
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
|
||||||
"PO-Revision-Date: 2024-10-02 16:10+0000\n"
|
"PO-Revision-Date: 2024-11-06 07:26+0000\n"
|
||||||
"Last-Translator: tutakrab <tutakrab@users.noreply.translate.codeberg.org>"
|
"Last-Translator: sahussawud <sahussawud@users.noreply.translate.codeberg.org>"
|
||||||
"\n"
|
"\n"
|
||||||
|
"Language-Team: Thai <https://translate.codeberg.org/projects/searxng/searxng/"
|
||||||
|
"th/>\n"
|
||||||
"Language: th\n"
|
"Language: th\n"
|
||||||
"Language-Team: Thai "
|
|
||||||
"<https://translate.codeberg.org/projects/searxng/searxng/th/>\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: Weblate 5.8.1\n"
|
||||||
"Generated-By: Babel 2.16.0\n"
|
"Generated-By: Babel 2.16.0\n"
|
||||||
|
|
||||||
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
#. CONSTANT_NAMES['NO_SUBGROUPING']
|
||||||
|
@ -163,7 +165,7 @@ msgstr "มืด"
|
||||||
#. STYLE_NAMES['BLACK']
|
#. STYLE_NAMES['BLACK']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
msgid "black"
|
msgid "black"
|
||||||
msgstr ""
|
msgstr "สีดำ"
|
||||||
|
|
||||||
#. BRAND_CUSTOM_LINKS['UPTIME']
|
#. BRAND_CUSTOM_LINKS['UPTIME']
|
||||||
#: searx/searxng.msg
|
#: searx/searxng.msg
|
||||||
|
@ -331,12 +333,12 @@ msgstr "ผู้เขียน"
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
|
||||||
#: searx/engines/discourse.py:149 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "open"
|
msgid "open"
|
||||||
msgstr ""
|
msgstr "สร้าง"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
|
||||||
#: searx/engines/discourse.py:149 searx/searxng.msg
|
#: searx/engines/discourse.py:149 searx/searxng.msg
|
||||||
msgid "closed"
|
msgid "closed"
|
||||||
msgstr ""
|
msgstr "ลบ"
|
||||||
|
|
||||||
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
|
||||||
#: searx/engines/discourse.py:160 searx/searxng.msg
|
#: searx/engines/discourse.py:160 searx/searxng.msg
|
||||||
|
@ -450,7 +452,7 @@ msgstr "คำนวณ {functions} จากอาร์กิวเมนต
|
||||||
|
|
||||||
#: searx/engines/mozhi.py:57
|
#: searx/engines/mozhi.py:57
|
||||||
msgid "Synonyms"
|
msgid "Synonyms"
|
||||||
msgstr ""
|
msgstr "คำเหมือน"
|
||||||
|
|
||||||
#: searx/engines/openstreetmap.py:159
|
#: searx/engines/openstreetmap.py:159
|
||||||
msgid "Get directions"
|
msgid "Get directions"
|
||||||
|
@ -538,8 +540,9 @@ msgid "hash digest"
|
||||||
msgstr "แฮชย่อย"
|
msgstr "แฮชย่อย"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:103
|
#: searx/plugins/hostnames.py:103
|
||||||
|
#, fuzzy
|
||||||
msgid "Hostnames plugin"
|
msgid "Hostnames plugin"
|
||||||
msgstr ""
|
msgstr "ชื่อโฮส ปลั๊กอิน"
|
||||||
|
|
||||||
#: searx/plugins/hostnames.py:104
|
#: searx/plugins/hostnames.py:104
|
||||||
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
|
||||||
|
@ -1698,4 +1701,3 @@ msgstr "ซ่อนวิดีโอ"
|
||||||
|
|
||||||
#~ msgid "Engines cannot retrieve results"
|
#~ msgid "Engines cannot retrieve results"
|
||||||
#~ msgstr "เครื่องมือไม่สามารถดึงผลลัพธ์ได้"
|
#~ msgstr "เครื่องมือไม่สามารถดึงผลลัพธ์ได้"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue