From c63e905c251bae5e7a126ac909752aedca405eef Mon Sep 17 00:00:00 2001 From: Mattias Axell Date: Wed, 28 Feb 2018 16:31:35 +0100 Subject: [PATCH] Create swedish.js - Swedish translation --- public/modules/core/config/i18n/swedish.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 public/modules/core/config/i18n/swedish.js diff --git a/public/modules/core/config/i18n/swedish.js b/public/modules/core/config/i18n/swedish.js new file mode 100644 index 00000000..62214482 --- /dev/null +++ b/public/modules/core/config/i18n/swedish.js @@ -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' + }); + +}]);