Ver código fonte

Fix a few typos in Google search engine

Kirill Isakov 9 anos atrás
pai
commit
90c51cb449
1 arquivos alterados com 6 adições e 6 exclusões
  1. 6
    6
      searx/engines/google.py

+ 6
- 6
searx/engines/google.py Ver arquivo

@@ -46,11 +46,11 @@ country_to_hostname = {
46 46
     'NZ': 'www.google.co.nz',  # New Zealand
47 47
     'PH': 'www.google.com.ph',  # Philippines
48 48
     'SG': 'www.google.com.sg',  # Singapore
49
-    # 'US': 'www.google.us',  # United State, redirect to .com
49
+    # 'US': 'www.google.us',  # United States, redirect to .com
50 50
     'ZA': 'www.google.co.za',  # South Africa
51 51
     'AR': 'www.google.com.ar',  # Argentina
52 52
     'CL': 'www.google.cl',  # Chile
53
-    'ES': 'www.google.es',  # Span
53
+    'ES': 'www.google.es',  # Spain
54 54
     'MX': 'www.google.com.mx',  # Mexico
55 55
     'EE': 'www.google.ee',  # Estonia
56 56
     'FI': 'www.google.fi',  # Finland
@@ -61,7 +61,7 @@ country_to_hostname = {
61 61
     'HU': 'www.google.hu',  # Hungary
62 62
     'IT': 'www.google.it',  # Italy
63 63
     'JP': 'www.google.co.jp',  # Japan
64
-    'KR': 'www.google.co.kr',  # South Korean
64
+    'KR': 'www.google.co.kr',  # South Korea
65 65
     'LT': 'www.google.lt',  # Lithuania
66 66
     'LV': 'www.google.lv',  # Latvia
67 67
     'NO': 'www.google.no',  # Norway
@@ -76,9 +76,9 @@ country_to_hostname = {
76 76
     'SE': 'www.google.se',  # Sweden
77 77
     'TH': 'www.google.co.th',  # Thailand
78 78
     'TR': 'www.google.com.tr',  # Turkey
79
-    'UA': 'www.google.com.ua',  # Ikraine
80
-    # 'CN': 'www.google.cn',  # China, only from china ?
81
-    'HK': 'www.google.com.hk',  # Hong kong
79
+    'UA': 'www.google.com.ua',  # Ukraine
80
+    # 'CN': 'www.google.cn',  # China, only from China ?
81
+    'HK': 'www.google.com.hk',  # Hong Kong
82 82
     'TW': 'www.google.com.tw'  # Taiwan
83 83
 }
84 84