Set messages more consistent

messages in search button on homepage now reference 'general search' (through all chill.search services) instead of only persons
This commit is contained in:
Julien Fastré 2014-11-25 15:13:33 +01:00
parent fc955e2995
commit 87a62a501c
2 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
Search: Rechercher Search: Rechercher
'Search persons, ...': 'Recherche des personnes, ...'
Person name: Nom / Prénom de la personne Person name: Nom / Prénom de la personne
Login: Connexion Login: Connexion
Logout: Se déconnecter Logout: Se déconnecter

View File

@ -98,12 +98,12 @@
{% block content %} {% block content %}
<div class="container"> <div class="container">
<div class="grid-8 centered"> <div class="grid-8 centered">
<h2>{{ 'Search a person'|trans }}</h2> <h2>{{ 'Search'|trans }}</h2>
<form action="{{ path('chill_main_search') }}" method="get"> <form action="{{ path('chill_main_search') }}" method="get">
<input name="q" type="search" placeholder="{{ 'Person name'|trans }}" /> <input name="q" type="search" placeholder="{{ 'Search persons, ...'|trans }}" />
<center> <center>
<button type="submit" class="sc-button orange"><i class="fa fa-search"></i> {{ 'Search a person'|trans }}</button> <button type="submit" class="sc-button orange"><i class="fa fa-search"></i> {{ 'Search'|trans }}</button>
</center> </center>
</form> </form>
</div> </div>