added french translation

This commit is contained in:
Julien Chanseaume
2014-05-05 07:23:48 +02:00
parent bddda57601
commit 913ce22724
5 changed files with 15 additions and 11 deletions

0
templates/frontOffice/default/I18n/en_US.php Normal file → Executable file
View File

4
templates/frontOffice/default/I18n/fr_FR.php Normal file → Executable file
View File

@@ -16,6 +16,10 @@ return array(
'Address' => 'Adresse',
'Address %nb' => 'Adresse n°',
'Address Update' => 'Mise à jour de l\'adresse',
'All contents' => 'Tous les contenus',
'All contents in' => 'tous les contenus de',
'All products' => 'Tous les produits',
'All products in' => 'Tous les produits de',
'Amount' => 'Montant',
'Availability' => 'Disponibilité',
'Available' => 'Disponible',

View File

@@ -20,7 +20,7 @@
{* Feeds *}
{block name="feeds"}
<link rel="alternate" type="application/rss+xml" title="{intl l='All products for'} {category attr='title'}" href="{url path="/feed/catalog/{lang attr="locale"}/{content attr="id"}"}" />
<link rel="alternate" type="application/rss+xml" title="{intl l='All products in'} {category attr='title'}" href="{url path="/feed/catalog/{lang attr="locale"}/{content attr="id"}"}" />
{/block}
{* Breadcrumb *}

View File

@@ -20,7 +20,7 @@
{* Feeds *}
{block name="feeds"}
<link rel="alternate" type="application/rss+xml" title="{intl l='All contents for'} {content attr='title'}" href="{url path="/feed/content/{lang attr="locale"}/{content attr="id"}"}" />
<link rel="alternate" type="application/rss+xml" title="{intl l='All contents in'} {content attr='title'}" href="{url path="/feed/content/{lang attr="locale"}/{content attr="id"}"}" />
{/block}
{* Breadcrumb *}

View File

@@ -8,7 +8,7 @@
{if $_context_ == "catalog"}
<channel>
{if $_id_ == "" }
<title>{intl l="Catalog"} | {$store_name}</title>
<title>{intl l="All products in"} {$store_name}</title>
<link>{url path="/"}</link>
<description>{$store_name}</description>
<language>{$locale|replace:'_':'-'|lower}</language>
@@ -16,7 +16,7 @@
<generator>Thelia 2.0</generator>
{else}
{loop type="category" name="category" id=$_id_ lang=$_lang_ }
<title>{$TITLE} | {$store_name}</title>
<title>{intl l="All products in"} {$TITLE} - {$store_name}</title>
<link>{$URL}</link>
<description>{$CHAPO}</description>
<language>{$LOCALE|replace:'_':'-'|lower}</language>
@@ -37,16 +37,16 @@
</channel>
{else}
<channel>
{if $_id_ == "" }
<title>{intl l="Contents"} | {$store_name}</title>
{if $_id_ == "" }
<title>{intl l="All contents in"} {$store_name}</title>
<link>{url path="/"}</link>
<description>{$store_name}</description>
<language>{$locale|replace:'_':'-'|lower}</language>
<lastBuildDate>{$smarty.now|date_format:'r'}</lastBuildDate>
<generator>Thelia 2.0</generator>
{else}
{else}
{loop type="folder" name="folder" id=$_id_ lang=$_lang_ }
<title>{$TITLE} | {$store_name}</title>
<title>{intl l="All contents in"} {$TITLE} - {$store_name}</title>
<link>{$URL}</link>
<description>{$CHAPO}</description>
<language>{$LOCALE|replace:'_':'-'|lower}</language>
@@ -54,8 +54,8 @@
<lastBuildDate>{$smarty.now|date_format:'r'}</lastBuildDate>
<generator>Thelia 2.0</generator>
{/loop}
{/if}
{loop type="content" name="content" folder_default=$_id_ lang=$_lang_ }
{/if}
{loop type="content" name="content" folder_default=$_id_ lang=$_lang_ }
<item>
<title>{$TITLE}</title>
<link>{$URL}</link>
@@ -63,7 +63,7 @@
<pubDate>{format_date date=$CREATE_DATE format="r"}</pubDate>
<guid>{$URL}</guid>
</item>
{/loop}
{/loop}
</channel>
{/if}
</rss>