Compare commits

..

1 Commits

Author SHA1 Message Date
Markus Heiser 040b1457b3
Merge 79c499d145 into 81aaca8f44 2024-10-10 16:26:33 -04:00
163 changed files with 2171 additions and 6850 deletions

View File

@ -1,5 +1,5 @@
name: "Checker"
on: # yamllint disable-line rule:truthy
on:
schedule:
- cron: "0 4 * * 5"
workflow_dispatch:

View File

@ -1,5 +1,5 @@
name: "Update searx.data"
on: # yamllint disable-line rule:truthy
on:
schedule:
- cron: "59 23 28 * *"
workflow_dispatch:

View File

@ -1,6 +1,6 @@
name: Integration
on: # yamllint disable-line rule:truthy
on:
push:
branches: ["master"]
pull_request:
@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12",]
steps:
- name: Checkout
uses: actions/checkout@v4
@ -45,6 +45,14 @@ jobs:
make V=1 gecko.driver
- name: Run tests
run: make V=1 ci.test
- name: Test coverage
run: make V=1 test.coverage
- name: Store coverage result
uses: actions/upload-artifact@v3
with:
name: coverage-${{ matrix.python-version }}
path: coverage/
retention-days: 60
themes:
name: Themes
@ -111,7 +119,7 @@ jobs:
BRANCH: gh-pages
FOLDER: dist/docs
CLEAN: true # Automatically remove deleted files from the deploy branch
SINGLE_COMMIT: true
SINGLE_COMMIT: True
COMMIT_MESSAGE: '[doc] build from commit ${{ github.sha }}'
babel:

View File

@ -1,5 +1,5 @@
name: "Security checks"
on: # yamllint disable-line rule:truthy
on:
schedule:
- cron: "42 05 * * *"
workflow_dispatch:

View File

@ -1,5 +1,5 @@
name: "Update translations"
on: # yamllint disable-line rule:truthy
on:
schedule:
- cron: "05 07 * * 5"
workflow_dispatch:

View File

@ -338,7 +338,6 @@ valid-metaclass-classmethod-first-arg=mcs
# Maximum number of arguments for function / method
max-args=8
max-positional-arguments=14
# Maximum number of attributes for a class (see R0902).
max-attributes=20

View File

@ -66,7 +66,7 @@ A user_, admin_ and developer_ handbook is available on the homepage_.
Contact
=======
Ask questions or chat with the SearXNG community (this not a chatbot) on
Ask questions or just chat about SearXNG on
IRC
`#searxng on libera.chat <https://web.libera.chat/?channel=#searxng>`_

2
manage
View File

@ -57,7 +57,7 @@ while IFS= read -r line; do
if [ "$line" != "tests/unit/settings/syntaxerror_settings.yml" ]; then
YAMLLINT_FILES+=("$line")
fi
done <<< "$(git ls-files './tests/*.yml' './searx/*.yml' './utils/templates/etc/searxng/*.yml' '.github/*.yml' '.github/*/*.yml')"
done <<< "$(git ls-files './tests/*.yml' './searx/*.yml' './utils/templates/etc/searxng/*.yml')"
RST_FILES=(
'README.rst'

View File

@ -2,14 +2,14 @@ mock==5.1.0
nose2[coverage_plugin]==0.15.1
cov-core==1.15.0
black==24.3.0
pylint==3.3.1
pylint==3.2.7
splinter==0.21.0
selenium==4.26.1
Pallets-Sphinx-Themes==2.3.0
selenium==4.25.0
Pallets-Sphinx-Themes==2.1.3
Sphinx==7.4.7
sphinx-issues==5.0.0
sphinx-issues==4.1.0
sphinx-jinja==2.0.2
sphinx-tabs==3.4.7
sphinx-tabs==3.4.5
sphinxcontrib-programoutput==0.17
sphinx-autobuild==2024.10.3
sphinx-notfound-page==1.0.4

View File

@ -1,7 +1,7 @@
certifi==2024.8.30
babel==2.16.0
flask-babel==4.0.0
flask==3.1.0
flask==3.0.3
jinja2==3.1.4
lxml==5.3.0
pygments==2.18.0
@ -9,13 +9,13 @@ python-dateutil==2.9.0.post0
pyyaml==6.0.2
httpx[http2]==0.24.1
Brotli==1.1.0
uvloop==0.21.0
uvloop==0.20.0
httpx-socks[asyncio]==0.7.7
setproctitle==1.3.3
redis==5.0.8
markdown-it-py==3.0.0
fasttext-predict==0.9.2.2
tomli==2.0.2; python_version < '3.11'
msgspec==0.18.6
pytomlpp==1.0.13; python_version < '3.11'
pydantic==2.8.2
eval_type_backport; python_version < '3.9'
typer-slim==0.13.0
typer-slim==0.12.5

View File

@ -14,7 +14,17 @@ import typing
import logging
import pathlib
from ..compat import tomllib
try:
import tomllib
pytomlpp = None
USE_TOMLLIB = True
except ImportError:
import pytomlpp
tomllib = None
USE_TOMLLIB = False
__all__ = ['Config', 'UNSET', 'SchemaIssue']
@ -173,6 +183,8 @@ class Config:
def toml_load(file_name):
if USE_TOMLLIB:
# Python >= 3.11
try:
with open(file_name, "rb") as f:
return tomllib.load(f)
@ -180,6 +192,13 @@ def toml_load(file_name):
msg = str(exc).replace('\t', '').replace('\n', ' ')
log.error("%s: %s", file_name, msg)
raise
# fallback to pytomlpp for Python < 3.11
try:
return pytomlpp.load(file_name)
except pytomlpp.DecodeError as exc:
msg = str(exc).replace('\t', '').replace('\n', ' ')
log.error("%s: %s", file_name, msg)
raise
# working with dictionaries

File diff suppressed because it is too large Load Diff

View File

@ -82,7 +82,7 @@
"af": "Albanese lek",
"ar": "ليك ألباني",
"bg": "Албански лек",
"ca": "Lek (moneda)",
"ca": "lek",
"cs": "Albánský lek",
"cy": "Lek",
"da": "Lek",
@ -383,7 +383,6 @@
"nl": "Azerbeidzjaanse manat",
"oc": "Manat",
"pa": "ਅਜ਼ਰਬਾਈਜਾਨੀ ਮਨਾਤ",
"pap": "Manat Azerbaijano",
"pl": "Manat azerski",
"pt": "Manat azeri",
"ro": "Manat azer",
@ -607,7 +606,6 @@
"pt": "Franco do Burúndi",
"ro": "franc burundez",
"ru": "бурундийский франк",
"sk": "Burundský frank",
"sl": "burundijski frank",
"sr": "бурундски франак",
"sv": "Burundisk franc",
@ -1329,7 +1327,6 @@
"pl": "escudo Zielonego Przylądka",
"pt": "escudo cabo-verdiano",
"ru": "Эскудо Кабо-Верде",
"sk": "Kapverdské escudo",
"sl": "zelenortski eskudo",
"sr": "зеленортски ескудо",
"sv": "Kapverdisk escudo",
@ -1408,7 +1405,6 @@
"pl": "frank Dżibuti",
"pt": "franco do Jibuti",
"ru": "Франк Джибути",
"sk": "Džibutský frank",
"sr": "џибутски франак",
"sv": "Djiboutisk franc",
"tr": "Cibuti frangı",
@ -1522,7 +1518,6 @@
"pt": "dinar argelino",
"ro": "Dinar algerian",
"ru": "алжирский динар",
"sk": "Alžírský dinár",
"sl": "alžirski dinar",
"sr": "алжирски динар",
"sv": "Algerisk dinar",
@ -1974,7 +1969,6 @@
"pl": "frank gwinejski",
"pt": "Franco da Guiné",
"ru": "Гвинейский франк",
"sk": "Guinejský frank",
"sl": "gvinejski frank",
"sr": "гвинејски франак",
"sv": "Guinesisk franc",
@ -2695,7 +2689,6 @@
"pt": "Franco comoriano",
"ro": "Franc comorian",
"ru": "Франк Комор",
"sk": "Komorský frank",
"sr": "коморски франак",
"sv": "Komoransk franc",
"tr": "Komor frangı",
@ -2993,7 +2986,6 @@
"pt": "rúpia do Sri Lanka",
"ru": "ланкийская рупия",
"si": "ශ්රී ලංකා රුපියල",
"sk": "Srílanská rupia",
"sl": "šrilanška rupija",
"sr": "шриланчанска рупија",
"sv": "Lankesisk rupie",
@ -3067,7 +3059,7 @@
"uk": "Лоті"
},
"LYD": {
"ar": "دينار ذهبي",
"ar": "دينار ليبي",
"bg": "Либийски динар",
"ca": "dinar libi",
"cs": "Libyjský dinár",
@ -3129,7 +3121,6 @@
"pt": "Dirham marroquino",
"ro": "Dirham marocan",
"ru": "марокканский дирхам",
"sk": "Marocký dirham",
"sl": "maroški dirham",
"sr": "марокански дирхам",
"sv": "Marockansk dirham",
@ -3149,7 +3140,6 @@
"et": "Moldova leu",
"fi": "Moldovan leu",
"fr": "leu moldave",
"gl": "leu moldovo",
"he": "לאו מולדובני",
"hr": "moldavski lej",
"hu": "moldován lej",
@ -3381,7 +3371,6 @@
"pl": "Ugija",
"pt": "Uguia",
"ru": "Мавританская угия",
"sk": "Mauritánska ukíjá",
"sr": "мауританска огија",
"sv": "Mauretansk ouguiya",
"tr": "Ugiya",
@ -3827,7 +3816,6 @@
"sl": "novozelandski dolar",
"sr": "новозеландски долар",
"sv": "Nyzeeländsk dollar",
"th": "ดอลลาร์นิวซีแลนด์",
"tr": "Yeni Zelanda doları",
"uk": "новозеландський долар",
"vi": "Đô la New Zealand"
@ -5398,14 +5386,12 @@
"ja": "スム",
"ko": "우즈베키스탄 숨",
"lt": "Uzbekijos sumas",
"lv": "Uzbekistānas soms",
"nl": "Oezbeekse sum",
"pa": "ਉਜ਼ਬੇਕਿਸਤਾਨੀ ਸੋਮ",
"pl": "Sum",
"pt": "som usbeque",
"ro": "Som uzbec",
"ru": "узбекский сум",
"sk": "Uzbecký som",
"sr": "узбекистански сом",
"sv": "Uzbekistansk som",
"tr": "Özbekistan somu",
@ -5659,7 +5645,7 @@
"eo": "specialaj rajtoj de enspezo",
"es": "Derechos Especiales de Giro",
"eu": "igorpen eskubide bereziak",
"fi": "erityisnosto-oikeus",
"fi": "Erityisnosto-oikeus",
"fr": "droits de tirage spéciaux",
"hr": "Posebna prava vučenja",
"hu": "különleges lehívási jog",
@ -5669,7 +5655,6 @@
"ko": "특별인출권",
"lt": "Specialiosios skolinimosi teisės",
"lv": "Speciālās aizņēmuma tiesības",
"ms": "hak pengeluaran khas",
"nl": "speciale trekkingsrechten",
"oc": "Drechs de tiratge Especials",
"pl": "specjalne prawa ciągnienia",
@ -5852,7 +5837,7 @@
"lt": "Randas",
"lv": "Dienvidāfrikas rands",
"ml": "സൗത്ത് ആഫ്രിക്കൻ റാൻഡ്",
"ms": "Rand Afrika Selatan",
"ms": "Rand",
"nl": "Zuid-Afrikaanse rand",
"oc": "Rand sudafrican",
"pl": "Rand",
@ -5915,7 +5900,6 @@
"ko": "짐바브웨 골드",
"nl": "Zimbabwe Gold",
"pl": "Złoto Zimbabwe",
"pt": "Ouro do Zimbábue",
"ru": "зимбабвийский золотой",
"sk": "zimbabwiansky zlatý",
"sl": "zimbabvejski gold",
@ -7833,7 +7817,6 @@
"eritrese nakfa": "ERN",
"erityinen nosto oikeus": "XDR",
"erityiset nosto oikeudet": "XDR",
"erityisnosto oikeudet": "XDR",
"erityisnosto oikeus": "XDR",
"ermeni dramı": "AMD",
"ermenistan dramı": "AMD",
@ -8389,8 +8372,6 @@
"haitský gourde": "HTG",
"haïtiaanse gourde": "HTG",
"hak penarikan khusus": "XDR",
"hak pengeluaran khas": "XDR",
"hak pengeluaran khusus": "XDR",
"halalas": "SAR",
"hegoafrikar rand": "ZAR",
"heller": "CZK",
@ -9134,7 +9115,6 @@
"leu da roménia": "RON",
"leu da romênia": "RON",
"leu de moldàvia": "MDL",
"leu de moldova": "MDL",
"leu moldau": "MDL",
"leu moldave": "MDL",
"leu moldavo": "MDL",
@ -9142,7 +9122,6 @@
"leu moldofa": "MDL",
"leu moldova": "MDL",
"leu moldovenesc": "MDL",
"leu moldovo": "MDL",
"leu romanès": "RON",
"leu romanés": "RON",
"leu romanian": "RON",
@ -9458,7 +9437,6 @@
"manat azerbaijandar": "AZN",
"manat azerbaijanês": "AZN",
"manat azerbaijano": "AZN",
"manat azerbaitjanés": "AZN",
"manat azerbaiyano": "AZN",
"manat azerbaïdjanais": "AZN",
"manat azerbejdżański": "AZN",
@ -9542,7 +9520,6 @@
"mauritanijska ouguja": "MRU",
"mauritanijska uguija": "MRU",
"mauritániai ouguiya": "MRU",
"mauritánska ukíjá": "MRU",
"mauritánská ukíjá": "MRU",
"mauritānijas oguja": "MRU",
"mauritiaanse roepee": "MUR",
@ -10008,7 +9985,6 @@
"ouguiya mauritana": "MRU",
"ouguiya mauritanien": "MRU",
"ouguiya mawritania": "MRU",
"ouro do zimbábue": "ZWG",
"örmény dram": "AMD",
"östkaribisk dollar": "XCD",
"özbekistan somu": "UZS",
@ -10820,7 +10796,6 @@
"salomona dolaro": "SBD",
"salomondollar": "SBD",
"salomonen dollar": "SBD",
"salomoninsaarten dollari": "SBD",
"salomonsaarten dollari": "SBD",
"salomonskootočni dolar": "SBD",
"salüng": "THB",
@ -11177,7 +11152,6 @@
"srilankansk rupee": "LKR",
"srilankanske rupee": "LKR",
"srí lanka i rúpia": "LKR",
"srílanská rupia": "LKR",
"srílanská rupie": "LKR",
"srpski dinar": "RSD",
"ssp": "SSP",
@ -11441,7 +11415,6 @@
"tengue": "KZT",
"tengue cazaque": "KZT",
"teňňe": "TMT",
"tetri": "GEL",
"thai baht": "THB",
"thai bát": "THB",
"thailandiar baht": "THB",
@ -11566,10 +11539,10 @@
"turkisk lira": "TRY",
"turkiska lira": "TRY",
"turkmeense manat": "TMT",
"turkmen manat": "TMT",
"turkmena manato": "TMT",
"turkmenistan manat": "TMT",
"turkmenistan new manat": "TMT",
"turkmenistani manat": "TMT",
"turkmenistani new manat": "TMT",
"turkmenistanin manat": "TMT",
"turkmenistansk manat": "TMT",
@ -11735,7 +11708,6 @@
"uzbekistano sumas": "UZS",
"uzbekistansk som": "UZS",
"uzbekistanski som": "UZS",
"uzbekistānas soms": "UZS",
"uzs": "UZS",
"új zélandi dollár": "NZD",
"ürdün dinarı": "JOD",
@ -11889,7 +11861,6 @@
"yuan cinese": "CNY",
"yuan renmimbi": "CNY",
"yuan renminbi": "CNY",
"yuan rmb": "CNY",
"yuans": "CNY",
"yuán chino": "CNY",
"z$": "ZWL",
@ -13763,7 +13734,6 @@
"دينار بحريني": "BHD",
"دينار تونسي": "TND",
"دينار جزائري": "DZD",
"دينار ذهبي": "LYD",
"دينار سوداني": "SDG",
"دينار صربي": "RSD",
"دينار عراقي": "IQD",
@ -14356,7 +14326,6 @@
"USD",
"TWD"
],
"ดอลลาร์นิวซีแลนด์": "NZD",
"ดอลลาร์บรูไน": "BND",
"ดอลลาร์สหรัฐ": "USD",
"ดอลลาร์สิงคโปร์": "SGD",
@ -15029,7 +14998,6 @@
"ボツワナ・プラ": "BWP",
"ボリバル・ソベラノ": "VES",
"ボリビアーノ": "BOB",
"ポンド・スターリング": "GBP",
"ポーランド・ズウォティ": [
"PLZ",
"PLN"
@ -15095,6 +15063,7 @@
"中華人民共和国の通貨": "CNY",
"中部アフリカcfaフラン": "XAF",
"人民元": "CNY",
"人民币": "CNY",
"人民幣": "CNY",
"元": [
"HKD",

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
],
"ua": "Mozilla/5.0 ({os}; rv:{version}) Gecko/20100101 Firefox/{version}",
"versions": [
"132.0",
"131.0"
"130.0",
"129.0"
]
}

View File

@ -832,7 +832,7 @@
"Q104907390": {
"si_name": "Q182429",
"symbol": "nmi/h",
"to_si_factor": 0.5144444444444445
"to_si_factor": 0.514444
},
"Q104907398": {
"si_name": "Q215571",
@ -1336,7 +1336,7 @@
},
"Q106636307": {
"si_name": "Q80842107",
"symbol": "μS/cm-1",
"symbol": "μS/cm",
"to_si_factor": 0.0001
},
"Q106639711": {
@ -4142,7 +4142,7 @@
"Q23931103": {
"si_name": "Q25343",
"symbol": "nmi²",
"to_si_factor": 3429904.0
"to_si_factor": 3434290.0120544
},
"Q239830": {
"si_name": "Q3395194",

View File

@ -34,10 +34,10 @@ Implementations
"""
from typing import List, Dict, Any, Optional
from urllib.parse import urlencode
from urllib.parse import quote
from lxml import html
from searx.utils import extract_text, eval_xpath, eval_xpath_getindex, eval_xpath_list
from searx.utils import extract_text, eval_xpath, eval_xpath_list
from searx.enginelib.traits import EngineTraits
from searx.data import ENGINE_TRAITS
@ -53,7 +53,7 @@ about: Dict[str, Any] = {
# engine dependent config
categories: List[str] = ["files"]
paging: bool = True
paging: bool = False
# search-url
base_url: str = "https://annas-archive.org"
@ -99,18 +99,9 @@ def init(engine_settings=None): # pylint: disable=unused-argument
def request(query, params: Dict[str, Any]) -> Dict[str, Any]:
q = quote(query)
lang = traits.get_language(params["language"], traits.all_locale) # type: ignore
args = {
'lang': lang,
'content': aa_content,
'ext': aa_ext,
'sort': aa_sort,
'q': query,
'page': params['pageno'],
}
# filter out None and empty values
filtered_args = dict((k, v) for k, v in args.items() if v)
params["url"] = f"{base_url}/search?{urlencode(filtered_args)}"
params["url"] = base_url + f"/search?lang={lang or ''}&content={aa_content}&ext={aa_ext}&sort={aa_sort}&q={q}"
return params
@ -137,12 +128,12 @@ def response(resp) -> List[Dict[str, Optional[str]]]:
def _get_result(item):
return {
'template': 'paper.html',
'url': base_url + extract_text(eval_xpath_getindex(item, './@href', 0)),
'url': base_url + item.xpath('./@href')[0],
'title': extract_text(eval_xpath(item, './/h3/text()[1]')),
'publisher': extract_text(eval_xpath(item, './/div[contains(@class, "text-sm")]')),
'authors': [extract_text(eval_xpath(item, './/div[contains(@class, "italic")]'))],
'content': extract_text(eval_xpath(item, './/div[contains(@class, "text-xs")]')),
'thumbnail': extract_text(eval_xpath_getindex(item, './/img/@src', 0, default=None), allow_none=True),
'thumbnail': item.xpath('.//img/@src')[0],
}

View File

@ -18,13 +18,13 @@ from searx import (
)
from searx.utils import (
eval_xpath,
eval_xpath_getindex,
extract_text,
)
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
from searx.exceptions import SearxEngineCaptchaException
if TYPE_CHECKING:
import logging
@ -53,33 +53,31 @@ paging = True
time_range_support = True
safesearch = True # user can't select but the results are filtered
url = "https://html.duckduckgo.com/html"
url = 'https://lite.duckduckgo.com/lite/'
# url_ping = 'https://duckduckgo.com/t/sl_l'
time_range_dict = {'day': 'd', 'week': 'w', 'month': 'm', 'year': 'y'}
form_data = {'v': 'l', 'api': 'd.js', 'o': 'json'}
__CACHE = []
def _cache_key(data: dict):
return 'SearXNG_ddg_web_vqd' + redislib.secret_hash(f"{data['q']}//{data['kl']}")
def cache_vqd(data: dict, value):
def cache_vqd(query, value):
"""Caches a ``vqd`` value from a query."""
c = redisdb.client()
if c:
logger.debug("cache vqd value: %s", value)
c.set(_cache_key(data), value, ex=600)
else:
logger.debug("MEM cache vqd value: %s", value)
if len(__CACHE) > 100: # cache vqd from last 100 queries
__CACHE.pop(0)
__CACHE.append((_cache_key(data), value))
key = 'SearXNG_ddg_web_vqd' + redislib.secret_hash(query)
c.set(key, value, ex=600)
def get_vqd(data):
"""Returns the ``vqd`` that fits to the *query* (``data`` from HTTP POST).
def get_vqd(query):
"""Returns the ``vqd`` that fits to the *query*. If there is no ``vqd`` cached
(:py:obj:`cache_vqd`) the query is sent to DDG to get a vqd value from the
response.
.. hint::
If an empty string is returned there are no results for the ``query`` and
therefore no ``vqd`` value.
DDG's bot detection is sensitive to the ``vqd`` value. For some search terms
(such as extremely long search terms that are often sent by bots), no ``vqd``
@ -107,23 +105,28 @@ def get_vqd(data):
- DuckDuckGo News: ``https://duckduckgo.com/news.js??q=...&vqd=...``
"""
key = _cache_key(data)
value = None
c = redisdb.client()
if c:
key = 'SearXNG_ddg_web_vqd' + redislib.secret_hash(query)
value = c.get(key)
if value or value == b'':
value = value.decode('utf-8')
logger.debug("re-use CACHED vqd value: %s", value)
logger.debug("re-use cached vqd value: %s", value)
return value
else:
for k, value in __CACHE:
if k == key:
logger.debug("MEM re-use CACHED vqd value: %s", value)
query_url = 'https://duckduckgo.com/?' + urlencode({'q': query})
res = get(query_url)
doc = lxml.html.fromstring(res.text)
for script in doc.xpath("//script[@type='text/javascript']"):
script = script.text
if 'vqd="' in script:
value = extr(script, 'vqd="', '"')
break
logger.debug("new vqd value: '%s'", value)
if value is not None:
cache_vqd(query, value)
return value
return None
def get_ddg_lang(eng_traits: EngineTraits, sxng_locale, default='en_US'):
@ -151,10 +154,9 @@ def get_ddg_lang(eng_traits: EngineTraits, sxng_locale, default='en_US'):
.. hint::
`DDG-lite <https://lite.duckduckgo.com/lite>`__ and the *no Javascript*
page https://html.duckduckgo.com/html do not offer a language selection
to the user, only a region can be selected by the user (``eng_region``
from the example above). DDG-lite and *no Javascript* store the selected
`DDG-lite <https://lite.duckduckgo.com/lite>`__ does not offer a language
selection to the user, only a region can be selected by the user
(``eng_region`` from the example above). DDG-lite stores the selected
region in a cookie::
params['cookies']['kl'] = eng_region # 'ar-es'
@ -238,27 +240,10 @@ def request(query, params):
query = quote_ddg_bangs(query)
if len(query) >= 500:
# DDG does not accept queries with more than 499 chars
params["url"] = None
return
# request needs a vqd argument
vqd = get_vqd(query)
# Advanced search syntax ends in CAPTCHA
# https://duckduckgo.com/duckduckgo-help-pages/results/syntax/
query = " ".join(
[
x.removeprefix("site:").removeprefix("intitle:").removeprefix("inurl:").removeprefix("filetype:")
for x in query.split()
]
)
eng_region = traits.get_region(params['searxng_locale'], traits.all_locale)
if eng_region == "wt-wt":
# https://html.duckduckgo.com/html sets an empty value for "all".
eng_region = ""
params['data']['kl'] = eng_region
params['cookies']['kl'] = eng_region
# eng_lang = get_ddg_lang(traits, params['searxng_locale'])
params['url'] = url
@ -266,82 +251,45 @@ def request(query, params):
params['data']['q'] = query
# The API is not documented, so we do some reverse engineering and emulate
# what https://html.duckduckgo.com/html does when you press "next Page" link
# again and again ..
# what https://lite.duckduckgo.com/lite/ does when you press "next Page"
# link again and again ..
params['headers']['Content-Type'] = 'application/x-www-form-urlencoded'
params['data']['vqd'] = vqd
params['headers']['Sec-Fetch-Dest'] = "document"
params['headers']['Sec-Fetch-Mode'] = "navigate" # at least this one is used by ddg's bot detection
params['headers']['Sec-Fetch-Site'] = "same-origin"
params['headers']['Sec-Fetch-User'] = "?1"
# Form of the initial search page does have empty values in the form
if params['pageno'] == 1:
params['data']['b'] = ""
params['data']['df'] = ''
if params['time_range'] in time_range_dict:
params['data']['df'] = time_range_dict[params['time_range']]
params['cookies']['df'] = time_range_dict[params['time_range']]
# initial page does not have an offset
if params['pageno'] == 2:
# second page does have an offset of 20
offset = (params['pageno'] - 1) * 20
params['data']['s'] = offset
params['data']['dc'] = offset + 1
elif params['pageno'] > 2:
# third and following pages do have an offset of 20 + n*50
offset = 20 + (params['pageno'] - 2) * 50
params['data']['s'] = offset
params['data']['dc'] = offset + 1
# initial page does not have additional data in the input form
if params['pageno'] > 1:
# initial page does not have these additional data in the input form
params['data']['o'] = form_data.get('o', 'json')
params['data']['api'] = form_data.get('api', 'd.js')
params['data']['nextParams'] = form_data.get('nextParams', '')
params['data']['v'] = form_data.get('v', 'l')
params['headers']['Referer'] = url
params['headers']['Referer'] = 'https://lite.duckduckgo.com/'
# from here on no more params['data'] shuld be set, since this dict is
# needed to get a vqd value from the cache ..
params['data']['kl'] = eng_region
params['cookies']['kl'] = eng_region
vqd = get_vqd(params['data'])
# Certain conditions must be met in order to call up one of the
# following pages ...
if vqd:
params['data']['vqd'] = vqd # follow up pages / requests needs a vqd argument
else:
# Don't try to call follow up pages without a vqd value. DDG
# recognizes this as a request from a bot. This lowers the
# reputation of the SearXNG IP and DDG starts to activate CAPTCHAs.
params["url"] = None
return
if params['searxng_locale'].startswith("zh"):
# Some locales (at least China) do not have a "next page" button and ddg
# will return a HTTP/2 403 Forbidden for a request of such a page.
params["url"] = None
return
params['data']['df'] = ''
if params['time_range'] in time_range_dict:
params['data']['df'] = time_range_dict[params['time_range']]
params['cookies']['df'] = time_range_dict[params['time_range']]
logger.debug("param data: %s", params['data'])
logger.debug("param cookies: %s", params['cookies'])
def is_ddg_captcha(dom):
"""In case of CAPTCHA ddg response its own *not a Robot* dialog and is not
redirected to a CAPTCHA page."""
return bool(eval_xpath(dom, "//form[@id='challenge-form']"))
return params
def response(resp):
@ -352,40 +300,38 @@ def response(resp):
results = []
doc = lxml.html.fromstring(resp.text)
if is_ddg_captcha(doc):
# set suspend time to zero is OK --> ddg does not block the IP
raise SearxEngineCaptchaException(suspended_time=0, message=f"CAPTCHA ({resp.search_params['data'].get('kl')})")
result_table = eval_xpath(doc, '//html/body/form/div[@class="filters"]/table')
form = eval_xpath(doc, '//input[@name="vqd"]/..')
if len(result_table) == 2:
# some locales (at least China) does not have a "next page" button and
# the layout of the HTML tables is different.
result_table = result_table[1]
elif not len(result_table) >= 3:
# no more results
return []
else:
result_table = result_table[2]
# update form data from response
form = eval_xpath(doc, '//html/body/form/div[@class="filters"]/table//input/..')
if len(form):
# some locales (at least China) does not have a "next page" button
form = form[0]
form_vqd = eval_xpath(form, '//input[@name="vqd"]/@value')[0]
form_data['v'] = eval_xpath(form, '//input[@name="v"]/@value')[0]
form_data['api'] = eval_xpath(form, '//input[@name="api"]/@value')[0]
form_data['o'] = eval_xpath(form, '//input[@name="o"]/@value')[0]
logger.debug('form_data: %s', form_data)
cache_vqd(resp.search_params["data"], form_vqd)
tr_rows = eval_xpath(result_table, './/tr')
# In the last <tr> is the form of the 'previous/next page' links
tr_rows = tr_rows[:-1]
# just select "web-result" and ignore results of class "result--ad result--ad--small"
for div_result in eval_xpath(doc, '//div[@id="links"]/div[contains(@class, "web-result")]'):
len_tr_rows = len(tr_rows)
offset = 0
item = {}
title = eval_xpath(div_result, './/h2/a')
if not title:
# this is the "No results." item in the result list
continue
item["title"] = extract_text(title)
item["url"] = eval_xpath(div_result, './/h2/a/@href')[0]
item["content"] = extract_text(eval_xpath(div_result, './/a[contains(@class, "result__snippet")]')[0])
results.append(item)
zero_click_info_xpath = '//div[@id="zero_click_abstract"]'
zero_click_info_xpath = '//html/body/form/div/table[2]/tr[2]/td/text()'
zero_click = extract_text(eval_xpath(doc, zero_click_info_xpath)).strip()
if zero_click and (
"Your IP address is" not in zero_click
and "Your user agent:" not in zero_click
and "URL Decoded:" not in zero_click
):
if zero_click and "Your IP address is" not in zero_click and "Your user agent:" not in zero_click:
current_query = resp.search_params["data"].get("q")
results.append(
@ -395,6 +341,33 @@ def response(resp):
}
)
while len_tr_rows >= offset + 4:
# assemble table rows we need to scrap
tr_title = tr_rows[offset]
tr_content = tr_rows[offset + 1]
offset += 4
# ignore sponsored Adds <tr class="result-sponsored">
if tr_content.get('class') == 'result-sponsored':
continue
a_tag = eval_xpath_getindex(tr_title, './/td//a[@class="result-link"]', 0, None)
if a_tag is None:
continue
td_content = eval_xpath_getindex(tr_content, './/td[@class="result-snippet"]', 0, None)
if td_content is None:
continue
results.append(
{
'title': a_tag.text_content(),
'content': extract_text(td_content),
'url': a_tag.get('href'),
}
)
return results

View File

@ -1,8 +1,7 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Engine to search in collaborative software platforms based on Gitea_ or Forgejo_.
"""Engine to search in collaborative software platforms based on Gitea_.
.. _Gitea: https://about.gitea.com/
.. _Forgejo: https://forgejo.org/
Configuration
=============
@ -24,11 +23,6 @@ Optional settings are:
base_url: https://gitea.com
shortcut: gitea
- name: forgejo.com
engine: gitea
base_url: https://code.forgejo.org
shortcut: forgejo
If you would like to use additional instances, just configure new engines in the
:ref:`settings <settings engine>` and set the ``base_url``.
@ -101,14 +95,13 @@ def response(resp):
'url': item.get('html_url'),
'title': item.get('full_name'),
'content': ' / '.join(content),
# Use Repository Avatar and fall back to Owner Avatar if not set.
'thumbnail': item.get('avatar_url') or item.get('owner', {}).get('avatar_url'),
'img_src': item.get('owner', {}).get('avatar_url'),
'package_name': item.get('name'),
'maintainer': item.get('owner', {}).get('username'),
'maintainer': item.get('owner', {}).get('login'),
'publishedDate': parser.parse(item.get("updated_at") or item.get("created_at")),
'tags': item.get('topics', []),
'popularity': item.get('stars_count'),
'homepage': item.get('website'),
'popularity': item.get('stargazers_count'),
'homepage': item.get('homepage'),
'source_code_url': item.get('clone_url'),
}
)

View File

@ -62,7 +62,7 @@ filter_mapping = {0: 'off', 1: 'medium', 2: 'high'}
results_xpath = './/div[contains(@jscontroller, "SC7lYd")]'
title_xpath = './/a/h3[1]'
href_xpath = './/a[h3]/@href'
content_xpath = './/div[contains(@data-sncf, "1")]'
content_xpath = './/div[@data-sncf="1"]'
# Suggestions are links placed in a *card-section*, we extract only the text
# from the links not the links itself.

View File

@ -57,11 +57,7 @@ def request(query, params):
if params['time_range']:
search_type = 'search_by_date'
timestamp = (
# pylint: disable=unexpected-keyword-arg
datetime.now()
- relativedelta(**{f"{params['time_range']}s": 1}) # type: ignore
).timestamp()
timestamp = (datetime.now() - relativedelta(**{f"{params['time_range']}s": 1})).timestamp()
query_params["numericFilters"] = f"created_at_i>{timestamp}"
params["url"] = f"{base_url}/{search_type}?{urlencode(query_params)}"

View File

@ -1,15 +1,12 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Mojeek (general, images, news)"""
from typing import TYPE_CHECKING
from datetime import datetime
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
from searx.enginelib.traits import EngineTraits
about = {
'website': 'https://mojeek.com',
@ -45,18 +42,6 @@ news_url_xpath = './/h2/a/@href'
news_title_xpath = './/h2/a'
news_content_xpath = './/p[@class="s"]'
language_param = 'lb'
region_param = 'arc'
_delta_kwargs = {'day': 'days', 'week': 'weeks', 'month': 'months', 'year': 'years'}
if TYPE_CHECKING:
import logging
logger = logging.getLogger()
traits: EngineTraits
def init(_):
if search_type not in ('', 'images', 'news'):
@ -68,16 +53,13 @@ def request(query, params):
'q': query,
'safe': min(params['safesearch'], 1),
'fmt': search_type,
language_param: traits.get_language(params['searxng_locale'], traits.custom['language_all']),
region_param: traits.get_region(params['searxng_locale'], traits.custom['region_all']),
}
if search_type == '':
args['s'] = 10 * (params['pageno'] - 1)
if params['time_range'] and search_type != 'images':
kwargs = {_delta_kwargs[params['time_range']]: 1}
args["since"] = (datetime.now() - relativedelta(**kwargs)).strftime("%Y%m%d") # type: ignore
args["since"] = (datetime.now() - relativedelta(**{f"{params['time_range']}s": 1})).strftime("%Y%m%d")
logger.debug(args["since"])
params['url'] = f"{base_url}/search?{urlencode(args)}"
@ -112,7 +94,7 @@ def _image_results(dom):
'template': 'images.html',
'url': extract_text(eval_xpath(result, image_url_xpath)),
'title': extract_text(eval_xpath(result, image_title_xpath)),
'img_src': base_url + extract_text(eval_xpath(result, image_img_src_xpath)), # type: ignore
'img_src': base_url + extract_text(eval_xpath(result, image_img_src_xpath)),
'content': '',
}
)
@ -148,31 +130,3 @@ def response(resp):
return _news_results(dom)
raise ValueError(f"Invalid search type {search_type}")
def fetch_traits(engine_traits: EngineTraits):
# pylint: disable=import-outside-toplevel
from searx import network
from searx.locales import get_official_locales, region_tag
from babel import Locale, UnknownLocaleError
import contextlib
resp = network.get(base_url + "/preferences", headers={'Accept-Language': 'en-US,en;q=0.5'})
dom = html.fromstring(resp.text) # type: ignore
languages = eval_xpath_list(dom, f'//select[@name="{language_param}"]/option/@value')
engine_traits.custom['language_all'] = languages[0]
for code in languages[1:]:
with contextlib.suppress(UnknownLocaleError):
locale = Locale(code)
engine_traits.languages[locale.language] = code
regions = eval_xpath_list(dom, f'//select[@name="{region_param}"]/option/@value')
engine_traits.custom['region_all'] = regions[1]
for code in regions[2:]:
for locale in get_official_locales(code, engine_traits.languages):
engine_traits.regions[region_tag(locale)] = code

View File

@ -1,71 +0,0 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Open library (books)
"""
from urllib.parse import urlencode
import re
from dateutil import parser
about = {
'website': 'https://openlibrary.org',
'wikidata_id': 'Q1201876',
'require_api_key': False,
'use_official_api': False,
'official_api_documentation': 'https://openlibrary.org/developers/api',
}
paging = True
categories = []
base_url = "https://openlibrary.org"
results_per_page = 10
def request(query, params):
args = {
'q': query,
'page': params['pageno'],
'limit': results_per_page,
}
params['url'] = f"{base_url}/search.json?{urlencode(args)}"
return params
def _parse_date(date):
try:
return parser.parse(date)
except parser.ParserError:
return None
def response(resp):
results = []
for item in resp.json().get("docs", []):
cover = None
if 'lending_identifier_s' in item:
cover = f"https://archive.org/services/img/{item['lending_identifier_s']}"
published = item.get('publish_date')
if published:
published_dates = [date for date in map(_parse_date, published) if date]
if published_dates:
published = min(published_dates)
if not published:
published = parser.parse(str(item.get('first_published_year')))
result = {
'template': 'paper.html',
'url': f"{base_url}{item['key']}",
'title': item['title'],
'content': re.sub(r"\{|\}", "", item['first_sentence'][0]) if item.get('first_sentence') else '',
'isbn': item.get('isbn', [])[:5],
'authors': item.get('author_name', []),
'thumbnail': cover,
'publishedDate': published,
'tags': item.get('subject', [])[:10] + item.get('place', [])[:10],
}
results.append(result)
return results

View File

@ -1,7 +1,6 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Exception types raised by SearXNG modules.
"""
from __future__ import annotations
from typing import Optional, Union
@ -62,7 +61,7 @@ class SearxEngineAccessDeniedException(SearxEngineResponseException):
"""This settings contains the default suspended time (default 86400 sec / 1
day)."""
def __init__(self, suspended_time: int | None = None, message: str = 'Access denied'):
def __init__(self, suspended_time: int = None, message: str = 'Access denied'):
"""Generic exception to raise when an engine denies access to the results.
:param suspended_time: How long the engine is going to be suspended in
@ -71,13 +70,12 @@ class SearxEngineAccessDeniedException(SearxEngineResponseException):
:param message: Internal message. Defaults to ``Access denied``
:type message: str
"""
if suspended_time is None:
suspended_time = self._get_default_suspended_time()
suspended_time = suspended_time or self._get_default_suspended_time()
super().__init__(message + ', suspended_time=' + str(suspended_time))
self.suspended_time = suspended_time
self.message = message
def _get_default_suspended_time(self) -> int:
def _get_default_suspended_time(self):
from searx import get_setting # pylint: disable=C0415
return get_setting(self.SUSPEND_TIME_SETTING)
@ -90,7 +88,7 @@ class SearxEngineCaptchaException(SearxEngineAccessDeniedException):
"""This settings contains the default suspended time (default 86400 sec / 1
day)."""
def __init__(self, suspended_time: int | None = None, message='CAPTCHA'):
def __init__(self, suspended_time=None, message='CAPTCHA'):
super().__init__(message=message, suspended_time=suspended_time)
@ -104,7 +102,7 @@ class SearxEngineTooManyRequestsException(SearxEngineAccessDeniedException):
"""This settings contains the default suspended time (default 3660 sec / 1
hour)."""
def __init__(self, suspended_time: int | None = None, message='Too many request'):
def __init__(self, suspended_time=None, message='Too many request'):
super().__init__(message=message, suspended_time=suspended_time)

View File

@ -22,9 +22,8 @@ def init():
# pylint: disable=import-outside-toplevel
from . import config, cache, proxy
from .. import settings_loader
cfg_file = (settings_loader.get_user_cfg_folder() or pathlib.Path("/etc/searxng")) / "favicons.toml"
cfg_file = pathlib.Path("/etc/searxng/favicons.toml")
if not cfg_file.exists():
if is_active():
logger.error(f"missing favicon config: {cfg_file}")
@ -35,4 +34,4 @@ def init():
cache.init(cfg.cache)
proxy.init(cfg.proxy)
del cache, config, proxy, cfg, settings_loader
del cache, config, proxy, cfg

View File

@ -20,17 +20,17 @@
from __future__ import annotations
from typing import Literal
import os
import abc
import dataclasses
import hashlib
import logging
import pathlib
import sqlite3
import tempfile
import time
import typer
import msgspec
from pydantic import BaseModel
from searx import sqlitedb
from searx import logger
@ -90,7 +90,7 @@ def init(cfg: "FaviconCacheConfig"):
raise NotImplementedError(f"favicons db_type '{cfg.db_type}' is unknown")
class FaviconCacheConfig(msgspec.Struct): # pylint: disable=too-few-public-methods
class FaviconCacheConfig(BaseModel):
"""Configuration of the favicon cache."""
db_type: Literal["sqlite", "mem"] = "sqlite"
@ -103,7 +103,7 @@ class FaviconCacheConfig(msgspec.Struct): # pylint: disable=too-few-public-meth
:py:obj:`.cache.FaviconCacheMEM` (not recommended)
"""
db_url: str = tempfile.gettempdir() + os.sep + "faviconcache.db"
db_url: pathlib.Path = pathlib.Path(tempfile.gettempdir()) / "faviconcache.db"
"""URL of the SQLite DB, the path to the database file."""
HOLD_TIME: int = 60 * 60 * 24 * 30 # 30 days

View File

@ -4,8 +4,9 @@
from __future__ import annotations
import pathlib
import msgspec
from pydantic import BaseModel
from searx.compat import tomllib
from .cache import FaviconCacheConfig
from .proxy import FaviconProxyConfig
@ -18,7 +19,7 @@ TOML_CACHE_CFG: dict[str, "FaviconConfig"] = {}
DEFAULT_CFG_TOML_PATH = pathlib.Path(__file__).parent / "favicons.toml"
class FaviconConfig(msgspec.Struct): # pylint: disable=too-few-public-methods
class FaviconConfig(BaseModel):
"""The class aggregates configurations of the favicon tools"""
cfg_schema: int
@ -27,10 +28,10 @@ class FaviconConfig(msgspec.Struct): # pylint: disable=too-few-public-methods
By specifying a version, it is possible to ensure downward compatibility in
the event of future changes to the configuration schema"""
cache: FaviconCacheConfig = msgspec.field(default_factory=FaviconCacheConfig)
cache: FaviconCacheConfig = FaviconCacheConfig()
"""Setup of the :py:obj:`.cache.FaviconCacheConfig`."""
proxy: FaviconProxyConfig = msgspec.field(default_factory=FaviconProxyConfig)
proxy: FaviconProxyConfig = FaviconProxyConfig()
"""Setup of the :py:obj:`.proxy.FaviconProxyConfig`."""
@classmethod
@ -44,22 +45,18 @@ class FaviconConfig(msgspec.Struct): # pylint: disable=too-few-public-methods
return cached
with cfg_file.open("rb") as f:
data = f.read()
cfg = msgspec.toml.decode(data, type=_FaviconConfig)
schema = cfg.favicons.cfg_schema
cfg = tomllib.load(f)
cfg = cfg.get("favicons", cfg)
schema = cfg.get("cfg_schema")
if schema != CONFIG_SCHEMA:
raise ValueError(
f"config schema version {CONFIG_SCHEMA} is needed, version {schema} is given in {cfg_file}"
)
cfg = cfg.favicons
cfg = cls(**cfg)
if use_cache and cached:
TOML_CACHE_CFG[str(cfg_file.resolve())] = cfg
return cfg
class _FaviconConfig(msgspec.Struct): # pylint: disable=too-few-public-methods
# wrapper struct for root object "favicons."
favicons: FaviconConfig

View File

@ -12,7 +12,7 @@ import urllib.parse
import flask
from httpx import HTTPError
import msgspec
from pydantic import BaseModel
from searx import get_setting
@ -41,7 +41,7 @@ def _initial_resolver_map():
return d
class FaviconProxyConfig(msgspec.Struct):
class FaviconProxyConfig(BaseModel):
"""Configuration of the favicon proxy."""
max_age: int = 60 * 60 * 24 * 7 # seven days
@ -59,7 +59,7 @@ class FaviconProxyConfig(msgspec.Struct):
outgoing request of the resolver. By default, the value from
:ref:`outgoing.request_timeout <settings outgoing>` setting is used."""
resolver_map: dict[str, str] = msgspec.field(default_factory=_initial_resolver_map)
resolver_map: dict[str, str] = _initial_resolver_map()
"""The resolver_map is a key / value dictionary where the key is the name of
the resolver and the value is the fully qualifying name (fqn) of resolver's
function (the callable). The resolvers from the python module

View File

@ -128,6 +128,9 @@ _INSTALLED = False
LIMITER_CFG_SCHEMA = Path(__file__).parent / "limiter.toml"
"""Base configuration (schema) of the botdetection."""
LIMITER_CFG = Path('/etc/searxng/limiter.toml')
"""Local Limiter configuration."""
CFG_DEPRECATED = {
# "dummy.old.foo": "config 'dummy.old.foo' exists only for tests. Don't use it in your real project config."
}
@ -135,12 +138,8 @@ CFG_DEPRECATED = {
def get_cfg() -> config.Config:
global CFG # pylint: disable=global-statement
if CFG is None:
from . import settings_loader # pylint: disable=import-outside-toplevel
cfg_file = (settings_loader.get_user_cfg_folder() or Path("/etc/searxng")) / "limiter.toml"
CFG = config.Config.from_toml(LIMITER_CFG_SCHEMA, cfg_file, CFG_DEPRECATED)
CFG = config.Config.from_toml(LIMITER_CFG_SCHEMA, LIMITER_CFG, CFG_DEPRECATED)
return CFG

View File

@ -3,13 +3,9 @@
"""
import ast
import re
import operator
from multiprocessing import Process, Queue
from typing import Callable
import flask
import babel
from flask_babel import gettext
from searx.plugins import logger
@ -23,7 +19,7 @@ plugin_id = 'calculator'
logger = logger.getChild(plugin_id)
operators: dict[type, Callable] = {
operators = {
ast.Add: operator.add,
ast.Sub: operator.sub,
ast.Mult: operator.mul,
@ -43,15 +39,11 @@ def _eval_expr(expr):
>>> _eval_expr('1 + 2*3**(4^5) / (6 + -7)')
-5.0
"""
try:
return _eval(ast.parse(expr, mode='eval').body)
except ZeroDivisionError:
# This is undefined
return ""
def _eval(node):
if isinstance(node, ast.Constant) and isinstance(node.value, (int, float)):
if isinstance(node, ast.Constant) and isinstance(node.value, int):
return node.value
if isinstance(node, ast.BinOp):
@ -101,19 +93,6 @@ def post_search(_request, search):
# replace commonly used math operators with their proper Python operator
query = query.replace("x", "*").replace(":", "/")
# use UI language
ui_locale = babel.Locale.parse(flask.request.preferences.get_value('locale'), sep='-')
# parse the number system in a localized way
def _decimal(match: re.Match) -> str:
val = match.string[match.start() : match.end()]
val = babel.numbers.parse_decimal(val, ui_locale, numbering_system="latn")
return str(val)
decimal = ui_locale.number_symbols["latn"]["decimal"]
group = ui_locale.number_symbols["latn"]["group"]
query = re.sub(f"[0-9]+[{decimal}|{group}][0-9]+[{decimal}|{group}]?[0-9]?", _decimal, query)
# only numbers and math operators are accepted
if any(str.isalpha(c) for c in query):
return True
@ -123,8 +102,10 @@ def post_search(_request, search):
# Prevent the runtime from being longer than 50 ms
result = timeout_func(0.05, _eval_expr, query_py_formatted)
if result is None or result == "":
if result is None:
return True
result = babel.numbers.format_decimal(result, locale=ui_locale)
search.result_container.answers['calculate'] = {'answer': f"{search.search_query.query} = {result}"}
result = str(result)
if result != query:
search.result_container.answers['calculate'] = {'answer': f"{query} = {result}"}
return True

View File

@ -20,7 +20,7 @@ if (next_call_ts == false or next_call_ts == nil) then
-- 2/ the next call is a random time between start_after_from and start_after_to
local initial_delay = math.random(start_after_from, start_after_to)
redis.call('SET', redis_key, now + initial_delay)
return { false, initial_delay }
return { false, delay }
end
-- next_call_ts is defined

View File

@ -23,7 +23,7 @@ def name_to_iso4217(name):
currency = CURRENCIES['names'].get(name, [name])
if isinstance(currency, str):
return currency
return currency[-1]
return currency[0]
def iso4217_to_name(iso4217, language):

View File

@ -226,12 +226,15 @@ outgoing:
# - 'Hash plugin'
# - 'Self Information'
# - 'Tracker URL remover'
# - 'Unit converter plugin'
# - 'Ahmia blacklist' # activation depends on outgoing.using_tor_proxy
# # these plugins are disabled if nothing is configured ..
# - 'Hostnames plugin' # see 'hostnames' configuration below
# - 'Open Access DOI rewrite'
# - 'Tor check plugin'
# # Read the docs before activate: auto-detection of the language could be
# # detrimental to users expectations / users can activate the plugin in the
# # preferences if they want.
# - 'Autodetect search language'
# Configuration of the "Hostnames plugin":
#
@ -1280,12 +1283,6 @@ engines:
require_api_key: false
results: JSON
- name: openlibrary
engine: openlibrary
shortcut: ol
timeout: 5
disabled: true
- name: openmeteo
engine: open_meteo
shortcut: om

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -277,7 +277,7 @@
@results-margin: 0.125rem;
@result-padding: 1rem;
@results-image-row-height: 12rem;
@results-image-row-height-phone: 10rem;
@results-image-row-height-phone: 6rem;
@search-width: 44rem;
// heigh of #search, see detail.less
@search-height: 7.6rem;

View File

@ -380,9 +380,9 @@ html.no-js #clear_search.hide_if_nojs {
}
.favicon img {
height: 1.5rem;
width: 1.5rem;
border-radius: 10%;
height: 1.8rem;
width: 1.8rem;
border-radius: 20%;
background-color: var(--color-favicon-background-color);
border: 1px solid var(--color-favicon-border-color);
display: flex;

View File

@ -170,8 +170,6 @@ article[data-vim-selected].category-social {
.result {
margin: @results-margin 0;
padding: @result-padding;
box-sizing: border-box;
width: 100%;
.ltr-border-left(0.2rem solid transparent);
h3 {
@ -456,7 +454,6 @@ article[data-vim-selected].category-social {
margin: 0.25rem;
border: none !important;
height: @results-image-row-height;
width: unset;
& > a {
position: relative;
@ -1099,8 +1096,7 @@ summary.title {
.result {
background: var(--color-result-background);
border: 1px solid var(--color-result-background);
margin: 1rem 2%;
width: 96%;
margin: 1rem 10px;
.rounded-corners;
}
@ -1108,7 +1104,6 @@ summary.title {
margin: 0;
height: @results-image-row-height-phone;
background: var(--color-base-background-mobile);
width: unset;
}
.infobox {

View File

@ -16,9 +16,9 @@ sxng_locales = (
('bg', 'Български', '', 'Bulgarian', '\U0001f310'),
('bg-BG', 'Български', 'България', 'Bulgarian', '\U0001f1e7\U0001f1ec'),
('ca', 'Català', '', 'Catalan', '\U0001f310'),
('ca-ES', 'Català', 'Espanya', 'Catalan', '\U0001f1ea\U0001f1f8'),
('cs', 'Čeština', '', 'Czech', '\U0001f310'),
('cs-CZ', 'Čeština', 'Česko', 'Czech', '\U0001f1e8\U0001f1ff'),
('cy', 'Cymraeg', '', 'Welsh', '\U0001f310'),
('da', 'Dansk', '', 'Danish', '\U0001f310'),
('da-DK', 'Dansk', 'Danmark', 'Danish', '\U0001f1e9\U0001f1f0'),
('de', 'Deutsch', '', 'German', '\U0001f310'),
@ -56,8 +56,6 @@ 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'),
('ga', 'Gaeilge', '', 'Irish', '\U0001f310'),
('gd', 'Gàidhlig', '', 'Scottish Gaelic', '\U0001f310'),
('gl', 'Galego', '', 'Galician', '\U0001f310'),
('he', 'עברית', '', 'Hebrew', '\U0001f1ee\U0001f1f1'),
('hi', 'हिन्दी', '', 'Hindi', '\U0001f310'),
@ -94,7 +92,6 @@ sxng_locales = (
('ru-RU', 'Русский', 'Россия', 'Russian', '\U0001f1f7\U0001f1fa'),
('sk', 'Slovenčina', '', 'Slovak', '\U0001f310'),
('sl', 'Slovenščina', '', 'Slovenian', '\U0001f310'),
('sq', 'Shqip', '', 'Albanian', '\U0001f310'),
('sv', 'Svenska', '', 'Swedish', '\U0001f310'),
('sv-SE', 'Svenska', 'Sverige', 'Swedish', '\U0001f1f8\U0001f1ea'),
('ta', 'தமிழ்', '', 'Tamil', '\U0001f310'),
@ -103,8 +100,10 @@ sxng_locales = (
('tr', 'Türkçe', '', 'Turkish', '\U0001f310'),
('tr-TR', 'Türkçe', 'Türkiye', 'Turkish', '\U0001f1f9\U0001f1f7'),
('uk', 'Українська', '', 'Ukrainian', '\U0001f310'),
('uk-UA', 'Українська', 'Україна', 'Ukrainian', '\U0001f1fa\U0001f1e6'),
('ur', 'اردو', '', 'Urdu', '\U0001f310'),
('vi', 'Tiếng Việt', '', 'Vietnamese', '\U0001f310'),
('vi-VN', 'Tiếng Việt', 'Việt Nam', 'Vietnamese', '\U0001f1fb\U0001f1f3'),
('zh', '中文', '', 'Chinese', '\U0001f310'),
('zh-CN', '中文', '中国', 'Chinese', '\U0001f1e8\U0001f1f3'),
('zh-HK', '中文', '中國香港特別行政區', 'Chinese', '\U0001f1ed\U0001f1f0'),

View File

@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-28 15:23+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -346,28 +346,28 @@ msgstr "toe"
msgid "answered"
msgstr "geantwoord"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Geen item gevind"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Bron"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Fout met die laai van die volgende bladsy"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Ongeldige opstellings, redigeer asb jou voorkeure"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Ongeldige opstellings"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "soekfout"
@ -687,26 +687,26 @@ msgstr "Kontak instansie onderhouer"
msgid "Click on the magnifier to perform search"
msgstr "Kliek op die vergrootglas om 'n soektog te doen"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Lengte"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "sienings"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Outeur"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "gekas"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "gevolmagtig"
@ -781,27 +781,27 @@ msgstr "Algemeen"
msgid "Default categories"
msgstr "Verstek kategoriee"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Gebruikerskoppelvlak"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privaatheid"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Enjins"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Huidige gebruikte soekenjins"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Spesiale Navrae"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Koekies"
@ -1221,14 +1221,6 @@ msgstr "Gewig"
msgid "Max time"
msgstr "Maks tyd"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -22,18 +22,18 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-10-04 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Arabic <https://translate.codeberg.org/projects/searxng/"
"searxng/ar/>\n"
"Language: ar\n"
"Language-Team: Arabic "
"<https://translate.codeberg.org/projects/searxng/searxng/ar/>\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : "
"n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -354,28 +354,28 @@ msgstr "مغلق"
msgid "answered"
msgstr "أُجيبت"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "تعذر العثور على عناصر"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "المصدر"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "إعدادات غير صالحة"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "خطأ في البحث"
@ -690,26 +690,26 @@ msgstr "اتصال بالمشرف المخدم النموذجي"
msgid "Click on the magnifier to perform search"
msgstr "انقر على رمز المكبر للقيام بالبحث"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "الطول"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "المشاهدات"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "الكاتب"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "النسخة المخبأة"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "المخدم البروكسي"
@ -782,27 +782,27 @@ msgstr "الرئيسية"
msgid "Default categories"
msgstr "القوائم الإفتراضية"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "واجهة المستخدم"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "الخصوصية"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "المحركات"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "محركات البحث المُستخدَمة حاليًا"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "استفسارات خاصة"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "كعكات الكوكيز"
@ -1222,14 +1222,6 @@ msgstr "وَزن"
msgid "Max time"
msgstr "أقصى مدّة"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1973,4 +1965,3 @@ msgstr "إخفاء الفيديو"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "لم تتمكن محركات البحث من العثور على أية نتيجة"

View File

@ -12,23 +12,20 @@
# Salif Mehmed <mail@salif.eu>, 2023, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# krlsk <krlsk@users.noreply.translate.codeberg.org>, 2024.
# stoychevww <stoychevww@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-13 03:30+0000\n"
"Last-Translator: stoychevww <stoychevww@users.noreply.translate.codeberg.org>"
"\n"
"Language-Team: Bulgarian <https://translate.codeberg.org/projects/searxng/"
"searxng/bg/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-05-25 08:18+0000\n"
"Last-Translator: krlsk <krlsk@users.noreply.translate.codeberg.org>\n"
"Language: bg\n"
"Language-Team: Bulgarian "
"<https://translate.codeberg.org/projects/searxng/searxng/bg/>\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.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -169,7 +166,7 @@ msgstr "тъмен"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "черно"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -337,40 +334,40 @@ msgstr "Автор"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "отворено"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "Затворено"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "Отговорено"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Не е намерен артикул"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Източник"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Грешка при зареждането на следващата страница"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Неправилни настройки, моля проверете предпочитанията си"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Невалидни настройки"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "Грешка при търсенето"
@ -456,7 +453,7 @@ msgstr "Изчислете {functions} на аргументите"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Синоними"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -681,26 +678,26 @@ msgstr "Контакт за връзка с поддържащия публич
msgid "Click on the magnifier to perform search"
msgstr "Кликнете лупичката, за да изпълните търсене"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Дължина"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Автор"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "кеширана"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "прекарана"
@ -777,27 +774,27 @@ msgstr "Общи"
msgid "Default categories"
msgstr "Първоначални категории"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Потребителски интерфейс"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Поверителност"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Търсачки"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Използвани търсачки в момента"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Специялни Запитвания"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Бисквитки"
@ -1222,14 +1219,6 @@ msgstr "Тегло"
msgid "Max time"
msgstr "Максимално време"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1978,3 +1967,4 @@ msgstr "скрий видеото"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Търсачките не можаха да намерят резултати"

View File

@ -18,17 +18,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-10-04 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Bengali <https://translate.codeberg.org/projects/searxng/"
"searxng/bn/>\n"
"Language: bn\n"
"Language-Team: Bengali "
"<https://translate.codeberg.org/projects/searxng/searxng/bn/>\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -349,28 +349,28 @@ msgstr "বন্ধ"
msgid "answered"
msgstr "উত্তরকৃত"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "কোন আইটেম পাওয়া যায়নি"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "উৎস"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "পরবর্তী পৃষ্ঠাটি লোড করায় ত্রুটি দেখা যাচ্ছে"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "অকেজো সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "অকেজো সেটিংস"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "সার্চ ত্রুটি"
@ -685,26 +685,26 @@ msgstr "ইন্সট্যান্স রক্ষণাবেক্ষণ
msgid "Click on the magnifier to perform search"
msgstr "অনুসন্ধান করতে ম্যাগনিফায়ার আইকনে ক্লিক করুন"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "দৈর্ঘ্য"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "ভিউ"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "লেখক"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "ক্যাশকৃত"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "প্রক্সিকৃত"
@ -781,27 +781,27 @@ msgstr "সাধারণ"
msgid "Default categories"
msgstr "ডিফল্ট বিভাগ"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "ব‍্যবহারকারীর সম্মুখে প্রদর্শিত"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "গোপনীয়তা"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "ইঞ্জিন"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "বর্তমানে ব্যবহৃত সার্চ ইঞ্জিন"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "বিশেষ প্রশ্ন"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "কুকি"
@ -1219,14 +1219,6 @@ msgstr "ওজন"
msgid "Max time"
msgstr "সর্বোচ্চ সময়"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1731,4 +1723,3 @@ msgstr "ভিডিও লুকিয়ে ফেলুন"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "ইঞ্জিন ফলাফল পুনরুদ্ধার করতে পারেছেনা"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2023-06-02 07:07+0000\n"
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
"Language: bo\n"
@ -340,28 +340,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr ""
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
@ -658,26 +658,26 @@ msgstr ""
msgid "Click on the magnifier to perform search"
msgstr "ས་བོན་སྟེང་གི་སྦྲེལ་ཐག་ལ་རྡེབ་ནས་འཚོལ་བཤེར་གཏོང་།"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "འདྲ་བཤུས་རྒྱབ་ཚར།"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "མངག་བཅོལ་བྱེད་ཟིན།"
@ -750,27 +750,27 @@ msgstr "སྤྱི་བཏང་།"
msgid "Default categories"
msgstr "གཞི་བཞག་གི་རིགས།"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "མདུན་ངོས།"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "མི་སྒེར་གསང་དོན།"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "སྒུལ་བྱེད།"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "ཉེ་ལམ་སྤྱད་ཟིན་པའི་འཚོལ་བྱེད་སྒུལ་བྱེད།"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr ""
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "རྐང་རྗེས།"
@ -1182,14 +1182,6 @@ msgstr ""
msgid "Max time"
msgstr "མང་མཐའི་དུས་ཚོད།"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-08-16 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -352,28 +352,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "No s'ha trobat cap element"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Origen"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "S'ha produït un error en carregar la següent pàgina"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "La configuració no és vàlida, editeu-la"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "La configuració no és vàlida"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "error de cerca"
@ -686,26 +686,26 @@ msgstr "Contacteu amb el mantenidor de la instància"
msgid "Click on the magnifier to perform search"
msgstr "Feu clic en la lupa per a executar la cerca"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Longitud"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en memòria cau"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "en servidor intermediari"
@ -782,27 +782,27 @@ msgstr "General"
msgid "Default categories"
msgstr "Categories predeterminades"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Interfície de l'usuari"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privadesa"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Motors de cerca"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Cercadors usats actualment"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Consultes especials"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Galetes"
@ -1223,14 +1223,6 @@ msgstr "Pes"
msgid "Max time"
msgstr "Temps màxim"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -18,8 +18,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-06 14:31+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-10-03 19:18+0000\n"
"Last-Translator: Fjuro <fjuro@alius.cz>\n"
"Language-Team: Czech <https://translate.codeberg.org/projects/searxng/"
"searxng/cs/>\n"
@ -350,28 +350,28 @@ msgstr "zavřené"
msgid "answered"
msgstr "zodpovězené"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Nic nenalezeno"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "zdroj"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Chyba při načítání další stránky"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Neplatné nastavení, upravte své předvolby"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Neplatné nastavení"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "chyba vyhledávání"
@ -686,26 +686,26 @@ msgstr "Kontaktujte správce instance"
msgid "Click on the magnifier to perform search"
msgstr "Vyhledávání provedete kliknutím na lupu"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Délka"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Zhlédnutí"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "archivovaná verze"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "přes proxy"
@ -780,27 +780,27 @@ msgstr "Obecné"
msgid "Default categories"
msgstr "Základní kategorie"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Uživatelské rozhraní"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Soukromí"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Vyhledávače"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Aktuálně používané vyhledávače"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Zvláštní dotazy"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1220,14 +1220,6 @@ msgstr "Váha"
msgid "Max time"
msgstr "Max. čas"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Zobrazit ikony"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Zobrazit ikony webů vedle výsledků vyhledávání"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-07-28 14:18+0000\n"
"Last-Translator: EifionLlwyd "
"<EifionLlwyd@users.noreply.translate.codeberg.org>\n"
@ -346,28 +346,28 @@ msgstr "ar gau"
msgid "answered"
msgstr "wedi'i ateb"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Ni chanfuwyd eitem"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Ffynhonnell"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Gwall wrth lwytho'r dudalen nesaf"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Gosodiadau annilys, golygwch eich dewisiadau"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Gosodiadau annilys"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "gwall chwilio"
@ -687,26 +687,26 @@ msgstr "Cysylltu â chynhaliwr y gweinydd"
msgid "Click on the magnifier to perform search"
msgstr "Cliciwch ar y chwyddwydr i chwilio"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Hyd"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Awdur"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "wedi'i storio"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "wedi'i ddirprwyo"
@ -781,27 +781,27 @@ msgstr "Cyffredinol"
msgid "Default categories"
msgstr "Categorïau rhagosodedig"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Rhyngwyneb defnyddiwr"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Preifatrwydd"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Peiriannau"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Peiriannau a ddefnyddir ar hyn o bryd"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Ymholiadau arbennig"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Briwsion"
@ -1220,14 +1220,6 @@ msgstr "Pwysau"
msgid "Max time"
msgstr "Amser hiraf"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -9,23 +9,21 @@
# return42 <markus.heiser@darmarit.de>, 2023.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# lolmeOzzi <lolmeOzzi@users.noreply.translate.codeberg.org>, 2024.
# AndersNordh <AndersNordh@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-08 13:41+0000\n"
"Last-Translator: AndersNordh <AndersNordh@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Danish <https://translate.codeberg.org/projects/searxng/"
"searxng/da/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-05 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: da\n"
"Language-Team: Danish "
"<https://translate.codeberg.org/projects/searxng/searxng/da/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -166,7 +164,7 @@ msgstr "mørk"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "sort"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -339,35 +337,35 @@ msgstr "Åbn"
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "lukket"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "svaret"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Intet fundet"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Kilde"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Fejl ved indlæsning af den næste side"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Ugyldige indstillinger, redigér venligst dine valg"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Ugyldig indstilling"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "søgefejl"
@ -453,7 +451,7 @@ msgstr "Beregn {functions} af parametrene"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Synonymer"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -541,13 +539,11 @@ msgstr "hash-digest"
#: searx/plugins/hostnames.py:103
msgid "Hostnames plugin"
msgstr "Værtsnavne plugin"
msgstr ""
#: searx/plugins/hostnames.py:104
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Omskriv værtsnavne, fjern resultater eller prioriter dem baseret på "
"værtsnavnet"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -575,11 +571,11 @@ msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "Din IP er: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "Din brugeragent er: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
@ -683,26 +679,26 @@ msgstr "Kontakt tilbyderen af instansen"
msgid "Click on the magnifier to perform search"
msgstr "Klik på forstørrelsesglasset for at udføre søgning"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Længde"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visninger"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Forfatter"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "cachet"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "viderestillet"
@ -779,27 +775,27 @@ msgstr "Generelt"
msgid "Default categories"
msgstr "Standardkategorier"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Brugerinterface"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privatliv"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Søgemaskiner"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Pt. anvendte søgemaskiner"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Specielle Søgetermer"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1220,14 +1216,6 @@ msgstr "Vægt"
msgid "Max time"
msgstr "Maks-tid"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Favicon resolver"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Vis favicons i nærheden af søgeresultater"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1983,3 +1971,4 @@ msgstr "skjul video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Søgemotorer kan ikke hente resultater"

View File

@ -26,8 +26,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-06 14:31+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-10-04 07:09+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: German <https://translate.codeberg.org/projects/searxng/"
"searxng/de/>\n"
@ -357,28 +357,28 @@ msgstr "geschlossen"
msgid "answered"
msgstr "beantwortet"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Keine Einträge gefunden"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Quelle"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Fehler beim Laden der nächsten Seite"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Ungültige Einstellungen, bitte Einstellungen ändern"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Ungültige Einstellungen"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "Suchfehler"
@ -698,26 +698,26 @@ msgstr "Kontakt zum Betreuer der Instanz"
msgid "Click on the magnifier to perform search"
msgstr "klicke auf die Lupe, um die Suche zu starten"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Länge"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Aufrufe"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "Im Cache"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxy"
@ -796,27 +796,27 @@ msgstr "Allgemein"
msgid "Default categories"
msgstr "Standardkategorien"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Benutzeroberfläche"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privatsphäre"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Suchmaschinen"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Aktuell benutzte Suchmaschinen"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Besondere Abfragen"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1237,14 +1237,6 @@ msgstr "Gewichtung"
msgid "Max time"
msgstr "max. Zeit"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Favicon Anbieter"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Anzeigen der Favicons neben dem Suchergebnis"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2022-11-04 07:18+0000\n"
"Last-Translator: Landhoo School Students "
"<landhooschoolstudents@gmail.com>\n"
@ -338,28 +338,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr ""
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr ""
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr ""
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr ""
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr ""
@ -656,26 +656,26 @@ msgstr ""
msgid "Click on the magnifier to perform search"
msgstr ""
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -748,27 +748,27 @@ msgstr ""
msgid "Default categories"
msgstr ""
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr ""
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr ""
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr ""
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr ""
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr ""
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr ""
@ -1180,14 +1180,6 @@ msgstr ""
msgid "Max time"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-05 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -348,28 +348,28 @@ msgstr "κλειστό"
msgid "answered"
msgstr "απάντησε"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Δεν βρέθηκαν αντικείμενα"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Πηγή"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Μη έγκυρες ρυθμίσεις"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "σφάλμα αναζήτησης"
@ -689,26 +689,26 @@ msgstr "Επικοινωνήστε με τον συντηρητή αυτής τ
msgid "Click on the magnifier to perform search"
msgstr "Κάντε κλικ στο μεγεθυντικό φακό για να πραγματοποιήσετε αναζήτηση"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Μήκος"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Συγγραφέας"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "προσωρινά αποθηκευμένο"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "Διαμεσολαβημένα"
@ -787,27 +787,27 @@ msgstr "Γενικά"
msgid "Default categories"
msgstr "Προεπιλεγμένες κατηγορίες"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Διεπαφή χρήστη"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Ιδιωτικότητα"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Μηχανές"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Μηχανές αναζήτησης που χρησιμοποιούνται"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Ειδικά Ερωτήματα"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1233,14 +1233,6 @@ msgstr "Βάρος"
msgid "Max time"
msgstr "Μέγιστος χρόνος"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
@ -336,28 +336,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr ""
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr ""
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr ""
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr ""
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr ""
@ -654,26 +654,26 @@ msgstr ""
msgid "Click on the magnifier to perform search"
msgstr ""
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr ""
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr ""
@ -746,27 +746,27 @@ msgstr ""
msgid "Default categories"
msgstr ""
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr ""
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr ""
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr ""
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr ""
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr ""
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr ""
@ -1178,14 +1178,6 @@ msgstr ""
msgid "Max time"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-05 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -348,28 +348,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Nenio trovita"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Fonto"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Eraro dum la ŝarĝado de la sekvan paĝon"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Nevalidaj agordoj, bonvolu redaktu viajn agordojn"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Nevalidaj agordoj"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "serĉa eraro"
@ -684,26 +684,26 @@ msgstr "Kontaktu instancon prizorganto"
msgid "Click on the magnifier to perform search"
msgstr "Alklaku la lupeon por serĉi"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Longo"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Verkisto"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "kaŝmemorigita"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "prokurata"
@ -776,27 +776,27 @@ msgstr "Ĝenerala"
msgid "Default categories"
msgstr "Defaŭltaj kategorioj"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Fasado"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privateco"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Serĉiloj"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Aktuale uzataj serĉiloj"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Specialaj Demandoj"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Kuketoj"
@ -1216,14 +1216,6 @@ msgstr "Pezo"
msgid "Max time"
msgstr "Maksimuma tempo"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -33,22 +33,20 @@
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# kny5 <kny5@users.noreply.translate.codeberg.org>, 2024.
# Atul_Eterno <Atul_Eterno@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-11-14 14:07+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
"searxng/es/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-15 14:18+0000\n"
"Last-Translator: kny5 <kny5@users.noreply.translate.codeberg.org>\n"
"Language: es\n"
"Language-Team: Spanish "
"<https://translate.codeberg.org/projects/searxng/searxng/es/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.8.1\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -154,7 +152,7 @@ msgstr "preguntas y respuestas"
#. CATEGORY_GROUPS['REPOS']
#: searx/searxng.msg
msgid "repos"
msgstr "repositorios"
msgstr "repos"
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
#: searx/searxng.msg
@ -189,7 +187,7 @@ msgstr "oscuro"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "negro"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -369,28 +367,28 @@ msgstr "cerrar"
msgid "answered"
msgstr "contestado"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Ningún artículo encontrado"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Fuente"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Error al cargar la siguiente página"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Ajustes inválidos, por favor, cambia tus preferencias"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Ajustes inválidos"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "error en la búsqueda"
@ -476,7 +474,7 @@ msgstr "Calcular las funciones {functions} de parámetros dados"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Sinónimos"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -708,26 +706,26 @@ msgstr "Contactar al mantenedor de la instancia"
msgid "Click on the magnifier to perform search"
msgstr "Haz clic en la lupa para realizar la búsqueda"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Longitud"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visualizaciones"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en caché"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "por un proxy"
@ -802,27 +800,27 @@ msgstr "General"
msgid "Default categories"
msgstr "Categorías predeterminadas"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Interfaz de usuario"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privacidad"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Motores"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Motores de búsqueda actualmente en uso"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Consultas Especiales"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1243,14 +1241,6 @@ msgstr "Peso"
msgid "Max time"
msgstr "Tiempo máximo"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Buscador de favicon"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Mostrar los favicons al lado de los resultados de búsqueda"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -2019,3 +2009,4 @@ msgstr "ocultar video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Los motores no pueden obtener resultados"

View File

@ -16,18 +16,17 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-21 20:07+0000\n"
"Last-Translator: Priit Jõerüüt <jrtcdbrg@users.noreply.translate.codeberg."
"org>\n"
"Language-Team: Estonian <https://translate.codeberg.org/projects/searxng/"
"searxng/et/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-10-03 11:11+0000\n"
"Last-Translator: Priit Jõerüüt "
"<jrtcdbrg@users.noreply.translate.codeberg.org>\n"
"Language: et\n"
"Language-Team: Estonian "
"<https://translate.codeberg.org/projects/searxng/searxng/et/>\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.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -348,28 +347,28 @@ msgstr "suletud"
msgid "answered"
msgstr "vastatud"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Üksust ei leitud"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Allikas"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Viga järgmise lehekülje laadimisel"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Sobimatud seaded, palun muuda oma eelistusi"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Sobimatud seaded"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "otsingu viga"
@ -455,7 +454,7 @@ msgstr "Arvuta argumentide {functions}"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Sünonüümid"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -686,26 +685,26 @@ msgstr "Võta ühendust serveri haldajaga"
msgid "Click on the magnifier to perform search"
msgstr "Otsingu teostamiseks klõpsa luubile"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Pikkus"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Vaateid"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "vahemälus"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proksiserveris"
@ -782,27 +781,27 @@ msgstr "Üldine"
msgid "Default categories"
msgstr "Vaikimisi kategooriad"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Kasutajaliides"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privaatsus"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Otsingumootorid"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Hetkel kasutatud otsingumootorid"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Spetsiaalsed päringud"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Küpsised"
@ -1155,8 +1154,8 @@ msgid ""
"Note: specifying custom settings in the search URL can reduce privacy by "
"leaking data to the clicked result sites."
msgstr ""
"Märkus: lekitades andmed klõpsatud tulemuste saitidele võib täpsemate "
"seadete määramine otsingu URLis vähendada privaatsust."
"Märkus: täpsemate seadete määramine otsingu URLis võib vähendada "
"privaatsust, lekitades andmed klõpsatud tulemuste saitidele."
#: searx/templates/simple/preferences/cookies.html:35
msgid "URL to restore your preferences in another browser"
@ -1222,14 +1221,6 @@ msgstr "Kaal"
msgid "Max time"
msgstr "Maksimaalne aeg"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Saidiikoonide kuvamine"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Kuva otsingutulemuste kõrval saidiikoone"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1963,3 +1954,4 @@ msgstr "peida video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Otsingumootorid ei anna päringutele vastuseid"

View File

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-09 11:18+0000\n"
"Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>"
"\n"
@ -347,28 +347,28 @@ msgstr "itxita"
msgid "answered"
msgstr "erantzunda"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Ez da elementurik aurkitu"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Iturria"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Errorea hurrengo orrialdea kargatzean"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Ezarpen baliogabeak, editatu zure hobespenak"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Ezarpen baliogabeak"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "bilaketa akatsa"
@ -685,26 +685,26 @@ msgstr "Instantziaren mantentzailearekin harremanetan jarri"
msgid "Click on the magnifier to perform search"
msgstr "Lupan sakatu bilaketa egiteko"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Luzera"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Ikuspegiak"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Egilea"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "cachean gordeta"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxyan gordeta"
@ -777,27 +777,27 @@ msgstr "Orokorra"
msgid "Default categories"
msgstr "Lehenetsitako kategoriak"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Erabiltzailearen interfazea"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Pribatutasuna"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Bilatzaileak"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Erabiltzen ari diren bilatzaileak"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Kontsulta bereziak"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookieak"
@ -1217,14 +1217,6 @@ msgstr "Pisua"
msgid "Max time"
msgstr "Gehienezko denbora"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-16 18:18+0000\n"
"Last-Translator: MPBDev <MPBDev@users.noreply.translate.codeberg.org>\n"
"Language: fa_IR\n"
@ -358,28 +358,28 @@ msgstr "بسته شده"
msgid "answered"
msgstr "جواب داده شده"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "چیزی پیدا نشد"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "منبع"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "خطا در بارگزاری صفحه جدید"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "تنظیمات نادرست است، لطفا تنظیمات جستجو را تغییر دهید"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "تنظیمات نادرست"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "خطای جست‌وجو"
@ -700,26 +700,26 @@ msgstr "تماس با مسئول‌نگهداری نمونه"
msgid "Click on the magnifier to perform search"
msgstr "برای انجام جست‌وجو روی ذره‌بین کلیک کنید"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "طول"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "بازدید‌ها"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "نویسنده"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "جاسازی‌شده"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "پروکسی‌شده"
@ -794,27 +794,27 @@ msgstr "کلی"
msgid "Default categories"
msgstr "دسته‌بندی‌های پیش‌گزیده"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "رابط کاربری"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "حریم شخصی"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "موتورها"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "موتور جستجو های در حال استفاده"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "مقدارهای ویژه"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "کلوچک‌ها"
@ -1232,14 +1232,6 @@ msgstr "وزن"
msgid "Max time"
msgstr "زمان بیشینه"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -12,23 +12,21 @@
# Implosion <Implosion@users.noreply.translate.codeberg.org>, 2024.
# artnay <artnay@users.noreply.translate.codeberg.org>, 2024.
# jonkke9 <jonkke9@users.noreply.translate.codeberg.org>, 2024.
# Ricky-Tigg <Ricky-Tigg@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-08 13:41+0000\n"
"Last-Translator: Ricky-Tigg <Ricky-Tigg@users.noreply.translate.codeberg.org>"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-05 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language-Team: Finnish <https://translate.codeberg.org/projects/searxng/"
"searxng/fi/>\n"
"Language: fi\n"
"Language-Team: Finnish "
"<https://translate.codeberg.org/projects/searxng/searxng/fi/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"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.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -169,7 +167,7 @@ msgstr "tumma"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "musta"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -337,7 +335,7 @@ msgstr "tekijä"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "Avaa"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:149 searx/searxng.msg
@ -349,28 +347,28 @@ msgstr "suljettu"
msgid "answered"
msgstr "vastattu"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Tietuetta ei löytynyt"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Lähde"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Virhe ladattaessa seuraavaa sivua"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Virheelliset asetukset, muokkaa siis asetuksia"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Virheelliset asetukset"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "hakuvirhe"
@ -456,7 +454,7 @@ msgstr "Laske argumenttien {functions}"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Synonyymit"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -543,13 +541,11 @@ msgstr "hash-digest"
#: searx/plugins/hostnames.py:103
msgid "Hostnames plugin"
msgstr "Isäntänimien laajennus"
msgstr ""
#: searx/plugins/hostnames.py:104
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Kirjoita isäntänimiä uudelleen, poista tuloksia tai priorisoi ne isäntänimen "
"perusteella"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -687,26 +683,26 @@ msgstr "Ota yhteyttä palvelun ylläpitäjään"
msgid "Click on the magnifier to perform search"
msgstr "Napsauta suurennuslasia suorittaaksesi haun"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Pituus"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Näkymät"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Tekijä"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "välimuistissa"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "välityspalvelimella"
@ -781,27 +777,27 @@ msgstr "Yleiset"
msgid "Default categories"
msgstr "Oletusluokat"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Käyttöliittymä"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Yksityisyys"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Hakukoneet"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Nyt käytetyt hakukoneet"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Erityiset kyselyt"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Evästeet"
@ -1073,7 +1069,7 @@ msgstr "Vaihtaa toiseen instanssiin:"
#: searx/templates/simple/messages/no_results.html:24
msgid "Search for another query or select another category."
msgstr "Hae toista kyselyä tai valitse toinen luokka."
msgstr ""
#: searx/templates/simple/messages/no_results.html:25
msgid "Go back to the previous page using the previous page button."
@ -1222,14 +1218,6 @@ msgstr "Paino"
msgid "Max time"
msgstr "Enimmäisaika"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Favicon-ratkaisija"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Näytä Faviconit hakutulosten lähellä"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1981,3 +1969,4 @@ msgstr "piilota video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Moottorit eivät voi palauttaa tuloksia"

View File

@ -15,18 +15,18 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-11 01:31+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>\n"
"Language-Team: Filipino <https://translate.codeberg.org/projects/searxng/"
"searxng/fil/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-08-27 16:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: fil\n"
"Language-Team: Filipino "
"<https://translate.codeberg.org/projects/searxng/searxng/fil/>\n"
"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4"
" || n % 10 != 6 || n % 10 != 9);\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n == 1 || n==2 || n==3) || (n % 10 != 4 || "
"n % 10 != 6 || n % 10 != 9);\n"
"X-Generator: Weblate 5.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -167,7 +167,7 @@ msgstr "madilim"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "itim"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -187,7 +187,7 @@ msgstr "Karaniwang temp."
#. WEATHER_TERMS['CLOUD COVER']
#: searx/engines/open_meteo.py:91 searx/searxng.msg
msgid "Cloud cover"
msgstr "sakop ng mga ulap"
msgstr ""
#. WEATHER_TERMS['CONDITION']
#: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
@ -210,25 +210,25 @@ msgstr "Hapon"
#: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
#: searx/engines/wttr.py:59 searx/searxng.msg
msgid "Feels like"
msgstr "parang pakiramdam ng"
msgstr ""
#. WEATHER_TERMS['HUMIDITY']
#: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
#: searx/engines/wttr.py:68 searx/searxng.msg
msgid "Humidity"
msgstr "halumimig"
msgstr ""
#. WEATHER_TERMS['MAX TEMP.']
#: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
#: searx/searxng.msg
msgid "Max temp."
msgstr "pinakamataas na temperatura"
msgstr ""
#. WEATHER_TERMS['MIN TEMP.']
#: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
#: searx/searxng.msg
msgid "Min temp."
msgstr "pinikamababang temperatura"
msgstr ""
#. WEATHER_TERMS['MORNING']
#: searx/engines/wttr.py:100 searx/searxng.msg
@ -248,127 +248,127 @@ msgstr "Tanghali"
#. WEATHER_TERMS['PRESSURE']
#: searx/engines/open_meteo.py:95 searx/searxng.msg
msgid "Pressure"
msgstr "presyon"
msgstr ""
#. WEATHER_TERMS['SUNRISE']
#: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
#: searx/searxng.msg
msgid "Sunrise"
msgstr "silang ng araw"
msgstr ""
#. WEATHER_TERMS['SUNSET']
#: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
#: searx/searxng.msg
msgid "Sunset"
msgstr "sibsib ng araw"
msgstr ""
#. WEATHER_TERMS['TEMPERATURE']
#: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
#: searx/engines/wttr.py:55 searx/searxng.msg
msgid "Temperature"
msgstr "temperatura"
msgstr ""
#. WEATHER_TERMS['UV INDEX']
#: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
#: searx/searxng.msg
msgid "UV index"
msgstr "index ng UV"
msgstr ""
#. WEATHER_TERMS['VISIBILITY']
#: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
#: searx/searxng.msg
msgid "Visibility"
msgstr "bisibílidád"
msgstr ""
#. WEATHER_TERMS['WIND']
#: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
#: searx/engines/wttr.py:62 searx/searxng.msg
msgid "Wind"
msgstr "hangin"
msgstr ""
#. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
#: searx/engines/lemmy.py:85 searx/searxng.msg
msgid "subscribers"
msgstr "mga suskritor"
msgstr ""
#. SOCIAL_MEDIA_TERMS['POSTS']
#: searx/engines/lemmy.py:86 searx/searxng.msg
msgid "posts"
msgstr "mga post"
msgstr ""
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
#: searx/engines/lemmy.py:87 searx/searxng.msg
msgid "active users"
msgstr "mga aktibong gumagamit"
msgstr ""
#. SOCIAL_MEDIA_TERMS['COMMENTS']
#: searx/engines/discourse.py:157 searx/engines/hackernews.py:78
#: searx/engines/lemmy.py:130 searx/searxng.msg
msgid "comments"
msgstr "mga komento"
msgstr ""
#. SOCIAL_MEDIA_TERMS['USER']
#: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
msgid "user"
msgstr "tagagamit"
msgstr ""
#. SOCIAL_MEDIA_TERMS['COMMUNITY']
#: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
msgid "community"
msgstr "pamayanan"
msgstr ""
#. SOCIAL_MEDIA_TERMS['POINTS']
#: searx/engines/hackernews.py:78 searx/searxng.msg
msgid "points"
msgstr "mga punto"
msgstr ""
#. SOCIAL_MEDIA_TERMS['TITLE']
#: searx/searxng.msg
msgid "title"
msgstr "titulo"
msgstr ""
#. SOCIAL_MEDIA_TERMS['AUTHOR']
#: searx/engines/hackernews.py:81 searx/searxng.msg
msgid "author"
msgstr "maykatha"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "bukas"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "sarado"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "sinagot"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Walang nakita na aytem"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Pinagmulan"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Error sa paglo-load ng susunod na pahina"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Di-wastong mga setting, pakibago ang iyong mga kagustuhan"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Di-wastong mga setting"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "nagkaproblema sa paghahanap ng mga resulta"
@ -454,7 +454,7 @@ msgstr "Tuusin ang {functions} ng pangangatuwiran"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "síngkahulugán"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -528,7 +528,7 @@ msgstr "Kalidad ng file"
#: searx/plugins/calculator.py:14
msgid "Calculate mathematical expressions via the search bar"
msgstr "kalkulahin ang matematika gamit ang rehas ng pagsaliksik"
msgstr ""
#: searx/plugins/hash_plugin.py:10
msgid "Converts strings to different hash digests."
@ -540,13 +540,11 @@ msgstr "Hash digest"
#: searx/plugins/hostnames.py:103
msgid "Hostnames plugin"
msgstr "Hostnames plugin"
msgstr ""
#: searx/plugins/hostnames.py:104
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Isulat muli ang mga hostname, alisin ang mga resulta o unahin ang mga ito "
"batay sa hostname"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -574,11 +572,11 @@ msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "Ang iyong IP ay: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "Ang iyong user-agent ay: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
@ -625,7 +623,7 @@ msgstr "Alisin ang tracker sa ibabalik na URL"
#: searx/plugins/unit_converter.py:29
msgid "Convert between units"
msgstr "ipalit sa pamamagitan ng mga yunit"
msgstr ""
#: searx/templates/simple/404.html:4
msgid "Page not found"
@ -686,26 +684,26 @@ msgstr "Kontakin ang iyong instance maintainer"
msgid "Click on the magnifier to perform search"
msgstr "Pindutin ang magnifier para maghanap"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Haba"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "mga pananaw"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Awtor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "naka-cache"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxied"
@ -782,27 +780,27 @@ msgstr "Pangkalahatan"
msgid "Default categories"
msgstr "Ang mga default na uri"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Ang User interface"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Pagiging Pribado"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Engines"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Ang ginagamit natin na search engines"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Mga Espesyal na Queries"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -952,7 +950,7 @@ msgstr "Mga mensahe mula sa mga search engine"
#: searx/templates/simple/elements/engines_msg.html:7
msgid "seconds"
msgstr "mga segundo"
msgstr ""
#: searx/templates/simple/elements/search_url.html:3
msgid "Search URL"
@ -1204,11 +1202,11 @@ msgstr ""
#: searx/templates/simple/preferences/engines.html:15
msgid "Enable all"
msgstr "paganahin ang lahat"
msgstr ""
#: searx/templates/simple/preferences/engines.html:16
msgid "Disable all"
msgstr "huwag paganahin ang lahat"
msgstr ""
#: searx/templates/simple/preferences/engines.html:25
msgid "!bang"
@ -1226,14 +1224,6 @@ msgstr "Timbang"
msgid "Max time"
msgstr "Ang max na oras"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "favicon solver"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Ipakita ang mga favicon malapit sa mga resulta ng paghahanap"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1452,11 +1442,11 @@ msgstr "Bersyon"
#: searx/templates/simple/result_templates/packages.html:18
msgid "Maintainer"
msgstr "Tagapangasiwa"
msgstr ""
#: searx/templates/simple/result_templates/packages.html:24
msgid "Updated at"
msgstr "Na-update sa"
msgstr ""
#: searx/templates/simple/result_templates/packages.html:30
#: searx/templates/simple/result_templates/paper.html:25
@ -1465,7 +1455,7 @@ msgstr "Mga Tag/Tatak"
#: searx/templates/simple/result_templates/packages.html:36
msgid "Popularity"
msgstr "Kasikatan"
msgstr ""
#: searx/templates/simple/result_templates/packages.html:42
msgid "License"
@ -1473,11 +1463,11 @@ msgstr "Lisensya"
#: searx/templates/simple/result_templates/packages.html:52
msgid "Project"
msgstr "proyekto"
msgstr ""
#: searx/templates/simple/result_templates/packages.html:55
msgid "Project homepage"
msgstr "homepage ng proyekto"
msgstr ""
#: searx/templates/simple/result_templates/paper.html:5
msgid "Published date"
@ -1991,3 +1981,4 @@ msgstr "itago ang video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Hindi makuha ng engines ang mga resulta"

View File

@ -25,22 +25,20 @@
# wags07 <wags07@users.noreply.translate.codeberg.org>, 2024.
# Aeris1One <Aeris1One@users.noreply.translate.codeberg.org>, 2024.
# kratos <kratos@users.noreply.translate.codeberg.org>, 2024.
# hemie143 <hemie143@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-18 07:22+0000\n"
"Last-Translator: hemie143 <hemie143@users.noreply.translate.codeberg.org>\n"
"Language-Team: French <https://translate.codeberg.org/projects/searxng/"
"searxng/fr/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-24 19:18+0000\n"
"Last-Translator: kratos <kratos@users.noreply.translate.codeberg.org>\n"
"Language: fr\n"
"Language-Team: French "
"<https://translate.codeberg.org/projects/searxng/searxng/fr/>\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"MIME-Version: 1.0\n"
"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.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -181,7 +179,7 @@ msgstr "sombre"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "noir"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -361,28 +359,28 @@ msgstr "Fermé"
msgid "answered"
msgstr "répondu"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Pas d'élément trouvé"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Source"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Erreur lors du chargement de la page suivante"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Paramètres non valides, veuillez éditer vos préférences"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Paramètres non valides"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "erreur de recherche"
@ -468,7 +466,7 @@ msgstr "Calcule les {functions} des arguments"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Synonymes"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -698,26 +696,26 @@ msgstr "Contacter le responsable de l'instance"
msgid "Click on the magnifier to perform search"
msgstr "Cliquez sur la loupe pour effectuer une recherche"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Durée"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "vues"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Auteur"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en cache"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxifié"
@ -794,27 +792,27 @@ msgstr "Général"
msgid "Default categories"
msgstr "Catégories par défaut"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Interface utilisateur"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Vie privée"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Moteurs"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Moteurs de recherche actuellement utilisés"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Requêtes spéciales"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1235,14 +1233,6 @@ msgstr "Poids"
msgid "Max time"
msgstr "Temps max"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Résolveur de Favicon"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Affiche les favicons à côté des résultats de recherche"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -2015,3 +2005,4 @@ msgstr "cacher la vidéo"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Les moteurs ne peuvent pas récupérer de résultats"

View File

@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-08 13:41+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-10-04 07:09+0000\n"
"Last-Translator: ghose <ghose@users.noreply.translate.codeberg.org>\n"
"Language-Team: Galician <https://translate.codeberg.org/projects/searxng/"
"searxng/gl/>\n"
@ -344,28 +344,28 @@ msgstr "fechado"
msgid "answered"
msgstr "respondido"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Non se atoparon elementos"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Fonte"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Erro ao cargar a páxina seguinte"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Axustes non válidos, por favor edita a configuración"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Axustes non válidos"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "fallo na busca"
@ -680,26 +680,26 @@ msgstr "Contactar coa administración"
msgid "Click on the magnifier to perform search"
msgstr "Preme na lupa para realizar a busca"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Lonxitude"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visualizacións"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autoría"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "en memoria"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "a través de proxy"
@ -772,27 +772,27 @@ msgstr "Xeral"
msgid "Default categories"
msgstr "Categorías por defecto"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Interface"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privacidade"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Motores"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Motores de busca utilizados actualmente"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Consultas especiais"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Rastros"
@ -1214,14 +1214,6 @@ msgstr "Peso"
msgid "Max time"
msgstr "Tempo máx"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Orixe da icona da web"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Mostrar icona da web preto do resultado da busca"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-08-27 16:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
@ -353,28 +353,28 @@ msgstr "סגור"
msgid "answered"
msgstr "נענו"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "לא נמצא פריט"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "מקור"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "שגיאה בטעינת העמוד הבא"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "הגדרות לא תקינות, עליך לתקן את ההעדפות שלך"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "הגדרות לא תקינות"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "שגיאת חיפוש"
@ -686,26 +686,26 @@ msgstr "צור קשר עם מפעיל השירת"
msgid "Click on the magnifier to perform search"
msgstr "לחץ על זכוכית המגדלת כדי לחפש"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "אורך"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "צפיות"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "מחבר"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "מוטמן"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "פרוקסי"
@ -778,27 +778,27 @@ msgstr "כללי"
msgid "Default categories"
msgstr "קטגוריות עיקריות"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "ממשק משתמש"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "פרטיות"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "מנועים"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "מנועי חיפוש שמופעלים כעת"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "שאילתות מיוחדות"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "עוגיות"
@ -1216,14 +1216,6 @@ msgstr "משקל"
msgid "Max time"
msgstr "זמן מירבי"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -14,15 +14,13 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# Uzakmo <Uzakmo@users.noreply.translate.codeberg.org>, 2024.
# ganoci <ganoci@users.noreply.translate.codeberg.org>, 2024.
# madnomad <madnomad@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-04 21:35+0000\n"
"Last-Translator: madnomad <madnomad@users.noreply.translate.codeberg.org>"
"\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-06-08 13:18+0000\n"
"Last-Translator: ganoci <ganoci@users.noreply.translate.codeberg.org>\n"
"Language: hr\n"
"Language-Team: Croatian "
"<https://translate.codeberg.org/projects/searxng/searxng/hr/>\n"
@ -101,7 +99,7 @@ msgstr "karta"
#. CATEGORY_NAMES['ONIONS']
#: searx/searxng.msg
msgid "onions"
msgstr "luk"
msgstr "kapule"
#. CATEGORY_NAMES['SCIENCE']
#: searx/searxng.msg
@ -171,7 +169,7 @@ msgstr "tamno"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "crno"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -339,40 +337,40 @@ msgstr "autor"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "open"
msgstr "otvoren"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
#: searx/engines/discourse.py:149 searx/searxng.msg
msgid "closed"
msgstr "zatvoren"
msgstr ""
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "odgovoren"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Nije pronađena nijedna stavka"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Izvor"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Greška u učitavnju sljedeće stranice"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Nevažeće postavke, molimo uredite svoje postavke"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Nevažeće postavke"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "greška u pretraživanju"
@ -458,7 +456,7 @@ msgstr "Izračunajte {functions} argumenata"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Sinonimi"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -533,7 +531,7 @@ msgstr "Kvaliteta datoteke"
#: searx/plugins/calculator.py:14
msgid "Calculate mathematical expressions via the search bar"
msgstr "Izračunaj matematički izraz putem tražilice"
msgstr ""
#: searx/plugins/hash_plugin.py:10
msgid "Converts strings to different hash digests."
@ -545,13 +543,11 @@ msgstr "Izlaz hash funkcije"
#: searx/plugins/hostnames.py:103
msgid "Hostnames plugin"
msgstr "Dodatak (plugin) za Hostnames"
msgstr ""
#: searx/plugins/hostnames.py:104
msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
msgstr ""
"Prepiši hostanmes, ukloni rezultate ili ih prioritiziraj na temelju "
"hostname-a"
#: searx/plugins/oa_doi_rewrite.py:12
msgid "Open Access DOI rewrite"
@ -577,11 +573,11 @@ msgstr ""
#: searx/plugins/self_info.py:28
msgid "Your IP is: "
msgstr "Vaš IP je: "
msgstr ""
#: searx/plugins/self_info.py:31
msgid "Your user-agent is: "
msgstr "Vaš user-agent je: "
msgstr ""
#: searx/plugins/tor_check.py:24
msgid "Tor check plugin"
@ -624,7 +620,7 @@ msgstr "Ukloni elemente za označavanje rezultata vraćenih s URL-a"
#: searx/plugins/unit_converter.py:29
msgid "Convert between units"
msgstr "Konvertiraj između jedinica"
msgstr ""
#: searx/templates/simple/404.html:4
msgid "Page not found"
@ -685,26 +681,26 @@ msgstr "Kontaktirajte održavatelja instance"
msgid "Click on the magnifier to perform search"
msgstr "Kliknite na povećalo za izvođenje pretraživanja"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Dužina"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Pogledi"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autor"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "spremljeno"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "preko proxyja"
@ -777,27 +773,27 @@ msgstr "Općenito"
msgid "Default categories"
msgstr "Zadane kategorije"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Korisničko sučelje"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privatnost"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Tražilice"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Trenutno korištene tražilice"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Posebni upiti"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Kolačići"
@ -947,7 +943,7 @@ msgstr "Poruke s tražilica"
#: searx/templates/simple/elements/engines_msg.html:7
msgid "seconds"
msgstr "sekunde"
msgstr ""
#: searx/templates/simple/elements/search_url.html:3
msgid "Search URL"
@ -1196,11 +1192,11 @@ msgstr ""
#: searx/templates/simple/preferences/engines.html:15
msgid "Enable all"
msgstr "Omogući sve"
msgstr ""
#: searx/templates/simple/preferences/engines.html:16
msgid "Disable all"
msgstr "Onemogući sve"
msgstr ""
#: searx/templates/simple/preferences/engines.html:25
msgid "!bang"
@ -1218,14 +1214,6 @@ msgstr "Težina"
msgid "Max time"
msgstr "Maksimalno vrijeme"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -16,22 +16,20 @@
# meskobalazs <meskobalazs@users.noreply.translate.codeberg.org>, 2024.
# Kran21 <Kran21@users.noreply.translate.codeberg.org>, 2024.
# kratos <kratos@users.noreply.translate.codeberg.org>, 2024.
# elek <elek@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-09 08:06+0000\n"
"Last-Translator: elek <elek@users.noreply.translate.codeberg.org>\n"
"Language-Team: Hungarian <https://translate.codeberg.org/projects/searxng/"
"searxng/hu/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-24 19:18+0000\n"
"Last-Translator: kratos <kratos@users.noreply.translate.codeberg.org>\n"
"Language: hu\n"
"Language-Team: Hungarian "
"<https://translate.codeberg.org/projects/searxng/searxng/hu/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -172,7 +170,7 @@ msgstr "sötét"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "fekete"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -352,28 +350,28 @@ msgstr "Lezárt"
msgid "answered"
msgstr "megválaszolt"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Nincs találat"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Forrás"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Hiba a következő oldal betöltése során"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Érvénytelen beállítások, módosítsa őket"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Érvénytelen beállítások"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "keresési hiba"
@ -459,7 +457,7 @@ msgstr "{functions} alkalmazása az argumentumokon"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Szinonimák"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -690,26 +688,26 @@ msgstr "Kapcsolatfelvétel a példány karbantartójával"
msgid "Click on the magnifier to perform search"
msgstr "A kereséshez kattintson a nagyítóra"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Hossz"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Nézetek"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Szerző"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "tárolt"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxy nézet"
@ -784,27 +782,27 @@ msgstr "Általános"
msgid "Default categories"
msgstr "Alapértelmezett kategóriák"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Felhasználói felület"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Adatvédelem"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Keresőmotorok"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Jelenleg használt keresőmotorok"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Speciális lekérdezések"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Sütik"
@ -1225,14 +1223,6 @@ msgstr "Súly"
msgid "Max time"
msgstr "Maximális idő"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1985,3 +1975,4 @@ msgstr "videó elrejtése"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Nincs találat a keresőmotortól"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2023-06-22 09:02+0000\n"
"Last-Translator: return42 <markus.heiser@darmarit.de>\n"
"Language: ia\n"
@ -339,28 +339,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Nulle item trovate"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr ""
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Configurationes non valide, per favor, modifica tu preferentias"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Configurationes invalide"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "error in recerca"
@ -661,26 +661,26 @@ msgstr ""
msgid "Click on the magnifier to perform search"
msgstr "Clicca sur le lupa pro exequer le recerca"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr ""
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr ""
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr ""
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "in cache"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "per proxy"
@ -753,27 +753,27 @@ msgstr "General"
msgid "Default categories"
msgstr "categorias predefinite"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Interfacie del usator"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Confidentialitate"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Motores"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Motores de recerca actualmente usate"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr ""
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookies"
@ -1188,14 +1188,6 @@ msgstr ""
msgid "Max time"
msgstr "Tempore maxime"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

View File

@ -16,17 +16,17 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-10-08 13:41+0000\n"
"Last-Translator: Linerly <Linerly@users.noreply.translate.codeberg.org>\n"
"Language-Team: Indonesian <https://translate.codeberg.org/projects/searxng/"
"searxng/id/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-28 15:23+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: id\n"
"Language-Team: Indonesian "
"<https://translate.codeberg.org/projects/searxng/searxng/id/>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.7.2\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
@ -167,7 +167,7 @@ msgstr "gelap"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "hitam"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -347,28 +347,28 @@ msgstr "Tertutup"
msgid "answered"
msgstr "dijawab"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Item tidak ditemukan"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Sumber"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Gagal memuat halaman berikutnya"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Pengaturan tidak valid, mohon ubah preferensi Anda"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Pengaturan tidak valid"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "kesalahan pencarian"
@ -454,7 +454,7 @@ msgstr "Menghitung {functions} dari argumen"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Sinonim"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -686,26 +686,26 @@ msgstr "Hubungi pengelola instansi"
msgid "Click on the magnifier to perform search"
msgstr "Tekan pada kaca pembesar untuk melakukan pencarian"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Durasi"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Tampilan"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Penulis"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "tembolok"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proksi"
@ -780,27 +780,27 @@ msgstr "Umum"
msgid "Default categories"
msgstr "Kategori bawaan"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Antarmuka pengguna"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privasi"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Mesin"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Mesin pencari yang saat ini digunakan"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Pencarian Khusus"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Kuki"
@ -1221,14 +1221,6 @@ msgstr "Berat"
msgid "Max time"
msgstr "Waktu maksimum"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Penyelesai Favikon"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Tampilkan favikon"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -1868,3 +1860,4 @@ msgstr "sembunyikan video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "Mesin-mesin tidak dapat mendapatkan hasil"

View File

@ -27,29 +27,27 @@
# return42 <return42@users.noreply.translate.codeberg.org>, 2024.
# unoyoa <unoyoa@users.noreply.translate.codeberg.org>, 2024.
# tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
# Fabio_Perri <Fabio_Perri@users.noreply.translate.codeberg.org>, 2024.
# lrnz2 <lrnz2@users.noreply.translate.codeberg.org>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"PO-Revision-Date: 2024-11-14 02:16+0000\n"
"Last-Translator: lrnz2 <lrnz2@users.noreply.translate.codeberg.org>\n"
"Language-Team: Italian <https://translate.codeberg.org/projects/searxng/"
"searxng/it/>\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-05 06:18+0000\n"
"Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
"\n"
"Language: it\n"
"Language-Team: Italian "
"<https://translate.codeberg.org/projects/searxng/searxng/it/>\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"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.8.1\n"
"Generated-By: Babel 2.16.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
#: searx/searxng.msg
msgid "without further subgrouping"
msgstr "senza altri sottogruppamenti"
msgstr "senza altri sottogruppi"
#. CONSTANT_NAMES['DEFAULT_CATEGORY']
#: searx/searxng.msg
@ -74,7 +72,7 @@ msgstr "musica"
#. CATEGORY_NAMES['SOCIAL_MEDIA']
#: searx/searxng.msg
msgid "social media"
msgstr "social media"
msgstr "social"
#. CATEGORY_NAMES['IMAGES']
#: searx/searxng.msg
@ -114,7 +112,7 @@ msgstr "mappa"
#. CATEGORY_NAMES['ONIONS']
#: searx/searxng.msg
msgid "onions"
msgstr "cipolle"
msgstr "onion"
#. CATEGORY_NAMES['SCIENCE']
#: searx/searxng.msg
@ -134,7 +132,7 @@ msgstr "dizionari"
#. CATEGORY_GROUPS['LYRICS']
#: searx/searxng.msg
msgid "lyrics"
msgstr "testo musicale"
msgstr "testi musicali"
#. CATEGORY_GROUPS['PACKAGES']
#: searx/searxng.msg
@ -149,12 +147,12 @@ msgstr "d&r"
#. CATEGORY_GROUPS['REPOS']
#: searx/searxng.msg
msgid "repos"
msgstr "repos"
msgstr "ripostigli"
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
#: searx/searxng.msg
msgid "software wikis"
msgstr "wiki del software"
msgstr "wiki software"
#. CATEGORY_GROUPS['WEB']
#: searx/searxng.msg
@ -184,7 +182,7 @@ msgstr "scuro"
#. STYLE_NAMES['BLACK']
#: searx/searxng.msg
msgid "black"
msgstr "nero"
msgstr ""
#. BRAND_CUSTOM_LINKS['UPTIME']
#: searx/searxng.msg
@ -194,7 +192,7 @@ msgstr "Tempo di attività"
#. BRAND_CUSTOM_LINKS['ABOUT']
#: searx/searxng.msg searx/templates/simple/base.html:50
msgid "About"
msgstr "Al riguardo"
msgstr "A proposito"
#. WEATHER_TERMS['AVERAGE TEMP.']
#: searx/engines/wttr.py:32 searx/searxng.msg
@ -364,28 +362,28 @@ msgstr "chiuso"
msgid "answered"
msgstr "risposto"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "Nessun oggetto trovato"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "Sorgente"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "Errore di caricamento della pagina successiva"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "Impostazioni non valide, modifica le tue preferenze"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "Impostazioni non valide"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "errore di ricerca"
@ -471,7 +469,7 @@ msgstr "Calcola {functions} degli argomenti"
#: searx/engines/mozhi.py:57
msgid "Synonyms"
msgstr "Sinonimi"
msgstr ""
#: searx/engines/openstreetmap.py:159
msgid "Get directions"
@ -702,26 +700,26 @@ msgstr "Contatta il manutentore dell'istanza"
msgid "Click on the magnifier to perform search"
msgstr "Premi sull'icona della lente per avviare la ricerca"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "Lunghezza"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "Visualizzazioni"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "Autore"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "in cache"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "proxy"
@ -800,27 +798,27 @@ msgstr "Generale"
msgid "Default categories"
msgstr "Categorie predefinite"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "Interfaccia utente"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "Privacy"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "Motori"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "Motori di ricerca attualmente in uso"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "Richieste speciali"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "Cookie"
@ -1242,14 +1240,6 @@ msgstr "Peso"
msgid "Max time"
msgstr "Tempo massimo"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr "Risolutore Favicon"
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr "Mostra le favicon vicino ai risultati della ricerca"
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "
@ -2013,3 +2003,4 @@ msgstr "nascondi video"
#~ msgid "Engines cannot retrieve results"
#~ msgstr "I motori di ricerca non riescono a recuperare risultati"

View File

@ -25,7 +25,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-10-05 06:24+0000\n"
"POT-Creation-Date: 2024-10-03 11:11+0000\n"
"PO-Revision-Date: 2024-09-23 01:18+0000\n"
"Last-Translator: tentsbet <tentsbet@users.noreply.translate.codeberg.org>"
"\n"
@ -356,28 +356,28 @@ msgstr "クローズ"
msgid "answered"
msgstr "回答"
#: searx/webapp.py:332
#: searx/webapp.py:330
msgid "No item found"
msgstr "アイテムが見つかりません"
#: searx/engines/qwant.py:288
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
msgid "Source"
msgstr "ソース"
#: searx/webapp.py:336
#: searx/webapp.py:334
msgid "Error loading the next page"
msgstr "次のページの読み込み中にエラーが発生しました"
#: searx/webapp.py:495 searx/webapp.py:898
#: searx/webapp.py:491 searx/webapp.py:894
msgid "Invalid settings, please edit your preferences"
msgstr "設定が無効です、設定を変更してください"
#: searx/webapp.py:511
#: searx/webapp.py:507
msgid "Invalid settings"
msgstr "無効な設定です"
#: searx/webapp.py:588 searx/webapp.py:670
#: searx/webapp.py:584 searx/webapp.py:666
msgid "search error"
msgstr "検索エラー"
@ -676,26 +676,26 @@ msgstr "インスタンスメンテナと連絡を取る"
msgid "Click on the magnifier to perform search"
msgstr "虫めがねをクリックして検索します"
#: searx/templates/simple/macros.html:40
#: searx/templates/simple/macros.html:35
msgid "Length"
msgstr "長さ"
#: searx/templates/simple/macros.html:41
#: searx/templates/simple/macros.html:36
msgid "Views"
msgstr "閲覧数"
#: searx/templates/simple/macros.html:42
#: searx/templates/simple/macros.html:37
#: searx/templates/simple/result_templates/files.html:34
#: searx/templates/simple/result_templates/images.html:19
#: searx/templates/simple/result_templates/paper.html:6
msgid "Author"
msgstr "作者"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "cached"
msgstr "キャッシュ"
#: searx/templates/simple/macros.html:50
#: searx/templates/simple/macros.html:45
msgid "proxied"
msgstr "プロキシ"
@ -768,27 +768,27 @@ msgstr "一般"
msgid "Default categories"
msgstr "デフォルトのカテゴリ"
#: searx/templates/simple/preferences.html:190
#: searx/templates/simple/preferences.html:187
msgid "User interface"
msgstr "ユーザーインターフェース"
#: searx/templates/simple/preferences.html:211
#: searx/templates/simple/preferences.html:208
msgid "Privacy"
msgstr "プライバシー"
#: searx/templates/simple/preferences.html:224
#: searx/templates/simple/preferences.html:221
msgid "Engines"
msgstr "検索エンジン"
#: searx/templates/simple/preferences.html:226
#: searx/templates/simple/preferences.html:223
msgid "Currently used search engines"
msgstr "現在使用中の検索エンジン"
#: searx/templates/simple/preferences.html:234
#: searx/templates/simple/preferences.html:231
msgid "Special Queries"
msgstr "特殊クエリー"
#: searx/templates/simple/preferences.html:240
#: searx/templates/simple/preferences.html:237
msgid "Cookies"
msgstr "クッキー"
@ -1200,14 +1200,6 @@ msgstr "比重"
msgid "Max time"
msgstr "最大時間"
#: searx/templates/simple/preferences/favicon.html:2
msgid "Favicon Resolver"
msgstr ""
#: searx/templates/simple/preferences/favicon.html:15
msgid "Display favicons near search results"
msgstr ""
#: searx/templates/simple/preferences/footer.html:2
msgid ""
"These settings are stored in your cookies, this allows us not to store "

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