Ticket #5425 (closed Feature Request: fixed)
Missing i18n translation: Advanced search, No matching results found
| Reported by: | arnogross | Owned by: | hannosch |
|---|---|---|---|
| Priority: | trivial | Milestone: | 2.1.3 |
| Component: | Internationalization | Keywords: | livesearch_reply i18n |
| Cc: |
Description
plone-de.po entry:
msgid "label_no_results_found" msgstr "Keine passenden Ergebnisse gefunden."
Patch:
--- /home/agross/plone212/Products/CMFPlone/skins/plone_scripts/livesearch_reply.py 2006-01-20 19:09:50.000000000 +0100
+++ livesearch_reply.py 2006-04-06 19:03:11.000000000 +0200
@@ -55,6 +55,7 @@
_ = context.translate
legend_livesearch = _('legend_livesearch', default='LiveSearch ↓')
label_no_results_found = _('label_no_results_found', default='No matching results found.')
+label_advanced_search = _('label_advanced_search', default='Advanched Search')
if not results:
print '''<fieldset class="livesearchContainer">'''
@@ -62,7 +63,7 @@
print '''<div class="LSIEFix">'''
print '''<div id="LSNothingFound">%s</div>''' % label_no_results_found
print '''<li class="LSRow">'''
- print '<a href="search_form" style="font-weight:normal">Advanced Search…</a>'
+ print '<a href="search_form" style="font-weight:normal">%s…</a>' % label_advanced_search
print '''</li>'''
print '''</div>'''
print '''</fieldset>'''
Attachments
Change History
Changed 6 years ago by arnogross
-
attachment
livesearch_reply.py.patch
added
Note: See
TracTickets for help on using
tickets.

livesearch_reply.py.patch