Browse Source

Further fixes in profiles templates

Ralfp 12 years ago
parent
commit
b19e6f1cd0

+ 4 - 0
templates/sora/profiles/content_posts.html

@@ -8,7 +8,11 @@
 {% block title %}{{ macros.page_title(_('Posts'), profile.username) }}{% endblock %}
 
 {% block tab %}
+<<<<<<< HEAD
 <h2>{% trans username=profile.username %}{{ username }}'s Posts{% endtrans %}{% if items_total %} <small>
+=======
+<h2>{% trans username=profile.username %}{{ username }}'s posts{% endtrans %}{% if items_total %} <small>
+>>>>>>> Fixes in new templates.
     {%- trans count=items_total, total=items_total|intcomma, username=profile.username -%}
     {{ username }} has one post
     {%- pluralize -%}

+ 4 - 0
templates/sora/profiles/content_threads.html

@@ -8,7 +8,11 @@
 {% block title %}{{ macros.page_title(_('Threads'), profile.username) }}{% endblock %}
 
 {% block tab %}
+<<<<<<< HEAD
 <h2>{% trans username=profile.username %}{{ username }}'s Threads{% endtrans %}{% if items_total %} <small>
+=======
+<h2>{% trans username=profile.username %}{{ username }}'s threads{% endtrans %}{% if items_total %} <small>
+>>>>>>> Fixes in new templates.
     {%- trans count=items_total, total=items_total|intcomma, username=profile.username -%}
     {{ username }} started one thread
     {%- pluralize -%}

+ 7 - 3
templates/sora/profiles/followers.html

@@ -8,7 +8,11 @@
 {% block title %}{{ macros.page_title(_('Followers'), profile.username) }}{% endblock %}
 
 {% block tab %}
+<<<<<<< HEAD
 <h2>{% trans username=profile.username %}{{ username }}'s Followers{% endtrans %}{% if items_total %} <small>
+=======
+<h2>{% trans username=profile.username %}{{ username }}'s followers{% endtrans %}{% if items_total %} <small>
+>>>>>>> Fixes in new templates.
     {%- trans count=items_total, total=items_total|intcomma, username=profile.username -%}
     {{ username }} has one follower
     {%- pluralize -%}
@@ -23,9 +27,9 @@
   <thead>
     <tr>
       <th colspan="4">{% trans count=items_total, total=items_total|intcomma, username=profile.username -%}
-    {{ username }} has one follower
+    {{ username }} has one follower at this time
     {%- pluralize -%}
-    {{ username }} has {{ total }} followers
+    {{ username }} has {{ total }} followers at this time
     {%- endtrans %}</th>
     </tr>
   </thead>
@@ -49,7 +53,7 @@
   {{ pager() }}
 </div>
 {% else %}
-<p class="lead">{% trans username=profile.username %}{{ username }} has no followers{% endtrans %}</p>
+<p class="lead">{% trans username=profile.username %}{{ username }} has no followers at this time{% endtrans %}</p>
 {% endif %}
 {% endblock %}
 

+ 5 - 1
templates/sora/profiles/follows.html

@@ -8,7 +8,11 @@
 {% block title %}{{ macros.page_title(_('Follows'), profile.username) }}{% endblock %}
 
 {% block tab %}
+<<<<<<< HEAD
 <h2>{% trans username=profile.username %}Who {{ username }} Follows{% endtrans %}{% if items_total %} <small>
+=======
+<h2>{% trans username=profile.username %}Who {{ username }} follows{% endtrans %}{% if items_total %} <small>
+>>>>>>> Fixes in new templates.
     {%- trans count=items_total, total=items_total|intcomma, username=profile.username -%}
     {{ username }} follows one member
     {%- pluralize -%}
@@ -49,7 +53,7 @@
   {{ pager() }}
 </div>
 {% else %}
-<p class="lead">{% trans username=profile.username %}{{ username }} follows nobody{% endtrans %}</p>
+<p class="lead">{% trans username=profile.username %}{{ username }} follows nobody  at this time{% endtrans %}</p>
 {% endif %}
 {% endblock %}