1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
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 email and password, then click login button",
"login": "Login",
"email": "Email",
"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 settings",
"logout": "Logout",
"click-to-logout": "Click to logout current user",
"user-settings": "User settings",
"click-to-change-user-settings": "Click to change user name, password or to completely remove current user",
"main-information": "Main information",
"website-title": "Website title",
"website-title-hover": "Website title should have less than 55 characters, it will be displayed on the browser tab and will help search engines find your page",
"website-description": "Website description",
"website-description-hover": "Website description should have around 150 characters, it will be displayed on search results under website title",
"upload-favicon": "Website's favicon",
"upload-favicon-hover": "Click to add favicon for your website (32x32px)",
"back": "Back",
"next": "Next",
"creator-next-hover": "Click to navigate to next screen",
"cancel": "Cancel",
"creator-cancel-hover": "Click to exit creator without saving changes",
"website-sections": "Website Sections",
},
"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);
|