@uxf/cms 11.74.1 → 11.74.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/pages/grid-page/grid-page.js +1 -3
- package/security/restricted-page.d.ts +1 -2
- package/security/restricted-page.js +2 -1
- package/translations/cs.json +125 -0
- package/translations/de.json +83 -0
- package/translations/en.json +83 -0
- package/translations/sk.json +83 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uxf/cms",
|
3
|
-
"version": "11.74.
|
3
|
+
"version": "11.74.3",
|
4
4
|
"description": "UXF Cms",
|
5
5
|
"author": "UXFans <dev@uxf.cz>",
|
6
6
|
"homepage": "https://gitlab.com/uxf-npm/cms#readme",
|
@@ -32,11 +32,11 @@
|
|
32
32
|
"@redux-devtools/extension": "3.3.0",
|
33
33
|
"@uxf/core": "11.72.3",
|
34
34
|
"@uxf/core-react": "11.74.1",
|
35
|
-
"@uxf/data-grid": "11.74.
|
36
|
-
"@uxf/form": "11.74.
|
35
|
+
"@uxf/data-grid": "11.74.2",
|
36
|
+
"@uxf/form": "11.74.2",
|
37
37
|
"@uxf/router": "11.72.5",
|
38
|
-
"@uxf/ui": "11.74.
|
39
|
-
"@uxf/wysiwyg": "11.74.
|
38
|
+
"@uxf/ui": "11.74.2",
|
39
|
+
"@uxf/wysiwyg": "11.74.2",
|
40
40
|
"axios": "1.7.5",
|
41
41
|
"axios-hooks": "5.0.2",
|
42
42
|
"es6-error": "4.1.1",
|
@@ -27,7 +27,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27
27
|
};
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
29
29
|
exports.GridPage = exports.dataGridLoader = void 0;
|
30
|
-
const translations_1 = require("@uxf/core-react/translations");
|
31
30
|
const empty_array_1 = require("@uxf/core/constants/empty-array");
|
32
31
|
const build_array_1 = require("@uxf/core/utils/build-array");
|
33
32
|
const is_nil_1 = require("@uxf/core/utils/is-nil");
|
@@ -138,7 +137,6 @@ GridPageComponent.displayName = "GridPageComponent";
|
|
138
137
|
/** @deprecated - use custom DataGrid on project */
|
139
138
|
const GridPage = (config) => {
|
140
139
|
var _a;
|
141
|
-
const t = (0, translations_1.useUxfTranslation)();
|
142
140
|
function Component() {
|
143
141
|
var _a, _b;
|
144
142
|
const router = (0, router_2.useRouter)();
|
@@ -156,6 +154,6 @@ const GridPage = (config) => {
|
|
156
154
|
}
|
157
155
|
return (react_1.default.createElement(GridPageComponent, { AddIcon: config.AddIcon, appName: config.appName, customActions: config.customActions, entityAlias: config.entityAlias, getEditUrl: config.getEditUrl, getOpenUrl: config.getOpenUrl, gridSchema: schema, initialHiddenColumns: (_b = userConfigQuery.data) !== null && _b !== void 0 ? _b : [], initialUserConfig: config.initialUserConfig, loader: config.loader, metaSchema: metadata, onAdd: config.onAdd, onAddTitle: config.onAddTitle, onEdit: config.onEdit, onOpen: config.onOpen, onRemove: config.onRemove, query: router.query, rowHeight: config.rowHeight, selectable: config.selectable, title: config.title, ui: config.ui }));
|
158
156
|
}
|
159
|
-
return (0, restricted_page_1.restrictedPage)(Component, { allowedRole: (_a = config.allowedRoles) !== null && _a !== void 0 ? _a : ["ROLE_ROOT"] }
|
157
|
+
return (0, restricted_page_1.restrictedPage)(Component, { allowedRole: (_a = config.allowedRoles) !== null && _a !== void 0 ? _a : ["ROLE_ROOT"] });
|
160
158
|
};
|
161
159
|
exports.GridPage = GridPage;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import { useUxfTranslation } from "@uxf/core-react/translations";
|
2
1
|
import React, { ReactNode } from "react";
|
3
2
|
interface Config {
|
4
3
|
allowedRole: string[];
|
@@ -6,5 +5,5 @@ interface Config {
|
|
6
5
|
export declare function ErrorContent(props: {
|
7
6
|
error: any;
|
8
7
|
}): React.JSX.Element;
|
9
|
-
export declare function restrictedPage(Component: () => ReactNode, config: Config
|
8
|
+
export declare function restrictedPage(Component: () => ReactNode, config: Config): (props: any) => React.JSX.Element;
|
10
9
|
export {};
|
@@ -20,9 +20,10 @@ function ErrorContent(props) {
|
|
20
20
|
}
|
21
21
|
return react_1.default.createElement("div", null, t("uxf-cms-restricted-page:unknown-error"));
|
22
22
|
}
|
23
|
-
function restrictedPage(Component, config
|
23
|
+
function restrictedPage(Component, config) {
|
24
24
|
return function Page(props) {
|
25
25
|
const meQuery = (0, swr_1.useCmsMeQuery)();
|
26
|
+
const t = (0, translations_1.useUxfTranslation)();
|
26
27
|
if (meQuery.isLoading || typeof window === "undefined") {
|
27
28
|
return (react_1.default.createElement("div", { className: "flex min-h-screen w-full items-center justify-center" },
|
28
29
|
react_1.default.createElement(loader_1.Loader, null)));
|
@@ -0,0 +1,125 @@
|
|
1
|
+
{
|
2
|
+
"uxf-cms-content-builder": {
|
3
|
+
"header": {
|
4
|
+
"save": "Uložit"
|
5
|
+
},
|
6
|
+
"settings": {
|
7
|
+
"default-title": "Článek knihovny",
|
8
|
+
"settings": "Nastavení",
|
9
|
+
"basic": "Základní"
|
10
|
+
},
|
11
|
+
"basic-form": {
|
12
|
+
"title": "Nadpis",
|
13
|
+
"perex": "Perex",
|
14
|
+
"author": "Autor",
|
15
|
+
"main-image": "Hlavní obrázek",
|
16
|
+
"active": "Aktivní",
|
17
|
+
"parent-article": "Nadřazený článek",
|
18
|
+
"published-at": "Datum vydání"
|
19
|
+
},
|
20
|
+
"seo-form": {
|
21
|
+
"slug": "Slug",
|
22
|
+
"slug-helper": "Slug = unikátní koncovka URL adresy",
|
23
|
+
"title": "Nadpis",
|
24
|
+
"description": "Popis",
|
25
|
+
"og-title-helper": "Nadpis který bude zobrazen při sdílení na Facebooku, ...",
|
26
|
+
"og-description-helper": "Popis který bude zobrazen při sdílení na Facebooku, ...",
|
27
|
+
"og-image": "OG obrázek",
|
28
|
+
"og-image-helper": "Obrázek který bude zobrazen při sdílení na Facebooku, ..."
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"uxf-cms-change-password-form": {
|
32
|
+
"save": "Uložit",
|
33
|
+
"original-password": "Původní heslo",
|
34
|
+
"new-password": "Nové heslo",
|
35
|
+
"new-password-again": "Nové heslo znovu",
|
36
|
+
"passwords-must-match": "Hesla musí být stejná"
|
37
|
+
},
|
38
|
+
"uxf-cms-forgotten-password-form": {
|
39
|
+
"reset-password": "Obnovit heslo",
|
40
|
+
"login": "Přihlásit"
|
41
|
+
},
|
42
|
+
"uxf-cms-invite-user-form": {
|
43
|
+
"save": "Uložit",
|
44
|
+
"name": "Jméno",
|
45
|
+
"surname": "Příjmení",
|
46
|
+
"roles": "Role",
|
47
|
+
"send-invitation": "Odeslat pozvánku"
|
48
|
+
},
|
49
|
+
"uxf-cms-login-form": {
|
50
|
+
"password": "Heslo",
|
51
|
+
"forgot-password": "Nepamatujete si své heslo?",
|
52
|
+
"login": "Přihlásit se"
|
53
|
+
},
|
54
|
+
"uxf-cms-renew-password-form": {
|
55
|
+
"new-password": "Nové heslo",
|
56
|
+
"new-password-again": "Znovu nové heslo",
|
57
|
+
"passwords-must-match": "Hesla musí být stejná",
|
58
|
+
"change-password": "Změnit heslo"
|
59
|
+
},
|
60
|
+
"uxf-cms-user-menu": {
|
61
|
+
"default-user": "Uživatel",
|
62
|
+
"not-logged-in": "nepřihlášený"
|
63
|
+
},
|
64
|
+
"uxf-cms-pages-content-builder": {
|
65
|
+
"components": {
|
66
|
+
"content-header": {
|
67
|
+
"confirm-delete-section": "Opravdu chcete smazat tuto sekci?"
|
68
|
+
},
|
69
|
+
"header": {
|
70
|
+
"save": "Uložit"
|
71
|
+
}
|
72
|
+
},
|
73
|
+
"content": {
|
74
|
+
"hero-section": {
|
75
|
+
"title": "Nadpis",
|
76
|
+
"subtitle": "Podnadpis"
|
77
|
+
},
|
78
|
+
"feature-section": {
|
79
|
+
"title": "Název sekce",
|
80
|
+
"subtitle": "Popis sekce",
|
81
|
+
"add-feature": "Přidat funkci",
|
82
|
+
"confirm-delete-feature": "Opravdu chcete smazat tuto funkci?",
|
83
|
+
"feature-title": "Funkce {{index}}",
|
84
|
+
"delete-feature": "Smazat funkci",
|
85
|
+
"feature-name": "Název funkce",
|
86
|
+
"image": "Obrázek"
|
87
|
+
},
|
88
|
+
"people": {
|
89
|
+
"confirm-delete-person": "Opravdu chcete smazat tuto osobu?",
|
90
|
+
"person-title": "Osoba {{index}}",
|
91
|
+
"delete-person": "Smazat osobu",
|
92
|
+
"name": "Jméno",
|
93
|
+
"image": "Obrázek",
|
94
|
+
"description": "Popis",
|
95
|
+
"text": "Text",
|
96
|
+
"phone": "Telefon",
|
97
|
+
"add-person": "Přidat osobu"
|
98
|
+
},
|
99
|
+
"wysiwyg": {
|
100
|
+
"text": "Text",
|
101
|
+
"placeholder": "Zadejte text..."
|
102
|
+
}
|
103
|
+
},
|
104
|
+
"confirm-delete-section": "Opravdu chcete smazat sekci?"
|
105
|
+
},
|
106
|
+
"uxf-cms-restricted-page": {
|
107
|
+
"login": "Přihlásit",
|
108
|
+
"login-required": "Musíte se přihlásit",
|
109
|
+
"unknown-error": "Vyskytla se chyba",
|
110
|
+
"forbidden": "Pro tuto stránku nemáte oprávnění."
|
111
|
+
},
|
112
|
+
"uxf-cms-copy-to-clipboard-button": {
|
113
|
+
"text-copied": "Text zkopírován",
|
114
|
+
"copy-failed": "Nepodařilo se zkopírovat text"
|
115
|
+
},
|
116
|
+
"uxf-cms-copy-to-clipboard": {
|
117
|
+
"text-copied": "Text zkopírován",
|
118
|
+
"copy-failed": "Nepodařilo se zkopírovat text"
|
119
|
+
},
|
120
|
+
"uxf-cms-remove-confirm-handler": {
|
121
|
+
"cancel": "Zrušit",
|
122
|
+
"confirm-delete": "Ano, smazat",
|
123
|
+
"confirm-delete-message": "Opravdu chcete smazat tento soubor?"
|
124
|
+
}
|
125
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
{
|
2
|
+
"uxf-cms-content-builder": {
|
3
|
+
"header": {
|
4
|
+
"save": "Speichern"
|
5
|
+
},
|
6
|
+
"settings": {
|
7
|
+
"default-title": "Bibliotheksartikel",
|
8
|
+
"settings": "Einstellungen",
|
9
|
+
"basic": "Grundlagen"
|
10
|
+
},
|
11
|
+
"basic-form": {
|
12
|
+
"title": "Titel",
|
13
|
+
"perex": "Perex",
|
14
|
+
"author": "Autor",
|
15
|
+
"main-image": "Hauptbild",
|
16
|
+
"active": "Aktiv",
|
17
|
+
"parent-article": "Übergeordneter Artikel",
|
18
|
+
"published-at": "Veröffentlichungsdatum"
|
19
|
+
},
|
20
|
+
"seo-form": {
|
21
|
+
"slug": "Slug",
|
22
|
+
"slug-helper": "Slug = eindeutige URL-Adressenendung",
|
23
|
+
"title": "Titel",
|
24
|
+
"description": "Beschreibung",
|
25
|
+
"og-title-helper": "Titel, der beim Teilen auf Facebook angezeigt wird, ...",
|
26
|
+
"og-description-helper": "Beschreibung, die beim Teilen auf Facebook angezeigt wird, ...",
|
27
|
+
"og-image": "OG-Bild",
|
28
|
+
"og-image-helper": "Bild, das beim Teilen auf Facebook angezeigt wird, ..."
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"uxf-cms-change-password-form": {
|
32
|
+
"save": "Speichern",
|
33
|
+
"original-password": "Ursprüngliches Passwort",
|
34
|
+
"new-password": "Neues Passwort",
|
35
|
+
"new-password-again": "Neues Passwort wiederholen",
|
36
|
+
"passwords-must-match": "Passwörter müssen übereinstimmen"
|
37
|
+
},
|
38
|
+
"uxf-cms-forgotten-password-form": {
|
39
|
+
"reset-password": "Passwort zurücksetzen",
|
40
|
+
"login": "Anmelden"
|
41
|
+
},
|
42
|
+
"uxf-cms-invite-user-form": {
|
43
|
+
"save": "Speichern",
|
44
|
+
"name": "Name",
|
45
|
+
"surname": "Nachname",
|
46
|
+
"roles": "Rollen",
|
47
|
+
"send-invitation": "Einladung senden"
|
48
|
+
},
|
49
|
+
"uxf-cms-login-form": {
|
50
|
+
"password": "Passwort",
|
51
|
+
"forgot-password": "Passwort vergessen?",
|
52
|
+
"login": "Anmelden"
|
53
|
+
},
|
54
|
+
"uxf-cms-renew-password-form": {
|
55
|
+
"new-password": "Neues Passwort",
|
56
|
+
"new-password-again": "Neues Passwort wiederholen",
|
57
|
+
"passwords-must-match": "Passwörter müssen übereinstimmen",
|
58
|
+
"change-password": "Passwort ändern"
|
59
|
+
},
|
60
|
+
"uxf-cms-user-menu": {
|
61
|
+
"default-user": "Benutzer",
|
62
|
+
"not-logged-in": "nicht angemeldet"
|
63
|
+
},
|
64
|
+
"uxf-cms-restricted-page": {
|
65
|
+
"login": "Anmelden",
|
66
|
+
"login-required": "Sie müssen sich anmelden",
|
67
|
+
"unknown-error": "Ein Fehler ist aufgetreten",
|
68
|
+
"forbidden": "Sie haben keine Berechtigung für diese Seite."
|
69
|
+
},
|
70
|
+
"uxf-cms-copy-to-clipboard-button": {
|
71
|
+
"text-copied": "Text kopiert",
|
72
|
+
"copy-failed": "Fehler beim Kopieren des Textes"
|
73
|
+
},
|
74
|
+
"uxf-cms-copy-to-clipboard": {
|
75
|
+
"text-copied": "Text kopiert",
|
76
|
+
"copy-failed": "Fehler beim Kopieren des Textes"
|
77
|
+
},
|
78
|
+
"uxf-cms-remove-confirm-handler": {
|
79
|
+
"cancel": "Abbrechen",
|
80
|
+
"confirm-delete": "Ja, löschen",
|
81
|
+
"confirm-delete-message": "Möchten Sie diese Datei wirklich löschen?"
|
82
|
+
}
|
83
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
{
|
2
|
+
"uxf-cms-content-builder": {
|
3
|
+
"header": {
|
4
|
+
"save": "Save"
|
5
|
+
},
|
6
|
+
"settings": {
|
7
|
+
"default-title": "Library article",
|
8
|
+
"settings": "Settings",
|
9
|
+
"basic": "Basic"
|
10
|
+
},
|
11
|
+
"basic-form": {
|
12
|
+
"title": "Title",
|
13
|
+
"perex": "Perex",
|
14
|
+
"author": "Author",
|
15
|
+
"main-image": "Main image",
|
16
|
+
"active": "Active",
|
17
|
+
"parent-article": "Parent article",
|
18
|
+
"published-at": "Publication date"
|
19
|
+
},
|
20
|
+
"seo-form": {
|
21
|
+
"slug": "Slug",
|
22
|
+
"slug-helper": "Slug = unique URL address ending",
|
23
|
+
"title": "Title",
|
24
|
+
"description": "Description",
|
25
|
+
"og-title-helper": "Title that will be displayed when sharing on Facebook, ...",
|
26
|
+
"og-description-helper": "Description that will be displayed when sharing on Facebook, ...",
|
27
|
+
"og-image": "OG image",
|
28
|
+
"og-image-helper": "Image that will be displayed when sharing on Facebook, ..."
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"uxf-cms-change-password-form": {
|
32
|
+
"save": "Save",
|
33
|
+
"original-password": "Original password",
|
34
|
+
"new-password": "New password",
|
35
|
+
"new-password-again": "New password again",
|
36
|
+
"passwords-must-match": "Passwords must match"
|
37
|
+
},
|
38
|
+
"uxf-cms-forgotten-password-form": {
|
39
|
+
"reset-password": "Reset password",
|
40
|
+
"login": "Login"
|
41
|
+
},
|
42
|
+
"uxf-cms-invite-user-form": {
|
43
|
+
"save": "Save",
|
44
|
+
"name": "Name",
|
45
|
+
"surname": "Surname",
|
46
|
+
"roles": "Roles",
|
47
|
+
"send-invitation": "Send invitation"
|
48
|
+
},
|
49
|
+
"uxf-cms-login-form": {
|
50
|
+
"password": "Password",
|
51
|
+
"forgot-password": "Don't remember your password?",
|
52
|
+
"login": "Login"
|
53
|
+
},
|
54
|
+
"uxf-cms-renew-password-form": {
|
55
|
+
"new-password": "New password",
|
56
|
+
"new-password-again": "New password again",
|
57
|
+
"passwords-must-match": "Passwords must match",
|
58
|
+
"change-password": "Change password"
|
59
|
+
},
|
60
|
+
"uxf-cms-user-menu": {
|
61
|
+
"default-user": "User",
|
62
|
+
"not-logged-in": "not logged in"
|
63
|
+
},
|
64
|
+
"uxf-cms-restricted-page": {
|
65
|
+
"login": "Login",
|
66
|
+
"login-required": "You must log in",
|
67
|
+
"unknown-error": "An error occurred",
|
68
|
+
"forbidden": "You don't have permission for this page."
|
69
|
+
},
|
70
|
+
"uxf-cms-copy-to-clipboard-button": {
|
71
|
+
"text-copied": "Text copied",
|
72
|
+
"copy-failed": "Failed to copy text"
|
73
|
+
},
|
74
|
+
"uxf-cms-copy-to-clipboard": {
|
75
|
+
"text-copied": "Text copied",
|
76
|
+
"copy-failed": "Failed to copy text"
|
77
|
+
},
|
78
|
+
"uxf-cms-remove-confirm-handler": {
|
79
|
+
"cancel": "Cancel",
|
80
|
+
"confirm-delete": "Yes, delete",
|
81
|
+
"confirm-delete-message": "Do you really want to delete this file?"
|
82
|
+
}
|
83
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
{
|
2
|
+
"uxf-cms-content-builder": {
|
3
|
+
"header": {
|
4
|
+
"save": "Uložiť"
|
5
|
+
},
|
6
|
+
"settings": {
|
7
|
+
"default-title": "Článok knižnice",
|
8
|
+
"settings": "Nastavenia",
|
9
|
+
"basic": "Základné"
|
10
|
+
},
|
11
|
+
"basic-form": {
|
12
|
+
"title": "Nadpis",
|
13
|
+
"perex": "Perex",
|
14
|
+
"author": "Autor",
|
15
|
+
"main-image": "Hlavný obrázok",
|
16
|
+
"active": "Aktívny",
|
17
|
+
"parent-article": "Nadradený článok",
|
18
|
+
"published-at": "Dátum vydania"
|
19
|
+
},
|
20
|
+
"seo-form": {
|
21
|
+
"slug": "Slug",
|
22
|
+
"slug-helper": "Slug = unikátna koncovka URL adresy",
|
23
|
+
"title": "Nadpis",
|
24
|
+
"description": "Popis",
|
25
|
+
"og-title-helper": "Nadpis ktorý bude zobrazený pri zdieľaní na Facebooku, ...",
|
26
|
+
"og-description-helper": "Popis ktorý bude zobrazený pri zdieľaní na Facebooku, ...",
|
27
|
+
"og-image": "OG obrázok",
|
28
|
+
"og-image-helper": "Obrázok ktorý bude zobrazený pri zdieľaní na Facebooku, ..."
|
29
|
+
}
|
30
|
+
},
|
31
|
+
"uxf-cms-change-password-form": {
|
32
|
+
"save": "Uložiť",
|
33
|
+
"original-password": "Pôvodné heslo",
|
34
|
+
"new-password": "Nové heslo",
|
35
|
+
"new-password-again": "Nové heslo znovu",
|
36
|
+
"passwords-must-match": "Heslá musia byť rovnaké"
|
37
|
+
},
|
38
|
+
"uxf-cms-forgotten-password-form": {
|
39
|
+
"reset-password": "Obnoviť heslo",
|
40
|
+
"login": "Prihlásiť"
|
41
|
+
},
|
42
|
+
"uxf-cms-invite-user-form": {
|
43
|
+
"save": "Uložiť",
|
44
|
+
"name": "Meno",
|
45
|
+
"surname": "Priezvisko",
|
46
|
+
"roles": "Roly",
|
47
|
+
"send-invitation": "Odoslať pozvánku"
|
48
|
+
},
|
49
|
+
"uxf-cms-login-form": {
|
50
|
+
"password": "Heslo",
|
51
|
+
"forgot-password": "Nepamätáte si svoje heslo?",
|
52
|
+
"login": "Prihlásiť sa"
|
53
|
+
},
|
54
|
+
"uxf-cms-renew-password-form": {
|
55
|
+
"new-password": "Nové heslo",
|
56
|
+
"new-password-again": "Znovu nové heslo",
|
57
|
+
"passwords-must-match": "Heslá musia byť rovnaké",
|
58
|
+
"change-password": "Zmeniť heslo"
|
59
|
+
},
|
60
|
+
"uxf-cms-user-menu": {
|
61
|
+
"default-user": "Používateľ",
|
62
|
+
"not-logged-in": "neprihlásený"
|
63
|
+
},
|
64
|
+
"uxf-cms-restricted-page": {
|
65
|
+
"login": "Prihlásiť",
|
66
|
+
"login-required": "Musíte sa prihlásiť",
|
67
|
+
"unknown-error": "Vyskytla sa chyba",
|
68
|
+
"forbidden": "Pre túto stránku nemáte oprávnenie."
|
69
|
+
},
|
70
|
+
"uxf-cms-copy-to-clipboard-button": {
|
71
|
+
"text-copied": "Text skopírovaný",
|
72
|
+
"copy-failed": "Nepodarilo sa skopírovať text"
|
73
|
+
},
|
74
|
+
"uxf-cms-copy-to-clipboard": {
|
75
|
+
"text-copied": "Text skopírovaný",
|
76
|
+
"copy-failed": "Nepodarilo sa skopírovať text"
|
77
|
+
},
|
78
|
+
"uxf-cms-remove-confirm-handler": {
|
79
|
+
"cancel": "Zrušiť",
|
80
|
+
"confirm-delete": "Áno, zmazať",
|
81
|
+
"confirm-delete-message": "Naozaj chcete zmazať tento súbor?"
|
82
|
+
}
|
83
|
+
}
|