tellform/public/modules/core/config/i18n/french.js

16 lines
431 B
JavaScript
Raw Normal View History

2016-06-16 00:38:22 +00:00
'use strict';
angular.module('core').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('fr', {
MENU: 'MENU',
SIGNUP_TAB: 'Créer un compte',
2016-06-16 00:38:22 +00:00
SIGNIN_TAB: 'Connexion',
SIGNOUT_TAB: 'Créer un compte',
EDIT_PROFILE: 'Modifier mon profil',
MY_SETTINGS: 'Mes paramètres',
CHANGE_PASSWORD: 'Changer mon mot de passe',
2017-10-27 19:52:39 +00:00
TOGGLE_NAVIGATION: 'Basculer la navigation',
2016-06-16 00:38:22 +00:00
});
}]);