diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-05-05 22:26:01 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-05-05 22:26:01 +0000 |
| commit | e2d66e7d0372524b413644d29fd90f05c72e50d4 (patch) | |
| tree | b0874e39fea3fbbdd459b10ff3306058b2c35f2f | |
| parent | 31c833f113caa85bcaa14673b738b4555e6be463 (diff) | |
Fixed #10959 -- Changed the admin search button text to make it clearer in the UI, and to disambiguate during translation. Thanks to Ramiro Morales for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10678 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/admin/templates/admin/search_form.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/admin/templates/admin/search_form.html b/django/contrib/admin/templates/admin/search_form.html index 97ef8f18b7..4133cb877c 100644 --- a/django/contrib/admin/templates/admin/search_form.html +++ b/django/contrib/admin/templates/admin/search_form.html @@ -5,7 +5,7 @@ <div><!-- DIV needed for valid HTML --> <label for="searchbar"><img src="{% admin_media_prefix %}img/admin/icon_searchbox.png" alt="Search" /></label> <input type="text" size="40" name="{{ search_var }}" value="{{ cl.query }}" id="searchbar" /> -<input type="submit" value="{% trans 'Go' %}" /> +<input type="submit" value="{% trans 'Search' %}" /> {% if show_result_count %} <span class="small quiet">{% blocktrans count cl.result_count as counter %}1 result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?{% if cl.is_popup %}pop=1{% endif %}">{% blocktrans with cl.full_result_count as full_result_count %}{{ full_result_count }} total{% endblocktrans %}</a>)</span> {% endif %} |
