Browse Source

Made some strings translateable.

Ralfp 12 years ago
parent
commit
2bd1242523
1 changed files with 2 additions and 2 deletions
  1. 2 2
      templates/cranefly/layout.html

+ 2 - 2
templates/cranefly/layout.html

@@ -28,10 +28,10 @@
                     <select name="search_in">
                     <select name="search_in">
                       <option value="forums"{% if not search_in is defined or search_in == 'forums' %} selected="selected"{% endif %}>Forums</option>
                       <option value="forums"{% if not search_in is defined or search_in == 'forums' %} selected="selected"{% endif %}>Forums</option>
                       {% if settings.enable_private_threads and acl.private_threads.can_participate()%}
                       {% if settings.enable_private_threads and acl.private_threads.can_participate()%}
-                      <option value="private"{% if search_in == 'private' %} selected="selected"{% endif %}>Private threads</option>
+                      <option value="private"{% if search_in == 'private' %} selected="selected"{% endif %}>{% trans %}Private threads{% endtrans %}</option>
                       {% endif %}
                       {% endif %}
                       {% if acl.reports.can_handle() %}
                       {% if acl.reports.can_handle() %}
-                      <option value="reports"{% if search_in == 'reports' %} selected="selected"{% endif %}>Reports</option>
+                      <option value="reports"{% if search_in == 'reports' %} selected="selected"{% endif %}>{% trans %}Reports{% endtrans %}</option>
                       {% endif %}
                       {% endif %}
                       {% if thread is defined %}
                       {% if thread is defined %}
                       <option value="thread"{% if search_in == 'thread' %} selected="selected"{% endif %}>{% trans %}This thread{% endtrans %}</option>
                       <option value="thread"{% if search_in == 'thread' %} selected="selected"{% endif %}>{% trans %}This thread{% endtrans %}</option>