1 Commits

Author SHA1 Message Date
searxng-bot a4b1342a97 [data] update searx.data - update_ahmia_blacklist.py 2026-05-29 00:43:56 +00:00
148 changed files with 4312 additions and 6467 deletions
+6 -6
View File
@@ -106,10 +106,10 @@ jobs:
- if: ${{ matrix.emulation }}
name: Setup QEMU
uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: Login to GHCR
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: "ghcr.io"
username: "${{ github.repository_owner }}"
@@ -147,10 +147,10 @@ jobs:
- if: ${{ matrix.emulation }}
name: Setup QEMU
uses: docker/setup-qemu-action@06116385d9baf250c9f4dcb4858b16962ea869c3 # v4.1.0
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: Login to GHCR
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: "ghcr.io"
username: "${{ github.repository_owner }}"
@@ -180,14 +180,14 @@ jobs:
persist-credentials: "false"
- name: Login to GHCR
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: "ghcr.io"
username: "${{ github.repository_owner }}"
password: "${{ secrets.GITHUB_TOKEN }}"
- name: Login to Docker Hub
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
with:
registry: "docker.io"
username: "${{ secrets.DOCKER_USER }}"
+1 -1
View File
@@ -41,6 +41,6 @@ jobs:
write-comment: "false"
- name: Upload SARIFs
uses: github/codeql-action/upload-sarif@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4.36.0
uses: github/codeql-action/upload-sarif@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4.35.5
with:
sarif_file: "./scout.sarif"
+1
View File
@@ -5,6 +5,7 @@ import type { KeyBindingLayout } from "./main/keyboard.ts";
// synced with searx/webapp.py get_client_settings
type Settings = {
plugins?: string[];
advanced_search?: boolean;
autocomplete?: string;
autocomplete_min?: number;
doi_resolver?: string;
-1
View File
@@ -19,7 +19,6 @@ Settings
settings_search
settings_server
settings_ui
settings_preferences
settings_redis
settings_valkey
settings_outgoing
@@ -1,8 +0,0 @@
.. _settings preferences:
================
``preferences:``
================
.. autoclass:: searx._settings.SettingsPref
:members:
-1
View File
@@ -47,7 +47,6 @@
activated:
- :py:obj:`searx.botdetection.link_token` in the :ref:`limiter`
- :ref:`image_proxy`
.. _image_proxy:
+2 -2
View File
@@ -23,6 +23,6 @@ coloredlogs==15.0.1
docutils>=0.21.2;python_version <= "3.11"
docutils>=0.22.4; python_version > "3.11"
parameterized==0.9.0
granian[reload]==2.7.5
basedpyright==1.39.6
granian[reload]==2.7.4
basedpyright==1.39.5
types-lxml==2026.2.16
+2 -2
View File
@@ -1,2 +1,2 @@
granian==2.7.5
granian[pname]==2.7.5
granian==2.7.4
granian[pname]==2.7.4
+1 -1
View File
@@ -13,7 +13,7 @@ sniffio==1.3.1
valkey==6.1.1
markdown-it-py==4.2.0
msgspec==0.21.1
typer==0.26.7
typer==0.25.1
isodate==0.7.2
whitenoise==6.12.0
typing-extensions==4.15.0
+1 -8
View File
@@ -10,7 +10,6 @@ from os.path import dirname, abspath
import logging
import msgspec
from ._settings import SettingsPref
# Debug
LOG_FORMAT_DEBUG: str = '%(levelname)-7s %(name)-30.30s: %(message)s'
@@ -48,12 +47,6 @@ def init_settings():
settings.clear()
settings.update(cfg)
if get_setting("server.public_instance"):
# enable image proxy for public instances #6125
settings["server"]["image_proxy"] = True
pref: SettingsPref = get_setting("preferences")
pref.lock.add("image_proxy")
sxng_debug = get_setting("general.debug")
if sxng_debug:
_logging_config_debug()
@@ -73,7 +66,7 @@ def init_settings():
if settings['server']['public_instance']:
logger.warning(
"Be aware you have activated features intended only for public instances. "
"This force the usage of the limiter, link_token and image proxy / "
"This force the usage of the limiter and link_token / "
"see https://docs.searxng.org/admin/searx.limiter.html"
)
-42
View File
@@ -1,42 +0,0 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Implementation of the :py:obj:`preference <searx.preference>` settings."""
# pylint: disable = too-few-public-methods
import typing as t
import msgspec
class SettingsPref(msgspec.Struct, kw_only=True, forbid_unknown_fields=True):
"""Options for configuring the preferences
.. code:: yaml
preferences:
lock:
- favicon_resolver
- image_proxy
- method
# ...
"""
lock: set[
t.Literal[
"categories",
"language",
"locale",
"autocomplete",
"favicon_resolver",
"image_proxy",
"method",
"safesearch",
"theme",
"results_on_new_tab",
"doi_resolver",
"simple_style",
"center_alignment",
"query_in_title",
"search_on_category_select",
]
] = set()
"""Lock arbitrary settings on the preferences page."""
+23 -61
View File
@@ -84,7 +84,6 @@
"sr": "УАЕ дирхам",
"sv": "Emiratisk dirham",
"ta": "ஐக்கிய அரபு அமீரக திர்கம்",
"te": "యూఏఈ దిర్హామ్",
"tr": "Birleşik Arap Emirlikleri dirhemi",
"tt": "БГӘ дирһәме",
"uk": "дирхам ОАЕ"
@@ -166,7 +165,7 @@
"pap": "lek albanes",
"pl": "lek",
"pt": "lek",
"ro": "lek albanez",
"ro": "Lek",
"ru": "албанский лек",
"sk": "Albánsky lek",
"sl": "albanski lek",
@@ -739,7 +738,6 @@
"sr": "брунејски долар",
"sv": "Bruneisk dollar",
"ta": "புரூணை டாலர்",
"te": "బ్రూనై డాలర్",
"th": "ดอลลาร์บรูไน",
"tr": "Brunei doları",
"tt": "Бруней доллары",
@@ -913,7 +911,6 @@
"sr": "бутански нгултрум",
"sv": "Ngultrum",
"ta": "பூட்டானின் இங்குல்ட்ரம்",
"te": "భూటానీస్ గుల్త్రమ్",
"th": "งุลตรัมภูฏาน",
"tr": "Ngultrum",
"tt": "ңгултрум",
@@ -992,7 +989,7 @@
"pa": "ਬੈਲਾਰੂਸੀ ਰੂਬਲ",
"pl": "Rubel białoruski",
"pt": "Rublo bielorrusso",
"ro": "rublă belarusă",
"ro": "Rublă belarusă",
"ru": "Белорусский рубль",
"sk": "Bieloruský rubeľ",
"sl": "beloruski rubelj",
@@ -1086,7 +1083,6 @@
"sr": "канадски долар",
"sv": "kanadensisk dollar",
"ta": "கனடா டொலர்",
"te": "కెనడియన్ డాలర్",
"th": "ดอลลาร์แคนาดา",
"tr": "Kanada doları",
"tt": "Канада дуллыры",
@@ -1235,7 +1231,6 @@
"sl": "čilski peso",
"sr": "чилеански пезос",
"sv": "Chilensk peso",
"te": "చిలీ పెసో",
"th": "เปโซชิลี",
"tr": "Şili pesosu",
"tt": "Чили песосы",
@@ -1289,7 +1284,6 @@
"sr": "ренминби",
"sv": "Renminbi",
"ta": "ரென்மின்பி",
"te": "రెన్మిన్బి",
"th": "เหรินหมินปี้",
"tr": "Renminbi",
"tt": "юән",
@@ -1708,7 +1702,7 @@
"vi": "Bảng Ai Cập"
},
"ERN": {
"ar": قفة",
"ar": اكفا",
"ca": "nakfa",
"cs": "Eritrejská nakfa",
"da": "Nakfa",
@@ -1782,11 +1776,11 @@
"bg": "евро",
"bn": "ইউরো",
"ca": "euro",
"cs": "Euro",
"cs": "euro",
"cy": "Ewro",
"da": "Euro",
"de": "Euro",
"en": "Euro",
"en": "euro",
"eo": "eŭro",
"es": "Euro",
"et": "Euro",
@@ -1800,7 +1794,7 @@
"hu": "euró",
"ia": "Euro",
"id": "Euro",
"it": "Euro",
"it": "euro",
"ja": "ユーロ",
"ko": "유로",
"lt": "Euras",
@@ -1811,11 +1805,11 @@
"oc": "Èuro",
"pa": "ਯੂਰੋ",
"pap": "Euro",
"pl": "Euro",
"pl": "euro",
"pt": "Euro",
"ro": "Euro",
"ro": "euro",
"ru": "евро",
"sk": "Euro",
"sk": "euro",
"sl": "evro",
"sr": "евро",
"sv": "Euro",
@@ -1941,7 +1935,7 @@
"sk": "libra šterlingov",
"sl": "funt šterling",
"sr": "британска фунта",
"sv": "brittiskt pund",
"sv": "Brittiskt pund",
"ta": "பிரித்தானிய பவுண்டு",
"th": "ปอนด์สเตอร์ลิง",
"tr": "İngiliz sterlini",
@@ -2416,7 +2410,6 @@
"pl": "rupia indonezyjska",
"pt": "rupia indonésia",
"ru": "индонезийская рупия",
"sk": "Indonézska rupia",
"sl": "indonezijska rupija",
"sr": "индонежанска рупија",
"sv": "Rupiah",
@@ -2470,7 +2463,6 @@
"sr": "нови израелски шекел",
"sv": "Shekel",
"ta": "புது இசுரேலிய சேக்கல்",
"te": "ఇజ్రాయెల్ షెకెల్",
"tr": "Yeni İsrail Şekeli",
"tt": "Исраил шекеле",
"uk": "ізраїльський новий шекель"
@@ -2766,7 +2758,6 @@
"sr": "јапански јен",
"sv": "yen",
"ta": "யென்",
"te": "జపనీస్ యెన్",
"th": "เยน",
"tr": "Japon yeni",
"tt": "япон иенасы",
@@ -2832,7 +2823,6 @@
"ja": "キルギス・ソム",
"ko": "키르기스스탄 솜",
"lt": "somas",
"lv": "Kirgizstānas soms",
"nl": "Kirgizische som",
"pa": "ਕਿਰਗਿਜ਼ਸਤਾਨੀ ਸੋਮ",
"pl": "som",
@@ -3246,7 +3236,6 @@
"sr": "шриланчанска рупија",
"sv": "Lankesisk rupie",
"ta": "இலங்கை ரூபாய்",
"te": "శ్రీలంక రూపాయి",
"tr": "Sri Lanka rupisi",
"tt": "Шри-Ланка рупиясе",
"uk": "ланкійська рупія",
@@ -3821,7 +3810,6 @@
"MXV": {
"de": "UNIDAD DE INVERSION",
"en": "unidad de inversión",
"eo": "Meksika unuo de investo",
"es": "Unidades de Inversión",
"ja": "メキシコ投資単位"
},
@@ -3913,7 +3901,7 @@
"de": "Namibia-Dollar",
"en": "Namibian dollar",
"eo": "namibia dolaro",
"es": "dólar namibio",
"es": "Dólar namibio",
"fi": "Namibian dollari",
"fr": "Dollar namibien",
"ga": "dollar na Namaibe",
@@ -4102,7 +4090,6 @@
"sr": "непалска рупија",
"sv": "Nepalesisk rupee",
"ta": "நேபாள ரூபாய்",
"te": "నేపాలీ రూపాయి",
"th": "รูปีเนปาล",
"tr": "Nepal rupisi",
"tt": "Непал рупиясе",
@@ -4338,7 +4325,6 @@
"sr": "филипински пезо",
"sv": "Filippinsk peso",
"ta": "பிலிப்பைன் பெசோ",
"te": "ఫిలిప్పీన్ పెసో",
"th": "เปโซฟิลิปปินส์",
"tr": "Filipinler pesosu",
"tt": "Филипин писысы",
@@ -4384,7 +4370,6 @@
"sr": "пакистанска рупија",
"sv": "Pakistansk rupee",
"ta": "பாக்கித்தானிய ரூபாய்",
"te": "పాకిస్థానీ రూపాయి",
"tr": "Pakistan rupisi",
"tt": "Пакстан рупиясе",
"uk": "пакистанська рупія",
@@ -4564,7 +4549,7 @@
"de": "rumänischer Leu",
"en": "Romanian Leu",
"eo": "rumana leo",
"es": "leu rumano",
"es": "Leu rumano",
"et": "Rumeenia leu",
"fi": "Romanian leu",
"fr": "leu roumain",
@@ -4765,7 +4750,6 @@
"sr": "саудијски ријал",
"sv": "Saudiarabisk rial",
"ta": "சவூதி ரியால்",
"te": "సౌదీ రియాల్",
"tr": "Suudi Arabistan riyali",
"tt": "Согуд риялы",
"uk": "саудівський ріал",
@@ -4964,7 +4948,6 @@
"sr": "сингапурски долар",
"sv": "Singaporiansk dollar",
"ta": "சிங்கப்பூர் வெள்ளி",
"te": "సింగపూర్ డాలర్",
"th": "ดอลลาร์สิงคโปร์",
"tr": "Singapur doları",
"tt": "Сингапур доллары",
@@ -5192,7 +5175,7 @@
"de": "syrische Lira",
"en": "Syrian pound",
"eo": "siria pundo",
"es": "libra siria",
"es": "Dolar sirio",
"fi": "Syyrian punta",
"fr": "livre syrienne",
"ga": "punt na Siria",
@@ -5994,7 +5977,7 @@
"ms": "Franc CFA Afrika Tengah",
"nl": "Central African CFA franc",
"oc": "Franc CFA d'Africa Centrala",
"pl": "frank CFA",
"pl": "środkowoafrykański frank CFA",
"pt": "franco",
"ro": "Franc CFA BEAC",
"ru": "франк КФА BEAC",
@@ -6016,7 +5999,6 @@
"fr": "argent d'investissement",
"ja": "投資対象としての銀",
"ms": "Perak sebagai pelaburan",
"pt": "Prata como investimento",
"ru": "серебро как инвестиция",
"sv": "Silver som investering",
"tr": "Yatırım olarak gümüş",
@@ -6035,7 +6017,6 @@
"lv": "zelts kā investīcija",
"ml": "സ്വർണവും സാമ്പത്തിക ശാസ്ത്രവും",
"ms": "emas sebagai pelaburan",
"pt": "Ouro como investimento",
"ru": "золото как инвестиция",
"sr": "investiciono zlato",
"sv": "investeringsguld",
@@ -7924,6 +7905,7 @@
"dolar de las islas caimán": "KYD",
"dolar de las islas salomon": "SBD",
"dolar de las islas salomón": "SBD",
"dolar de namibia": "NAD",
"dolar de nueva zelanda": "NZD",
"dolar de singapor": "SGD",
"dolar de singapur": "SGD",
@@ -7981,6 +7963,7 @@
"dolar namibia": "NAD",
"dolar namibian": "NAD",
"dolar namibijski": "NAD",
"dolar namibio": "NAD",
"dolar neocelandes": "NZD",
"dolar neocelandés": "NZD",
"dolar neozeelandez": "NZD",
@@ -7995,6 +7978,7 @@
"dolar singapura": "SGD",
"dolar singapurski": "SGD",
"dolar singapurtar": "SGD",
"dolar sirio": "SYP",
"dolar sua": "USD",
"dolar surinamdar": "SRD",
"dolar suriname": "SRD",
@@ -8195,7 +8179,6 @@
"dominicaanse peso": "DOP",
"dominican peso": "DOP",
"dominican peso oro": "DOP",
"dominički pezo": "DOP",
"dominik pesosu": "DOP",
"dominika peso": "DOP",
"dominikaanisen tasavallan peso": "DOP",
@@ -8545,6 +8528,7 @@
"etiópsky birr": "ETB",
"eua 17": "XBD",
"eua 9": "XBC",
"eur": "EUR",
"euras": "EUR",
"eurco": "XBA",
"euro": "EUR",
@@ -8875,6 +8859,7 @@
"frank kongijski": "CDF",
"frank rwandyjski": "RWF",
"frank szwajcarski": "CHF",
"frank zachodnioafrykański": "XOF",
"franko suitzar": "CHF",
"frw": "RWF",
"ft": "HUF",
@@ -9195,7 +9180,6 @@
"indonezijska rupija": "IDR",
"indonéská rupie": "IDR",
"indonéz rúpia": "IDR",
"indonézska rupia": "IDR",
"indonēziešu rūpija": "IDR",
"indonēzijas rūpija": "IDR",
"inglise nael": "GBP",
@@ -9510,8 +9494,6 @@
"kirgizia somo": "KGS",
"kirgizische som": "KGS",
"kirgizistansk som": "KGS",
"kirgizstānas soms": "KGS",
"kirgīzu soms": "KGS",
"kiwi dollar": "NZD",
"kínai jüan": "CNY",
"kíp": "LAK",
@@ -9828,6 +9810,7 @@
"lek na halbáine": "ALL",
"lek novo": "ALL",
"lekas": "ALL",
"lekă albaneză": "ALL",
"lekë": "ALL",
"leko": "ALL",
"lempira": "HNL",
@@ -9998,7 +9981,6 @@
"lira libanesa": "LBP",
"lira libanese": "LBP",
"lira na tuirce": "TRY",
"lira siria": "SYP",
"lira siriana": "SYP",
"lira síria": "SYP",
"lira thổ nhĩ kỳ": "TRY",
@@ -10309,7 +10291,6 @@
"meksički pezo": "MXN",
"meksika peso": "MXN",
"meksika pesosu": "MXN",
"meksika unuo de investo": "MXV",
"meksikaanse peso": "MXN",
"meksikas peso": "MXN",
"meksikon peso": "MXN",
@@ -10765,7 +10746,6 @@
"ouguiya mauritanien": "MRU",
"ouguiya mawritania": "MRU",
"ouguiya na máratáine": "MRU",
"ouro como investimento": "XAU",
"ouro do zimbábue": "ZWG",
"örmény dram": "AMD",
"östkaribisk dollar": "XCD",
@@ -11131,7 +11111,6 @@
"põhja korea vonn": "KPW",
"põhja korea won": "KPW",
"põhja makedoonia denaar": "MKD",
"prata como investimento": "XAG",
"pula": "BWP",
"pula botswana": "BWP",
"pula botswanais": "BWP",
@@ -11922,7 +11901,6 @@
"somoni taxico": "TJS",
"somoni tayiko": "TJS",
"somonis": "TJS",
"soms": "KGS",
"sonderziehungsrecht": "XDR",
"sos": "SOS",
"sosh": "SOS",
@@ -12124,6 +12102,7 @@
"szyling tanzański": "TZS",
"szyling ugandyjski": "UGX",
"sırp dinarı": "RSD",
"środkowoafrykański frank cfa": "XAF",
"šalamounský dolar": "SBD",
"šalomounský dolar": "SBD",
"šekel chadaš": "ILS",
@@ -14038,7 +14017,6 @@
"самоанский доллар": "WST",
"самоанська тала": "WST",
"сан томе һәм принсипи добрасы": "STN",
"саотомеанска добра": "STN",
"саотомска добра": "STN",
"саудитски риал": "SAR",
"саудијски риал": "SAR",
@@ -15372,28 +15350,13 @@
"ஹங்கேரிய போரிண்ட்": "HUF",
"ஹிருன்யா": "UAH",
"ஹொங்கொங் டொலர்": "HKD",
"అమెరికన్ డాలర్": "USD",
"ఇజ్రాయెల్ షెకెల్": "ILS",
"కెనడియన్ డాలర్": "CAD",
"చిలీ పెసో": "CLP",
"జపనీస్ యెన్": "JPY",
"డిజిటల్ రూపాయి": "INR",
"నేపాలీ రూపాయి": "NPR",
"పాకిస్థానీ రూపాయి": "PKR",
"ఫిలిప్పీన్ పెసో": "PHP",
"బ్రూనై డాలర్": "BND",
"భారత రూపాయి": "INR",
"భారతదేశ రూపాయి": "INR",
"భారతీయ రూపాయి": "INR",
"భూటానీస్ గుల్త్రమ్": "BTN",
"యునైటెడ్ స్టేట్స్ డాలర్": "USD",
"యూఏఈ దిర్హామ్": "AED",
"యూరో": "EUR",
"రూపాయి": "INR",
"రెన్మిన్బి": "CNY",
"శ్రీలంక రూపాయి": "LKR",
"సింగపూర్ డాలర్": "SGD",
"సౌదీ రియాల్": "SAR",
"స్విస్ ఫ్రాంక్": "CHF",
"അൾജീരിയൻ ദിനാർ": "DZD",
"ഇന്തോനേഷ്യൻ റുപിയ": "IDR",
@@ -15644,8 +15607,6 @@
"부탄 뉘땀": "BTN",
"부탄눌트럼": "BTN",
"북마케도니아 데나르": "MKD",
"북조선 원": "KPW",
"북한 원": "KPW",
"브라질 레알": "BRL",
"브라질 헤알": "BRL",
"브루나이 달러": "BND",
@@ -16238,6 +16199,7 @@
"香港・ドル": "HKD",
"香港元": "HKD",
"﷼": "IRR",
"﷼'": "YER"
"﷼'": "YER",
"💶": "EUR"
}
}
File diff suppressed because it is too large Load Diff
+2286 -4502
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -5,7 +5,7 @@
],
"ua": "Mozilla/5.0 ({os}; rv:{version}) Gecko/20100101 Firefox/{version}",
"versions": [
"151.0",
"150.0"
"150.0",
"149.0"
]
}
+182 -297
View File
@@ -69,6 +69,11 @@
"symbol": "pk (US)",
"to_si_factor": 0.008809768
},
"Q101427917": {
"si_name": "Q25517",
"symbol": "pk (UK)",
"to_si_factor": 0.00909218
},
"Q101428098": {
"si_name": "Q44395",
"symbol": "dbar",
@@ -79,11 +84,6 @@
"symbol": "μbar",
"to_si_factor": 0.1
},
"Q101435213": {
"si_name": "Q101435195",
"symbol": "Jy s",
"to_si_factor": 1e-26
},
"Q101435332": {
"si_name": "Q44395",
"symbol": "cm Hg",
@@ -124,6 +124,11 @@
"symbol": "pm²",
"to_si_factor": 1e-24
},
"Q101463679": {
"si_name": "Q25343",
"symbol": "hm²",
"to_si_factor": 10000.0
},
"Q101464050": {
"si_name": "Q25343",
"symbol": "Mm²",
@@ -194,11 +199,6 @@
"symbol": "d⁻¹",
"to_si_factor": 1.15741e-05
},
"Q102129764": {
"si_name": "Q6137407",
"symbol": "a⁻¹",
"to_si_factor": 3.17098e-08
},
"Q102130673": {
"si_name": "Q182429",
"symbol": "ym/s",
@@ -425,9 +425,9 @@
"to_si_factor": 10.0
},
"Q1042866": {
"si_name": "Q199",
"si_name": null,
"symbol": "Zib",
"to_si_factor": 1.1805916207174113e+21
"to_si_factor": null
},
"Q104317437": {
"si_name": "Q25381181",
@@ -995,9 +995,9 @@
"to_si_factor": 1000000000000.0
},
"Q106247880": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "digit/s",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q106247940": {
"si_name": null,
@@ -1504,11 +1504,6 @@
"symbol": "m²/(s² K)",
"to_si_factor": 1.0
},
"Q106707206": {
"si_name": null,
"symbol": "HU",
"to_si_factor": null
},
"Q106707404": {
"si_name": "Q106707404",
"symbol": "kg m²/(s² K)",
@@ -2319,124 +2314,79 @@
"symbol": "cm²/(sr erg)",
"to_si_factor": 1000.0
},
"Q107710161": {
"si_name": "Q199",
"symbol": "J/bit",
"to_si_factor": 1.0
},
"Q107821494": {
"si_name": "Q21401573",
"symbol": "bit/m³",
"to_si_factor": 1.0
},
"Q107822428": {
"si_name": "Q11547251",
"symbol": "bit/m",
"to_si_factor": 1.0
},
"Q107824325": {
"si_name": "Q11547252",
"symbol": "bit/m²",
"to_si_factor": 1.0
},
"Q107825143": {
"si_name": "Q11547251",
"symbol": "Eibit/m",
"to_si_factor": 1.152921504606847e+18
},
"Q107825584": {
"si_name": "Q11547252",
"symbol": "Eibit/m²",
"to_si_factor": 1.152921504606847e+18
},
"Q107825716": {
"si_name": "Q21401573",
"symbol": "Eibit/m³",
"to_si_factor": 1.152921504606847e+18
},
"Q107862736": {
"si_name": "Q11547251",
"symbol": "Gibit/m",
"to_si_factor": 1073741824.0
},
"Q107862746": {
"si_name": "Q11547252",
"symbol": "Gibit/m²",
"to_si_factor": 1073741824.0
},
"Q107862762": {
"si_name": "Q21401573",
"symbol": "Gibit/m³",
"to_si_factor": 1073741824.0
},
"Q107862770": {
"si_name": "Q11547251",
"symbol": "Kibit/m",
"to_si_factor": 1024.0
},
"Q107862783": {
"si_name": "Q11547252",
"symbol": "Kibit/m",
"to_si_factor": 1024.0
},
"Q107862850": {
"si_name": "Q21401573",
"symbol": "Kibit/m³",
"to_si_factor": 1024.0
},
"Q107862870": {
"si_name": "Q11547251",
"symbol": "Mibit/m",
"to_si_factor": 1048576.0
},
"Q107862884": {
"si_name": "Q11547252",
"symbol": "Mibit/m²",
"to_si_factor": 1048576.0
},
"Q107862898": {
"si_name": "Q21401573",
"symbol": "Mibit/m³",
"to_si_factor": 1048576.0
},
"Q107970215": {
"si_name": "Q11547251",
"symbol": "Pibit/m",
"to_si_factor": 1125899906842624.0
},
"Q107970224": {
"si_name": "Q11547252",
"symbol": "Pibit/m²",
"to_si_factor": 1125899906842624.0
},
"Q107970230": {
"si_name": "Q21401573",
"symbol": "Pibit/m³",
"to_si_factor": 1125899906842624.0
},
"Q107970235": {
"si_name": "Q11547251",
"symbol": "Tibit/m",
"to_si_factor": 1099511627776.0
},
"Q107970256": {
"si_name": "Q21401573",
"symbol": "Tibit/m³",
"to_si_factor": 1099511627776.0
},
"Q107970266": {
"si_name": "Q11547252",
"symbol": "Tibit/m²",
"to_si_factor": 1099511627776.0
},
"Q108112819": {
"si_name": null,
"symbol": "€/kWh",
"symbol": "bit/m³",
"to_si_factor": null
},
"Q108112891": {
"Q107822428": {
"si_name": null,
"symbol": "€/(MW h)",
"symbol": "bit/m",
"to_si_factor": null
},
"Q107824325": {
"si_name": null,
"symbol": "bit/m²",
"to_si_factor": null
},
"Q107862770": {
"si_name": null,
"symbol": "Kibit/m",
"to_si_factor": null
},
"Q107862783": {
"si_name": null,
"symbol": "Kibit/m",
"to_si_factor": null
},
"Q107862850": {
"si_name": null,
"symbol": "Kibit/m³",
"to_si_factor": null
},
"Q107862870": {
"si_name": null,
"symbol": "Mibit/m",
"to_si_factor": null
},
"Q107862884": {
"si_name": null,
"symbol": "Mibit/m²",
"to_si_factor": null
},
"Q107862898": {
"si_name": null,
"symbol": "Mibit/m³",
"to_si_factor": null
},
"Q107970215": {
"si_name": null,
"symbol": "Pibit/m",
"to_si_factor": null
},
"Q107970224": {
"si_name": null,
"symbol": "Pibit/m²",
"to_si_factor": null
},
"Q107970230": {
"si_name": null,
"symbol": "Pibit/m³",
"to_si_factor": null
},
"Q107970235": {
"si_name": null,
"symbol": "Tibit/m",
"to_si_factor": null
},
"Q107970256": {
"si_name": null,
"symbol": "Tibit/m³",
"to_si_factor": null
},
"Q107970266": {
"si_name": null,
"symbol": "Tibit/m²",
"to_si_factor": null
},
"Q108270163": {
@@ -2445,9 +2395,9 @@
"to_si_factor": 3.169e-05
},
"Q1084321": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "Tb/s",
"to_si_factor": 1000000000000.0
"to_si_factor": null
},
"Q108533173": {
"si_name": "Q108533173",
@@ -2484,16 +2434,6 @@
"symbol": "GeV/c²",
"to_si_factor": 1.7826619216278976e-27
},
"Q108913970": {
"si_name": null,
"symbol": "person/km²",
"to_si_factor": null
},
"Q108914485": {
"si_name": null,
"symbol": "person/m²",
"to_si_factor": null
},
"Q108920356": {
"si_name": "Q25406",
"symbol": "esu",
@@ -2524,11 +2464,6 @@
"symbol": "e.u.",
"to_si_factor": 4.184
},
"Q109337616": {
"si_name": "Q139710667",
"symbol": "1/(100 eV)",
"to_si_factor": 6.2415e+16
},
"Q109448508": {
"si_name": null,
"symbol": "man-Sv",
@@ -2564,11 +2499,6 @@
"symbol": "nm²",
"to_si_factor": 1e-18
},
"Q11123": {
"si_name": "Q25517",
"symbol": "pt (UK)",
"to_si_factor": 0.00056826125
},
"Q111494193": {
"si_name": "Q111494193",
"symbol": "J/(Hz mol)",
@@ -2579,11 +2509,6 @@
"symbol": "%",
"to_si_factor": 0.01
},
"Q112659472": {
"si_name": null,
"symbol": "PVU",
"to_si_factor": null
},
"Q1131660": {
"si_name": "Q11570",
"symbol": "st",
@@ -2615,14 +2540,14 @@
"to_si_factor": 31688087.81402895
},
"Q1140444": {
"si_name": "Q199",
"si_name": null,
"symbol": "Zb",
"to_si_factor": 1e+21
"to_si_factor": null
},
"Q1140577": {
"si_name": "Q199",
"si_name": null,
"symbol": "Yb",
"to_si_factor": 0.0
"to_si_factor": null
},
"Q114559346": {
"si_name": null,
@@ -2635,14 +2560,14 @@
"to_si_factor": null
},
"Q1152074": {
"si_name": "Q199",
"si_name": null,
"symbol": "Pb",
"to_si_factor": 1000000000000000.0
"to_si_factor": null
},
"Q1152323": {
"si_name": "Q199",
"si_name": null,
"symbol": "Tb",
"to_si_factor": 1000000000000.0
"to_si_factor": null
},
"Q115277430": {
"si_name": null,
@@ -2885,14 +2810,14 @@
"to_si_factor": 4.4482216152605
},
"Q1194580": {
"si_name": "Q199",
"si_name": null,
"symbol": "Mib",
"to_si_factor": 1048576.0
"to_si_factor": null
},
"Q1195111": {
"si_name": "Q199",
"si_name": null,
"symbol": "Eb",
"to_si_factor": 1e+18
"to_si_factor": null
},
"Q1196837": {
"si_name": "Q1063756",
@@ -2940,20 +2865,15 @@
"to_si_factor": 0.03110348
},
"Q1204894": {
"si_name": "Q199",
"si_name": null,
"symbol": "Gib",
"to_si_factor": 1073741824.0
"to_si_factor": null
},
"Q12129": {
"si_name": "Q11573",
"symbol": "pc",
"to_si_factor": 3.085677581491367e+16
},
"Q12145303": {
"si_name": "Q11573",
"symbol": "rd",
"to_si_factor": 5.02921
},
"Q121965382": {
"si_name": "Q121965382",
"symbol": "mol/mol",
@@ -3194,11 +3114,6 @@
"symbol": "QF",
"to_si_factor": 1e+30
},
"Q12558489": {
"si_name": "Q25517",
"symbol": "pk (UK)",
"to_si_factor": 0.00909218
},
"Q125962250": {
"si_name": null,
"symbol": "Ry",
@@ -3325,14 +3240,14 @@
"to_si_factor": 1e-30
},
"Q131395783": {
"si_name": "Q199",
"si_name": null,
"symbol": "Rib",
"to_si_factor": 1.2379400392853803e+27
"to_si_factor": null
},
"Q131395793": {
"si_name": "Q199",
"si_name": null,
"symbol": "Qib",
"to_si_factor": 1.2676506002282294e+30
"to_si_factor": null
},
"Q13147228": {
"si_name": "Q844211",
@@ -3394,11 +3309,6 @@
"symbol": "1/K",
"to_si_factor": null
},
"Q133796439": {
"si_name": null,
"symbol": "T/mm²",
"to_si_factor": null
},
"Q13400897": {
"si_name": "Q1051665",
"symbol": "g",
@@ -3407,23 +3317,18 @@
"Q13479685": {
"si_name": "Q44395",
"symbol": "mm H2O",
"to_si_factor": 9.80665
"to_si_factor": 9.80638
},
"Q1351253": {
"si_name": "Q199",
"si_name": null,
"symbol": "Eib",
"to_si_factor": 1.152921504606847e+18
"to_si_factor": null
},
"Q1351334": {
"si_name": null,
"symbol": "Pib",
"to_si_factor": null
},
"Q135373020": {
"si_name": null,
"symbol": "GTexel",
"to_si_factor": null
},
"Q135415097": {
"si_name": "Q25236",
"symbol": "shp",
@@ -3475,9 +3380,9 @@
"to_si_factor": 1e-06
},
"Q136039973": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "FPS",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q1361854": {
"si_name": "Q11570",
@@ -3545,9 +3450,9 @@
"to_si_factor": 1000000000000.0
},
"Q139054848": {
"si_name": "Q117899185",
"si_name": null,
"symbol": "A·h/m²",
"to_si_factor": 3600.0
"to_si_factor": null
},
"Q139086088": {
"si_name": "Q69425409",
@@ -3737,7 +3642,7 @@
"Q1654435": {
"si_name": "Q25250",
"symbol": "IRE",
"to_si_factor": 0.007143
"to_si_factor": 0.007
},
"Q16673974": {
"si_name": null,
@@ -3915,9 +3820,9 @@
"to_si_factor": 0.01
},
"Q18434272": {
"si_name": "Q199",
"si_name": null,
"symbol": "°Balling",
"to_si_factor": 0.01
"to_si_factor": null
},
"Q185078": {
"si_name": "Q25343",
@@ -3945,9 +3850,9 @@
"to_si_factor": 1e-21
},
"Q188768": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "FLOPS",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q190095": {
"si_name": "Q190095",
@@ -4084,11 +3989,6 @@
"symbol": "ppb",
"to_si_factor": 1e-09
},
"Q206037": {
"si_name": "Q6137407",
"symbol": "r/min",
"to_si_factor": 0.0166667
},
"Q2064166": {
"si_name": "Q179836",
"symbol": "fc",
@@ -4420,9 +4320,9 @@
"to_si_factor": 10.0
},
"Q2243141": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "Gb/s",
"to_si_factor": 1000000000.0
"to_si_factor": null
},
"Q2254856": {
"si_name": "Q25343",
@@ -4435,9 +4335,9 @@
"to_si_factor": 0.00508
},
"Q2269250": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "kb/s",
"to_si_factor": 1000.0
"to_si_factor": null
},
"Q2278977": {
"si_name": null,
@@ -4635,9 +4535,9 @@
"to_si_factor": 898755178700.0
},
"Q25325238": {
"si_name": "Q106919394",
"si_name": null,
"symbol": "bhp/cm³",
"to_si_factor": 745700000.0
"to_si_factor": null
},
"Q253276": {
"si_name": "Q11573",
@@ -4645,9 +4545,9 @@
"to_si_factor": 1609.344
},
"Q2533495": {
"si_name": "Q199",
"si_name": null,
"symbol": "°P",
"to_si_factor": 0.01
"to_si_factor": null
},
"Q25343": {
"si_name": "Q25343",
@@ -4985,9 +4885,9 @@
"to_si_factor": 9.80665
},
"Q28657331": {
"si_name": "Q106688958",
"si_name": null,
"symbol": "erg/(s cm²)",
"to_si_factor": 0.001
"to_si_factor": null
},
"Q28683485": {
"si_name": "Q28683485",
@@ -5020,9 +4920,9 @@
"to_si_factor": 0.001
},
"Q29463526": {
"si_name": "Q199",
"si_name": null,
"symbol": "hr/yr",
"to_si_factor": 1.14155e-06
"to_si_factor": null
},
"Q296936": {
"si_name": "Q25269",
@@ -5255,9 +5155,9 @@
"to_si_factor": 1e-15
},
"Q3194304": {
"si_name": "Q199",
"si_name": null,
"symbol": "kb",
"to_si_factor": 1000.0
"to_si_factor": null
},
"Q3196665": {
"si_name": "Q215571",
@@ -5395,9 +5295,9 @@
"to_si_factor": 3517.0
},
"Q3332814": {
"si_name": "Q199",
"si_name": null,
"symbol": "Mb",
"to_si_factor": 1000000.0
"to_si_factor": null
},
"Q33680": {
"si_name": "Q33680",
@@ -5490,9 +5390,9 @@
"to_si_factor": 3.085677581e+22
},
"Q3815076": {
"si_name": "Q199",
"si_name": null,
"symbol": "Kib",
"to_si_factor": 1024.0
"to_si_factor": null
},
"Q3858002": {
"si_name": "Q25406",
@@ -5510,9 +5410,9 @@
"to_si_factor": 0.3048
},
"Q389062": {
"si_name": "Q199",
"si_name": null,
"symbol": "Tib",
"to_si_factor": 1099511627776.0
"to_si_factor": null
},
"Q3902688": {
"si_name": "Q25517",
@@ -5634,11 +5534,6 @@
"symbol": "D",
"to_si_factor": 3.335640951981521e-30
},
"Q4063874": {
"si_name": "Q21401573",
"symbol": "amg",
"to_si_factor": 2.6868e+25
},
"Q4068266": {
"si_name": "Q11570",
"symbol": "Ʒ",
@@ -5745,9 +5640,9 @@
"to_si_factor": null
},
"Q474533": {
"si_name": "Q25272",
"si_name": null,
"symbol": "At",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q48013": {
"si_name": "Q11570",
@@ -5810,14 +5705,14 @@
"to_si_factor": 0.01
},
"Q50094": {
"si_name": "Q199",
"si_name": null,
"symbol": "Np",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q50098": {
"si_name": "Q199",
"si_name": null,
"symbol": "B",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q50190518": {
"si_name": "Q25377184",
@@ -5860,9 +5755,9 @@
"to_si_factor": 1000.0
},
"Q524410": {
"si_name": "Q11574",
"si_name": null,
"symbol": "Ga",
"to_si_factor": 3.15576e+16
"to_si_factor": null
},
"Q531": {
"si_name": "Q11573",
@@ -5870,9 +5765,9 @@
"to_si_factor": 9460730472580800.0
},
"Q5329": {
"si_name": "Q50098",
"si_name": null,
"symbol": "dB",
"to_si_factor": 0.1
"to_si_factor": null
},
"Q53393488": {
"si_name": "Q39369",
@@ -6515,9 +6410,9 @@
"to_si_factor": 3.4262590996353905
},
"Q549389": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "b/s",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q550341": {
"si_name": "Q550341",
@@ -6545,9 +6440,9 @@
"to_si_factor": null
},
"Q5558595": {
"si_name": "Q199",
"si_name": null,
"symbol": "GFLOPS",
"to_si_factor": 1000000000.0
"to_si_factor": null
},
"Q55663153": {
"si_name": "Q55663153",
@@ -6624,25 +6519,20 @@
"symbol": "GtCO2eq",
"to_si_factor": null
},
"Q57084839": {
"si_name": null,
"symbol": "gCDE/km",
"to_si_factor": null
},
"Q57084901": {
"si_name": null,
"symbol": "KgCO2eq",
"to_si_factor": null
},
"Q57084921": {
"si_name": "Q11570",
"si_name": null,
"symbol": "gCO2eq",
"to_si_factor": 0.001
"to_si_factor": null
},
"Q5711255": {
"si_name": "Q25517",
"si_name": null,
"symbol": "aL",
"to_si_factor": 1e-21
"to_si_factor": null
},
"Q5711261": {
"si_name": "Q25517",
@@ -6784,6 +6674,11 @@
"symbol": "in",
"to_si_factor": 0.0254
},
"Q61793198": {
"si_name": "Q11573",
"symbol": "rd",
"to_si_factor": 5.02921
},
"Q61794766": {
"si_name": "Q11573",
"symbol": "ch (US survey)",
@@ -6815,9 +6710,9 @@
"to_si_factor": null
},
"Q61995006": {
"si_name": "Q106682512",
"si_name": null,
"symbol": "KWth",
"to_si_factor": 1000.0
"to_si_factor": null
},
"Q61996348": {
"si_name": "Q794261",
@@ -6860,14 +6755,14 @@
"to_si_factor": 1.1574074e-05
},
"Q64740041": {
"si_name": "Q106688958",
"si_name": null,
"symbol": "kWh/(m² yr)",
"to_si_factor": 0.000114
"to_si_factor": null
},
"Q64740314": {
"si_name": "Q106688958",
"si_name": null,
"symbol": "kWh/(m² day)",
"to_si_factor": 41.67
"to_si_factor": null
},
"Q64748817": {
"si_name": "Q80374519",
@@ -6930,9 +6825,9 @@
"to_si_factor": 1016.0469088
},
"Q66778234": {
"si_name": "Q199",
"si_name": null,
"symbol": "TFLOPS",
"to_si_factor": 1000000000000.0
"to_si_factor": null
},
"Q66778809": {
"si_name": null,
@@ -6944,11 +6839,6 @@
"symbol": "PFLOPS",
"to_si_factor": null
},
"Q66778951": {
"si_name": null,
"symbol": "ZFLOPS",
"to_si_factor": null
},
"Q67060736": {
"si_name": "Q67060736",
"symbol": "W/kg",
@@ -7335,9 +7225,9 @@
"to_si_factor": 1.0
},
"Q7350781": {
"si_name": "Q6137407",
"si_name": null,
"symbol": "Mb/s",
"to_si_factor": 1000000.0
"to_si_factor": null
},
"Q743895": {
"si_name": "Q39369",
@@ -7655,9 +7545,9 @@
"to_si_factor": 1.0
},
"Q836941": {
"si_name": "Q199",
"si_name": null,
"symbol": "°Bx",
"to_si_factor": 0.01
"to_si_factor": null
},
"Q83853845": {
"si_name": "Q83853845",
@@ -7709,11 +7599,6 @@
"symbol": "hm",
"to_si_factor": 100.0
},
"Q84451486": {
"si_name": "Q84451486",
"symbol": "K m/W",
"to_si_factor": 1.0
},
"Q844976": {
"si_name": "Q2844478",
"symbol": "Oe",
@@ -7745,9 +7630,9 @@
"to_si_factor": 1000000000.0
},
"Q855161": {
"si_name": "Q199",
"si_name": null,
"symbol": "Yib",
"to_si_factor": 1.2089258196146292e+24
"to_si_factor": null
},
"Q856240": {
"si_name": "Q794261",
@@ -7774,11 +7659,6 @@
"symbol": "abA",
"to_si_factor": 10.0
},
"Q86897783": {
"si_name": "Q86897783",
"symbol": "Pa² s",
"to_si_factor": 1.0
},
"Q87047886": {
"si_name": "Q87047886",
"symbol": "Pa s/m³",
@@ -7800,14 +7680,14 @@
"to_si_factor": 1e-12
},
"Q8799": {
"si_name": "Q199",
"si_name": null,
"symbol": "B",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q8805": {
"si_name": "Q8805",
"si_name": null,
"symbol": "bit",
"to_si_factor": 1.0
"to_si_factor": null
},
"Q88296091": {
"si_name": "Q25517",
@@ -7834,6 +7714,11 @@
"symbol": "bu (UK)",
"to_si_factor": 0.03636872
},
"Q89662131": {
"si_name": "Q25517",
"symbol": "pt (UK)",
"to_si_factor": 0.00056826125
},
"Q89992008": {
"si_name": "Q89992008",
"symbol": "F⁻¹",
@@ -7860,9 +7745,9 @@
"to_si_factor": null
},
"Q9048643": {
"si_name": "Q25517",
"si_name": null,
"symbol": "nl",
"to_si_factor": 1e-12
"to_si_factor": null
},
"Q905912": {
"si_name": "Q281096",
+3 -2
View File
@@ -51,10 +51,11 @@ def request(query, params):
}
params["url"] = f"{base_url}?{urlencode(query_params)}"
params["headers"]["Referer"] = "https://www.bilibili.com/"
params["headers"]["Accept"] = "application/json, text/javascript, */*; q=0.01"
params["headers"]["Referer"] = "https://www.bilibili.com"
params["cookies"] = cookie
return params
def response(resp):
search_res = resp.json()
-2
View File
@@ -41,9 +41,7 @@ safesearch_cookies = {0: "-2", 1: None, 2: "1"}
safesearch_args = {0: "1", 1: None, 2: "1"}
search_path_map = {"images": "i", "videos": "v", "news": "news"}
_HTTP_User_Agent: str = gen_useragent()
send_accept_language_header = False
def init(engine_settings: dict[str, t.Any]):
+1 -8
View File
@@ -10,12 +10,10 @@ import time
import typing as t
from urllib.parse import urlencode
from lxml import html
from searx.result_types import EngineResults
from searx.exceptions import SearxEngineCaptchaException
from searx.extended_types import SXNG_Response
from searx.utils import extr, gen_useragent, html_to_text, eval_xpath
from searx.utils import extr, gen_useragent, html_to_text
from searx.network import get
if t.TYPE_CHECKING:
@@ -42,11 +40,6 @@ time_range_map = {"day": "d", "week": "w", "month": "m", "year": "y"}
def _get_page_hash(query: str, page: int, headers: dict[str, str]) -> str:
resp = get(f"{base_url}/web/result?q={query}&page={page}", headers=headers)
# detect captcha (if any)
doc = html.fromstring(resp.text)
if eval_xpath(doc, "//*[@id='spam-messages']"):
raise SearxEngineCaptchaException()
# the text we search for looks like:
# load("/desk?lang="+eV.p.param['hl']+"&q="+eV['p']['q_encode']+"&page=5&h=aa45603&t=177582576&origin=web&comp=web_serp_pag&p=gmx-com&sp=&lr="+eV.p.param['lr0']+"&mkt="+eV.p.param['mkt0']+"&family="+eV.p.param['familyFilter']+"&fcons="+eV.p.perm.fCons,"google", "eMMO", "eMH","eMP"); # pylint: disable=line-too-long
return extr(resp.text, "&h=", "&t=")
+1 -9
View File
@@ -20,7 +20,6 @@ Paging:
- :py:obj:`paging`
- :py:obj:`page_size`
- :py:obj:`first_page_num`
- :py:obj:`send_page_num_on_first_page`
Time Range:
@@ -170,10 +169,6 @@ number, but an offset.'''
first_page_num = 1
'''Number of the first page (usually 0 or 1).'''
send_page_num_on_first_page = True
'''Whether to include the page number in the request for the first page.
This can help if an engine blocks request that send a page number for the first page.'''
results_query = ''
'''JSON query for the list of result items.
@@ -327,13 +322,10 @@ def request(query, params): # pylint: disable=redefined-outer-name
if params['safesearch']:
safe_search = safe_search_map[params['safesearch']]
pageno = ""
if send_page_num_on_first_page or params["pageno"] != 1:
pageno = (params['pageno'] - 1) * page_size + first_page_num
fp = { # pylint: disable=invalid-name
'query': urlencode({'q': query})[2:],
'lang': lang,
'pageno': pageno,
'pageno': (params['pageno'] - 1) * page_size + first_page_num,
'time_range': time_range,
'safe_search': safe_search,
}
+2 -7
View File
@@ -45,7 +45,7 @@ about = {
base_url = "https://api2.marginalia-search.com"
safesearch = True
categories = ["general"]
paging = True
paging = False
results_per_page = 20
api_key = None
"""To get an API key, please follow the instructions from `Key and license`_
@@ -85,12 +85,7 @@ class ApiSearchResults(t.TypedDict):
def request(query: str, params: dict[str, t.Any]):
query_params = {
"page": params["pageno"],
"count": results_per_page,
"nsfw": min(params["safesearch"], 1),
"query": query,
}
query_params = {"count": results_per_page, "nsfw": min(params["safesearch"], 1), "query": query}
params["url"] = f"{base_url}/search?{urlencode(query_params)}"
params["headers"]["User-Agent"] = searxng_useragent()
+2 -4
View File
@@ -9,7 +9,7 @@ from lxml import html
from searx.result_types import EngineResults
from searx.utils import eval_xpath_list, gen_useragent
from searx.enginelib import EngineCache
from searx.exceptions import SearxEngineAPIException, SearxEngineAccessDeniedException
from searx.exceptions import SearxEngineAPIException
from searx.network import get
@@ -58,8 +58,6 @@ def _get_secret_key():
# circumvents Cloudflare bot protections
"User-Agent": gen_useragent(),
"Referer": base_url,
"Sec-GPC": "1",
"Connection": "keep-alive",
},
)
@@ -97,7 +95,7 @@ def request(query, params):
try:
secret_key = _get_secret_key()
CACHE.set(SECRET_KEY_DB_KEY, secret_key)
except (SearxEngineAPIException, SearxEngineAccessDeniedException) as e:
except SearxEngineAPIException as e:
logger.debug("failed to extract API key %s" % e)
secret_key = api_key
+3 -8
View File
@@ -1,8 +1,6 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Public domain image archive"""
import re
from urllib.parse import urlencode, urlparse, urlunparse, parse_qsl
from json import dumps
@@ -51,8 +49,6 @@ paging = True
__CACHED_API_URL = None
_API_URL_RE = re.compile(r"\"(https://.*?/search-proxy)\"")
def _clean_url(url):
parsed = urlparse(url)
@@ -78,11 +74,10 @@ def _get_algolia_api_url():
if resp.status_code != 200:
raise LookupError("Failed to obtain AWS api url for PDImageArchive")
api_url_match = _API_URL_RE.search(resp.text)
if api_url_match is None:
raise LookupError("Couldn't obtain AWS api url for PDImageArchive")
api_url = extr(resp.text, 'const r="', '"', default=None)
api_url = api_url_match.group(1)
if api_url is None:
raise LookupError("Couldn't obtain AWS api url for PDImageArchive")
__CACHED_API_URL = api_url
return api_url
+44
View File
@@ -0,0 +1,44 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""Svgrepo (icons)"""
from lxml import html
from searx.utils import extract_text, eval_xpath, eval_xpath_list
about = {
"website": 'https://www.svgrepo.com',
"official_api_documentation": 'https://svgapi.com',
"use_official_api": False,
"require_api_key": False,
"results": 'HTML',
}
paging = True
categories = ['images', 'icons']
base_url = "https://www.svgrepo.com"
results_xpath = "//div[@class='style_nodeListing__7Nmro']/div"
url_xpath = ".//a/@href"
title_xpath = ".//a/@title"
img_src_xpath = ".//img/@src"
def request(query, params):
params['url'] = f"{base_url}/vectors/{query}/{params['pageno']}/"
return params
def response(resp):
results = []
dom = html.fromstring(resp.text)
for result in eval_xpath_list(dom, results_xpath):
results.append(
{
'template': 'images.html',
'url': base_url + extract_text(eval_xpath(result, url_xpath)),
'title': extract_text(eval_xpath(result, title_xpath)).replace(" SVG File", "").replace("Show ", ""),
'img_src': extract_text(eval_xpath(result, img_src_xpath)),
}
)
return results
+1 -10
View File
@@ -22,7 +22,6 @@ Paging:
- :py:obj:`paging`
- :py:obj:`page_size`
- :py:obj:`first_page_num`
- :py:obj:`send_page_num_on_first_page`
Time Range:
@@ -175,10 +174,6 @@ number, but an offset.'''
first_page_num = 1
'''Number of the first page (usually 0 or 1).'''
send_page_num_on_first_page = True
'''Whether to include the page number in the request for the first page.
This can help if an engine blocks request that send a page number for the first page.'''
time_range_support = False
'''Engine supports search time range.'''
@@ -243,14 +238,10 @@ def request(query, params):
if safe_search_val is not None:
safe_search = safe_search_map[safe_search_val]
pageno = ""
if send_page_num_on_first_page or params["pageno"] != 1:
pageno = (params['pageno'] - 1) * page_size + first_page_num
fargs = {
'query': urlencode({'q': query})[2:],
'lang': lang,
'pageno': pageno,
'pageno': (params['pageno'] - 1) * page_size + first_page_num,
'time_range': time_range,
'safe_search': safe_search,
}
+63 -52
View File
@@ -17,14 +17,13 @@ import babel.core
import searx.plugins
from searx import get_setting, settings, autocomplete, favicons
from searx import settings, autocomplete, favicons
from searx.enginelib import Engine
from searx.engines import DEFAULT_CATEGORY
from searx.extended_types import SXNG_Request
from searx.locales import LOCALE_NAMES
from searx.webutils import VALID_LANGUAGE_CODE
from ._settings import SettingsPref
COOKIE_MAX_AGE = 60 * 60 * 24 * 365 * 5 # 5 years
DOI_RESOLVERS = list(settings['doi_resolvers'])
@@ -387,7 +386,6 @@ class ClientPref:
return cls(locale=locale)
@t.final
class Preferences:
"""Validates and saves preferences to cookies"""
@@ -402,91 +400,95 @@ class Preferences:
super().__init__()
self.cfg: SettingsPref = get_setting("preferences")
self.key_value_settings: dict[str, Setting] = {
# fmt: off
'categories': MultipleChoiceSetting(
["general"],
locked="categories" in self.cfg.lock,
choices=categories + ["none"],
['general'],
locked=is_locked('categories'),
choices=categories + ['none']
),
'language': SearchLanguageSetting(
get_setting("search.default_lang"),
locked="language" in self.cfg.lock,
choices=get_setting("search.languages") + [""],
settings['search']['default_lang'],
locked=is_locked('language'),
choices=settings['search']['languages'] + ['']
),
'locale': EnumStringSetting(
get_setting("ui.default_locale"),
locked="locale" in self.cfg.lock,
choices=list(LOCALE_NAMES.keys()) + [""],
settings['ui']['default_locale'],
locked=is_locked('locale'),
choices=list(LOCALE_NAMES.keys()) + ['']
),
'autocomplete': EnumStringSetting(
get_setting("search.autocomplete"),
locked="autocomplete" in self.cfg.lock,
choices=list(autocomplete.backends.keys()) + [""],
settings['search']['autocomplete'],
locked=is_locked('autocomplete'),
choices=list(autocomplete.backends.keys()) + ['']
),
'favicon_resolver': EnumStringSetting(
get_setting("search.favicon_resolver"),
locked="favicon_resolver" in self.cfg.lock,
choices=list(favicons.proxy.CFG.resolver_map.keys()) + [''],
settings['search']['favicon_resolver'],
locked=is_locked('favicon_resolver'),
choices=list(favicons.proxy.CFG.resolver_map.keys()) + ['']
),
'image_proxy': BooleanSetting(
get_setting("server.image_proxy"),
locked="image_proxy" in self.cfg.lock,
settings['server']['image_proxy'],
locked=is_locked('image_proxy')
),
'method': EnumStringSetting(
get_setting("server.method"),
locked="method" in self.cfg.lock,
choices=("GET", "POST"),
settings['server']['method'],
locked=is_locked('method'),
choices=('GET', 'POST')
),
'safesearch': MapSetting(
get_setting("search.safe_search"),
locked="safesearch" in self.cfg.lock,
settings['search']['safe_search'],
locked=is_locked('safesearch'),
map={
"0": 0,
"1": 1,
"2": 2,
},
'0': 0,
'1': 1,
'2': 2
}
),
'theme': EnumStringSetting(
get_setting("ui.default_theme"),
locked="theme" in self.cfg.lock,
choices=themes,
settings['ui']['default_theme'],
locked=is_locked('theme'),
choices=themes
),
'results_on_new_tab': BooleanSetting(
get_setting("ui.results_on_new_tab"),
locked="results_on_new_tab" in self.cfg.lock,
settings['ui']['results_on_new_tab'],
locked=is_locked('results_on_new_tab')
),
'doi_resolver': MultipleChoiceSetting(
[get_setting("default_doi_resolver")],
locked="doi_resolver" in self.cfg.lock,
choices=DOI_RESOLVERS,
[settings['default_doi_resolver'], ],
locked=is_locked('doi_resolver'),
choices=DOI_RESOLVERS
),
'simple_style': EnumStringSetting(
get_setting("ui.theme_args.simple_style"),
locked="simple_style" in self.cfg.lock,
choices=["", "auto", "light", "dark", "black"],
settings['ui']['theme_args']['simple_style'],
locked=is_locked('simple_style'),
choices=['', 'auto', 'light', 'dark', 'black']
),
'center_alignment': BooleanSetting(
get_setting("ui.center_alignment"),
locked="center_alignment" in self.cfg.lock,
settings['ui']['center_alignment'],
locked=is_locked('center_alignment')
),
'advanced_search': BooleanSetting(
settings['ui']['advanced_search'],
locked=is_locked('advanced_search')
),
'query_in_title': BooleanSetting(
get_setting("ui.query_in_title"),
locked="query_in_title" in self.cfg.lock,
settings['ui']['query_in_title'],
locked=is_locked('query_in_title')
),
'search_on_category_select': BooleanSetting(
get_setting("ui.search_on_category_select"),
locked="search_on_category_select" in self.cfg.lock,
settings['ui']['search_on_category_select'],
locked=is_locked('search_on_category_select')
),
'hotkeys': EnumStringSetting(
get_setting("ui.hotkeys"),
choices=["default", "vim"],
settings['ui']['hotkeys'],
choices=['default', 'vim']
),
'url_formatting': EnumStringSetting(
get_setting("ui.url_formatting"),
choices=["pretty", "full", "host"],
settings['ui']['url_formatting'],
choices=['pretty', 'full', 'host']
),
# fmt: on
}
self.engines = EnginesSetting('engines', engines=engines.values())
@@ -595,3 +597,12 @@ class Preferences:
break
return valid
def is_locked(setting_name: str):
"""Checks if a given setting name is locked by settings.yml"""
if 'preferences' not in settings:
return False
if 'lock' not in settings['preferences']:
return False
return setting_name in settings['preferences']['lock']
+1
View File
@@ -152,6 +152,7 @@ class OnlineProcessor(EngineProcessor):
# add Accept-Language header
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Accept-Language
headers["Accept-Language"] = "en,en-US;q=0.7,en;q=0.3"
if self.engine.send_accept_language_header and search_query.locale:
_l = search_query.locale.language
_t = search_query.locale.territory or _l
+11 -37
View File
@@ -154,13 +154,14 @@ ui:
# URL formatting: pretty, full or host
url_formatting: pretty
preferences:
# Lock arbitrary settings on the preferences page.
lock: []
# Lock arbitrary settings on the preferences page.
#
# preferences:
# lock:
# - categories
# - language
# - autocomplete
# - favicon_resolver
# - favicon
# - safesearch
# - method
# - doi_resolver
@@ -964,22 +965,6 @@ engines:
timeout: 8.0
disabled: true
- name: gabanza
engine: xpath
search_url: https://www.gabanza.com/search?query={query}
shortcut: gab
timeout: 4
disabled: true
results_xpath: //div[contains(@class, "border-t")]/div/div
url_xpath: (.//a/@href)[1]
title_xpath: ./a
content_xpath: .//p
about:
website: https://www.gabanza.com
use_official_api: false
require_api_key: false
results: HTML
- name: geizhals
engine: geizhals
shortcut: geiz
@@ -2564,6 +2549,12 @@ engines:
results: HTML
language: de
- name: svgrepo
engine: svgrepo
shortcut: svg
timeout: 10.0
disabled: true
- name: tootfinder
engine: tootfinder
shortcut: toot
@@ -2609,23 +2600,6 @@ engines:
shortcut: wttr
timeout: 9.0
- name: zapmeta
engine: xpath
shortcut: zpm
search_url: https://www.zapmeta.com/search?q={query}&pg={pageno}
results_xpath: //article[contains(@class, "organic-results-item")]
url_xpath: ./h2/a/@href
title_xpath: ./h2
content_xpath: ./p
paging: true
send_page_num_on_first_page: false # otherwise blocks requests
disabled: true
about:
website: https://www.zapmeta.com/
use_official_api: false
require_api_key: false
results: HTML
- name: braveapi
engine: braveapi
# read https://docs.searxng.org/dev/engines/online/brave.html
+4 -4
View File
@@ -15,7 +15,6 @@ import msgspec
from typing_extensions import override
from .brand import SettingsBrand
from .sxng_locales import sxng_locales
from ._settings import SettingsPref
searx_dir = abspath(dirname(__file__))
@@ -147,8 +146,6 @@ def apply_schema(settings: dict[str, t.Any], schema: dict[str, t.Any], path_list
# Type Validation at runtime:
# https://jcristharif.com/msgspec/structs.html#type-validation
cfg_dict = settings.get(key)
if cfg_dict is None:
cfg_dict = {}
cfg_json = msgspec.json.encode(cfg_dict)
settings[key] = msgspec.json.decode(cfg_json, type=value)
except msgspec.ValidationError as e:
@@ -239,13 +236,16 @@ SCHEMA: dict[str, t.Any] = {
},
'center_alignment': SettingsValue(bool, False),
'results_on_new_tab': SettingsValue(bool, False),
'advanced_search': SettingsValue(bool, False),
'query_in_title': SettingsValue(bool, False),
'cache_url': SettingsValue(str, 'https://web.archive.org/web/'),
'search_on_category_select': SettingsValue(bool, True),
'hotkeys': SettingsValue(('default', 'vim'), 'default'),
'url_formatting': SettingsValue(('pretty', 'full', 'host'), 'pretty'),
},
"preferences": SettingsPref,
'preferences': {
'lock': SettingsValue(list, []),
},
'outgoing': {
'useragent_suffix': SettingsValue(str, ''),
'request_timeout': SettingsValue(numbers.Real, 3.0),
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -180,7 +180,7 @@
{%- if 'autocomplete' not in locked_preferences -%}
{%- include 'simple/preferences/autocomplete.html' -%}
{%- endif -%}
{%- if 'favicon_resolver' not in locked_preferences -%}
{%- if 'favicon' not in locked_preferences -%}
{%- include 'simple/preferences/favicon.html' -%}
{%- endif -%}
{% if 'safesearch' not in locked_preferences %}
Binary file not shown.
+22 -20
View File
@@ -18,14 +18,14 @@
# French <french@noreply.codeberg.org>, 2025.
# return42 <return42@noreply.codeberg.org>, 2025, 2026.
# Raithlin <raithlin@noreply.codeberg.org>, 2025.
# grumpyoldtechie <grumpyoldtechie@noreply.codeberg.org>, 2025, 2026.
# grumpyoldtechie <grumpyoldtechie@noreply.codeberg.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"PO-Revision-Date: 2026-05-25 10:44+0000\n"
"Last-Translator: grumpyoldtechie <grumpyoldtechie@noreply.codeberg.org>\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: af\n"
"Language-Team: Afrikaans "
"<https://translate.codeberg.org/projects/searxng/searxng/af/>\n"
@@ -546,28 +546,28 @@ msgstr "toe"
msgid "answered"
msgstr "geantwoord"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Geen item gevind"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Bron"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Fout met die laai van die volgende bladsy"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Ongeldige opstellings, redigeer asb jou voorkeure"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Ongeldige opstellings"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "soekfout"
@@ -627,12 +627,12 @@ msgstr "bediener API fout"
msgid "Suspended"
msgstr "Opgehef"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minute gelede"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ure, {minutes} minute gelede"
@@ -771,11 +771,12 @@ msgid "Infinite scroll"
msgstr "Oneindige blaai"
#: searx/plugins/infinite_scroll.py:26
#, fuzzy
msgid ""
"Automatically loads the next page when scrolling to bottom of the current"
" page"
msgstr ""
"Laai die volgende bladsy outomaties wanneer na die onderkant van die "
"Laai outomaties die volgende bladsy wanneer na die onderkant van die "
"huidige bladsy geblaai word"
#: searx/plugins/oa_doi_rewrite.py:54
@@ -1028,19 +1029,23 @@ msgstr "Spesiale Navrae"
msgid "Cookies"
msgstr "Koekies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Aantal resultate"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Info"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Terug na bo"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Vorige bladsy"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Volgende bladsy"
@@ -2156,6 +2161,3 @@ msgstr "versteek video"
#~ msgid "Supports selected language"
#~ msgstr "Ondersteun gekose taal"
#~ msgid "Number of results"
#~ msgstr "Aantal resultate"
Binary file not shown.
+88 -90
View File
@@ -27,29 +27,27 @@
# return42 <return42@noreply.codeberg.org>, 2025, 2026.
# DZDevelopers <dzdevelopers@noreply.codeberg.org>, 2025.
# youtherthyf <youtherthyf@noreply.codeberg.org>, 2025.
# mustafa-phd <mustafa-phd@noreply.codeberg.org>, 2026.
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"PO-Revision-Date: 2026-05-27 12:07+0000\n"
"Last-Translator: mustafa-phd <mustafa-phd@noreply.codeberg.org>\n"
"Language-Team: Arabic <https://translate.codeberg.org/projects/searxng/"
"searxng/ar/>\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\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 2026.5\n"
"Generated-By: Babel 2.18.0\n"
#. CONSTANT_NAMES['NO_SUBGROUPING']
#: searx/searxng.msg
msgid "without further subgrouping"
msgstr "بدون تقسيم إضافي"
msgstr "بدون تقسيم"
#. CONSTANT_NAMES['DEFAULT_CATEGORY']
#: searx/searxng.msg
@@ -74,7 +72,7 @@ msgstr "موسيقى"
#. CATEGORY_NAMES['SOCIAL_MEDIA']
#: searx/searxng.msg
msgid "social media"
msgstr "التواصل الإجتماعي"
msgstr "شبكات التواصل الإجتماعي"
#. CATEGORY_NAMES['IMAGES']
#: searx/searxng.msg
@@ -89,7 +87,7 @@ msgstr "ڤيديوهات"
#. CATEGORY_NAMES['RADIO']
#: searx/engines/radio_browser.py:146 searx/searxng.msg
msgid "radio"
msgstr "إذاعة"
msgstr "راديو"
#. CATEGORY_NAMES['TV']
#: searx/searxng.msg
@@ -99,7 +97,7 @@ msgstr "تلفاز"
#. CATEGORY_NAMES['IT']
#: searx/searxng.msg
msgid "it"
msgstr "علوم التقنية"
msgstr "علوم التكنولوجيا"
#. CATEGORY_NAMES['NEWS']
#: searx/searxng.msg
@@ -114,7 +112,7 @@ msgstr "خريطة"
#. CATEGORY_NAMES['ONIONS']
#: searx/searxng.msg
msgid "onions"
msgstr "أونيون"
msgstr "برمجيات البصلة"
#. CATEGORY_NAMES['SCIENCE']
#: searx/searxng.msg
@@ -154,12 +152,12 @@ msgstr "مستودعات"
#. CATEGORY_GROUPS['SOFTWARE_WIKIS']
#: searx/searxng.msg
msgid "software wikis"
msgstr "موسوعات البرمجية"
msgstr "الموسوعات التشاركية للبرنامج"
#. CATEGORY_GROUPS['WEB']
#: searx/searxng.msg
msgid "web"
msgstr "الويب"
msgstr "الشبكة العالمية"
#. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
#: searx/searxng.msg
@@ -194,17 +192,17 @@ msgstr "فترة التشغيل"
#. BRAND_CUSTOM_LINKS['ABOUT']
#: searx/searxng.msg searx/templates/simple/base.html:47
msgid "About"
msgstr "حول"
msgstr "حَول"
#. WEATHER_TERMS['AVERAGE TEMP.']
#: searx/searxng.msg
msgid "Average temp."
msgstr "متوسط درجة الحرارة."
msgstr "متوسط الحرارة"
#. WEATHER_TERMS['CLOUD COVER']
#: searx/searxng.msg
msgid "Cloud cover"
msgstr "نسبة الغيوم"
msgstr "حالة الطقس"
#. WEATHER_TERMS['CONDITION']
#: searx/searxng.msg
@@ -214,7 +212,7 @@ msgstr "غائم"
#. WEATHER_TERMS['CURRENT CONDITION']
#: searx/searxng.msg
msgid "Current condition"
msgstr "حالة الطقس"
msgstr "الحالة الحالية"
#. WEATHER_TERMS['EVENING']
#: searx/searxng.msg
@@ -234,12 +232,12 @@ msgstr "رطوبة"
#. WEATHER_TERMS['MAX TEMP.']
#: searx/searxng.msg
msgid "Max temp."
msgstr "أقصى درجة حرارة."
msgstr "الحرارة العظمى"
#. WEATHER_TERMS['MIN TEMP.']
#: searx/searxng.msg
msgid "Min temp."
msgstr "أدنى درجة حرارة."
msgstr "الحرارة الدنيا"
#. WEATHER_TERMS['MORNING']
#: searx/searxng.msg
@@ -249,12 +247,12 @@ msgstr "صباحا"
#. WEATHER_TERMS['NIGHT']
#: searx/searxng.msg
msgid "Night"
msgstr "ليلاً"
msgstr "ليلا"
#. WEATHER_TERMS['NOON']
#: searx/searxng.msg
msgid "Noon"
msgstr "ظهرا"
msgstr "ظهيرة"
#. WEATHER_TERMS['PRESSURE']
#: searx/searxng.msg searx/templates/simple/answer/weather.html:25
@@ -264,17 +262,17 @@ msgstr "الضغط"
#. WEATHER_TERMS['SUNRISE']
#: searx/searxng.msg
msgid "Sunrise"
msgstr "شروق"
msgstr "الشروق"
#. WEATHER_TERMS['SUNSET']
#: searx/searxng.msg
msgid "Sunset"
msgstr "غروب"
msgstr "الغروب"
#. WEATHER_TERMS['TEMPERATURE']
#: searx/searxng.msg searx/templates/simple/answer/weather.html:17
msgid "Temperature"
msgstr "درجة حرارة"
msgstr "درجة الحرارة"
#. WEATHER_TERMS['UV INDEX']
#: searx/searxng.msg
@@ -339,12 +337,12 @@ msgstr "مطر خفيف"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Rain and thunder"
msgstr "مطر ورعد"
msgstr "مطر و رعد"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Rain showers and thunder"
msgstr "زخات مطر ورعد"
msgstr "زخات مطر و رعد"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
@@ -359,12 +357,12 @@ msgstr "مطر"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy rain and thunder"
msgstr "مطر غزير ورعد"
msgstr "مطر غزير و رعد"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy rain showers and thunder"
msgstr "رعد وزخات مطر شديدة"
msgstr "رعد و زخات مطر شديدة"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
@@ -379,7 +377,7 @@ msgstr "مطر غزير"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Light sleet and thunder"
msgstr "مطر خفيف مخلوط بثلج ورعد"
msgstr "مطر خفيف مخلوط بثلج و رعد"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
@@ -389,62 +387,62 @@ msgstr "زخات مطر خفيفة مصحوبة بثلج ورعد"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Light sleet showers"
msgstr "زخات ثلجية خفيفة"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Light sleet"
msgstr "تساقط ثلجي خفيف"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Sleet and thunder"
msgstr "ثلوج ورعد"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Sleet showers and thunder"
msgstr "زخات مطر ثلجي ورعد"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Sleet showers"
msgstr "زخات مطر ثلجي"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Sleet"
msgstr "مطر ثلجي"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy sleet and thunder"
msgstr "مطر ثلجي غزير ورعد"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy sleet showers and thunder"
msgstr "زخات مطر ثلجي غزيرة ورعد"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy sleet showers"
msgstr "زخات مطر ثلجي غزيرة"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy sleet"
msgstr "مطر ثلجي غزير"
msgstr ""
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Light snow and thunder"
msgstr "رعد وثلج خفيف"
msgstr "رعد و ثلج خفيف"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Light snow showers and thunder"
msgstr "رعد وزخات ثلج خفيفة"
msgstr "رعد و زخات ثلج خفيفة"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
@@ -459,12 +457,12 @@ msgstr "ثلج خفيف"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Snow and thunder"
msgstr "رعد وثلج"
msgstr "رعد و ثلج"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Snow showers and thunder"
msgstr "رعد وزخات ثلج"
msgstr "رعد و زخات ثلج"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
@@ -479,12 +477,12 @@ msgstr "ثلج"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy snow and thunder"
msgstr "رعد وثلج شديد"
msgstr "رعد و ثلج شديد"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
msgid "Heavy snow showers and thunder"
msgstr "رعد وزخات ثلج شديدة"
msgstr "رعد و زخات ثلج شديدة"
#. WEATHER_CONDITIONS
#: searx/searxng.msg
@@ -499,12 +497,12 @@ msgstr "ثلج شديد"
#. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
#: searx/engines/lemmy.py:85 searx/searxng.msg
msgid "subscribers"
msgstr "مشتركين"
msgstr "المشتركين"
#. SOCIAL_MEDIA_TERMS['POSTS']
#: searx/engines/lemmy.py:86 searx/searxng.msg
msgid "posts"
msgstr "منشورات"
msgstr "المنشور"
#. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
#: searx/engines/lemmy.py:87 searx/searxng.msg
@@ -535,12 +533,12 @@ msgstr "النقاط"
#. SOCIAL_MEDIA_TERMS['TITLE']
#: searx/searxng.msg
msgid "title"
msgstr "عنوان"
msgstr "العنوان"
#. SOCIAL_MEDIA_TERMS['AUTHOR']
#: searx/engines/hackernews.py:86 searx/searxng.msg
msgid "author"
msgstr "كاتب"
msgstr "الكاتب"
#. SOCIAL_MEDIA_TERMS['THREAD OPEN']
#: searx/engines/discourse.py:149 searx/searxng.msg
@@ -555,36 +553,36 @@ msgstr "مغلق"
#. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
#: searx/engines/discourse.py:160 searx/searxng.msg
msgid "answered"
msgstr "تمت الإجابة"
msgstr "أُجيبت"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "لم يتم العثور على عنصر"
msgstr "تعذر العثور على عناصر"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "مصدر"
msgstr "المصدر"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "خطأ في تحميل الصفحة التالية"
msgstr "حدث خلل أثناء تحميل الصفحة التالية"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "إعدادات غير صالحة، يرجى تعديل تفضيلاتك"
msgstr "إنّ الإعدادات خاطئة، يرجى تعديل خياراتك"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "إعدادات غير صالحة"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "خطأ في البحث"
#: searx/webutils.py:36
msgid "timeout"
msgstr "انتهت المهلة"
msgstr "نفذ الوقت"
#: searx/webutils.py:37
msgid "parsing error"
@@ -616,7 +614,7 @@ msgstr "خطأ في اتصال HTTP"
#: searx/webutils.py:56
msgid "proxy error"
msgstr "خطأ في الخادم الوكيل"
msgstr "خطأ في وكيل البروكسي"
#: searx/webutils.py:57
msgid "CAPTCHA"
@@ -632,21 +630,21 @@ msgstr "الدخول مرفوض"
#: searx/webutils.py:60
msgid "server API error"
msgstr "خطأ في واجهة برمجة التطبيقات الخادم"
msgstr "خطأ في API الخادم"
#: searx/webutils.py:79
msgid "Suspended"
msgstr "معلق"
#: searx/webutils.py:307
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "منذ {minutes} دقيقة"
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minute(s) ago"
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "منذ {hours} ساعات، {minutes} دقائق"
msgstr "قبل {hours} ساعات، {minutes} دقائق"
#: searx/answerers/random.py:68
msgid "Generate different random values"
@@ -660,20 +658,20 @@ msgstr "حساب {func} من الحجج"
#: searx/engines/boardreader.py:107
#, python-brace-format
msgid "Posted by {author}"
msgstr "منشور بواسطة {author}"
msgstr ""
#: searx/engines/openstreetmap.py:155
msgid "Show route in map .."
msgstr "اظهار المسار على الخريطة .."
msgstr "أظهِر الطريق على الخريطة .."
#: searx/engines/pdbe.py:96
#, python-brace-format
msgid "{title} (OBSOLETE)"
msgstr "{title} (قديم)"
msgstr "{title} (قديما)"
#: searx/engines/pdbe.py:103
msgid "This entry has been superseded by"
msgstr "تم استبدال هذا الإدخال بـ"
msgstr "هذا الإدخال تم استبداله بـ"
#: searx/engines/qwant.py:293
msgid "Channel"
@@ -870,7 +868,7 @@ msgstr "التحويل بين الوحدات"
#: searx/result_types/answer.py:223
#, python-brace-format
msgid "{location}: {temperature}, {condition}"
msgstr "{location}:{temperature},{condition}"
msgstr "{مكان}:{حرارة},{وضع}"
#: searx/templates/simple/404.html:4
msgid "Page not found"
@@ -993,8 +991,6 @@ msgid ""
"This is a preview of the settings used by the 'Search URL' you used to "
"get here."
msgstr ""
"هذه معاينة للإعدادات المستخدمة في 'عنوان URL للبحث' الذي استخدمته للوصول إلى "
"هنا."
#: searx/templates/simple/preferences.html:158
msgid "Press save to copy these preferences to your browser."
@@ -1036,19 +1032,23 @@ msgstr "استفسارات خاصة"
msgid "Cookies"
msgstr "كعكات الكوكيز"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "حصيلة نتائج البحث"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "معلومات"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "العودة للأعلى"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "الصفحة السابقة"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "الصفحة التالية"
@@ -1294,7 +1294,7 @@ msgstr "حدث الصفحة."
#: searx/templates/simple/messages/no_results.html:20
msgid "Search for another query or select another category (above)."
msgstr "ابحث عن استعلام آخر أو اختار فئة أخرى (أعلاه)."
msgstr "ابحث عن استعلام آخر أو اختار فئة أخرى (أعلاه)"
#: searx/templates/simple/messages/no_results.html:21
msgid "Change the search engine used in the preferences:"
@@ -1324,7 +1324,7 @@ msgstr "الكلمات الرئيسية (أول كلمة في الاستعلام
#: searx/templates/simple/preferences/answerers.html:6
#: searx/templates/simple/result_templates/packages.html:7
msgid "Name"
msgstr "الإسم"
msgstr "التسمية"
#: searx/templates/simple/preferences/answerers.html:7
msgid "Description"
@@ -1666,7 +1666,7 @@ msgstr "عرض المصدر"
#: searx/templates/simple/result_templates/map.html:12
msgid "address"
msgstr "عنوان السكن"
msgstr "عنوان"
#: searx/templates/simple/result_templates/map.html:43
msgid "show map"
@@ -1763,7 +1763,7 @@ msgstr "الحاصد"
#: searx/templates/simple/result_templates/torrent.html:19
msgid "Number of Files"
msgstr "عدد ملفات"
msgstr "عدد الملفات"
#: searx/templates/simple/result_templates/videos.html:6
msgid "show video"
@@ -2394,5 +2394,3 @@ msgstr "إخفاء الفيديو"
#~ msgid "Supports selected language"
#~ msgstr "يدعم اللغة المختارة"
#~ msgid "Number of results"
#~ msgstr "حصيلة نتائج البحث"
Binary file not shown.
+17 -16
View File
@@ -23,7 +23,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: bg\n"
@@ -546,28 +546,28 @@ msgstr "Затворено"
msgid "answered"
msgstr "Отговорено"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Не е намерен артикул"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Източник"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Грешка при зареждането на следващата страница"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Неправилни настройки, моля редактирайте предпочитанията си"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Невалидни настройки"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "Грешка при търсенето"
@@ -627,12 +627,12 @@ msgstr "грешка в API на сървъра"
msgid "Suspended"
msgstr "преустановен"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "преди {minutes} минута(минути)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "преди {hours} час(ове), {minutes} минута(минути)"
@@ -1021,19 +1021,23 @@ msgstr "Специялни Запитвания"
msgid "Cookies"
msgstr "Бисквитки"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Брой резултати"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Инф."
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Обратно към началото"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Предишна страница"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Следваща страница"
@@ -2394,6 +2398,3 @@ msgstr "скрий видеото"
#~ msgid "Supports selected language"
#~ msgstr "Поддържка на избраният език"
#~ msgid "Number of results"
#~ msgstr "Брой резултати"
Binary file not shown.
+17 -16
View File
@@ -29,7 +29,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: bn\n"
@@ -552,28 +552,28 @@ msgstr "বন্ধ"
msgid "answered"
msgstr "উত্তরকৃত"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "কোন আইটেম পাওয়া যায়নি"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "উৎস"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "পরবর্তী পৃষ্ঠাটি লোড করায় ত্রুটি দেখা যাচ্ছে"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "অকেজো সেটিংস, অনুগ্রহ করে আপনার পছন্দগুলি সম্পাদনা করুন"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "অকেজো সেটিংস"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "সার্চ ত্রুটি"
@@ -633,12 +633,12 @@ msgstr "সার্ভার API ত্রুটি"
msgid "Suspended"
msgstr "স্থগিত"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} মিনিট আগে"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ঘণ্টা, {minutes} মিনিট আগে"
@@ -1028,19 +1028,23 @@ msgstr "বিশেষ প্রশ্ন"
msgid "Cookies"
msgstr "কুকি"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "ফলাফলের সংখ্যা"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "তথ্য"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "উপরে ফিরে যান"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "পূর্ববর্তী পেইজ"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "পরবর্তী পেইজ"
@@ -2152,6 +2156,3 @@ msgstr "ভিডিও লুকিয়ে ফেলুন"
#~ msgid "Supports selected language"
#~ msgstr "নির্বাচিত ভাষা সমর্থন করে"
#~ msgid "Number of results"
#~ msgstr "ফলাফলের সংখ্যা"
Binary file not shown.
+17 -16
View File
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: bo\n"
@@ -536,28 +536,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr ""
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
@@ -617,12 +617,12 @@ msgstr ""
msgid "Suspended"
msgstr ""
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "སྐར་མ་ {minutes} སྔོན་ལ།"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
@@ -995,19 +995,23 @@ msgstr ""
msgid "Cookies"
msgstr "རྐང་རྗེས།"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "འཚོལ་འབྲས་ཀྱི་ཁ་གྲངས།"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr ""
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr ""
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr ""
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr ""
@@ -2285,6 +2289,3 @@ msgstr "རྙན་ཟློས་སྦས།"
#~ msgid "Supports selected language"
#~ msgstr "རྒྱབ་སྐྱོར་ཐོབ་པའི་སྐད་རིགས་གདམ་གསེས།"
#~ msgid "Number of results"
#~ msgstr "འཚོལ་འབྲས་ཀྱི་ཁ་གྲངས།"
Binary file not shown.
+17 -16
View File
@@ -31,7 +31,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: ca\n"
@@ -554,28 +554,28 @@ msgstr "tancat"
msgid "answered"
msgstr "contestat"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "No s'ha trobat cap element"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Origen"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "S'ha produït un error en carregar la següent pàgina"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "La configuració no és vàlida, editeu-la"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "La configuració no és vàlida"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "error de cerca"
@@ -635,12 +635,12 @@ msgstr "error en l'API del servidor"
msgid "Suspended"
msgstr "Suspès"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "fa {minutes} minut(s)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "fa {hours} hores i {minutes} minut(s)"
@@ -1027,19 +1027,23 @@ msgstr "Consultes especials"
msgid "Cookies"
msgstr "Galetes"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Nombre de resultats"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informació"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Torna al capdemunt"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Pàgina anterior"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Pàgina següent"
@@ -2414,6 +2418,3 @@ msgstr "oculta el vídeo"
#~ msgid "Supports selected language"
#~ msgstr "Suporta la llengua seleccionada"
#~ msgid "Number of results"
#~ msgstr "Nombre de resultats"
Binary file not shown.
+17 -16
View File
@@ -27,7 +27,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-03-26 03:57+0000\n"
"Last-Translator: Fjuro <fjuro@noreply.codeberg.org>\n"
"Language: cs\n"
@@ -551,28 +551,28 @@ msgstr "zavřené"
msgid "answered"
msgstr "zodpovězené"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nic nenalezeno"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "zdroj"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Chyba při načítání další stránky"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Neplatné nastavení, upravte své předvolby"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Neplatné nastavení"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "chyba vyhledávání"
@@ -632,12 +632,12 @@ msgstr "chyba API serveru"
msgid "Suspended"
msgstr "Pozastaveno"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "před {minutes} minutami"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "před {hours} hodinami, {minutes} minutami"
@@ -1030,19 +1030,23 @@ msgstr "Zvláštní dotazy"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Počet výsledků"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informace"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Nahoru"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Předchozí stránka"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Další stránka"
@@ -2400,6 +2404,3 @@ msgstr "skrýt video"
#~ msgid "Supports selected language"
#~ msgstr "Podporuje vybraný jazyk"
#~ msgid "Number of results"
#~ msgstr "Počet výsledků"
Binary file not shown.
+17 -16
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: cy\n"
@@ -544,28 +544,28 @@ msgstr "ar gau"
msgid "answered"
msgstr "wedi'i ateb"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Ni chanfuwyd eitem"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Ffynhonnell"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Gwall wrth lwytho'r dudalen nesaf"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Gosodiadau annilys, golygwch eich dewisiadau"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Gosodiadau annilys"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "gwall chwilio"
@@ -625,12 +625,12 @@ msgstr "gwall API gweinydd"
msgid "Suspended"
msgstr "Atal"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} munud yn ôl"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} awr, {minutes} munud yn ôl"
@@ -1018,19 +1018,23 @@ msgstr "Ymholiadau arbennig"
msgid "Cookies"
msgstr "Briwsion"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Nifer o ganlyniadau"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Gwybodaeth"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Yn ôl i'r brig"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Tudalen flaenorol"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Tudalen nesaf"
@@ -2353,6 +2357,3 @@ msgstr "cuddio'r fideo"
#~ msgid "Supports selected language"
#~ msgstr "Cefnogir yr iaith a ddewiswyd"
#~ msgid "Number of results"
#~ msgstr "Nifer o ganlyniadau"
Binary file not shown.
+17 -16
View File
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: da\n"
@@ -542,28 +542,28 @@ msgstr "lukket"
msgid "answered"
msgstr "svaret"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Intet fundet"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Kilde"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Fejl ved indlæsning af den næste side"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Ugyldige indstillinger, redigér venligst dine valg"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Ugyldig indstilling"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "søgefejl"
@@ -623,12 +623,12 @@ msgstr "server-API-fejl"
msgid "Suspended"
msgstr "Suspenderet"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "for {minutes} minut(ter) siden"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "for {hours} time(r) og {minutes} minut(ter) siden"
@@ -1024,19 +1024,23 @@ msgstr "Specielle Søgetermer"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Antal resultater"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Info"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Tilbage til toppen"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Forrige side"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Næste side"
@@ -2409,6 +2413,3 @@ msgstr "skjul video"
#~ msgid "Supports selected language"
#~ msgstr "Understøtter valgte sprog"
#~ msgid "Number of results"
#~ msgstr "Antal resultater"
Binary file not shown.
+17 -16
View File
@@ -34,7 +34,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-03-26 03:57+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: de\n"
@@ -557,28 +557,28 @@ msgstr "geschlossen"
msgid "answered"
msgstr "beantwortet"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Keine Einträge gefunden"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Quelle"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Fehler beim Laden der nächsten Seite"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Ungültige Einstellungen, bitte Einstellungen ändern"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Ungültige Einstellungen"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "Suchfehler"
@@ -638,12 +638,12 @@ msgstr "Server-API-Fehler"
msgid "Suspended"
msgstr "Ausgesetzt"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "vor {minutes} Minute(n)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "vor {hours} Stunde(n), {minutes} Minute(n)"
@@ -1045,19 +1045,23 @@ msgstr "Besondere Abfragen"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Trefferanzahl"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Information"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Zurück zum Anfang"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Vorherige Seite"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Nächste Seite"
@@ -2456,6 +2460,3 @@ msgstr "Video verstecken"
#~ msgid "Supports selected language"
#~ msgstr "Sprachen"
#~ msgid "Number of results"
#~ msgstr "Trefferanzahl"
Binary file not shown.
+17 -16
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2025-08-13 08:09+0000\n"
"Last-Translator: ijxp <ijxp@noreply.codeberg.org>\n"
"Language: dv\n"
@@ -533,28 +533,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr ""
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr ""
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr ""
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr ""
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr ""
@@ -614,12 +614,12 @@ msgstr ""
msgid "Suspended"
msgstr ""
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr ""
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr ""
@@ -992,19 +992,23 @@ msgstr ""
msgid "Cookies"
msgstr ""
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr ""
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr ""
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr ""
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr ""
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr ""
@@ -2016,6 +2020,3 @@ msgstr ""
#~ msgid "Supports selected language"
#~ msgstr ""
#~ msgid "Number of results"
#~ msgstr ""
Binary file not shown.
@@ -25,7 +25,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: el_GR\n"
@@ -548,28 +548,28 @@ msgstr "κλειστό"
msgid "answered"
msgstr "απάντησε"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Δεν βρέθηκαν αντικείμενα"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Πηγή"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Σφάλμα φόρτωσης της επόμενης σελίδας"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Μη έγκυρες ρυθμίσεις, παρακαλούμε ελέγξτε τις προτιμήσεις σας"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Μη έγκυρες ρυθμίσεις"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "σφάλμα αναζήτησης"
@@ -629,12 +629,12 @@ msgstr "Σφάλμα API διακομιστή"
msgid "Suspended"
msgstr "Σε αναστολή"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} λεπτά πριν"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ώρα(-ες), {minutes} λεπτό(-ά) πριν"
@@ -1030,19 +1030,23 @@ msgstr "Ειδικά Ερωτήματα"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Αριθμός αποτελεσμάτων"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Πληροφορίες"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Επιστροφή στην κορυφή"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Προηγούμενη σελίδα"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Επόμενη σελίδα"
@@ -2429,6 +2433,3 @@ msgstr "απόκρυψη βίντεο"
#~ msgid "Supports selected language"
#~ msgstr "Υποστηρίζει την επιλεγμένη γλώσσα"
#~ msgid "Number of results"
#~ msgstr "Αριθμός αποτελεσμάτων"
Binary file not shown.
+17 -16
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2014-01-30 15:22+0100\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
@@ -529,28 +529,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr ""
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr ""
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr ""
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr ""
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr ""
@@ -610,12 +610,12 @@ msgstr ""
msgid "Suspended"
msgstr ""
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr ""
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr ""
@@ -988,19 +988,23 @@ msgstr ""
msgid "Cookies"
msgstr ""
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr ""
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr ""
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr ""
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr ""
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr ""
@@ -2277,6 +2281,3 @@ msgstr ""
#~ msgid "Supports selected language"
#~ msgstr ""
#~ msgid "Number of results"
#~ msgstr ""
Binary file not shown.
+17 -16
View File
@@ -23,7 +23,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: eo\n"
@@ -546,28 +546,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nenio trovita"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Fonto"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Eraro dum la ŝarĝado de la sekvan paĝon"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Nevalidaj agordoj, bonvolu redaktu viajn agordojn"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Nevalidaj agordoj"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "serĉa eraro"
@@ -627,12 +627,12 @@ msgstr "servilo-API-eraro"
msgid "Suspended"
msgstr "Suspendigita"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "antaŭ {minutes} minuto(j)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
@@ -1017,19 +1017,23 @@ msgstr "Specialaj Demandoj"
msgid "Cookies"
msgstr "Kuketoj"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Nombro da rezultoj"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Info"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Reen al supro"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Antaŭa paĝo"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Sekva paĝo"
@@ -2365,6 +2369,3 @@ msgstr "kaŝi videojn"
#~ msgid "Supports selected language"
#~ msgstr "Subtenas elektitan lingvon"
#~ msgid "Number of results"
#~ msgstr "Nombro da rezultoj"
Binary file not shown.
+17 -16
View File
@@ -52,7 +52,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-03-27 07:33+0000\n"
"Last-Translator: gallegonovato <gallegonovato@noreply.codeberg.org>\n"
"Language: es\n"
@@ -575,28 +575,28 @@ msgstr "cerrar"
msgid "answered"
msgstr "contestado"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Ningún artículo encontrado"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Fuente"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Error al cargar la siguiente página"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Ajustes inválidos, por favor, cambia tus preferencias"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Ajustes inválidos"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "error en la búsqueda"
@@ -656,12 +656,12 @@ msgstr "error en la API del servidor"
msgid "Suspended"
msgstr "Suspendido"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "hace {minutes} minuto(s)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
@@ -1056,19 +1056,23 @@ msgstr "Consultas Especiales"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Número de resultados"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Información"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Inicio"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Página anterior"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Siguiente página"
@@ -2453,6 +2457,3 @@ msgstr "ocultar video"
#~ msgid "Supports selected language"
#~ msgstr "Soporta el idioma seleccionado"
#~ msgid "Number of results"
#~ msgstr "Número de resultados"
Binary file not shown.
+17 -16
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-03-27 07:33+0000\n"
"Last-Translator: Priit Jõerüüt <jrtcdbrg@noreply.codeberg.org>\n"
"Language: et\n"
@@ -544,28 +544,28 @@ msgstr "suletud"
msgid "answered"
msgstr "vastatud"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Üksust ei leitud"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Allikas"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Viga järgmise lehekülje laadimisel"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Sobimatud seaded, palun muuda oma eelistusi"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Sobimatud seaded"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "otsingu viga"
@@ -625,12 +625,12 @@ msgstr "serveri API viga"
msgid "Suspended"
msgstr "Peatatud"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minut(it) tagasi"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} tund(i), {minutes} minut(it) tagasi"
@@ -1025,19 +1025,23 @@ msgstr "Spetsiaalsed päringud"
msgid "Cookies"
msgstr "Küpsised"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Tulemuste arv"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Teave"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Tagasi üles"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Eelmine lehekülg"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Järgmine lehekülg"
@@ -2387,6 +2391,3 @@ msgstr "peida video"
#~ msgid "Supports selected language"
#~ msgstr "Toetab valitud keelt"
#~ msgid "Number of results"
#~ msgstr "Tulemuste arv"
Binary file not shown.
+17 -16
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-01 07:50+0000\n"
"Last-Translator: alexgabi <alexgabi@noreply.codeberg.org>\n"
"Language: eu\n"
@@ -543,28 +543,28 @@ msgstr "itxita"
msgid "answered"
msgstr "erantzunda"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Ez da elementurik aurkitu"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Iturria"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Errorea hurrengo orrialdea kargatzean"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Ezarpen baliogabeak, editatu zure hobespenak"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Ezarpen baliogabeak"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "bilaketa akatsa"
@@ -624,12 +624,12 @@ msgstr "API zerbitzariaren errorea"
msgid "Suspended"
msgstr "Etenda"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "duela {minutes} minutu"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "duela {hours} ordu eta {minutes} minutu"
@@ -1022,19 +1022,23 @@ msgstr "Kontsulta bereziak"
msgid "Cookies"
msgstr "Cookieak"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Emaitza kopurua"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informazioa"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Gora bueltatu"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Aurreko orria"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Hurrengo orria"
@@ -2385,6 +2389,3 @@ msgstr "ezkutatu bideoa"
#~ msgid "Supports selected language"
#~ msgstr "Hautatutako hizkuntza onartzen du"
#~ msgid "Number of results"
#~ msgstr "Emaitza kopurua"
Binary file not shown.
@@ -29,7 +29,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: fa_IR\n"
@@ -552,28 +552,28 @@ msgstr "بسته شده"
msgid "answered"
msgstr "جواب داده شده"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "چیزی پیدا نشد"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "منبع"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "خطا در بارگزاری صفحه جدید"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "تنظیمات نادرست است، لطفا تنظیمات جستجو را تغییر دهید"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "تنظیمات نادرست"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "خطای جست‌وجو"
@@ -633,12 +633,12 @@ msgstr "خطای API سرور"
msgid "Suspended"
msgstr "تعلیق‌شده"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} دقیقه پیش"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} ساعت و {minutes} دقیقه پیش"
@@ -1025,19 +1025,23 @@ msgstr "مقدارهای ویژه"
msgid "Cookies"
msgstr "کلوچک‌ها"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "تعداد نتایج"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "اطلاعات"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "برگشتن با بالا"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "صفحهٔ پیشین"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "صفحهٔ بعدی"
@@ -2397,6 +2401,3 @@ msgstr "پنهان‌سازی ویدئو"
#~ msgid "Supports selected language"
#~ msgstr "پشتیبانی از زبان انتخاب شده"
#~ msgid "Number of results"
#~ msgstr "تعداد نتایج"
Binary file not shown.
+17 -16
View File
@@ -23,7 +23,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: fi\n"
@@ -546,28 +546,28 @@ msgstr "suljettu"
msgid "answered"
msgstr "vastattu"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Tietuetta ei löytynyt"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Lähde"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Virhe ladattaessa seuraavaa sivua"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Virheelliset asetukset, muokkaa siis asetuksia"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Virheelliset asetukset"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "hakuvirhe"
@@ -627,12 +627,12 @@ msgstr "palvelimen API-virhe"
msgid "Suspended"
msgstr "Keskeytetty"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minuutti(a) sitten"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} tunti(a), {minutes} minuutti(a) sitten"
@@ -1027,19 +1027,23 @@ msgstr "Erityiset kyselyt"
msgid "Cookies"
msgstr "Evästeet"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Tulosten määrä"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Tiedot"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Takaisin huipulle"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Edellinen sivu"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Seuraava sivu"
@@ -2404,6 +2408,3 @@ msgstr "piilota video"
#~ msgid "Supports selected language"
#~ msgstr "Tukee valittua kieltä"
#~ msgid "Number of results"
#~ msgstr "Tulosten määrä"
Binary file not shown.
+17 -16
View File
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: fil\n"
@@ -546,28 +546,28 @@ msgstr "sarado"
msgid "answered"
msgstr "sinagot"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Walang nakita na aytem"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Pinagmulan"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Error sa paglo-load ng susunod na pahina"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Di-wastong mga setting, pakibago ang iyong mga kagustuhan"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Di-wastong mga setting"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "nagkaproblema sa paghahanap ng mga resulta"
@@ -627,12 +627,12 @@ msgstr "pagkakamali sa server API"
msgid "Suspended"
msgstr "Suspendido"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} na minuto ang nakalipas"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} oras at {minutes} na minto ang nakalipas"
@@ -1020,19 +1020,23 @@ msgstr "Mga Espesyal na Queries"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Bilang ng resulta"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Impormasyon"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Balik sa taas"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Kaninang Pahina"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Susunod na page"
@@ -2414,6 +2418,3 @@ msgstr "itago ang video"
#~ msgid "Supports selected language"
#~ msgstr "Suportado ang pinili na wika"
#~ msgid "Number of results"
#~ msgstr "Bilang ng resulta"
Binary file not shown.
+17 -16
View File
@@ -49,7 +49,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: fr\n"
@@ -572,28 +572,28 @@ msgstr "Fermé"
msgid "answered"
msgstr "répondu"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Pas d'élément trouvé"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Source"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Erreur lors du chargement de la page suivante"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Paramètres non valides, veuillez modifier vos préférences"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Paramètres non valides"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "erreur de recherche"
@@ -653,12 +653,12 @@ msgstr "erreur API du serveur"
msgid "Suspended"
msgstr "Suspendu"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "il y a {minutes} minute(s)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "il y a {hours} heure(s), {minutes} minute(s)"
@@ -1056,19 +1056,23 @@ msgstr "Requêtes spéciales"
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Nombre de résultats"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Infos"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Retour en haut de page"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Page précédente"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Page suivante"
@@ -2460,6 +2464,3 @@ msgstr "cacher la vidéo"
#~ msgid "Supports selected language"
#~ msgstr "Intègre la langue sélectionnée"
#~ msgid "Number of results"
#~ msgstr "Nombre de résultats"
Binary file not shown.
+17 -16
View File
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-05 12:37+0000\n"
"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@noreply.codeberg.org>"
"\n"
@@ -535,28 +535,28 @@ msgstr "dúnta"
msgid "answered"
msgstr "freagraí"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Níor aimsíodh aon rud"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Foinse"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Earráid ag luchtú an chéad leathanach eile"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Socruithe neamhbhailí, cuir do chuid roghanna in"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Socruithe neamhbhaintí"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "earráid cuardaigh"
@@ -616,12 +616,12 @@ msgstr "earráid API freastalaí"
msgid "Suspended"
msgstr "Ar fionraí"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} nóiméad ó shin"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} uair(eanta), {minutes} nóiméad ó shin"
@@ -1018,19 +1018,23 @@ msgstr "Ceisteanna Speisialta"
msgid "Cookies"
msgstr "Fianáin"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Líon na dtorthaí"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Eolas"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Ar ais go dtí an barr"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Leathanach roimhe seo"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "An chéad leathanach eile"
@@ -1960,6 +1964,3 @@ msgstr "físeán a cheilt"
#~ msgid "Supports selected language"
#~ msgstr "Tacaíonn le teanga roghnai"
#~ msgid "Number of results"
#~ msgstr "Líon na dtorthaí"
Binary file not shown.
+17 -16
View File
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-03-26 03:57+0000\n"
"Last-Translator: ghose <ghose@noreply.codeberg.org>\n"
"Language: gl\n"
@@ -539,28 +539,28 @@ msgstr "fechado"
msgid "answered"
msgstr "respondido"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Non se atoparon elementos"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Fonte"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Erro ao cargar a páxina seguinte"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Axustes non válidos, por favor edita a configuración"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Axustes non válidos"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "fallo na busca"
@@ -620,12 +620,12 @@ msgstr "erro na API do servidor"
msgid "Suspended"
msgstr "Suspendido"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "fai {minutes} minuto(s)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "fai {hours} hora(s), {minutes} minuto(s)"
@@ -1020,19 +1020,23 @@ msgstr "Consultas especiais"
msgid "Cookies"
msgstr "Rastros"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Número de resultados"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Info"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Ir arriba"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Páxina anterior"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Páxina seguinte"
@@ -2409,6 +2413,3 @@ msgstr "agochar vídeo"
#~ msgid "Supports selected language"
#~ msgstr "Soporta o idioma seleccionado"
#~ msgid "Number of results"
#~ msgstr "Número de resultados"
Binary file not shown.
+17 -16
View File
@@ -28,7 +28,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: he\n"
@@ -552,28 +552,28 @@ msgstr "סגור"
msgid "answered"
msgstr "נענו"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "לא נמצא פריט"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "מקור"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "שגיאה בטעינת העמוד הבא"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "הגדרות לא תקינות, עליך לתקן את ההעדפות שלך"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "הגדרות לא תקינות"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "שגיאת חיפוש"
@@ -633,12 +633,12 @@ msgstr "שגיאת API שרת"
msgid "Suspended"
msgstr "מושהה"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "לפני {minutes} דקות"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "לפני {hours} שעות, {minutes} דקות"
@@ -1024,19 +1024,23 @@ msgstr "שאילתות מיוחדות"
msgid "Cookies"
msgstr "עוגיות"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "מספר תוצאות"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "מידע"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "בחזרה למעלה"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "עמוד קודם"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "עמוד הבא"
@@ -2364,6 +2368,3 @@ msgstr "הסתר וידאו"
#~ msgid "Supports selected language"
#~ msgstr "תומך בשפה נבחרת"
#~ msgid "Number of results"
#~ msgstr "מספר תוצאות"
Binary file not shown.
+17 -16
View File
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: hr\n"
@@ -548,28 +548,28 @@ msgstr "zatvoren"
msgid "answered"
msgstr "odgovoren"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nije pronađena nijedna stavka"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Izvor"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Greška u učitavnju sljedeće stranice"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Nevažeće postavke, molimo uredite svoje postavke"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Nevažeće postavke"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "greška u pretraživanju"
@@ -629,12 +629,12 @@ msgstr "server API greška"
msgid "Suspended"
msgstr "Suspendirano"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "prije {minutes} minut(u,e,a)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "prije {hours} sat(i,a) i {minutes} minut(u,e,a)"
@@ -1027,19 +1027,23 @@ msgstr "Posebni upiti"
msgid "Cookies"
msgstr "Kolačići"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Broj rezultata"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informacije"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Natrag na vrh"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Prethodna stranica"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Sljedeća stranica"
@@ -2397,6 +2401,3 @@ msgstr "sakrij video"
#~ msgid "Supports selected language"
#~ msgstr "Podržava odabrani jezik"
#~ msgid "Number of results"
#~ msgstr "Broj rezultata"
Binary file not shown.
+17 -16
View File
@@ -25,7 +25,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-03-26 03:57+0000\n"
"Last-Translator: kratos <makesocialfoss32@keemail.me>\n"
"Language: hu\n"
@@ -548,28 +548,28 @@ msgstr "Lezárt"
msgid "answered"
msgstr "megválaszolt"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nincs találat"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Forrás"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Hiba a következő oldal betöltése során"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Érvénytelen beállítások, módosítsa őket"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Érvénytelen beállítások"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "keresési hiba"
@@ -629,12 +629,12 @@ msgstr "kiszolgáló API hiba"
msgid "Suspended"
msgstr "Felfüggesztve"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} perce"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} óra, {minutes} perce"
@@ -1033,19 +1033,23 @@ msgstr "Speciális lekérdezések"
msgid "Cookies"
msgstr "Sütik"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Találatok száma"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Információ"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Vissza a lap tetejére"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Előző oldal"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Következő oldal"
@@ -2411,6 +2415,3 @@ msgstr "videó elrejtése"
#~ msgid "Supports selected language"
#~ msgstr "Támogatja a kiválasztott nyelvet"
#~ msgid "Number of results"
#~ msgstr "Találatok száma"
Binary file not shown.
+17 -16
View File
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: ia\n"
@@ -535,28 +535,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nulle item trovate"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr ""
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Configurationes non valide, per favor, modifica tu preferentias"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Configurationes invalide"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "error in recerca"
@@ -616,12 +616,12 @@ msgstr ""
msgid "Suspended"
msgstr ""
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minuta(s) retro"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} hora(s), {minutes} minuta(s) retro"
@@ -998,19 +998,23 @@ msgstr ""
msgid "Cookies"
msgstr "Cookies"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Numero de resultatos"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr ""
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr ""
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr ""
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr ""
@@ -2330,6 +2334,3 @@ msgstr "occultar video"
#~ msgid "Supports selected language"
#~ msgstr "Supporta le lingua selectionate"
#~ msgid "Number of results"
#~ msgstr "Numero de resultatos"
Binary file not shown.
+17 -16
View File
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-04-01 18:57+0000\n"
"Last-Translator: Linerly <linerly@noreply.codeberg.org>\n"
"Language: id\n"
@@ -547,28 +547,28 @@ msgstr "Tertutup"
msgid "answered"
msgstr "dijawab"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Item tidak ditemukan"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Sumber"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Gagal memuat laman berikutnya"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Pengaturan takvalid. Mohon ubah preferensi Anda"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Pengaturan takvalid"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "galat pencarian"
@@ -628,12 +628,12 @@ msgstr "galat API peladen"
msgid "Suspended"
msgstr "Ditangguhkan"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} menit yang lalu"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} jam, {minutes} menit yang lalu"
@@ -1027,19 +1027,23 @@ msgstr "Pencarian Khusus"
msgid "Cookies"
msgstr "Kuki"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Jumlah hasil"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informasi"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Kembali ke laman atas"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Laman sebelumnya"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Laman berikutnya"
@@ -2300,6 +2304,3 @@ msgstr "sembunyikan video"
#~ msgid "Supports selected language"
#~ msgstr "Mendukung bahasa yang dipilih"
#~ msgid "Number of results"
#~ msgstr "Jumlah hasil"
Binary file not shown.
+17 -16
View File
@@ -48,7 +48,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: it\n"
@@ -571,28 +571,28 @@ msgstr "chiuso"
msgid "answered"
msgstr "risposto"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nessun oggetto trovato"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Sorgente"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Errore di caricamento della pagina successiva"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Impostazioni non valide, modifica le tue preferenze"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Impostazioni non valide"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "errore di ricerca"
@@ -652,12 +652,12 @@ msgstr "errore server API"
msgid "Suspended"
msgstr "Sospeso"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minuto(i) fa"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "di {hours} ora(e) e {minutes} minuto(i) fa"
@@ -1050,19 +1050,23 @@ msgstr "Richieste speciali"
msgid "Cookies"
msgstr "Cookie"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Numero di risultati"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informazioni"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Torna in cima"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Pagina precedente"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Pagina successiva"
@@ -2447,6 +2451,3 @@ msgstr "nascondi video"
#~ msgid "Supports selected language"
#~ msgstr "La lingua selezionata è supportata"
#~ msgid "Number of results"
#~ msgstr "Numero di risultati"
Binary file not shown.
+17 -16
View File
@@ -36,7 +36,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: ja\n"
@@ -559,28 +559,28 @@ msgstr "クローズ"
msgid "answered"
msgstr "回答"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "アイテムが見つかりません"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "ソース"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "次のページの読み込み中にエラーが発生しました"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "設定が無効です、設定を変更してください"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "無効な設定です"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "検索エラー"
@@ -640,12 +640,12 @@ msgstr "サーバー API エラー"
msgid "Suspended"
msgstr "一時停止"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} 分前"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} 時間と{minutes} 分前"
@@ -1020,19 +1020,23 @@ msgstr "特殊クエリー"
msgid "Cookies"
msgstr "クッキー"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "通知の数"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "インフォ"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "トップに戻る"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "前のページ"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "次のページ"
@@ -2315,6 +2319,3 @@ msgstr "動画を隠す"
#~ msgid "Supports selected language"
#~ msgstr "選択された言語のサポート"
#~ msgid "Number of results"
#~ msgstr "通知の数"
Binary file not shown.
+17 -16
View File
@@ -21,7 +21,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: ko\n"
@@ -544,28 +544,28 @@ msgstr "닫힘"
msgid "answered"
msgstr "응답"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "검색 결과가 없습니다"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "소스"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "다음 페이지를 로드하는 동안 오류가 발생했습니다"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "잘못된 설정입니다, 설정을 수정하세요"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "잘못된 설정"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "검색 오류"
@@ -625,12 +625,12 @@ msgstr "서버 API 오류"
msgid "Suspended"
msgstr "중단됨"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes}분 전"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours}시간 {minutes}분 전"
@@ -1011,19 +1011,23 @@ msgstr "특수 쿼리"
msgid "Cookies"
msgstr "쿠키"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "결과 수"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "정보"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "위로 돌아가기"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "이전 페이지"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "다음 페이지"
@@ -2190,6 +2194,3 @@ msgstr "비디오 숨기기"
#~ msgid "Supports selected language"
#~ msgstr "선택 언어 지원함"
#~ msgid "Number of results"
#~ msgstr "결과 수"
Binary file not shown.
+17 -16
View File
@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: lt\n"
@@ -543,28 +543,28 @@ msgstr "Uždaryta"
msgid "answered"
msgstr "atsakyta"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Elementų nerasta"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Šaltinis"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Klaida keliant kitą puslapį"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Neteisingi nustatymai, pakeiskite savo nuostatas"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Neteisingi nustatymai"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "paieškos klaida"
@@ -624,12 +624,12 @@ msgstr "serverio API klaida"
msgid "Suspended"
msgstr "Sustabdytas"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "prieš {minutes} min"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "prieš {hours} val., {minutes} min"
@@ -1016,19 +1016,23 @@ msgstr "Specialios Užklausos"
msgid "Cookies"
msgstr "Slapukai"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Rezultatų skaičius"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informacija"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Atgal į viršų"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Praitas puslapis"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Kitas puslapis"
@@ -2363,6 +2367,3 @@ msgstr "slėpti vaizdo įrašą"
#~ msgid "Supports selected language"
#~ msgstr "Palaiko pasirinktą kalbą"
#~ msgid "Number of results"
#~ msgstr "Rezultatų skaičius"
Binary file not shown.
+17 -16
View File
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: lv\n"
@@ -541,28 +541,28 @@ msgstr "aizvērts"
msgid "answered"
msgstr "atbildēja"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "Nav atrasts neviens vienums"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Avots"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Kļūda lādējot nākošo lapu"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Nepareizi iestatījumi, lūdzu rediģējiet savas preferences"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Nederīgi iestatījumi"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "meklēšanas kļūda"
@@ -622,12 +622,12 @@ msgstr "servera API kļūda"
msgid "Suspended"
msgstr "Apturēts"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "pirms {minutes} minūtes(-ēm)"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "pirms {hours} stundas(-ām) un {minutes} minūtēm(-es)"
@@ -1018,19 +1018,23 @@ msgstr ""
msgid "Cookies"
msgstr ""
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Rezultātu skaits"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Informācija"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Atpakaļ uz augšu"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Iepriekšējā lapa"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Nākamā lapa"
@@ -2099,6 +2103,3 @@ msgstr "slēpt video"
#~ msgid "Supports selected language"
#~ msgstr "Atbalsta atlasīto valodu"
#~ msgid "Number of results"
#~ msgstr "Rezultātu skaits"
+17 -13
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: SearXNG -\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -528,28 +528,28 @@ msgstr ""
msgid "answered"
msgstr ""
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr ""
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr ""
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr ""
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr ""
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr ""
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr ""
@@ -609,12 +609,12 @@ msgstr ""
msgid "Suspended"
msgstr ""
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr ""
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr ""
@@ -987,19 +987,23 @@ msgstr ""
msgid "Cookies"
msgstr ""
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr ""
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr ""
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr ""
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr ""
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr ""
Binary file not shown.
+17 -16
View File
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-05-25 10:44+0000\n"
"POT-Creation-Date: 2026-05-21 19:19+0000\n"
"PO-Revision-Date: 2026-05-19 12:07+0000\n"
"Last-Translator: return42 <return42@noreply.codeberg.org>\n"
"Language: ms\n"
@@ -565,28 +565,28 @@ msgstr "tutup"
msgid "answered"
msgstr "dijawab"
#: searx/webapp.py:326
#: searx/webapp.py:327
msgid "No item found"
msgstr "barang tidak dijumpai"
#: searx/engines/qwant.py:291
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:328
#: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:329
msgid "Source"
msgstr "Punca"
#: searx/webapp.py:330
#: searx/webapp.py:331
msgid "Error loading the next page"
msgstr "Gagal memuat turun muka seterusnya"
#: searx/webapp.py:479 searx/webapp.py:877
#: searx/webapp.py:480 searx/webapp.py:881
msgid "Invalid settings, please edit your preferences"
msgstr "Kesilapan tetapan, sila ubahsuai pilihan"
#: searx/webapp.py:495
#: searx/webapp.py:496
msgid "Invalid settings"
msgstr "Tetapan tidak sah"
#: searx/webapp.py:571 searx/webapp.py:661
#: searx/webapp.py:573 searx/webapp.py:663
msgid "search error"
msgstr "ralat pencarian"
@@ -646,12 +646,12 @@ msgstr "ralat API pelayan"
msgid "Suspended"
msgstr "Digantung"
#: searx/webutils.py:307
#: searx/webutils.py:308
#, python-brace-format
msgid "{minutes} minute(s) ago"
msgstr "{minutes} minit yang lalu"
#: searx/webutils.py:308
#: searx/webutils.py:309
#, python-brace-format
msgid "{hours} hour(s), {minutes} minute(s) ago"
msgstr "{hours} jam, {minutes} minit yang lalu"
@@ -1037,19 +1037,23 @@ msgstr "Pertanyaan Khas"
msgid "Cookies"
msgstr "Kuki"
#: searx/templates/simple/results.html:32
#: searx/templates/simple/results.html:30
msgid "Number of results"
msgstr "Bilangan keputusan"
#: searx/templates/simple/results.html:36
msgid "Info"
msgstr "Maklumat"
#: searx/templates/simple/results.html:73
#: searx/templates/simple/results.html:77
msgid "Back to top"
msgstr "Balik ke atas"
#: searx/templates/simple/results.html:91
#: searx/templates/simple/results.html:95
msgid "Previous page"
msgstr "Halaman sebelumnya"
#: searx/templates/simple/results.html:109
#: searx/templates/simple/results.html:113
msgid "Next page"
msgstr "Halaman seterusnya"
@@ -2121,6 +2125,3 @@ msgstr "sembunyikkan video"
#~ msgid "Supports selected language"
#~ msgstr ""
#~ msgid "Number of results"
#~ msgstr "Bilangan keputusan"

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