Commit 62501a735dc58980bb1c59cc4038a23ffb6d94f0

Authored by Sergio Oliveira
1 parent cc35593c

Fixing translation problems

src/colab/deprecated/templates/open-data.html
... ... @@ -11,8 +11,7 @@
11 11 system (you must be registered in order to create a ticket).{% endblocktrans %}</p>
12 12  
13 13 <h3>{% trans "Performing searches via the API" %}</h3>
14   - <p>{% trans "The Colab API searches works through an HTTP/REST always
15   - returning JSON objects with result." %} </p>
  14 + <p>{% trans "The Colab API searches works through an HTTP/REST always returning JSON objects with result." %} </p>
16 15 <p>{% trans "The base URL used for the search is:" %}
17 16 <a href="/api/search/">http://colab.interlegis.leg.br/api/search/</a></p>
18 17  
... ...
src/colab/deprecated/templates/user-profile.html
... ... @@ -9,7 +9,7 @@
9 9 {% block main-content %}
10 10 {% if not user_profile %}
11 11 <span class="notice span-24">
12   - <b>{% trans "User not registered." %}</b> {% trans "You are own this profile?" %}
  12 + <b>{% trans "User not registered." %}</b> {% trans "Is that you?" %}
13 13 <a href="{% url 'signup' %}">{% trans "Click here and sign up." %}</a>
14 14 </span>
15 15  
... ... @@ -17,8 +17,8 @@
17 17  
18 18 {% ifequal request.user.username user_profile.user.username %}
19 19 <span class="success span-24">
20   - {% trans "Hey, look you here! Want to " %}
21   - <a href="{% url 'user_profile_update' request.user %}">{% trans "edit your profile" %}</a>?
  20 + {% trans "Hey, look at you! Do you want to " %}
  21 + <a href="{% url 'user_profile_update' request.user %}">{% trans "update your profile" %}</a>?
22 22 </span>
23 23 {% endifequal %}
24 24  
... ...
src/super_archives/templatetags/form_field.py
... ... @@ -52,7 +52,7 @@ class RenderFormField(template.Node):
52 52 else:
53 53 form_field_tag = default_value
54 54  
55   - return u"""<p class="%s">%s: %s %s</p>""" % (
  55 + return u"""<p class="%s">%s %s %s</p>""" % (
56 56 class_,
57 57 form_field.label_tag(),
58 58 form_field_tag,
... ...