Refactoring translations

This commit is contained in:
Marc Ducobu 2014-11-19 10:04:38 +01:00
parent 9d6168ace0
commit 9976f88e2f
4 changed files with 6 additions and 28 deletions

View File

@ -1,2 +1,3 @@
Search a person: Search a person
Person name: Person name
Person name: Person name
Login: Login

View File

@ -1,11 +0,0 @@
<?xml version="1.0"?>
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
<file source-language="en" datatype="plaintext" original="file.ext">
<body>
<trans-unit id="1">
<source>Symfony2 is great</source>
<target>J'aime Symfony2</target>
</trans-unit>
</body>
</file>
</xliff>

View File

@ -1,14 +1,3 @@
views:
Main:
admin:
index:
header_title: Administration de Chill
page_title: Administration
views:
Common:
edit: Modifier
show: Voir
actions: Actions
Search a person: Rechercher une personne
Person name: Nom / Prénom de la personne
Person name: Nom / Prénom de la personne
Login: Connexion

View File

@ -1,7 +1,6 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<head>
<title>{{ installation.name }} - {% block title %}{% endblock %}</title>
{% stylesheets output="css/all.css" filter="cssrewrite"
@ -100,7 +99,7 @@
<h2>{{ 'Search a person'|trans }}</h2>
<form action="{{ path('chill_person_search') }}" method="get">
<input name="q" type="search" placeholder="{{ 'Person Name'|trans }}" />
<input name="q" type="search" placeholder="{{ 'Person name'|trans }}" />
<center>
<button type="submit" class="sc-button orange"><i class="fa fa-search"></i> {{ 'Search a person'|trans }}</button>
</center>