Localise Main

This commit is contained in:
Thomas BRELET 2013-11-05 19:01:46 +01:00
parent 9969d186d6
commit 80b084d6ee
3 changed files with 15 additions and 6 deletions

View file

@ -1,8 +1,8 @@
<head>
<title>Loading...</title>
<title>{{i18n "Loading..."}}</title>
<meta name="viewport" content="initial-scale=1.0">
<link rel="shortcut icon" href="/img/favicon.ico"/>
<link rel="alternate" type="application/rss+xml" title="New Posts" href="/feed.xml"/>
<link rel="alternate" type="application/rss+xml" title="{{i18n "New Posts"}}" href="/feed.xml"/>
</head>
<body>
<div class="outer-wrapper {{currentPage}}">

View file

@ -1,6 +1,10 @@
en = {
'en': {
translation: {
//Main
"Loading...": "Chargement...",
"New Posts": "New Posts",
// Post deleted
"Your post has been deleted.": "Your post has been deleted.",
@ -58,8 +62,7 @@ en = {
"Please log in first": "Please log in first",
// Post list
"Load more": "Load more",
"Loading...": "Loading..."
"Load more": "Load more"
}
}
};

View file

@ -1,6 +1,13 @@
fr = {
'fr': {
translation: {
//Main
"Loading...": "Chargement...",
"New Posts": "Nouveaux Posts",
//Common mobile_nav
// Post deleted
"Your post has been deleted.": "Votre post a été supprimé.",
@ -58,8 +65,7 @@ fr = {
"Please log in first": "Vous devez être connecté",
// Post list
"Load more": "Charger plus de post",
"Loading...": "Chargement..."
"Load more": "Charger plus de post"
}
}
};