summaryrefslogtreecommitdiffstats
path: root/client/src/admin/data
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/admin/data')
-rw-r--r--client/src/admin/data/translations.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/client/src/admin/data/translations.js b/client/src/admin/data/translations.js
new file mode 100644
index 0000000..b4c34a2
--- /dev/null
+++ b/client/src/admin/data/translations.js
@@ -0,0 +1,41 @@
+export const defaultLanguage = 'en';
+export const fallbackLanguage = 'en';
+export const translations = {
+ "en": {
+ "main-title": "Website Manager",
+ "login-to-admin": "Login to Admin Panel",
+ "login-info": "Put your user name and password, then click login button",
+ "login": "Login",
+ "user": "User name",
+ "password": "Password",
+ "no-saved-websites": "You don't have any saved projects, create a new one",
+ "create-new-project": "Create new project",
+ "create-new-project-hover": "Click to create new project",
+ "edit-current-project": "Edit current project",
+ "edit-current-project-hover": "Click to edit current active projecct",
+ "show-saved-projects": "Show saved projects",
+ "show-saved-projects-hover": "Click to show list of all saved projects",
+ "click-to-change-language": "Click to change language in the website manager",
+ "click-to-change-user": "Click to logout or change user password",
+ "logout": "Logout",
+ "click-to-logout": "Click to logout/change current user",
+ "user-settings": "User settings",
+ "click-to-change-user-settings": "Click to change user name, password or to completely remove current user",
+ },
+ "de": {
+ "main-title": "Website Manager",
+ },
+ "es": {
+ "main-title": "Website Manager",
+ },
+ "pl": {
+ "main-title": "Website Manager",
+ "login-to-admin": "Zaloguj do Panelu Administracyjnego",
+ "no-saved-websites": "Nie masz jeszcze żadnych zapisanych projektów, utwórz nowy",
+ "create-new-project": "Utwórz nowy projekt",
+ "edit-current-project": "Edytuj bieżący projekt",
+ "show-saved-projects": "Pokaż zapisane projekty",
+ },
+};
+
+export const languages = Object.keys(translations);