|
@@ -0,0 +1,1011 @@
|
|
|
+From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
|
+Date: Mon, 12 Mar 2018 20:31:44 +0100
|
|
|
+Subject: Add Qwant search engine
|
|
|
+
|
|
|
+Specify image URL in upstream engine definition
|
|
|
+Make search engine selectable in default list
|
|
|
+---
|
|
|
+ .../search_engines/prepopulated_engines.json | 3 +-
|
|
|
+ .../template_url_prepopulate_data.cc | 218 ++++++++++-----------
|
|
|
+ 2 files changed, 111 insertions(+), 110 deletions(-)
|
|
|
+
|
|
|
+diff --git a/components/search_engines/prepopulated_engines.json b/components/search_engines/prepopulated_engines.json
|
|
|
+--- a/components/search_engines/prepopulated_engines.json
|
|
|
++++ b/components/search_engines/prepopulated_engines.json
|
|
|
+@@ -28,7 +28,7 @@
|
|
|
+ // Increment this if you change the data in ways that mean users with
|
|
|
+ // existing data should get a new version. Otherwise, existing data may
|
|
|
+ // continue to be used and updates made here will not always appear.
|
|
|
+- "kCurrentDataVersion": 112
|
|
|
++ "kCurrentDataVersion": 113
|
|
|
+ },
|
|
|
+
|
|
|
+ // The following engines are included in country lists and are added to the
|
|
|
+@@ -196,6 +196,7 @@
|
|
|
+ "favicon_url": "https://www.qwant.com/favicon.ico",
|
|
|
+ "search_url": "https://www.qwant.com/?q={searchTerms}&client=opensearch",
|
|
|
+ "suggest_url": "https://api.qwant.com/api/suggest/?q={searchTerms}&client=opensearch",
|
|
|
++ "image_url": "https://www.qwant.com/?t=images&q={searchTerms}",
|
|
|
+ "type": "SEARCH_ENGINE_QWANT",
|
|
|
+ "id": 94
|
|
|
+ },
|
|
|
+diff --git a/components/search_engines/template_url_prepopulate_data.cc b/components/search_engines/template_url_prepopulate_data.cc
|
|
|
+--- a/components/search_engines/template_url_prepopulate_data.cc
|
|
|
++++ b/components/search_engines/template_url_prepopulate_data.cc
|
|
|
+@@ -32,7 +32,7 @@ namespace {
|
|
|
+
|
|
|
+ // Default (for countries with no better engine set)
|
|
|
+ const PrepopulatedEngine* const engines_default[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -42,7 +42,7 @@ const PrepopulatedEngine* const engines_default[] = {
|
|
|
+ // Engine selection by country ------------------------------------------------
|
|
|
+ // United Arab Emirates
|
|
|
+ const PrepopulatedEngine* const engines_AE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -50,7 +50,7 @@ const PrepopulatedEngine* const engines_AE[] = {
|
|
|
+
|
|
|
+ // Albania
|
|
|
+ const PrepopulatedEngine* const engines_AL[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &ask,
|
|
|
+@@ -58,7 +58,7 @@ const PrepopulatedEngine* const engines_AL[] = {
|
|
|
+
|
|
|
+ // Argentina
|
|
|
+ const PrepopulatedEngine* const engines_AR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_ar,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -66,7 +66,7 @@ const PrepopulatedEngine* const engines_AR[] = {
|
|
|
+
|
|
|
+ // Austria
|
|
|
+ const PrepopulatedEngine* const engines_AT[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_at,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -74,7 +74,7 @@ const PrepopulatedEngine* const engines_AT[] = {
|
|
|
+
|
|
|
+ // Australia
|
|
|
+ const PrepopulatedEngine* const engines_AU[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_au,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -82,7 +82,7 @@ const PrepopulatedEngine* const engines_AU[] = {
|
|
|
+
|
|
|
+ // Bosnia and Herzegovina
|
|
|
+ const PrepopulatedEngine* const engines_BA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &ask,
|
|
|
+@@ -90,7 +90,7 @@ const PrepopulatedEngine* const engines_BA[] = {
|
|
|
+
|
|
|
+ // Belgium
|
|
|
+ const PrepopulatedEngine* const engines_BE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -98,7 +98,7 @@ const PrepopulatedEngine* const engines_BE[] = {
|
|
|
+
|
|
|
+ // Bulgaria
|
|
|
+ const PrepopulatedEngine* const engines_BG[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -106,7 +106,7 @@ const PrepopulatedEngine* const engines_BG[] = {
|
|
|
+
|
|
|
+ // Bahrain
|
|
|
+ const PrepopulatedEngine* const engines_BH[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &ask,
|
|
|
+@@ -114,7 +114,7 @@ const PrepopulatedEngine* const engines_BH[] = {
|
|
|
+
|
|
|
+ // Burundi
|
|
|
+ const PrepopulatedEngine* const engines_BI[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -122,7 +122,7 @@ const PrepopulatedEngine* const engines_BI[] = {
|
|
|
+
|
|
|
+ // Brunei
|
|
|
+ const PrepopulatedEngine* const engines_BN[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -130,7 +130,7 @@ const PrepopulatedEngine* const engines_BN[] = {
|
|
|
+
|
|
|
+ // Bolivia
|
|
|
+ const PrepopulatedEngine* const engines_BO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -138,7 +138,7 @@ const PrepopulatedEngine* const engines_BO[] = {
|
|
|
+
|
|
|
+ // Brazil
|
|
|
+ const PrepopulatedEngine* const engines_BR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_br,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -146,7 +146,7 @@ const PrepopulatedEngine* const engines_BR[] = {
|
|
|
+
|
|
|
+ // Belarus
|
|
|
+ const PrepopulatedEngine* const engines_BY[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yandex_by,
|
|
|
+ &mail_ru,
|
|
|
+ &bing,
|
|
|
+@@ -154,7 +154,7 @@ const PrepopulatedEngine* const engines_BY[] = {
|
|
|
+
|
|
|
+ // Belize
|
|
|
+ const PrepopulatedEngine* const engines_BZ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -162,12 +162,12 @@ const PrepopulatedEngine* const engines_BZ[] = {
|
|
|
+
|
|
|
+ // Canada
|
|
|
+ const PrepopulatedEngine* const engines_CA[] = {
|
|
|
+- &googleen, &google, &startpage, &bing, &yahoo_ca, &yahoo_qc, &duckduckgo, &duckduckgo_light,
|
|
|
++ &googleen, &google, &startpage, &qwant, &bing, &yahoo_ca, &yahoo_qc, &duckduckgo, &duckduckgo_light,
|
|
|
+ };
|
|
|
+
|
|
|
+ // Switzerland
|
|
|
+ const PrepopulatedEngine* const engines_CH[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+ &yahoo_ch,
|
|
|
+@@ -175,7 +175,7 @@ const PrepopulatedEngine* const engines_CH[] = {
|
|
|
+
|
|
|
+ // Chile
|
|
|
+ const PrepopulatedEngine* const engines_CL[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_cl,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -183,12 +183,12 @@ const PrepopulatedEngine* const engines_CL[] = {
|
|
|
+
|
|
|
+ // China
|
|
|
+ const PrepopulatedEngine* const engines_CN[] = {
|
|
|
+- &baidu, &so_360, &googleen, &google, &startpage, &sogou, &bing,
|
|
|
++ &baidu, &so_360, &googleen, &google, &startpage, &qwant, &sogou, &bing,
|
|
|
+ };
|
|
|
+
|
|
|
+ // Colombia
|
|
|
+ const PrepopulatedEngine* const engines_CO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_co,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -196,7 +196,7 @@ const PrepopulatedEngine* const engines_CO[] = {
|
|
|
+
|
|
|
+ // Costa Rica
|
|
|
+ const PrepopulatedEngine* const engines_CR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -204,7 +204,7 @@ const PrepopulatedEngine* const engines_CR[] = {
|
|
|
+
|
|
|
+ // Czech Republic
|
|
|
+ const PrepopulatedEngine* const engines_CZ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &seznam,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+@@ -212,7 +212,7 @@ const PrepopulatedEngine* const engines_CZ[] = {
|
|
|
+
|
|
|
+ // Germany
|
|
|
+ const PrepopulatedEngine* const engines_DE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_de,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -220,7 +220,7 @@ const PrepopulatedEngine* const engines_DE[] = {
|
|
|
+
|
|
|
+ // Denmark
|
|
|
+ const PrepopulatedEngine* const engines_DK[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_dk,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -228,7 +228,7 @@ const PrepopulatedEngine* const engines_DK[] = {
|
|
|
+
|
|
|
+ // Dominican Republic
|
|
|
+ const PrepopulatedEngine* const engines_DO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -236,7 +236,7 @@ const PrepopulatedEngine* const engines_DO[] = {
|
|
|
+
|
|
|
+ // Algeria
|
|
|
+ const PrepopulatedEngine* const engines_DZ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -244,7 +244,7 @@ const PrepopulatedEngine* const engines_DZ[] = {
|
|
|
+
|
|
|
+ // Ecuador
|
|
|
+ const PrepopulatedEngine* const engines_EC[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -252,7 +252,7 @@ const PrepopulatedEngine* const engines_EC[] = {
|
|
|
+
|
|
|
+ // Estonia
|
|
|
+ const PrepopulatedEngine* const engines_EE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+ &neti,
|
|
|
+@@ -260,7 +260,7 @@ const PrepopulatedEngine* const engines_EE[] = {
|
|
|
+
|
|
|
+ // Egypt
|
|
|
+ const PrepopulatedEngine* const engines_EG[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -268,7 +268,7 @@ const PrepopulatedEngine* const engines_EG[] = {
|
|
|
+
|
|
|
+ // Spain
|
|
|
+ const PrepopulatedEngine* const engines_ES[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_es,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -276,7 +276,7 @@ const PrepopulatedEngine* const engines_ES[] = {
|
|
|
+
|
|
|
+ // Finland
|
|
|
+ const PrepopulatedEngine* const engines_FI[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_fi,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -284,7 +284,7 @@ const PrepopulatedEngine* const engines_FI[] = {
|
|
|
+
|
|
|
+ // Faroe Islands
|
|
|
+ const PrepopulatedEngine* const engines_FO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -292,7 +292,7 @@ const PrepopulatedEngine* const engines_FO[] = {
|
|
|
+
|
|
|
+ // France
|
|
|
+ const PrepopulatedEngine* const engines_FR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_fr,
|
|
|
+ &qwant,
|
|
|
+@@ -300,7 +300,7 @@ const PrepopulatedEngine* const engines_FR[] = {
|
|
|
+
|
|
|
+ // United Kingdom
|
|
|
+ const PrepopulatedEngine* const engines_GB[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_uk,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -308,7 +308,7 @@ const PrepopulatedEngine* const engines_GB[] = {
|
|
|
+
|
|
|
+ // Greece
|
|
|
+ const PrepopulatedEngine* const engines_GR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -316,7 +316,7 @@ const PrepopulatedEngine* const engines_GR[] = {
|
|
|
+
|
|
|
+ // Guatemala
|
|
|
+ const PrepopulatedEngine* const engines_GT[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -324,7 +324,7 @@ const PrepopulatedEngine* const engines_GT[] = {
|
|
|
+
|
|
|
+ // Hong Kong
|
|
|
+ const PrepopulatedEngine* const engines_HK[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_hk,
|
|
|
+ &bing,
|
|
|
+ &baidu,
|
|
|
+@@ -332,7 +332,7 @@ const PrepopulatedEngine* const engines_HK[] = {
|
|
|
+
|
|
|
+ // Honduras
|
|
|
+ const PrepopulatedEngine* const engines_HN[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -340,7 +340,7 @@ const PrepopulatedEngine* const engines_HN[] = {
|
|
|
+
|
|
|
+ // Croatia
|
|
|
+ const PrepopulatedEngine* const engines_HR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -348,7 +348,7 @@ const PrepopulatedEngine* const engines_HR[] = {
|
|
|
+
|
|
|
+ // Hungary
|
|
|
+ const PrepopulatedEngine* const engines_HU[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -356,7 +356,7 @@ const PrepopulatedEngine* const engines_HU[] = {
|
|
|
+
|
|
|
+ // Indonesia
|
|
|
+ const PrepopulatedEngine* const engines_ID[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_id,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -364,7 +364,7 @@ const PrepopulatedEngine* const engines_ID[] = {
|
|
|
+
|
|
|
+ // Ireland
|
|
|
+ const PrepopulatedEngine* const engines_IE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -372,7 +372,7 @@ const PrepopulatedEngine* const engines_IE[] = {
|
|
|
+
|
|
|
+ // Israel
|
|
|
+ const PrepopulatedEngine* const engines_IL[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -380,7 +380,7 @@ const PrepopulatedEngine* const engines_IL[] = {
|
|
|
+
|
|
|
+ // India
|
|
|
+ const PrepopulatedEngine* const engines_IN[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_in,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -388,7 +388,7 @@ const PrepopulatedEngine* const engines_IN[] = {
|
|
|
+
|
|
|
+ // Iraq
|
|
|
+ const PrepopulatedEngine* const engines_IQ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -396,7 +396,7 @@ const PrepopulatedEngine* const engines_IQ[] = {
|
|
|
+
|
|
|
+ // Iran
|
|
|
+ const PrepopulatedEngine* const engines_IR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &parsijoo,
|
|
|
+@@ -404,7 +404,7 @@ const PrepopulatedEngine* const engines_IR[] = {
|
|
|
+
|
|
|
+ // Iceland
|
|
|
+ const PrepopulatedEngine* const engines_IS[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -412,7 +412,7 @@ const PrepopulatedEngine* const engines_IS[] = {
|
|
|
+
|
|
|
+ // Italy
|
|
|
+ const PrepopulatedEngine* const engines_IT[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -420,7 +420,7 @@ const PrepopulatedEngine* const engines_IT[] = {
|
|
|
+
|
|
|
+ // Jamaica
|
|
|
+ const PrepopulatedEngine* const engines_JM[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -428,7 +428,7 @@ const PrepopulatedEngine* const engines_JM[] = {
|
|
|
+
|
|
|
+ // Jordan
|
|
|
+ const PrepopulatedEngine* const engines_JO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -436,7 +436,7 @@ const PrepopulatedEngine* const engines_JO[] = {
|
|
|
+
|
|
|
+ // Japan
|
|
|
+ const PrepopulatedEngine* const engines_JP[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_jp,
|
|
|
+ &bing,
|
|
|
+ &baidu,
|
|
|
+@@ -444,7 +444,7 @@ const PrepopulatedEngine* const engines_JP[] = {
|
|
|
+
|
|
|
+ // Kenya
|
|
|
+ const PrepopulatedEngine* const engines_KE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -452,7 +452,7 @@ const PrepopulatedEngine* const engines_KE[] = {
|
|
|
+
|
|
|
+ // South Korea
|
|
|
+ const PrepopulatedEngine* const engines_KR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &naver,
|
|
|
+ &daum,
|
|
|
+ &bing,
|
|
|
+@@ -460,7 +460,7 @@ const PrepopulatedEngine* const engines_KR[] = {
|
|
|
+
|
|
|
+ // Kuwait
|
|
|
+ const PrepopulatedEngine* const engines_KW[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &ask,
|
|
|
+@@ -468,7 +468,7 @@ const PrepopulatedEngine* const engines_KW[] = {
|
|
|
+
|
|
|
+ // Kazakhstan
|
|
|
+ const PrepopulatedEngine* const engines_KZ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yandex_kz,
|
|
|
+ &mail_ru,
|
|
|
+ &bing,
|
|
|
+@@ -476,7 +476,7 @@ const PrepopulatedEngine* const engines_KZ[] = {
|
|
|
+
|
|
|
+ // Lebanon
|
|
|
+ const PrepopulatedEngine* const engines_LB[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -484,7 +484,7 @@ const PrepopulatedEngine* const engines_LB[] = {
|
|
|
+
|
|
|
+ // Liechtenstein
|
|
|
+ const PrepopulatedEngine* const engines_LI[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+ &yahoo,
|
|
|
+@@ -492,7 +492,7 @@ const PrepopulatedEngine* const engines_LI[] = {
|
|
|
+
|
|
|
+ // Lithuania
|
|
|
+ const PrepopulatedEngine* const engines_LT[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -500,7 +500,7 @@ const PrepopulatedEngine* const engines_LT[] = {
|
|
|
+
|
|
|
+ // Luxembourg
|
|
|
+ const PrepopulatedEngine* const engines_LU[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+ &yahoo,
|
|
|
+@@ -508,7 +508,7 @@ const PrepopulatedEngine* const engines_LU[] = {
|
|
|
+
|
|
|
+ // Latvia
|
|
|
+ const PrepopulatedEngine* const engines_LV[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+ &yahoo,
|
|
|
+@@ -516,7 +516,7 @@ const PrepopulatedEngine* const engines_LV[] = {
|
|
|
+
|
|
|
+ // Libya
|
|
|
+ const PrepopulatedEngine* const engines_LY[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_com,
|
|
|
+@@ -524,7 +524,7 @@ const PrepopulatedEngine* const engines_LY[] = {
|
|
|
+
|
|
|
+ // Morocco
|
|
|
+ const PrepopulatedEngine* const engines_MA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -532,7 +532,7 @@ const PrepopulatedEngine* const engines_MA[] = {
|
|
|
+
|
|
|
+ // Monaco
|
|
|
+ const PrepopulatedEngine* const engines_MC[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -540,7 +540,7 @@ const PrepopulatedEngine* const engines_MC[] = {
|
|
|
+
|
|
|
+ // Moldova
|
|
|
+ const PrepopulatedEngine* const engines_MD[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yandex_ru,
|
|
|
+ &mail_ru,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -548,7 +548,7 @@ const PrepopulatedEngine* const engines_MD[] = {
|
|
|
+
|
|
|
+ // Montenegro
|
|
|
+ const PrepopulatedEngine* const engines_ME[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -556,7 +556,7 @@ const PrepopulatedEngine* const engines_ME[] = {
|
|
|
+
|
|
|
+ // Macedonia
|
|
|
+ const PrepopulatedEngine* const engines_MK[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -564,7 +564,7 @@ const PrepopulatedEngine* const engines_MK[] = {
|
|
|
+
|
|
|
+ // Mexico
|
|
|
+ const PrepopulatedEngine* const engines_MX[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_mx,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -572,7 +572,7 @@ const PrepopulatedEngine* const engines_MX[] = {
|
|
|
+
|
|
|
+ // Malaysia
|
|
|
+ const PrepopulatedEngine* const engines_MY[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_my,
|
|
|
+ &bing,
|
|
|
+ &baidu,
|
|
|
+@@ -580,7 +580,7 @@ const PrepopulatedEngine* const engines_MY[] = {
|
|
|
+
|
|
|
+ // Nicaragua
|
|
|
+ const PrepopulatedEngine* const engines_NI[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -588,7 +588,7 @@ const PrepopulatedEngine* const engines_NI[] = {
|
|
|
+
|
|
|
+ // Netherlands
|
|
|
+ const PrepopulatedEngine* const engines_NL[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_nl,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -596,7 +596,7 @@ const PrepopulatedEngine* const engines_NL[] = {
|
|
|
+
|
|
|
+ // Norway
|
|
|
+ const PrepopulatedEngine* const engines_NO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -604,7 +604,7 @@ const PrepopulatedEngine* const engines_NO[] = {
|
|
|
+
|
|
|
+ // New Zealand
|
|
|
+ const PrepopulatedEngine* const engines_NZ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+ &yahoo_nz,
|
|
|
+@@ -612,7 +612,7 @@ const PrepopulatedEngine* const engines_NZ[] = {
|
|
|
+
|
|
|
+ // Oman
|
|
|
+ const PrepopulatedEngine* const engines_OM[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &ask,
|
|
|
+@@ -620,7 +620,7 @@ const PrepopulatedEngine* const engines_OM[] = {
|
|
|
+
|
|
|
+ // Panama
|
|
|
+ const PrepopulatedEngine* const engines_PA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -628,7 +628,7 @@ const PrepopulatedEngine* const engines_PA[] = {
|
|
|
+
|
|
|
+ // Peru
|
|
|
+ const PrepopulatedEngine* const engines_PE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_pe,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -636,7 +636,7 @@ const PrepopulatedEngine* const engines_PE[] = {
|
|
|
+
|
|
|
+ // Philippines
|
|
|
+ const PrepopulatedEngine* const engines_PH[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_ph,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -644,7 +644,7 @@ const PrepopulatedEngine* const engines_PH[] = {
|
|
|
+
|
|
|
+ // Pakistan
|
|
|
+ const PrepopulatedEngine* const engines_PK[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &baidu,
|
|
|
+@@ -652,7 +652,7 @@ const PrepopulatedEngine* const engines_PK[] = {
|
|
|
+
|
|
|
+ // Poland
|
|
|
+ const PrepopulatedEngine* const engines_PL[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -660,7 +660,7 @@ const PrepopulatedEngine* const engines_PL[] = {
|
|
|
+
|
|
|
+ // Puerto Rico
|
|
|
+ const PrepopulatedEngine* const engines_PR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -668,7 +668,7 @@ const PrepopulatedEngine* const engines_PR[] = {
|
|
|
+
|
|
|
+ // Portugal
|
|
|
+ const PrepopulatedEngine* const engines_PT[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -676,7 +676,7 @@ const PrepopulatedEngine* const engines_PT[] = {
|
|
|
+
|
|
|
+ // Paraguay
|
|
|
+ const PrepopulatedEngine* const engines_PY[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -684,7 +684,7 @@ const PrepopulatedEngine* const engines_PY[] = {
|
|
|
+
|
|
|
+ // Qatar
|
|
|
+ const PrepopulatedEngine* const engines_QA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &ask,
|
|
|
+@@ -692,7 +692,7 @@ const PrepopulatedEngine* const engines_QA[] = {
|
|
|
+
|
|
|
+ // Romania
|
|
|
+ const PrepopulatedEngine* const engines_RO[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -700,7 +700,7 @@ const PrepopulatedEngine* const engines_RO[] = {
|
|
|
+
|
|
|
+ // Serbia
|
|
|
+ const PrepopulatedEngine* const engines_RS[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -709,14 +709,14 @@ const PrepopulatedEngine* const engines_RS[] = {
|
|
|
+ // Russia
|
|
|
+ const PrepopulatedEngine* const engines_RU[] = {
|
|
|
+ &yandex_ru,
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &mail_ru,
|
|
|
+ &bing,
|
|
|
+ };
|
|
|
+
|
|
|
+ // Rwanda
|
|
|
+ const PrepopulatedEngine* const engines_RW[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -724,7 +724,7 @@ const PrepopulatedEngine* const engines_RW[] = {
|
|
|
+
|
|
|
+ // Saudi Arabia
|
|
|
+ const PrepopulatedEngine* const engines_SA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_com,
|
|
|
+@@ -732,7 +732,7 @@ const PrepopulatedEngine* const engines_SA[] = {
|
|
|
+
|
|
|
+ // Sweden
|
|
|
+ const PrepopulatedEngine* const engines_SE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_se,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -740,7 +740,7 @@ const PrepopulatedEngine* const engines_SE[] = {
|
|
|
+
|
|
|
+ // Singapore
|
|
|
+ const PrepopulatedEngine* const engines_SG[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo_sg,
|
|
|
+ &yandex_com,
|
|
|
+@@ -748,7 +748,7 @@ const PrepopulatedEngine* const engines_SG[] = {
|
|
|
+
|
|
|
+ // Slovenia
|
|
|
+ const PrepopulatedEngine* const engines_SI[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -756,7 +756,7 @@ const PrepopulatedEngine* const engines_SI[] = {
|
|
|
+
|
|
|
+ // Slovakia
|
|
|
+ const PrepopulatedEngine* const engines_SK[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -764,7 +764,7 @@ const PrepopulatedEngine* const engines_SK[] = {
|
|
|
+
|
|
|
+ // El Salvador
|
|
|
+ const PrepopulatedEngine* const engines_SV[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -772,7 +772,7 @@ const PrepopulatedEngine* const engines_SV[] = {
|
|
|
+
|
|
|
+ // Syria
|
|
|
+ const PrepopulatedEngine* const engines_SY[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -780,7 +780,7 @@ const PrepopulatedEngine* const engines_SY[] = {
|
|
|
+
|
|
|
+ // Thailand
|
|
|
+ const PrepopulatedEngine* const engines_TH[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_th,
|
|
|
+ &bing,
|
|
|
+ &ask,
|
|
|
+@@ -788,7 +788,7 @@ const PrepopulatedEngine* const engines_TH[] = {
|
|
|
+
|
|
|
+ // Tunisia
|
|
|
+ const PrepopulatedEngine* const engines_TN[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo,
|
|
|
+ &bing,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -796,7 +796,7 @@ const PrepopulatedEngine* const engines_TN[] = {
|
|
|
+
|
|
|
+ // Turkey
|
|
|
+ const PrepopulatedEngine* const engines_TR[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yandex_tr,
|
|
|
+ &yahoo_tr,
|
|
|
+ &bing,
|
|
|
+@@ -804,7 +804,7 @@ const PrepopulatedEngine* const engines_TR[] = {
|
|
|
+
|
|
|
+ // Trinidad and Tobago
|
|
|
+ const PrepopulatedEngine* const engines_TT[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -812,7 +812,7 @@ const PrepopulatedEngine* const engines_TT[] = {
|
|
|
+
|
|
|
+ // Taiwan
|
|
|
+ const PrepopulatedEngine* const engines_TW[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_tw,
|
|
|
+ &bing,
|
|
|
+ &baidu,
|
|
|
+@@ -820,7 +820,7 @@ const PrepopulatedEngine* const engines_TW[] = {
|
|
|
+
|
|
|
+ // Tanzania
|
|
|
+ const PrepopulatedEngine* const engines_TZ[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &yandex_ru,
|
|
|
+@@ -828,7 +828,7 @@ const PrepopulatedEngine* const engines_TZ[] = {
|
|
|
+
|
|
|
+ // Ukraine
|
|
|
+ const PrepopulatedEngine* const engines_UA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yandex_ua,
|
|
|
+ &mail_ru,
|
|
|
+ &bing,
|
|
|
+@@ -836,7 +836,7 @@ const PrepopulatedEngine* const engines_UA[] = {
|
|
|
+
|
|
|
+ // United States
|
|
|
+ const PrepopulatedEngine* const engines_US[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -844,7 +844,7 @@ const PrepopulatedEngine* const engines_US[] = {
|
|
|
+
|
|
|
+ // Uruguay
|
|
|
+ const PrepopulatedEngine* const engines_UY[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -852,7 +852,7 @@ const PrepopulatedEngine* const engines_UY[] = {
|
|
|
+
|
|
|
+ // Venezuela
|
|
|
+ const PrepopulatedEngine* const engines_VE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &yahoo_ve,
|
|
|
+ &bing,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -860,7 +860,7 @@ const PrepopulatedEngine* const engines_VE[] = {
|
|
|
+
|
|
|
+ // Vietnam
|
|
|
+ const PrepopulatedEngine* const engines_VN[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &coccoc,
|
|
|
+ &bing,
|
|
|
+ &yahoo_vn,
|
|
|
+@@ -868,7 +868,7 @@ const PrepopulatedEngine* const engines_VN[] = {
|
|
|
+
|
|
|
+ // Yemen
|
|
|
+ const PrepopulatedEngine* const engines_YE[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &baidu,
|
|
|
+@@ -876,7 +876,7 @@ const PrepopulatedEngine* const engines_YE[] = {
|
|
|
+
|
|
|
+ // South Africa
|
|
|
+ const PrepopulatedEngine* const engines_ZA[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+@@ -884,7 +884,7 @@ const PrepopulatedEngine* const engines_ZA[] = {
|
|
|
+
|
|
|
+ // Zimbabwe
|
|
|
+ const PrepopulatedEngine* const engines_ZW[] = {
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &bing,
|
|
|
+ &yahoo,
|
|
|
+ &baidu,
|
|
|
+@@ -900,7 +900,7 @@ const PrepopulatedEngine* const kAllEngines[] = {
|
|
|
+ &coccoc,
|
|
|
+ &daum,
|
|
|
+ &duckduckgo, &duckduckgo_light,
|
|
|
+- &googleen, &google, &startpage,
|
|
|
++ &googleen, &google, &startpage, &qwant,
|
|
|
+ &mail_ru,
|
|
|
+ &naver,
|
|
|
+ &parsijoo,
|
|
|
+--
|
|
|
+2.11.0
|
|
|
+
|