0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Merge pull request #1573 from kaedroho/fix-editorspicks-references

Fixed a couple of references to editors picks
This commit is contained in:
Tom Dyson 2015-08-11 12:33:44 +01:00
commit de78b8d609
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ def index(request):
'is_searching': is_searching,
'queries': queries,
'query_string': query_string,
'search_form': SearchForm(data=dict(q=query_string) if query_string else None, placeholder=_("Search editor's picks")),
'search_form': SearchForm(data=dict(q=query_string) if query_string else None, placeholder=_("Search promoted results")),
})

View File

@ -5,6 +5,6 @@ from django.utils.translation import ugettext_lazy as _
class QueryForm(forms.Form):
query_string = forms.CharField(label=_("Search term(s)/phrase"),
help_text=_("Enter the full search string to match. An "
"exact match is required for your Editors Picks to be "
"exact match is required for your Promoted Results to be "
"displayed, wildcards are NOT allowed."),
required=True)