@yuuvis/app-shell-admin 2.0.0 → 2.0.2
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/lib/assets/i18n/de.json +27 -0
- package/lib/assets/i18n/en.json +27 -0
- package/package.json +2 -2
- package/yuv-manifest.json +10 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"yuv.app.shell-admin.config.delete.tooltip": "Löschen",
|
|
3
|
+
"yuv.app.shell-admin.config.export.tooltip": "Exportieren",
|
|
4
|
+
"yuv.app.shell-admin.config.import.tooltip": "Importieren",
|
|
5
|
+
"yuv.app.shell-admin.features.config.add.tooltip": "Feature hinzufügen",
|
|
6
|
+
"yuv.app.shell-admin.features.config.create": "Neue Konfiguration erstellen",
|
|
7
|
+
"yuv.app.shell-admin.features.config.feature.allowed": "Erlaubt",
|
|
8
|
+
"yuv.app.shell-admin.features.config.feature.denied": "Verboten",
|
|
9
|
+
"yuv.app.shell-admin.features.config.feature.extension": "Erweiterung",
|
|
10
|
+
"yuv.app.shell-admin.features.config.feature.id": "ID",
|
|
11
|
+
"yuv.app.shell-admin.features.config.feature.label": "Name",
|
|
12
|
+
"yuv.app.shell-admin.features.config.save": "Speichern",
|
|
13
|
+
"yuv.app.shell-admin.features.headline": "Shell Features",
|
|
14
|
+
"yuv.app.shell-admin.features.users.headline": "Benutzer",
|
|
15
|
+
"yuv.app.shell-admin.invalid-user": "Sie haben nicht die erforderlichen Berechtigungen, um auf diese Seite zuzugreifen.",
|
|
16
|
+
"yuv.app.shell-admin.nav.apps": "Apps/Features",
|
|
17
|
+
"yuv.app.shell-admin.nav.types": "Objekttypen",
|
|
18
|
+
"yuv.app.shell-admin.type.config.id": "SOT ID",
|
|
19
|
+
"yuv.app.shell-admin.type.config.instant-apply": "Umgehend anwenden",
|
|
20
|
+
"yuv.app.shell-admin.type.config.instant-apply.explain": "Fügt den SOT ohne Dialog zur Ansicht oder Eingabe von Metadaten hinzu. Verwenden Sie dies nur für SOTs, die keine Pflichtfelder haben.",
|
|
21
|
+
"yuv.app.shell-admin.type.config.mimetype": "Mimetyp",
|
|
22
|
+
"yuv.app.shell-admin.types.config.add.tooltip": "Eintrag hinzufügen",
|
|
23
|
+
"yuv.app.shell-admin.types.config.create": "Neue Konfiguration erstellen",
|
|
24
|
+
"yuv.app.shell-admin.types.config.item.delete.tooltip": "Eintrag löschen",
|
|
25
|
+
"yuv.app.shell-admin.types.config.save": "Speichern",
|
|
26
|
+
"yuv.app.shell-admin.types.headline": "Objekttypen"
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"yuv.app.shell-admin.config.delete.tooltip": "Delete",
|
|
3
|
+
"yuv.app.shell-admin.config.export.tooltip": "Export",
|
|
4
|
+
"yuv.app.shell-admin.config.import.tooltip": "Import",
|
|
5
|
+
"yuv.app.shell-admin.features.config.add.tooltip": "Add feature",
|
|
6
|
+
"yuv.app.shell-admin.features.config.create": "Create new configuration",
|
|
7
|
+
"yuv.app.shell-admin.features.config.feature.allowed": "Allowed",
|
|
8
|
+
"yuv.app.shell-admin.features.config.feature.denied": "Denied",
|
|
9
|
+
"yuv.app.shell-admin.features.config.feature.extension": "Extension",
|
|
10
|
+
"yuv.app.shell-admin.features.config.feature.id": "ID",
|
|
11
|
+
"yuv.app.shell-admin.features.config.feature.label": "Label",
|
|
12
|
+
"yuv.app.shell-admin.features.config.save": "Save",
|
|
13
|
+
"yuv.app.shell-admin.features.headline": "Shell Features",
|
|
14
|
+
"yuv.app.shell-admin.features.users.headline": "Users",
|
|
15
|
+
"yuv.app.shell-admin.invalid-user": "You do not have the required permissions to access this page.",
|
|
16
|
+
"yuv.app.shell-admin.nav.apps": "Apps/Features",
|
|
17
|
+
"yuv.app.shell-admin.nav.types": "Object Types",
|
|
18
|
+
"yuv.app.shell-admin.type.config.id": "SOT ID",
|
|
19
|
+
"yuv.app.shell-admin.type.config.instant-apply": "Apply immediately",
|
|
20
|
+
"yuv.app.shell-admin.type.config.instant-apply.explain": "Adds the SOT to the view without dialog or input of metadata. Use this only for SOTs that have no mandatory fields.",
|
|
21
|
+
"yuv.app.shell-admin.type.config.mimetype": "Mimetype",
|
|
22
|
+
"yuv.app.shell-admin.types.config.add.tooltip": "Add entry",
|
|
23
|
+
"yuv.app.shell-admin.types.config.create": "Create new configuration",
|
|
24
|
+
"yuv.app.shell-admin.types.config.item.delete.tooltip": "Delete entry",
|
|
25
|
+
"yuv.app.shell-admin.types.config.save": "Save",
|
|
26
|
+
"yuv.app.shell-admin.types.headline": "Object Types"
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuuvis/app-shell-admin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^19.2.1",
|
|
6
6
|
"@angular/core": "^19.2.1",
|
|
7
|
-
"@yuuvis/client-shell": "2.0.
|
|
7
|
+
"@yuuvis/client-shell": "2.0.2"
|
|
8
8
|
},
|
|
9
9
|
"sideEffects": false,
|
|
10
10
|
"module": "fesm2022/yuuvis-app-shell-admin.mjs",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "io.yuuvis.app.shell-admin",
|
|
3
|
+
"title": "yM Shell Admin",
|
|
4
|
+
"ui": {
|
|
5
|
+
"path": "shell-admin",
|
|
6
|
+
"svgIcon": "<svg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' ><path d='M680-280q25 0 42.5-17.5T740-340q0-25-17.5-42.5T680-400q-25 0-42.5 17.5T620-340q0 25 17.5 42.5T680-280Zm0 120q31 0 57-14.5t42-38.5q-22-13-47-20t-52-7q-27 0-52 7t-47 20q16 24 42 38.5t57 14.5ZM480-80q-139-35-229.5-159.5T160-516v-244l320-120 320 120v227q-19-8-39-14.5t-41-9.5v-147l-240-90-240 90v188q0 47 12.5 94t35 89.5Q310-290 342-254t71 60q11 32 29 61t41 52q-1 0-1.5.5t-1.5.5Zm200 0q-83 0-141.5-58.5T480-280q0-83 58.5-141.5T680-480q83 0 141.5 58.5T880-280q0 83-58.5 141.5T680-80ZM480-494Z'/></svg>",
|
|
7
|
+
"iconName": "app_shell_admin",
|
|
8
|
+
"routes": "FeatureAdminRoutes"
|
|
9
|
+
}
|
|
10
|
+
}
|