Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
e
infra
spot
Commits
0cc06a29
Commit
0cc06a29
authored
Jan 09, 2019
by
Nicolas Gelot
Browse files
Merge tag 'v0.15.0' into nicofonk/sync-upstream
parents
491dc82f
3c95d64f
Changes
80
Expand all
Hide whitespace changes
Inline
Side-by-side
AUTHORS.rst
View file @
0cc06a29
...
...
@@ -85,6 +85,21 @@ generally made searx better:
- Joseph Nuthalapati @josephkiranbabu
- @maiki
- Richard Didier @zeph33
- Michael Vieria @Themimitoof
- Richard Nespithal @rndevfx
- Stanislas @angristan
- @rinpatch
- g. s. @usernameisntallowed
- Léo Bourrel @bourrel
- @cy8aer
- @Popolon
- Alice Ferrazzi @aliceinwire
- @LiquidLemon
- @dadosch
- @Venca24
- @ZEROF
- Ivan Skytte Jørgensen @isj-privacore
- @miicha
People who contributed to Spot:
...
...
CHANGELOG.rst
View file @
0cc06a29
0.15.0 2019.01.06
=================
- New engines
- Acgsou (files, images, videos, music)
- Duden.de (general)
- Seznam (general)
- Mojeek (general)
- New languages
- Catalan
- Welsh
- Basque
- Persian (Iran)
- Galician
- Dutch (Belgium)
- Telugu
- Vietnamese
- New random answerers
- sha256
- uuidv4
- New DOI resolsvers
- sci-hub.tw
- Fix Vim mode on Firefox
- Fix custom select in Oscar theme
- Engine fixes (duckduckgo, google news, currency convert, gigablast, google scholar, wikidata image, etymonline, google videos, startpage, bing image)
- Minor simple theme fixes
- New Youtube icon in Oscar theme
- Get DOI rewriters from settings.yml
- Hide page buttons when infinite scrolling is enabled
- Update user agent versions
- Make Oscar style configurable
- Make suspend times of errored engines configurable
0.14.0 2018.02.19
=================
...
...
Dockerfile
View file @
0cc06a29
...
...
@@ -32,6 +32,7 @@ RUN echo "@commuedge http://nl.alpinelinux.org/alpine/edge/community" >> /etc/ap
openssl-dev
\
ca-certificates
\
tini@commuedge
\
&&
pip
install
--upgrade
pip
\
&&
pip
install
--no-cache
-r
requirements.txt
\
&&
apk del
\
build-base
\
...
...
searx/data/engines_languages.json
View file @
0cc06a29
This diff is collapsed.
Click to expand it.
searx/engines/bing_images.py
View file @
0cc06a29
...
...
@@ -88,9 +88,7 @@ def response(resp):
url
=
json_data
.
get
(
'purl'
)
img_src
=
json_data
.
get
(
'murl'
)
thumb_json_data
=
loads
(
_quote_keys_regex
.
sub
(
r
'\1"\2": \3'
,
link
.
attrib
.
get
(
'mad'
)))
thumbnail
=
thumb_json_data
.
get
(
'turl'
)
thumbnail
=
json_data
.
get
(
'turl'
)
# append result
results
.
append
({
'template'
:
'images.html'
,
...
...
searx/engines/findx.py
deleted
100644 → 0
View file @
491dc82f
"""
FindX (General, Images, Videos)
@website https://www.findx.com
@provide-api no
@using-api no
@results HTML
@stable no
@parse url, title, content, embedded, img_src, thumbnail_src
"""
from
dateutil
import
parser
from
json
import
loads
import
re
from
lxml
import
html
from
searx
import
logger
from
searx.engines.xpath
import
extract_text
from
searx.engines.youtube_noapi
import
base_youtube_url
,
embedded_url
from
searx.url_utils
import
urlencode
paging
=
True
results_xpath
=
'//script[@id="initial-state"]'
search_url
=
'https://www.findx.com/{category}?{q}'
type_map
=
{
'none'
:
'web'
,
'general'
:
'web'
,
'images'
:
'images'
,
'videos'
:
'videos'
,
}
def
request
(
query
,
params
):
params
[
'url'
]
=
search_url
.
format
(
category
=
type_map
[
params
[
'category'
]],
q
=
urlencode
({
'q'
:
query
,
'page'
:
params
[
'pageno'
]
})
)
return
params
def
response
(
resp
):
dom
=
html
.
fromstring
(
resp
.
text
)
results_raw_json
=
dom
.
xpath
(
results_xpath
)
results_json
=
loads
(
extract_text
(
results_raw_json
))
if
len
(
results_json
[
'web'
][
'results'
])
>
0
:
return
_general_results
(
results_json
[
'web'
][
'results'
][
'webSearch'
][
'results'
])
if
len
(
results_json
[
'images'
][
'results'
])
>
0
:
return
_images_results
(
results_json
[
'images'
][
'results'
])
if
len
(
results_json
[
'video'
][
'results'
])
>
0
:
return
_videos_results
(
results_json
[
'video'
][
'results'
])
return
[]
def
_general_results
(
general_results
):
results
=
[]
for
result
in
general_results
:
results
.
append
({
'url'
:
result
[
'url'
],
'title'
:
result
[
'title'
],
'content'
:
result
[
'sum'
],
})
return
results
def
_images_results
(
image_results
):
results
=
[]
for
result
in
image_results
:
results
.
append
({
'url'
:
result
[
'sourceURL'
],
'title'
:
result
[
'title'
],
'content'
:
result
[
'source'
],
'thumbnail_src'
:
_extract_url
(
result
[
'assets'
][
'thumb'
][
'url'
]),
'img_src'
:
_extract_url
(
result
[
'assets'
][
'file'
][
'url'
]),
'template'
:
'images.html'
,
})
return
results
def
_videos_results
(
video_results
):
results
=
[]
for
result
in
video_results
:
if
not
result
[
'kind'
].
startswith
(
'youtube'
):
logger
.
warn
(
'Unknown video kind in findx: {}'
.
format
(
result
[
'kind'
]))
continue
description
=
result
[
'snippet'
][
'description'
]
if
len
(
description
)
>
300
:
description
=
description
[:
300
]
+
'...'
results
.
append
({
'url'
:
base_youtube_url
+
result
[
'id'
],
'title'
:
result
[
'snippet'
][
'title'
],
'content'
:
description
,
'thumbnail'
:
_extract_url
(
result
[
'snippet'
][
'thumbnails'
][
'default'
][
'url'
]),
'publishedDate'
:
parser
.
parse
(
result
[
'snippet'
][
'publishedAt'
]),
'embedded'
:
embedded_url
.
format
(
videoid
=
result
[
'id'
]),
'template'
:
'videos.html'
,
})
return
results
def
_extract_url
(
url
):
matching
=
re
.
search
(
'(/https?://[^)]+)'
,
url
)
if
matching
:
return
matching
.
group
(
0
)[
1
:]
return
''
searx/engines/google_videos.py
View file @
0cc06a29
...
...
@@ -7,7 +7,7 @@
@using-api no
@results HTML
@stable no
@parse url, title, content
@parse url, title, content
, thumbnail
"""
from
datetime
import
date
,
timedelta
...
...
@@ -15,7 +15,7 @@ from json import loads
from
lxml
import
html
from
searx.engines.xpath
import
extract_text
from
searx.url_utils
import
urlencode
import
re
# engine dependent config
categories
=
[
'videos'
]
...
...
@@ -25,7 +25,7 @@ time_range_support = True
number_of_results
=
10
search_url
=
'https://www.google.com/search'
\
'?{query}'
\
'?
q=
{query}'
\
'&tbm=vid'
\
'&{search_options}'
time_range_attr
=
"qdr:{range}"
...
...
@@ -69,15 +69,27 @@ def response(resp):
# parse results
for
result
in
dom
.
xpath
(
'//div[@class="g"]'
):
title
=
extract_text
(
result
.
xpath
(
'.//h3
/a
'
))
url
=
result
.
xpath
(
'.//
h3
/a/@href'
)[
0
]
title
=
extract_text
(
result
.
xpath
(
'.//h3'
))
url
=
result
.
xpath
(
'.//
div[@class="r"]
/a/@href'
)[
0
]
content
=
extract_text
(
result
.
xpath
(
'.//span[@class="st"]'
))
# get thumbnails
script
=
str
(
dom
.
xpath
(
'//script[contains(., "_setImagesSrc")]'
)[
0
].
text
)
id
=
result
.
xpath
(
'.//div[@class="s"]//img/@id'
)[
0
]
thumbnails_data
=
re
.
findall
(
's=
\'
(.*?)(?:
\\\\
[a-z,1-9,
\\\\
]+
\'
|
\'
)\;var ii=\[(?:|[
\'
vidthumb\d+
\'
,]+)
\'
'
+
id
,
script
)
tmp
=
[]
if
len
(
thumbnails_data
)
!=
0
:
tmp
=
re
.
findall
(
'(data:image/jpeg;base64,[a-z,A-Z,0-9,/,\+]+)'
,
thumbnails_data
[
0
])
thumbnail
=
''
if
len
(
tmp
)
!=
0
:
thumbnail
=
tmp
[
-
1
]
# append result
results
.
append
({
'url'
:
url
,
'title'
:
title
,
'content'
:
content
,
'thumbnail'
:
''
,
'thumbnail'
:
thumbnail
,
'template'
:
'videos.html'
})
return
results
searx/engines/startpage.py
View file @
0cc06a29
...
...
@@ -32,8 +32,9 @@ search_url = base_url + 'do/search'
# specific xpath variables
# ads xpath //div[@id="results"]/div[@id="sponsored"]//div[@class="result"]
# not ads: div[@class="result"] are the direct childs of div[@id="results"]
results_xpath
=
'//
div[@class="result"
]'
results_xpath
=
'//
li[contains(@class, "search-result") and contains(@class, "search-item")
]'
link_xpath
=
'.//h3/a'
content_xpath
=
'./p[@class="search-item__body"]'
# do search-request
...
...
@@ -73,14 +74,10 @@ def response(resp):
if
re
.
match
(
r
"^http(s|)://(www\.)?startpage\.com/do/search\?.*$"
,
url
):
continue
# block ixquick search url's
if
re
.
match
(
r
"^http(s|)://(www\.)?ixquick\.com/do/search\?.*$"
,
url
):
continue
title
=
extract_text
(
link
)
if
result
.
xpath
(
'./p[@class="desc clk"]'
):
content
=
extract_text
(
result
.
xpath
(
'./p[@class="desc clk"]'
))
if
result
.
xpath
(
content_xpath
):
content
=
extract_text
(
result
.
xpath
(
content_xpath
))
else
:
content
=
''
...
...
searx/settings.yml
View file @
0cc06a29
...
...
@@ -226,24 +226,6 @@ engines:
shortcut
:
fd
disabled
:
True
-
name
:
findx
engine
:
findx
shortcut
:
fx
categories
:
general
disabled
:
True
-
name
:
findx images
engine
:
findx
shortcut
:
fxi
categories
:
images
disabled
:
True
-
name
:
findx videos
engine
:
findx
shortcut
:
fxv
categories
:
videos
disabled
:
True
-
name
:
flickr
categories
:
images
shortcut
:
fl
...
...
@@ -605,14 +587,6 @@ engines:
timeout
:
6.0
disabled
:
True
-
name
:
ixquick
engine
:
startpage
base_url
:
'
https://www.ixquick.eu/'
search_url
:
'
https://www.ixquick.eu/do/search'
shortcut
:
iq
timeout
:
6.0
disabled
:
True
-
name
:
swisscows
engine
:
swisscows
shortcut
:
sw
...
...
@@ -731,6 +705,33 @@ engines:
shortcut
:
du
disabled
:
True
-
name
:
seznam
shortcut
:
szn
engine
:
xpath
paging
:
True
search_url
:
https://search.seznam.cz/?q={query}&count=10&from={pageno}
results_xpath
:
//div[@class="Page-content"]//div[@class="Result "]
url_xpath
:
./h3/a/@href
title_xpath
:
./h3
content_xpath
:
.//p[@class="Result-description"]
first_page_num
:
0
page_size
:
10
disabled
:
True
-
name
:
mojeek
shortcut
:
mjk
engine
:
xpath
paging
:
True
search_url
:
https://www.mojeek.com/search?q={query}&s={pageno}
results_xpath
:
/html/body//div[@class="results"]/ul[@class="results-standard"]/li
url_xpath
:
./h2/a/@href
title_xpath
:
./h2
content_xpath
:
./p[@class="s"]
suggestion_xpath
:
/html/body//div[@class="top-info"]/p[@class="top-info spell"]/a
first_page_num
:
1
page_size
:
10
disabled
:
True
# - name : yacy
# engine : yacy
# shortcut : ya
...
...
@@ -749,21 +750,27 @@ locales:
en
:
English
ar
:
العَرَبِيَّة (Arabic)
bg
:
Български (Bulgarian)
ca
:
Català (Catalan)
cs
:
Čeština (Czech)
cy
:
Cymraeg (Welsh)
da
:
Dansk (Danish)
de
:
Deutsch (German)
el_GR
:
Ελληνικά (Greek_Greece)
eo
:
Esperanto (Esperanto)
es
:
Español (Spanish)
eu
:
Euskara (Basque)
fa_IR
:
(fārsī) فارسى (Persian)
fi
:
Suomi (Finnish)
fil
:
Wikang Filipino (Filipino)
fr
:
Français (French)
gl
:
Galego (Galician)
he
:
עברית (Hebrew)
hr
:
Hrvatski (Croatian)
hu
:
Magyar (Hungarian)
it
:
Italiano (Italian)
ja
:
日本語 (Japanese)
nl
:
Nederlands (Dutch)
nl_BE
:
Vlaams (Dutch_Belgium)
pl
:
Polski (Polish)
pt
:
Português (Portuguese)
pt_BR
:
Português (Portuguese_Brazil)
...
...
@@ -773,8 +780,10 @@ locales:
sl
:
Slovenski (Slovene)
sr
:
српски (Serbian)
sv
:
Svenska (Swedish)
te
:
తెలుగు (telugu)
tr
:
Türkçe (Turkish)
uk
:
українська мова (Ukrainian)
vi
:
tiếng việt (㗂越)
zh
:
中文 (Chinese)
zh_TW
:
國語 (Taiwanese Mandarin)
...
...
searx/translations/ar/LC_MESSAGES/messages.mo
View file @
0cc06a29
No preview for this file type
searx/translations/ar/LC_MESSAGES/messages.po
View file @
0cc06a29
...
...
@@ -3,14 +3,15 @@
# This file is distributed under the same license as the PROJECT project.
#
# Translators:
# ButterflyOfFire <ButterflyOfFire@protonmail.com>, 2017-2018
# ButterflyOfFire ButterflyOfFire, 2018
# ButterflyOfFire, 2017-2018
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2017-11-01 21:31+0100\n"
"PO-Revision-Date: 2018-0
1-23 17:54
+0000\n"
"Last-Translator: ButterflyOfFire
<
ButterflyOfFire
@protonmail.com>
\n"
"PO-Revision-Date: 2018-0
9-08 08:23
+0000\n"
"Last-Translator: ButterflyOfFire ButterflyOfFire\n"
"Language-Team: Arabic (http://www.transifex.com/asciimoo/searx/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
...
...
@@ -29,7 +30,7 @@ msgstr ""
#: searx/search.py:151
msgid "unexpected crash"
msgstr ""
msgstr "
خلل غير مُتوقّع
"
#: searx/webapp.py:136
msgid "files"
...
...
@@ -73,7 +74,7 @@ msgstr "علوم"
#: searx/webapp.py:399 searx/webapp.py:658
msgid "Invalid settings, please edit your preferences"
msgstr ""
msgstr "
إنّ الإعدادات خاطئة، يرجى تعديل خياراتك
"
#: searx/webapp.py:415
msgid "Invalid settings"
...
...
@@ -97,7 +98,7 @@ msgstr "مولّد قيمة عشوائية"
#: searx/answerers/random/answerer.py:54
msgid "Generate different random values"
msgstr ""
msgstr "
توليد قِيم عشوائية مختلفة
"
#: searx/answerers/statistics/answerer.py:53
msgid "Statistics functions"
...
...
@@ -288,7 +289,7 @@ msgstr "اللغة الإفتراضية"
#: searx/templates/pix-art/preferences.html:20
#: searx/templates/simple/preferences.html:120
msgid "Interface language"
msgstr "لغة ال
عرض
"
msgstr "لغة ال
واجهة
"
#: searx/templates/courgette/preferences.html:34
#: searx/templates/legacy/preferences.html:35
...
...
@@ -371,7 +372,7 @@ msgstr "اللون"
#: searx/templates/courgette/preferences.html:86
msgid "Blue (default)"
msgstr "أزرق
)
إفتراضي
(
"
msgstr "أزرق
(
إفتراضي
)
"
#: searx/templates/courgette/preferences.html:87
msgid "Violet"
...
...
@@ -581,13 +582,13 @@ msgstr "عرض نتائج البحث في ألسنة جديدة"
#: searx/templates/oscar/preferences.html:117
#: searx/templates/simple/preferences.html:145
msgid "On"
msgstr ""
msgstr "
يشتغل
"
#: searx/templates/legacy/preferences.html:88
#: searx/templates/oscar/preferences.html:118
#: searx/templates/simple/preferences.html:146
msgid "Off"
msgstr ""
msgstr "
مُعطَّل
"
#: searx/templates/legacy/result_templates/code.html:3
#: searx/templates/legacy/result_templates/default.html:3
...
...
@@ -626,7 +627,7 @@ msgstr "محرك بحث يحمي الخصوصية و قابل للتهكير"
#: searx/templates/oscar/macros.html:36 searx/templates/oscar/macros.html:50
#: searx/templates/simple/macros.html:43
msgid "proxied"
msgstr "
يمر
عبر البروكسي"
msgstr "
النفاذ
عبر البروكسي"
#: searx/templates/oscar/macros.html:92
msgid "supported"
...
...
@@ -661,7 +662,7 @@ msgstr "المجيبون"
#: searx/templates/oscar/preferences.html:17
#: searx/templates/oscar/preferences.html:272
msgid "Cookies"
msgstr "الكوكيز"
msgstr "
كعكات
الكوكيز"
#: searx/templates/oscar/preferences.html:42
#: searx/templates/simple/preferences.html:48
...
...
@@ -676,12 +677,12 @@ msgstr "يقوم بتغيير لغة واجهة البحث"
#: searx/templates/oscar/preferences.html:58
#: searx/templates/simple/preferences.html:60
msgid "Find stuff as you type"
msgstr ""
msgstr "
العثور على نتائج أثناء الكتابة
"
#: searx/templates/oscar/preferences.html:69
#: searx/templates/simple/preferences.html:173
msgid "Proxying image results through searx"
msgstr ""
msgstr "
تمرير نتائج البحث عن الصور عبر بروكسي Searx
"
#: searx/templates/oscar/preferences.html:78
msgid ""
...
...
@@ -865,7 +866,7 @@ msgstr "معلومة !"
#: searx/templates/oscar/messages/no_cookies.html:4
msgid "currently, there are no cookies defined."
msgstr ""
msgstr "
حاليا لم تقم بتحديد أي مِن كعكات الكوكيز.
"
#: searx/templates/oscar/messages/no_data_available.html:4
msgid "There is currently no data available. "
...
...
searx/translations/bg/LC_MESSAGES/messages.mo
View file @
0cc06a29
No preview for this file type
searx/translations/ca/LC_MESSAGES/messages.mo
0 → 100644
View file @
0cc06a29
File added
searx/translations/ca/LC_MESSAGES/messages.po
0 → 100644
View file @
0cc06a29
This diff is collapsed.
Click to expand it.
searx/translations/cs/LC_MESSAGES/messages.mo
View file @
0cc06a29
No preview for this file type
searx/translations/cs/LC_MESSAGES/messages.po
View file @
0cc06a29
...
...
@@ -4,24 +4,25 @@
#
# Translators:
# Clon <fillip1@seznam.cz>, 2017
# Václav Zouzalík <Vaclav.Zouzalik@seznam.cz>, 2018
msgid ""
msgstr ""
"Project-Id-Version: searx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2017-11-01 21:31+0100\n"
"PO-Revision-Date: 201
7
-1
1-01 20:31
+0000\n"
"Last-Translator:
Adam Tauber <asciimoo@gmail.com
>\n"
"PO-Revision-Date: 201
8
-1
2-18 12:03
+0000\n"
"Last-Translator:
Václav Zouzalík <Vaclav.Zouzalik@seznam.cz
>\n"
"Language-Team: Czech (http://www.transifex.com/asciimoo/searx/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.3.4\n"
"Language: cs\n"
"Plural-Forms: nplurals=
3
; plural=(n==
1
) ? 0 : (n>=2 && n<=
4) ? 1 : 2
;\n"
"Plural-Forms: nplurals=
4
; plural=(n
==
1 && n % 1 == 0
) ? 0 : (n
>=
2 && n
<=
4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3
;\n"
#: searx/search.py:137 searx/search.py:182
msgid "timeout"
msgstr ""
msgstr "
timeout
"
#: searx/search.py:144
msgid "request exception"
...
...
@@ -77,7 +78,7 @@ msgstr "Neplatné nastavení, upravte svoje předvolby"
#: searx/webapp.py:415
msgid "Invalid settings"
msgstr ""
msgstr "
Neplatné nastavení
"
#: searx/webapp.py:449 searx/webapp.py:493
msgid "search error"
...
...
@@ -131,7 +132,7 @@ msgstr ""
#: searx/engines/__init__.py:214 searx/engines/flycheck___init__.py:221
msgid "Errors"
msgstr "Chyb"
msgstr "Chyb
y
"
#: searx/engines/pdbe.py:87
msgid "{title} (OBSOLETE)"
...
...
@@ -187,13 +188,13 @@ msgstr "Hledat ve vybrané kategorii"
msgid ""
"Perform search immediately if a category selected. Disable to select "
"multiple categories. (JavaScript required)"
msgstr ""
msgstr "
Vyhledávejte okamžitě, pokud je vybrána kategorie. Vypněte, pokud potřebujete zvolit vícero kategorií. (vyžaduje JavaScript)
"
#: searx/plugins/self_info.py:20
msgid ""
"Displays your IP if the query is \"ip\" and your user agent if the query "
"contains \"user agent\"."
msgstr ""
msgstr "
Ukáže vaši IP adresu, pokud dotaz je \"ip\", a váš user agent, pokud dotatz obsahuje \"user agent\".
"
#: searx/plugins/tracker_url_remover.py:26
msgid "Tracker URL remover"
...
...
@@ -375,7 +376,7 @@ msgstr "Modrá (základní)"
#: searx/templates/courgette/preferences.html:87
msgid "Violet"
msgstr ""
msgstr "
Fialová
"
#: searx/templates/courgette/preferences.html:88
msgid "Green"
...
...
@@ -383,7 +384,7 @@ msgstr "Zelená"
#: searx/templates/courgette/preferences.html:89
msgid "Cyan"
msgstr ""
msgstr "
Modrozelená
"
#: searx/templates/courgette/preferences.html:90
msgid "Orange"
...
...
@@ -543,14 +544,14 @@ msgstr "původní kontext"
#: searx/templates/oscar/result_templates/torrent.html:6
#: searx/templates/simple/result_templates/torrent.html:9
msgid "Seeder"
msgstr ""
msgstr "
Seeder
"
#: searx/templates/courgette/result_templates/torrent.html:7
#: searx/templates/legacy/result_templates/torrent.html:11
#: searx/templates/oscar/result_templates/torrent.html:6
#: searx/templates/simple/result_templates/torrent.html:9
msgid "Leecher"
msgstr ""
msgstr "
Leecher
"
#: searx/templates/courgette/result_templates/torrent.html:9
#: searx/templates/legacy/result_templates/torrent.html:9
...
...
@@ -676,7 +677,7 @@ msgstr "Změnít jazyk prostředí"
#: searx/templates/oscar/preferences.html:58
#: searx/templates/simple/preferences.html:60
msgid "Find stuff as you type"
msgstr ""
msgstr "
Vyhledávat během psaní
"
#: searx/templates/oscar/preferences.html:69
#: searx/templates/simple/preferences.html:173
...
...
@@ -729,7 +730,7 @@ msgstr "Zkratka"
#: searx/templates/oscar/preferences.html:164
#: searx/templates/oscar/preferences.html:174
msgid "Selected language"
msgstr ""
msgstr "
Zvolený jazyk
"
#: searx/templates/oscar/preferences.html:166
#: searx/templates/oscar/preferences.html:172
...
...
@@ -853,7 +854,7 @@ msgstr "Rok"