work on users i18n

This commit is contained in:
Sacha Greif 2015-05-06 16:50:12 +09:00
parent ddf99ca363
commit e1f9c41f86
5 changed files with 17 additions and 5 deletions

View file

@ -288,7 +288,6 @@
"invites_left": "invites left",
"id": "ID",
"name": "Name:",
"bio": "Bio:",
"github": "GitHub",
"site": "Site",
"upvoted_posts": "Upvoted Posts",

View file

@ -252,8 +252,7 @@
"actions": "Actions",
"invites_left": "Invitations restantes",
"id": "ID",
"name": "Nom:",
"bio": "Bio:",
"name": "Nom",
"github": "GitHub",
"site": "Site",
"upvoted_posts": "Posts upvotés",

View file

@ -1,3 +1,8 @@
{
"please_fill_in_missing_information_to_finish_signing_up": "Please fill in missing information below to finish signing up."
"please_fill_in_missing_information_to_finish_signing_up": "Please fill in missing information below to finish signing up.",
"bio": "Bio",
"displayName": "Display Name",
"email": "Email",
"twitterUsername": "Twitter Username",
"website": "Website"
}

View file

@ -0,0 +1,8 @@
{
"please_fill_in_missing_information_to_finish_signing_up": "Veuillez remplir les informations manquantes pour compléter votre inscription.",
"bio": "Bio",
"displayName": "Nom Affiché",
"email": "Email",
"twitterUsername": "Identifiant Twitter",
"website": "Site Web"
}

View file

@ -66,7 +66,8 @@ Package.onUse(function (api) {
], ['server']);
api.addFiles([
"i18n/en.i18n.json"
"i18n/en.i18n.json",
"i18n/fr.i18n.json"
], ["client", "server"]);
api.export('Users');