Browse Source

Moar fixes to quick search form.

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

+ 2 - 2
templates/cranefly/layout.html

@@ -26,9 +26,9 @@
                   <div class="control">
                     <label>{% trans %}Search in{% endtrans %}:</label>
                     <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 %}>{% trans %}Forums{% endtrans%}</option>
                       {% if settings.enable_private_threads and acl.private_threads.can_participate()%}
-                      <option value="private"{% if search_in == 'private' %} selected="selected"{% endif %}>{% trans %}Private threads{% endtrans %}</option>
+                      <option value="private"{% if search_in == 'private' %} selected="selected"{% endif %}>{% trans %}Private Threads{% endtrans %}</option>
                       {% endif %}
                       {% if acl.reports.can_handle() %}
                       <option value="reports"{% if search_in == 'reports' %} selected="selected"{% endif %}>{% trans %}Reports{% endtrans %}</option>