Browse Source

[enh] i18n support

asciimoo 11 years ago
parent
commit
2b1d2dbc84

+ 15
- 5
searx/engines/__init__.py View File

@@ -26,6 +26,7 @@ from searx import settings
26 26
 from searx.utils import gen_useragent
27 27
 import sys
28 28
 from datetime import datetime
29
+from flask.ext.babel import gettext
29 30
 
30 31
 engine_dir = dirname(realpath(__file__))
31 32
 
@@ -269,15 +270,24 @@ def get_engines_stats():
269 270
             engine['percentage'] = 0
270 271
 
271 272
     return [
272
-        ('Page loads (sec)', sorted(pageloads, key=itemgetter('avg'))),
273 273
         (
274
-            'Number of results',
274
+            gettext('Page loads (sec)'),
275
+            sorted(pageloads, key=itemgetter('avg'))
276
+        ),
277
+        (
278
+            gettext('Number of results'),
275 279
             sorted(results, key=itemgetter('avg'), reverse=True)
276 280
         ),
277
-        ('Scores', sorted(scores, key=itemgetter('avg'), reverse=True)),
278 281
         (
279
-            'Scores per result',
282
+            gettext('Scores'),
283
+            sorted(scores, key=itemgetter('avg'), reverse=True)
284
+        ),
285
+        (
286
+            gettext('Scores per result'),
280 287
             sorted(scores_per_result, key=itemgetter('avg'), reverse=True)
281 288
         ),
282
-        ('Errors', sorted(errors, key=itemgetter('avg'), reverse=True)),
289
+        (
290
+            gettext('Errors'),
291
+            sorted(errors, key=itemgetter('avg'), reverse=True)
292
+        ),
283 293
     ]

+ 4
- 5
searx/templates/engines.html View File

@@ -1,12 +1,12 @@
1 1
 {% extends 'base.html' %}
2 2
 {% block content %}
3 3
 <div class="row">
4
-<h2>Currently used search engines</h2>
4
+    <h2>{{ _('Currently used search engines') }}</h2>
5 5
 
6 6
     <table style="width: 80%;">
7 7
         <tr>
8
-            <th>Engine name</th>
9
-            <th>Category</th>
8
+            <th>{{ _('Engine name') }}</th>
9
+            <th>{{ _('Category') }}</th>
10 10
         </tr>
11 11
     {% for (categ,search_engines) in categs %}
12 12
         {% for search_engine in search_engines %}
@@ -20,7 +20,6 @@
20 20
         {% endfor %}
21 21
     {% endfor %}
22 22
     </table>
23
-<p>Please add more engines to this list, pull requests are welcome!</p>
24
-<p class="right"><a href="/">back</a></p>
23
+<p class="right"><a href="/">{{ _('back') }}</a></p>
25 24
 </div>
26 25
 {% endblock %}

+ 2
- 2
searx/templates/index.html View File

@@ -4,8 +4,8 @@
4 4
     <div class="title"><h1>searx</h1></div>
5 5
     {% include 'search.html' %}
6 6
     <p class="top_margin">
7
-        <a href="/about" class="hmarg">about</a>
8
-        <a href="/preferences" class="hmarg">preferences</a>
7
+        <a href="/about" class="hmarg">{{ _('about') }}</a>
8
+        <a href="/preferences" class="hmarg">{{ _('preferences') }}</a>
9 9
     </p>
10 10
 </div>
11 11
 {% endblock %}

+ 4
- 4
searx/templates/preferences.html View File

@@ -2,18 +2,18 @@
2 2
 {% block head %} {% endblock %}
3 3
 {% block content %}
4 4
 <div class="row">
5
-    <h2>Preferences</h2>
5
+    <h2>{{ _('Preferences') }}</h2>
6 6
 
7 7
 
8 8
     <fieldset>
9
-        <legend>Default categories</legend>
9
+        <legend>{{ _('Default categories') }}</legend>
10 10
         <form method="post" action="/preferences" id="search_form">
11 11
         <p>
12 12
         {% include 'categories.html' %}
13 13
         </p>
14
-        <input type="submit" value="save" />
14
+        <input type="submit" value="{{ _('save') }}" />
15 15
         </form>
16 16
     </fieldset>
17
-    <div class="right"><a href="/">back</a></div>
17
+    <div class="right"><a href="/">{{ _('back') }}</a></div>
18 18
 </div>
19 19
 {% endblock %}

+ 3
- 3
searx/templates/results.html View File

@@ -7,12 +7,12 @@
7 7
 </div>
8 8
 <div id="results">
9 9
     {% if suggestions %}
10
-    <div id="suggestions"><span>Suggestions: </span>{% for suggestion in suggestions %}<form method="post" action="/"><input type="hidden" name="q" value="{{suggestion}}"><input type="submit" value="{{ suggestion }}" /></form>{% endfor %}</div>
10
+    <div id="suggestions"><span>{{ _('Suggestions') }}:</span>{% for suggestion in suggestions %}<form method="post" action="/"><input type="hidden" name="q" value="{{suggestion}}"><input type="submit" value="{{ suggestion }}" /></form>{% endfor %}</div>
11 11
     {% endif %}
12 12
 
13 13
 
14 14
     <div id ="result_count">
15
-        Number of results: {{ number_of_results }}
15
+        {{ _('Number of results') }}: {{ number_of_results }}
16 16
     </div>
17 17
 
18 18
     {% for result in results %}
@@ -23,7 +23,7 @@
23 23
         {% endif %}
24 24
     {% endfor %}
25 25
     <div id="apis">
26
-      Download results
26
+      {{ _('Download results') }}
27 27
       <form method="post" action="/">
28 28
         <div class="left">
29 29
           <input type="hidden" name="q" value="{{ q }}" />

+ 1
- 1
searx/templates/stats.html View File

@@ -1,7 +1,7 @@
1 1
 {% extends "base.html" %}
2 2
 {% block head %} {% endblock %}
3 3
 {% block content %}
4
-<h2>Engine stats</h2>
4
+<h2>{{ _('Engine stats') }}</h2>
5 5
 
6 6
 {% for stat_name,stat_category in stats %}
7 7
 <div class="left">