Create swedish.js - Swedish translation

This commit is contained in:
Mattias Axell 2018-02-28 16:31:35 +01:00 committed by GitHub
parent 66765278d2
commit c63e905c25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
'use strict';
angular.module('core').config(['$translateProvider', function ($translateProvider) {
$translateProvider.translations('en', {
MENU: 'MENY',
SIGNUP_TAB: 'Registrera konto',
SIGNIN_TAB: 'Logga In',
SIGNOUT_TAB: 'Logga Ut',
EDIT_PROFILE: 'Redigera Profil',
MY_SETTINGS: 'Mina Inställningar',
CHANGE_PASSWORD: 'Byt Lösenord',
TOGGLE_NAVIGATION: 'Växla navigation'
});
}]);