@backstage-community/plugin-rbac 1.50.2 → 1.51.0

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/alpha/translations/de.esm.js +2 -0
  3. package/dist/alpha/translations/de.esm.js.map +1 -1
  4. package/dist/alpha/translations/es.esm.js +2 -0
  5. package/dist/alpha/translations/es.esm.js.map +1 -1
  6. package/dist/alpha/translations/fr.esm.js +2 -0
  7. package/dist/alpha/translations/fr.esm.js.map +1 -1
  8. package/dist/alpha/translations/it.esm.js +2 -0
  9. package/dist/alpha/translations/it.esm.js.map +1 -1
  10. package/dist/alpha/translations/ref.esm.js +2 -0
  11. package/dist/alpha/translations/ref.esm.js.map +1 -1
  12. package/dist/alpha.d.ts +2 -0
  13. package/dist/components/CreateRole/EditRolePage.esm.js +3 -0
  14. package/dist/components/CreateRole/EditRolePage.esm.js.map +1 -1
  15. package/dist/components/EditRole.esm.js +2 -3
  16. package/dist/components/EditRole.esm.js.map +1 -1
  17. package/dist/components/RoleOverview/MembersCard.esm.js +8 -4
  18. package/dist/components/RoleOverview/MembersCard.esm.js.map +1 -1
  19. package/dist/components/RoleOverview/PermissionsCard.esm.js +18 -5
  20. package/dist/components/RoleOverview/PermissionsCard.esm.js.map +1 -1
  21. package/dist/components/RoleOverview/RoleOverviewPage.esm.js +2 -1
  22. package/dist/components/RoleOverview/RoleOverviewPage.esm.js.map +1 -1
  23. package/dist/components/RolesList/DeleteRole.esm.js +2 -3
  24. package/dist/components/RolesList/DeleteRole.esm.js.map +1 -1
  25. package/dist/components/RolesList/RolesListColumns.esm.js +23 -17
  26. package/dist/components/RolesList/RolesListColumns.esm.js.map +1 -1
  27. package/dist/hooks/useActionPermissionTooltip.esm.js +1 -1
  28. package/dist/hooks/useActionPermissionTooltip.esm.js.map +1 -1
  29. package/dist/hooks/useMembers.esm.js +3 -1
  30. package/dist/hooks/useMembers.esm.js.map +1 -1
  31. package/dist/hooks/useRoles.esm.js +2 -1
  32. package/dist/hooks/useRoles.esm.js.map +1 -1
  33. package/dist/package.json.esm.js +1 -1
  34. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @backstage-community/plugin-rbac
2
2
 
3
+ ## 1.51.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 50e194d: Add support for a default role and permissions for authenticated users in RBAC backend
8
+
9
+ - Introduced a new `defaultRole` and `basicPermissions` configuration options to assign a default role to all authenticated users.
10
+
11
+ ```diff
12
+ permission:
13
+ rbac:
14
+ + defaultPermissions:
15
+ + defaultRole: role:default/my-default-role
16
+ + basicPermissions:
17
+ + - permission: catalog.entity.read
18
+ + action: read
19
+ ```
20
+
21
+ - Updated the RBAC permission policy to include the default role in user roles if not already present.
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies [50e194d]
26
+ - @backstage-community/plugin-rbac-common@1.25.0
27
+
3
28
  ## 1.50.2
4
29
 
5
30
  ### Patch Changes
@@ -15,6 +15,7 @@ const rbacTranslationDe = createTranslationMessages({
15
15
  "table.headers.usersAndGroups": "Benutzer und Gruppen",
16
16
  "table.headers.accessiblePlugins": "Barrierefreie Plugins",
17
17
  "table.headers.actions": "Aktionen",
18
+ "table.defaultRoleUsersAndGroups": "Alle Benutzer und alle Gruppen",
18
19
  "table.emptyContent": "Keine Datens\xE4tze gefunden",
19
20
  "toolbar.createButton": "Erstellen",
20
21
  "toolbar.warning.title": "Rolle konnte nicht erstellt werden.",
@@ -38,6 +39,7 @@ const rbacTranslationDe = createTranslationMessages({
38
39
  "errors.createRole": "Die Rolle kann nicht erstellt werden.",
39
40
  "errors.editRole": "Die Rolle kann nicht bearbeitet werden.",
40
41
  "errors.deleteRole": "Die Rolle kann nicht gel\xF6scht werden.",
42
+ "errors.defaultRoleReadOnly": "Standardrolle ist schreibgesch\xFCtzt.",
41
43
  "errors.roleCreatedSuccess": "Die Rolle wurde erfolgreich erstellt, es k\xF6nnen jedoch keine Berechtigungsrichtlinien zur Rolle hinzugef\xFCgt werden.",
42
44
  "errors.roleCreatedConditionsSuccess": "Die Rolle wurde erfolgreich erstellt, es k\xF6nnen jedoch keine Bedingungen zur Rolle hinzugef\xFCgt werden.",
43
45
  "roleForm.titles.createRole": "Rolle erstellen",
@@ -1 +1 @@
1
- {"version":3,"file":"de.esm.js","sources":["../../../src/alpha/translations/de.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * de translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationDe = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Rolle erstellen',\n 'page.editRole': 'Rolle bearbeiten',\n 'table.searchPlaceholder': 'Filter',\n 'table.labelRowsSelect': 'Zeilen',\n 'table.title': 'Alle Rollen',\n 'table.titleWithCount': 'Alle Rollen ({{count}})',\n 'table.headers.name': 'Name',\n 'table.headers.usersAndGroups': 'Benutzer und Gruppen',\n 'table.headers.accessiblePlugins': 'Barrierefreie Plugins',\n 'table.headers.actions': 'Aktionen',\n 'table.emptyContent': 'Keine Datensätze gefunden',\n 'toolbar.createButton': 'Erstellen',\n 'toolbar.warning.title': 'Rolle konnte nicht erstellt werden.',\n 'toolbar.warning.message':\n \"Um die Schaltfläche 'Rolle erstellen/bearbeiten' zu aktivieren, stellen Sie sicher, dass die erforderlichen Benutzer/Gruppen im Katalog vorhanden sind, da eine Rolle nicht ohne Benutzer/Gruppen erstellt werden kann. Außerdem muss die Ihrem Benutzer zugeordnete Rolle über die genannten Berechtigungsrichtlinien verfügen. <link>hier</link>.\",\n 'toolbar.warning.linkText': 'hier',\n 'toolbar.warning.note': 'Hinweis',\n 'toolbar.warning.noteText':\n \"Wenn selbst nach der Aufnahme von Benutzern/Gruppen in den Katalog und nach Anwendung der o. g. Berechtigungen die Schaltfläche 'Erstellen/Bearbeiten' weiterhin deaktiviert ist, wenden Sie sich an den Administrator, da Ihr Zugriff auf die Schaltfläche 'Erstellen/Bearbeiten' möglicherweise bedingt eingeschränkt ist.\",\n 'errors.notFound': 'Nicht gefunden',\n 'errors.notAllowed':\n 'Unzureichende Berechtigungen zum Zugriff auf diese Seite',\n 'errors.unauthorized': 'Keine Berechtigung zum Erstellen der Rolle',\n 'errors.rbacDisabled':\n 'Aktivieren Sie das RBAC-Backend-Plugin, um diese Funktion zu nutzen.',\n 'errors.rbacDisabledInfo':\n \"Um RBAC zu aktivieren, setzen Sie 'permission.enabled' in der 'app-config'-Datei auf 'true'.\",\n 'errors.fetchRoles': 'Beim Abrufen der Rollen ist ein Fehler aufgetreten',\n 'errors.fetchRole': 'Beim Abrufen der Rolle ist ein Fehler aufgetreten',\n 'errors.fetchPoliciesErr': 'Fehler beim Abrufen der Richtlinien. {{error}}',\n 'errors.fetchPolicies':\n 'Beim Abrufen der Berechtigungsrichtlinien ist ein Fehler aufgetreten',\n 'errors.fetchPlugins': 'Fehler beim Abrufen der Plugins. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Fehler beim Abrufen der bedingten Berechtigungsrichtlinien. {{error}}',\n 'errors.fetchConditions':\n 'Beim Abrufen der Rollenbedingungen ist ein Fehler aufgetreten',\n 'errors.fetchUsersAndGroups':\n 'Beim Abrufen der Benutzer und Gruppen ist ein Fehler aufgetreten',\n 'errors.createRole': 'Die Rolle kann nicht erstellt werden.',\n 'errors.editRole': 'Die Rolle kann nicht bearbeitet werden.',\n 'errors.deleteRole': 'Die Rolle kann nicht gelöscht werden.',\n 'errors.roleCreatedSuccess':\n 'Die Rolle wurde erfolgreich erstellt, es können jedoch keine Berechtigungsrichtlinien zur Rolle hinzugefügt werden.',\n 'errors.roleCreatedConditionsSuccess':\n 'Die Rolle wurde erfolgreich erstellt, es können jedoch keine Bedingungen zur Rolle hinzugefügt werden.',\n 'roleForm.titles.createRole': 'Rolle erstellen',\n 'roleForm.titles.editRole': 'Rolle bearbeiten',\n 'roleForm.titles.nameAndDescription':\n 'Name und Beschreibung der Rolle eingeben',\n 'roleForm.titles.usersAndGroups': 'Benutzer und Gruppen hinzufügen',\n 'roleForm.titles.permissionPolicies': 'Berechtigungsrichtlinien hinzufügen',\n 'roleForm.review.reviewAndCreate': 'Überprüfen und erstellen',\n 'roleForm.review.reviewAndSave': 'Überprüfen und speichern',\n 'roleForm.review.nameDescriptionOwner':\n 'Name, Beschreibung und Eigentümer der Rolle',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Berechtigungsrichtlinien ({{count}})',\n 'roleForm.steps.next': 'Weiter',\n 'roleForm.steps.back': 'Zurück',\n 'roleForm.steps.cancel': 'Abbrechen',\n 'roleForm.steps.reset': 'Zurücksetzen',\n 'roleForm.steps.create': 'Erstellen',\n 'roleForm.steps.save': 'Speichern',\n 'roleForm.fields.name.label': 'Name',\n 'roleForm.fields.name.helperText': 'Geben Sie den Namen der Rolle ein',\n 'roleForm.fields.description.label': 'Beschreibung',\n 'roleForm.fields.description.helperText':\n 'Geben Sie eine kurze Beschreibung der Rolle ein (Zweck der Rolle)',\n 'roleForm.fields.owner.label': 'Eigentümer',\n 'roleForm.fields.owner.helperText':\n 'Optional: Geben Sie einen Benutzer oder eine Gruppe ein, der bzw. die die Berechtigung haben soll, diese Rolle zu bearbeiten und zusätzliche Rollen zu erstellen. Im nächsten Schritt legen Sie fest, welchen Benutzern sie ihre Rollen zuweisen können und auf welche Plugins sie Zugriff erteilen können. Wird hier keine Angabe gemacht, wird bei der Erstellung automatisch der Autor zugewiesen.',\n 'deleteDialog.title': 'Rolle löschen',\n 'deleteDialog.question': 'Diese Rolle löschen?',\n 'deleteDialog.confirmation':\n 'Möchten Sie die Rolle **{{roleName}}** wirklich löschen? Das Löschen dieser Rolle ist unumkehrbar und entfernt deren Funktionalität aus dem System. Gehen Sie mit Vorsicht vor. Das mit dieser Rolle verbundene **{{member}}** verliert den Zugriff auf alle in dieser Rolle festgelegten **{{permissions}}-Berechtigungsrichtlinien**.',\n 'deleteDialog.roleNameLabel': 'Rollenname',\n 'deleteDialog.roleNameHelper':\n 'Geben Sie den Namen der Rolle ein, um zu bestätigen',\n 'deleteDialog.deleteButton': 'Löschen',\n 'deleteDialog.cancelButton': 'Abbrechen',\n 'deleteDialog.successMessage': 'Rolle {{roleName}} erfolgreich gelöscht',\n 'snackbar.success': 'Erfolg',\n 'dialog.cancelRoleCreation': 'Rollenerstellung abbrechen',\n 'dialog.exitRoleCreation': 'Rollenerstellung beenden?',\n 'dialog.exitRoleEditing': 'Rollenbearbeitung beenden?',\n 'dialog.exitWarning':\n '\\n\\nWenn Sie diese Seite verlassen, werden die von Ihnen eingegebenen Informationen endgültig verworfen. Möchten Sie wirklich beenden?',\n 'dialog.discard': 'Verwerfen',\n 'dialog.cancel': 'Abbrechen',\n 'conditionalAccess.condition': 'Bedingung',\n 'conditionalAccess.allOf': 'Alle von',\n 'conditionalAccess.anyOf': 'Beliebige von',\n 'conditionalAccess.not': 'Nicht',\n 'conditionalAccess.addNestedCondition':\n 'Verschachtelte Bedingungen hinzufügen',\n 'conditionalAccess.addRule': 'Regel hinzufügen',\n 'conditionalAccess.nestedConditionTooltip':\n 'Verschachtelte Bedingungen sind **Regeln der Ebene 1 innerhalb einer Hauptbedingung**. Dies ermöglicht es Ihnen, entsprechenden Zugriff durch detaillierte Berechtigungen auf Basis verschiedener Bedingungen zu gewähren. Sie können mehrere verschachtelte Bedingungen hinzufügen.',\n 'conditionalAccess.nestedConditionExample':\n 'Beispielsweise können Sie in der Hauptbedingung den Zugriff auf alle Elementtypen erlauben und mithilfe einer verschachtelten Bedingung den Zugriff auf die dem Benutzer gehörenden Elemente beschränken.',\n 'permissionPolicies.helperText':\n 'Standardmäßig haben Benutzer keinen Zugriff auf Plugins. Um Benutzern Zugriff zu gewähren, wählen Sie die Plugins aus, die Sie ermöglichen möchten. Wählen Sie anschließend aus, für welche Aktionen Sie dem Benutzer die Berechtigung erteilen möchten.',\n 'permissionPolicies.allPlugins': 'Alle Plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Fehler beim Abrufen der Berechtigungsrichtlinien: {{error}}',\n 'permissionPolicies.resourceTypeTooltip': 'Ressourcentyp: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Verwenden Sie erweiterte, angepasste Berechtigungen, um den Zugriff auf bestimmte Teile des ausgewählten Ressourcentyps zu ermöglichen.',\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'Erweiterte Anpassungsmöglichkeiten werden für diesen Ressourcentyp nicht unterstützt.',\n 'permissionPolicies.pluginsSelected': '{{count}} Plugins',\n 'permissionPolicies.noPluginsSelected': 'Keine Plugins ausgewählt',\n 'permissionPolicies.search': 'Suchen',\n 'permissionPolicies.noRecordsToDisplay':\n 'Keine Datensätze zum Anzeigen vorhanden.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Ausgewählte Plugins werden hier angezeigt.',\n 'permissionPolicies.selectPlugins': 'Plugins auswählen',\n 'permissionPolicies.noPluginsFound': 'Keine Plugins gefunden.',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Berechtigung',\n 'permissionPolicies.policies': 'Richtlinien',\n 'permissionPolicies.conditional': 'Bedingt',\n 'permissionPolicies.rules': 'Regeln',\n 'permissionPolicies.rule': 'Regel',\n 'permissionPolicies.permissionPolicies': 'Berechtigungsrichtlinien',\n 'permissionPolicies.permissions': 'Berechtigungen',\n 'common.noResults':\n 'Für diesen Datumsbereich wurden keine Ergebnisse gefunden.',\n 'common.exportCSV': 'CSV exportieren',\n 'common.csvFilename': 'data-export.csv',\n 'common.noMembers': 'Keine Mitglieder',\n 'common.groups': 'Gruppen',\n 'common.group': 'Gruppe',\n 'common.users': 'Benutzer',\n 'common.user': 'Benutzer',\n 'common.use': 'Verwenden',\n 'common.refresh': 'Aktualisieren',\n 'common.edit': 'Bearbeiten',\n 'common.unauthorizedToEdit': 'Keine Berechtigung zum Bearbeiten',\n 'common.noRecordsFound': 'Keine Datensätze gefunden',\n 'common.selectUsersAndGroups': 'Benutzer und Gruppen auswählen',\n 'common.clearSearch': 'Suche löschen',\n 'common.closeDrawer': 'Drawer schließen',\n 'common.remove': 'Entfernen',\n 'common.addRule': 'Regel hinzufügen',\n 'common.selectRule': 'Wählen Sie eine Regel aus',\n 'common.rule': 'Regel',\n 'common.removeNestedCondition': 'Verschachtelte Bedingung entfernen',\n 'common.overview': 'Übersicht',\n 'common.about': 'Info',\n 'common.description': 'Beschreibung',\n 'common.modifiedBy': 'Geändert von',\n 'common.lastModified': 'Zuletzt geändert',\n 'common.owner': 'Eigentümer',\n 'common.noUsersAndGroupsSelected': 'Keine Benutzer und Gruppen ausgewählt',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Ausgewählte Benutzer und Gruppen werden hier angezeigt.',\n 'common.name': 'Name',\n 'common.type': 'Typ',\n 'common.members': 'Mitglieder',\n 'common.actions': 'Aktionen',\n 'common.removeMember': 'Mitglied entfernen',\n 'common.delete': 'Löschen',\n 'common.deleteRole': 'Rolle löschen',\n 'common.update': 'Aktualisieren',\n 'common.editRole': 'Rolle bearbeiten',\n 'common.checkingPermissions': 'Berechtigungen werden überprüft…',\n 'common.unauthorizedTo': 'Nicht berechtigt für {{action}}',\n 'common.performThisAction': 'Ausführen dieser Aktion',\n 'common.unableToCreatePermissionPolicies':\n 'Die Berechtigungsrichtlinien konnten nicht erstellt werden.',\n 'common.unableToDeletePermissionPolicies':\n 'Die Berechtigungsrichtlinien konnten nicht gelöscht werden.',\n 'common.unableToRemoveConditions':\n 'Die Bedingungen konnten nicht aus der Rolle entfernt werden.',\n 'common.unableToUpdateConditions':\n 'Die Bedingungen konnten nicht aktualisiert werden.',\n 'common.unableToAddConditions':\n 'Der Rolle konnten keine Bedingungen hinzugefügt werden.',\n 'common.roleActionSuccessfully':\n '{{action}} für Rolle {{roleName}} erfolgreich',\n 'common.unableToFetchRole':\n 'Rolle konnte nicht abgerufen werden: {{error}}',\n 'common.unableToFetchMembers':\n 'Mitglieder konnten nicht abgerufen werden: {{error}}',\n 'common.roleAction': '{{action}} für Rolle',\n 'common.membersCount': '{{count}} Mitglieder',\n 'common.parentGroupCount': '{{count}} übergeordnete Gruppe',\n 'common.childGroupsCount': '{{count}} untergeordnete Gruppen',\n 'common.searchAndSelectUsersGroups':\n 'Suchen und wählen Sie Benutzer und Gruppen aus, die hinzugefügt werden sollen. Ausgewählte Benutzer und Gruppen werden in der folgenden Tabelle angezeigt.',\n 'common.noUsersAndGroupsFound': 'Keine Benutzer und Gruppen gefunden.',\n 'common.errorFetchingUserGroups':\n 'Fehler beim Abrufen von Benutzern und Gruppen: {{error}}',\n 'common.nameRequired': 'Name ist erforderlich',\n 'common.noMemberSelected': 'Kein Mitglied ausgewählt',\n 'common.noPluginSelected': 'Kein Plugin ausgewählt',\n 'common.pluginRequired': 'Plugin ist erforderlich',\n 'common.permissionRequired': 'Berechtigung ist erforderlich',\n 'common.editCell': 'Bearbeiten...',\n 'common.selectCell': 'Auswählen...',\n 'common.expandRow': 'Zeile erweitern',\n 'common.configureAccessFor': 'Zugriff konfigurieren für',\n 'common.defaultResourceTypeVisible':\n 'Standardmäßig ist der ausgewählte Ressourcentyp für alle hinzugefügten Benutzer sichtbar. Wenn Sie bestimmte Plugin-Regeln einschränken oder Berechtigungen dafür erteilen möchten, wählen Sie diese aus, und fügen Sie die Parameter hinzu.',\n },\n});\n\nexport default rbacTranslationDe;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"de.esm.js","sources":["../../../src/alpha/translations/de.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * de translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationDe = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Rolle erstellen',\n 'page.editRole': 'Rolle bearbeiten',\n 'table.searchPlaceholder': 'Filter',\n 'table.labelRowsSelect': 'Zeilen',\n 'table.title': 'Alle Rollen',\n 'table.titleWithCount': 'Alle Rollen ({{count}})',\n 'table.headers.name': 'Name',\n 'table.headers.usersAndGroups': 'Benutzer und Gruppen',\n 'table.headers.accessiblePlugins': 'Barrierefreie Plugins',\n 'table.headers.actions': 'Aktionen',\n 'table.defaultRoleUsersAndGroups': 'Alle Benutzer und alle Gruppen',\n 'table.emptyContent': 'Keine Datensätze gefunden',\n 'toolbar.createButton': 'Erstellen',\n 'toolbar.warning.title': 'Rolle konnte nicht erstellt werden.',\n 'toolbar.warning.message':\n \"Um die Schaltfläche 'Rolle erstellen/bearbeiten' zu aktivieren, stellen Sie sicher, dass die erforderlichen Benutzer/Gruppen im Katalog vorhanden sind, da eine Rolle nicht ohne Benutzer/Gruppen erstellt werden kann. Außerdem muss die Ihrem Benutzer zugeordnete Rolle über die genannten Berechtigungsrichtlinien verfügen. <link>hier</link>.\",\n 'toolbar.warning.linkText': 'hier',\n 'toolbar.warning.note': 'Hinweis',\n 'toolbar.warning.noteText':\n \"Wenn selbst nach der Aufnahme von Benutzern/Gruppen in den Katalog und nach Anwendung der o. g. Berechtigungen die Schaltfläche 'Erstellen/Bearbeiten' weiterhin deaktiviert ist, wenden Sie sich an den Administrator, da Ihr Zugriff auf die Schaltfläche 'Erstellen/Bearbeiten' möglicherweise bedingt eingeschränkt ist.\",\n 'errors.notFound': 'Nicht gefunden',\n 'errors.notAllowed':\n 'Unzureichende Berechtigungen zum Zugriff auf diese Seite',\n 'errors.unauthorized': 'Keine Berechtigung zum Erstellen der Rolle',\n 'errors.rbacDisabled':\n 'Aktivieren Sie das RBAC-Backend-Plugin, um diese Funktion zu nutzen.',\n 'errors.rbacDisabledInfo':\n \"Um RBAC zu aktivieren, setzen Sie 'permission.enabled' in der 'app-config'-Datei auf 'true'.\",\n 'errors.fetchRoles': 'Beim Abrufen der Rollen ist ein Fehler aufgetreten',\n 'errors.fetchRole': 'Beim Abrufen der Rolle ist ein Fehler aufgetreten',\n 'errors.fetchPoliciesErr': 'Fehler beim Abrufen der Richtlinien. {{error}}',\n 'errors.fetchPolicies':\n 'Beim Abrufen der Berechtigungsrichtlinien ist ein Fehler aufgetreten',\n 'errors.fetchPlugins': 'Fehler beim Abrufen der Plugins. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Fehler beim Abrufen der bedingten Berechtigungsrichtlinien. {{error}}',\n 'errors.fetchConditions':\n 'Beim Abrufen der Rollenbedingungen ist ein Fehler aufgetreten',\n 'errors.fetchUsersAndGroups':\n 'Beim Abrufen der Benutzer und Gruppen ist ein Fehler aufgetreten',\n 'errors.createRole': 'Die Rolle kann nicht erstellt werden.',\n 'errors.editRole': 'Die Rolle kann nicht bearbeitet werden.',\n 'errors.deleteRole': 'Die Rolle kann nicht gelöscht werden.',\n 'errors.defaultRoleReadOnly': 'Standardrolle ist schreibgeschützt.',\n 'errors.roleCreatedSuccess':\n 'Die Rolle wurde erfolgreich erstellt, es können jedoch keine Berechtigungsrichtlinien zur Rolle hinzugefügt werden.',\n 'errors.roleCreatedConditionsSuccess':\n 'Die Rolle wurde erfolgreich erstellt, es können jedoch keine Bedingungen zur Rolle hinzugefügt werden.',\n 'roleForm.titles.createRole': 'Rolle erstellen',\n 'roleForm.titles.editRole': 'Rolle bearbeiten',\n 'roleForm.titles.nameAndDescription':\n 'Name und Beschreibung der Rolle eingeben',\n 'roleForm.titles.usersAndGroups': 'Benutzer und Gruppen hinzufügen',\n 'roleForm.titles.permissionPolicies': 'Berechtigungsrichtlinien hinzufügen',\n 'roleForm.review.reviewAndCreate': 'Überprüfen und erstellen',\n 'roleForm.review.reviewAndSave': 'Überprüfen und speichern',\n 'roleForm.review.nameDescriptionOwner':\n 'Name, Beschreibung und Eigentümer der Rolle',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Berechtigungsrichtlinien ({{count}})',\n 'roleForm.steps.next': 'Weiter',\n 'roleForm.steps.back': 'Zurück',\n 'roleForm.steps.cancel': 'Abbrechen',\n 'roleForm.steps.reset': 'Zurücksetzen',\n 'roleForm.steps.create': 'Erstellen',\n 'roleForm.steps.save': 'Speichern',\n 'roleForm.fields.name.label': 'Name',\n 'roleForm.fields.name.helperText': 'Geben Sie den Namen der Rolle ein',\n 'roleForm.fields.description.label': 'Beschreibung',\n 'roleForm.fields.description.helperText':\n 'Geben Sie eine kurze Beschreibung der Rolle ein (Zweck der Rolle)',\n 'roleForm.fields.owner.label': 'Eigentümer',\n 'roleForm.fields.owner.helperText':\n 'Optional: Geben Sie einen Benutzer oder eine Gruppe ein, der bzw. die die Berechtigung haben soll, diese Rolle zu bearbeiten und zusätzliche Rollen zu erstellen. Im nächsten Schritt legen Sie fest, welchen Benutzern sie ihre Rollen zuweisen können und auf welche Plugins sie Zugriff erteilen können. Wird hier keine Angabe gemacht, wird bei der Erstellung automatisch der Autor zugewiesen.',\n 'deleteDialog.title': 'Rolle löschen',\n 'deleteDialog.question': 'Diese Rolle löschen?',\n 'deleteDialog.confirmation':\n 'Möchten Sie die Rolle **{{roleName}}** wirklich löschen? Das Löschen dieser Rolle ist unumkehrbar und entfernt deren Funktionalität aus dem System. Gehen Sie mit Vorsicht vor. Das mit dieser Rolle verbundene **{{member}}** verliert den Zugriff auf alle in dieser Rolle festgelegten **{{permissions}}-Berechtigungsrichtlinien**.',\n 'deleteDialog.roleNameLabel': 'Rollenname',\n 'deleteDialog.roleNameHelper':\n 'Geben Sie den Namen der Rolle ein, um zu bestätigen',\n 'deleteDialog.deleteButton': 'Löschen',\n 'deleteDialog.cancelButton': 'Abbrechen',\n 'deleteDialog.successMessage': 'Rolle {{roleName}} erfolgreich gelöscht',\n 'snackbar.success': 'Erfolg',\n 'dialog.cancelRoleCreation': 'Rollenerstellung abbrechen',\n 'dialog.exitRoleCreation': 'Rollenerstellung beenden?',\n 'dialog.exitRoleEditing': 'Rollenbearbeitung beenden?',\n 'dialog.exitWarning':\n '\\n\\nWenn Sie diese Seite verlassen, werden die von Ihnen eingegebenen Informationen endgültig verworfen. Möchten Sie wirklich beenden?',\n 'dialog.discard': 'Verwerfen',\n 'dialog.cancel': 'Abbrechen',\n 'conditionalAccess.condition': 'Bedingung',\n 'conditionalAccess.allOf': 'Alle von',\n 'conditionalAccess.anyOf': 'Beliebige von',\n 'conditionalAccess.not': 'Nicht',\n 'conditionalAccess.addNestedCondition':\n 'Verschachtelte Bedingungen hinzufügen',\n 'conditionalAccess.addRule': 'Regel hinzufügen',\n 'conditionalAccess.nestedConditionTooltip':\n 'Verschachtelte Bedingungen sind **Regeln der Ebene 1 innerhalb einer Hauptbedingung**. Dies ermöglicht es Ihnen, entsprechenden Zugriff durch detaillierte Berechtigungen auf Basis verschiedener Bedingungen zu gewähren. Sie können mehrere verschachtelte Bedingungen hinzufügen.',\n 'conditionalAccess.nestedConditionExample':\n 'Beispielsweise können Sie in der Hauptbedingung den Zugriff auf alle Elementtypen erlauben und mithilfe einer verschachtelten Bedingung den Zugriff auf die dem Benutzer gehörenden Elemente beschränken.',\n 'permissionPolicies.helperText':\n 'Standardmäßig haben Benutzer keinen Zugriff auf Plugins. Um Benutzern Zugriff zu gewähren, wählen Sie die Plugins aus, die Sie ermöglichen möchten. Wählen Sie anschließend aus, für welche Aktionen Sie dem Benutzer die Berechtigung erteilen möchten.',\n 'permissionPolicies.allPlugins': 'Alle Plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Fehler beim Abrufen der Berechtigungsrichtlinien: {{error}}',\n 'permissionPolicies.resourceTypeTooltip': 'Ressourcentyp: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Verwenden Sie erweiterte, angepasste Berechtigungen, um den Zugriff auf bestimmte Teile des ausgewählten Ressourcentyps zu ermöglichen.',\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'Erweiterte Anpassungsmöglichkeiten werden für diesen Ressourcentyp nicht unterstützt.',\n 'permissionPolicies.pluginsSelected': '{{count}} Plugins',\n 'permissionPolicies.noPluginsSelected': 'Keine Plugins ausgewählt',\n 'permissionPolicies.search': 'Suchen',\n 'permissionPolicies.noRecordsToDisplay':\n 'Keine Datensätze zum Anzeigen vorhanden.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Ausgewählte Plugins werden hier angezeigt.',\n 'permissionPolicies.selectPlugins': 'Plugins auswählen',\n 'permissionPolicies.noPluginsFound': 'Keine Plugins gefunden.',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Berechtigung',\n 'permissionPolicies.policies': 'Richtlinien',\n 'permissionPolicies.conditional': 'Bedingt',\n 'permissionPolicies.rules': 'Regeln',\n 'permissionPolicies.rule': 'Regel',\n 'permissionPolicies.permissionPolicies': 'Berechtigungsrichtlinien',\n 'permissionPolicies.permissions': 'Berechtigungen',\n 'common.noResults':\n 'Für diesen Datumsbereich wurden keine Ergebnisse gefunden.',\n 'common.exportCSV': 'CSV exportieren',\n 'common.csvFilename': 'data-export.csv',\n 'common.noMembers': 'Keine Mitglieder',\n 'common.groups': 'Gruppen',\n 'common.group': 'Gruppe',\n 'common.users': 'Benutzer',\n 'common.user': 'Benutzer',\n 'common.use': 'Verwenden',\n 'common.refresh': 'Aktualisieren',\n 'common.edit': 'Bearbeiten',\n 'common.unauthorizedToEdit': 'Keine Berechtigung zum Bearbeiten',\n 'common.noRecordsFound': 'Keine Datensätze gefunden',\n 'common.selectUsersAndGroups': 'Benutzer und Gruppen auswählen',\n 'common.clearSearch': 'Suche löschen',\n 'common.closeDrawer': 'Drawer schließen',\n 'common.remove': 'Entfernen',\n 'common.addRule': 'Regel hinzufügen',\n 'common.selectRule': 'Wählen Sie eine Regel aus',\n 'common.rule': 'Regel',\n 'common.removeNestedCondition': 'Verschachtelte Bedingung entfernen',\n 'common.overview': 'Übersicht',\n 'common.about': 'Info',\n 'common.description': 'Beschreibung',\n 'common.modifiedBy': 'Geändert von',\n 'common.lastModified': 'Zuletzt geändert',\n 'common.owner': 'Eigentümer',\n 'common.noUsersAndGroupsSelected': 'Keine Benutzer und Gruppen ausgewählt',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Ausgewählte Benutzer und Gruppen werden hier angezeigt.',\n 'common.name': 'Name',\n 'common.type': 'Typ',\n 'common.members': 'Mitglieder',\n 'common.actions': 'Aktionen',\n 'common.removeMember': 'Mitglied entfernen',\n 'common.delete': 'Löschen',\n 'common.deleteRole': 'Rolle löschen',\n 'common.update': 'Aktualisieren',\n 'common.editRole': 'Rolle bearbeiten',\n 'common.checkingPermissions': 'Berechtigungen werden überprüft…',\n 'common.unauthorizedTo': 'Nicht berechtigt für {{action}}',\n 'common.performThisAction': 'Ausführen dieser Aktion',\n 'common.unableToCreatePermissionPolicies':\n 'Die Berechtigungsrichtlinien konnten nicht erstellt werden.',\n 'common.unableToDeletePermissionPolicies':\n 'Die Berechtigungsrichtlinien konnten nicht gelöscht werden.',\n 'common.unableToRemoveConditions':\n 'Die Bedingungen konnten nicht aus der Rolle entfernt werden.',\n 'common.unableToUpdateConditions':\n 'Die Bedingungen konnten nicht aktualisiert werden.',\n 'common.unableToAddConditions':\n 'Der Rolle konnten keine Bedingungen hinzugefügt werden.',\n 'common.roleActionSuccessfully':\n '{{action}} für Rolle {{roleName}} erfolgreich',\n 'common.unableToFetchRole':\n 'Rolle konnte nicht abgerufen werden: {{error}}',\n 'common.unableToFetchMembers':\n 'Mitglieder konnten nicht abgerufen werden: {{error}}',\n 'common.roleAction': '{{action}} für Rolle',\n 'common.membersCount': '{{count}} Mitglieder',\n 'common.parentGroupCount': '{{count}} übergeordnete Gruppe',\n 'common.childGroupsCount': '{{count}} untergeordnete Gruppen',\n 'common.searchAndSelectUsersGroups':\n 'Suchen und wählen Sie Benutzer und Gruppen aus, die hinzugefügt werden sollen. Ausgewählte Benutzer und Gruppen werden in der folgenden Tabelle angezeigt.',\n 'common.noUsersAndGroupsFound': 'Keine Benutzer und Gruppen gefunden.',\n 'common.errorFetchingUserGroups':\n 'Fehler beim Abrufen von Benutzern und Gruppen: {{error}}',\n 'common.nameRequired': 'Name ist erforderlich',\n 'common.noMemberSelected': 'Kein Mitglied ausgewählt',\n 'common.noPluginSelected': 'Kein Plugin ausgewählt',\n 'common.pluginRequired': 'Plugin ist erforderlich',\n 'common.permissionRequired': 'Berechtigung ist erforderlich',\n 'common.editCell': 'Bearbeiten...',\n 'common.selectCell': 'Auswählen...',\n 'common.expandRow': 'Zeile erweitern',\n 'common.configureAccessFor': 'Zugriff konfigurieren für',\n 'common.defaultResourceTypeVisible':\n 'Standardmäßig ist der ausgewählte Ressourcentyp für alle hinzugefügten Benutzer sichtbar. Wenn Sie bestimmte Plugin-Regeln einschränken oder Berechtigungen dafür erteilen möchten, wählen Sie diese aus, und fügen Sie die Parameter hinzu.',\n },\n});\n\nexport default rbacTranslationDe;\n"],"names":[],"mappings":"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"}
@@ -15,6 +15,7 @@ const rbacTranslationEs = createTranslationMessages({
15
15
  "table.headers.usersAndGroups": "Usuarios y grupos",
16
16
  "table.headers.accessiblePlugins": "Complementos accesibles",
17
17
  "table.headers.actions": "Acciones",
18
+ "table.defaultRoleUsersAndGroups": "Todos los usuarios y todos los grupos",
18
19
  "table.emptyContent": "No se encontraron registros",
19
20
  "toolbar.createButton": "Crear",
20
21
  "toolbar.warning.title": "No se puede crear el rol.",
@@ -38,6 +39,7 @@ const rbacTranslationEs = createTranslationMessages({
38
39
  "errors.createRole": "No se puede crear el rol.",
39
40
  "errors.editRole": "No se puede modificar el rol.",
40
41
  "errors.deleteRole": "No se puede eliminar el rol.",
42
+ "errors.defaultRoleReadOnly": "El rol predeterminado es de solo lectura.",
41
43
  "errors.roleCreatedSuccess": "El rol se cre\xF3 correctamente, pero no se pueden agregar pol\xEDticas de permisos a \xE9l.",
42
44
  "errors.roleCreatedConditionsSuccess": "El rol se cre\xF3 correctamente, pero no se pueden agregar condiciones a \xE9l.",
43
45
  "roleForm.titles.createRole": "Crear rol",
@@ -1 +1 @@
1
- {"version":3,"file":"es.esm.js","sources":["../../../src/alpha/translations/es.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * es translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationEs = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crear rol',\n 'page.editRole': 'Modificar rol',\n 'table.searchPlaceholder': 'Filtrar',\n 'table.labelRowsSelect': 'Filas',\n 'table.title': 'Todos los roles',\n 'table.titleWithCount': 'Todos los roles ({{count}})',\n 'table.headers.name': 'Nombre',\n 'table.headers.usersAndGroups': 'Usuarios y grupos',\n 'table.headers.accessiblePlugins': 'Complementos accesibles',\n 'table.headers.actions': 'Acciones',\n 'table.emptyContent': 'No se encontraron registros',\n 'toolbar.createButton': 'Crear',\n 'toolbar.warning.title': 'No se puede crear el rol.',\n 'toolbar.warning.message':\n 'Para habilitar el botón crear/modificar rol, asegúrese de que los usuarios/grupos requeridos estén disponibles en el catálogo, ya que no se puede crear un rol sin usuarios/grupos, y el rol asociado con su usuario debe tener las políticas de permisos mencionadas <link>aquí</link>.',\n 'toolbar.warning.linkText': 'aquí',\n 'toolbar.warning.note': 'Nota',\n 'toolbar.warning.noteText':\n 'Incluso después de importar usuarios/grupos en el catálogo y aplicar los permisos anteriores, si el botón crear/modificar aún está deshabilitado, comuníquese con su administrador, ya que es posible que tenga restringido de forma condicional el acceso al botón crear/modificar.',\n 'errors.notFound': 'No encontrado',\n 'errors.notAllowed': 'Permisos insuficientes para acceder a esta página',\n 'errors.unauthorized': 'No tiene autorización para crear el rol',\n 'errors.rbacDisabled':\n 'Habilite el complemento RBAC de back-end para utilizar esta funcionalidad.',\n 'errors.rbacDisabledInfo':\n 'Para habilitar RBAC, configure `permission.enabled` en `true` en el archivo app-config.',\n 'errors.fetchRoles': 'Algo salió mal al extraer los roles',\n 'errors.fetchRole': 'Algo salió mal al extraer el rol',\n 'errors.fetchPoliciesErr': 'Error al extraer las políticas. {{error}}',\n 'errors.fetchPolicies':\n 'Algo salió mal al extraer las políticas de permisos',\n 'errors.fetchPlugins': 'Error al extraer los complementos. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Error al extraer las políticas de permisos condicionales. {{error}}',\n 'errors.fetchConditions':\n 'Algo salió mal al extraer las condiciones del rol',\n 'errors.fetchUsersAndGroups':\n 'Algo salió mal al extraer los usuarios y grupos',\n 'errors.createRole': 'No se puede crear el rol.',\n 'errors.editRole': 'No se puede modificar el rol.',\n 'errors.deleteRole': 'No se puede eliminar el rol.',\n 'errors.roleCreatedSuccess':\n 'El rol se creó correctamente, pero no se pueden agregar políticas de permisos a él.',\n 'errors.roleCreatedConditionsSuccess':\n 'El rol se creó correctamente, pero no se pueden agregar condiciones a él.',\n 'roleForm.titles.createRole': 'Crear rol',\n 'roleForm.titles.editRole': 'Modificar rol',\n 'roleForm.titles.nameAndDescription':\n 'Ingresar el nombre y la descripción del rol',\n 'roleForm.titles.usersAndGroups': 'Agregar usuarios y grupos',\n 'roleForm.titles.permissionPolicies': 'Agregar políticas de permisos',\n 'roleForm.review.reviewAndCreate': 'Revisar y crear',\n 'roleForm.review.reviewAndSave': 'Revisar y guardar',\n 'roleForm.review.nameDescriptionOwner':\n 'Nombre, descripción y propietario del rol',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Políticas de permisos ({{count}})',\n 'roleForm.steps.next': 'Siguiente',\n 'roleForm.steps.back': 'Atrás',\n 'roleForm.steps.cancel': 'Cancelar',\n 'roleForm.steps.reset': 'Reiniciar',\n 'roleForm.steps.create': 'Crear',\n 'roleForm.steps.save': 'Guardar',\n 'roleForm.fields.name.label': 'Nombre',\n 'roleForm.fields.name.helperText': 'Ingresar el nombre del rol',\n 'roleForm.fields.description.label': 'Descripción',\n 'roleForm.fields.description.helperText':\n 'Ingrese una breve descripción sobre el rol (el propósito del rol)',\n 'roleForm.fields.owner.label': 'Propietario',\n 'roleForm.fields.owner.helperText':\n 'Opcional: Ingrese un usuario o grupo que tenga permiso para modificar este rol y crear roles adicionales. En el siguiente paso, especifique a qué usuarios pueden asignar sus roles y a qué complementos pueden conceder acceso. Si se deja en blanco, se asigna automáticamente el autor en el momento de la creación.',\n 'deleteDialog.title': 'Eliminar rol',\n 'deleteDialog.question': '¿Eliminar este rol?',\n 'deleteDialog.confirmation':\n '¿Confirma que desea eliminar el rol **{{roleName}}**? Esta acción no se puede deshacer y eliminará la funcionalidad del rol del sistema. Proceda con precaución. Los **{{members}}** asociados con este rol perderán acceso a todas las **políticas de permisos de {{permissions}}** especificadas en este rol.',\n 'deleteDialog.roleNameLabel': 'Nombre del rol',\n 'deleteDialog.roleNameHelper': 'Escriba el nombre del rol para confirmar',\n 'deleteDialog.deleteButton': 'Eliminar',\n 'deleteDialog.cancelButton': 'Cancelar',\n 'deleteDialog.successMessage': 'Rol {{roleName}} eliminado correctamente',\n 'snackbar.success': 'Éxito',\n 'dialog.cancelRoleCreation': 'Cancelar la creación del rol',\n 'dialog.exitRoleCreation': '¿Salir de la creación de roles?',\n 'dialog.exitRoleEditing': '¿Salir de la modificación de roles?',\n 'dialog.exitWarning':\n '\\n\\nAl salir de esta página, se descartará la información ingresada de forma permanente. ¿Confirma que desea salir?',\n 'dialog.discard': 'Descartar',\n 'dialog.cancel': 'Cancelar',\n 'conditionalAccess.condition': 'Condición',\n 'conditionalAccess.allOf': 'Todas',\n 'conditionalAccess.anyOf': 'Cualquiera de',\n 'conditionalAccess.not': 'No',\n 'conditionalAccess.addNestedCondition': 'Agregar condición anidada',\n 'conditionalAccess.addRule': 'Agregar regla',\n 'conditionalAccess.nestedConditionTooltip':\n 'Las condiciones anidadas son **reglas de una capa dentro de una condición principal**. Le permite habilitar el acceso apropiado mediante el uso de permisos detallados basados en diversas condiciones. Puede agregar varias condiciones anidadas.',\n 'conditionalAccess.nestedConditionExample':\n 'Por ejemplo, puede permitir el acceso a todos los tipos de entidades en la condición principal y usar una condición anidada para limitar el acceso a las entidades que son propiedad del usuario.',\n 'permissionPolicies.helperText':\n 'De forma predeterminada, a los usuarios no se les concede acceso a ningún complemento. Para otorgar acceso a los usuarios, seleccione los complementos que desea habilitar. Luego, seleccione las acciones a las que desea otorgarle permiso al usuario.',\n 'permissionPolicies.allPlugins': 'Todos los complementos ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Error al extraer las políticas de permisos: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo de recurso: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Utilice permisos personalizados avanzados para permitir el acceso a partes específicas del tipo de recurso seleccionado.',\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'No se admite la personalización avanzada para este tipo de recurso.',\n 'permissionPolicies.pluginsSelected': '{{count}} complementos',\n 'permissionPolicies.noPluginsSelected': 'No hay complementos seleccionados',\n 'permissionPolicies.search': 'Buscar',\n 'permissionPolicies.noRecordsToDisplay': 'No hay registros para mostrar.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Los complementos seleccionados aparecen aquí.',\n 'permissionPolicies.selectPlugins': 'Seleccionar complementos',\n 'permissionPolicies.noPluginsFound': 'No se encontraron complementos.',\n 'permissionPolicies.plugin': 'Complemento',\n 'permissionPolicies.permission': 'Permiso',\n 'permissionPolicies.policies': 'Políticas',\n 'permissionPolicies.conditional': 'Condicional',\n 'permissionPolicies.rules': 'reglas',\n 'permissionPolicies.rule': 'regla',\n 'permissionPolicies.permissionPolicies': 'Políticas de permisos',\n 'permissionPolicies.permissions': 'permisos',\n 'common.noResults': 'No hay resultados para este rango de fechas.',\n 'common.exportCSV': 'Exportar CSV',\n 'common.csvFilename': 'data-export.csv',\n 'common.noMembers': 'No hay miembros',\n 'common.groups': 'grupos',\n 'common.group': 'grupo',\n 'common.users': 'usuarios',\n 'common.user': 'usuario',\n 'common.use': 'Usar',\n 'common.refresh': 'Actualizar',\n 'common.edit': 'Modificar',\n 'common.unauthorizedToEdit': 'No tiene autorización para modificar',\n 'common.noRecordsFound': 'No se encontraron registros',\n 'common.selectUsersAndGroups': 'Seleccionar usuarios y grupos',\n 'common.clearSearch': 'borrar búsqueda',\n 'common.closeDrawer': 'Cerrar el panel',\n 'common.remove': 'Eliminar',\n 'common.addRule': 'Agregar regla',\n 'common.selectRule': 'Seleccionar una regla',\n 'common.rule': 'Regla',\n 'common.removeNestedCondition': 'Eliminar condición anidada',\n 'common.overview': 'Visión general',\n 'common.about': 'Acerca de',\n 'common.description': 'Descripción',\n 'common.modifiedBy': 'Modificado por',\n 'common.lastModified': 'Última modificación',\n 'common.owner': 'Propietario',\n 'common.noUsersAndGroupsSelected':\n 'No hay usuarios ni grupos seleccionados',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Aquí aparecen los usuarios y grupos seleccionados.',\n 'common.name': 'Nombre',\n 'common.type': 'Tipo',\n 'common.members': 'Miembros',\n 'common.actions': 'Acciones',\n 'common.removeMember': 'Eliminar miembro',\n 'common.delete': 'Eliminar',\n 'common.deleteRole': 'Eliminar rol',\n 'common.update': 'Actualizar',\n 'common.editRole': 'Modificar rol',\n 'common.checkingPermissions': 'Comprobando permisos…',\n 'common.unauthorizedTo': 'No tiene autorización para {{acción}}',\n 'common.performThisAction': 'realizar esta acción',\n 'common.unableToCreatePermissionPolicies':\n 'No se pueden crear las políticas de permisos.',\n 'common.unableToDeletePermissionPolicies':\n 'No se pueden eliminar las políticas de permisos.',\n 'common.unableToRemoveConditions':\n 'No se pueden eliminar las condiciones del rol.',\n 'common.unableToUpdateConditions':\n 'No se pueden actualizar las condiciones.',\n 'common.unableToAddConditions': 'No se pueden agregar condiciones al rol.',\n 'common.roleActionSuccessfully':\n 'El rol {{roleName}} {{action}} correctamente',\n 'common.unableToFetchRole': 'No se puede extraer el rol: {{error}}',\n 'common.unableToFetchMembers':\n 'No se pueden extraer los miembros: {{error}}',\n 'common.roleAction': '{{action}} rol',\n 'common.membersCount': '{{count}} miembros',\n 'common.parentGroupCount': '{{count}} grupo principal',\n 'common.childGroupsCount': '{{count}} grupos secundarios',\n 'common.searchAndSelectUsersGroups':\n 'Busque y seleccione los usuarios y grupos que desea agregar. Los usuarios y grupos seleccionados aparecerán en la tabla a continuación.',\n 'common.noUsersAndGroupsFound': 'No se encontraron usuarios ni grupos.',\n 'common.errorFetchingUserGroups':\n 'Error al extraer usuarios y grupos: {{error}}',\n 'common.nameRequired': 'El nombre es obligatorio',\n 'common.noMemberSelected': 'No se seleccionaron miembros',\n 'common.noPluginSelected': 'No hay complementos seleccionados',\n 'common.pluginRequired': 'Se requiere complemento',\n 'common.permissionRequired': 'Se requiere permiso',\n 'common.editCell': 'Modificar...',\n 'common.selectCell': 'Seleccionar...',\n 'common.expandRow': 'expandir fila',\n 'common.configureAccessFor': 'Configurar acceso para',\n 'common.defaultResourceTypeVisible':\n 'De forma predeterminada, todos los usuarios agregados pueden visualizar el tipo de recurso seleccionado. Si desea restringir u otorgar permiso a reglas de complementos específicas, selecciónelas y agregue los parámetros.',\n },\n});\n\nexport default rbacTranslationEs;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"es.esm.js","sources":["../../../src/alpha/translations/es.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * es translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationEs = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crear rol',\n 'page.editRole': 'Modificar rol',\n 'table.searchPlaceholder': 'Filtrar',\n 'table.labelRowsSelect': 'Filas',\n 'table.title': 'Todos los roles',\n 'table.titleWithCount': 'Todos los roles ({{count}})',\n 'table.headers.name': 'Nombre',\n 'table.headers.usersAndGroups': 'Usuarios y grupos',\n 'table.headers.accessiblePlugins': 'Complementos accesibles',\n 'table.headers.actions': 'Acciones',\n 'table.defaultRoleUsersAndGroups': 'Todos los usuarios y todos los grupos',\n 'table.emptyContent': 'No se encontraron registros',\n 'toolbar.createButton': 'Crear',\n 'toolbar.warning.title': 'No se puede crear el rol.',\n 'toolbar.warning.message':\n 'Para habilitar el botón crear/modificar rol, asegúrese de que los usuarios/grupos requeridos estén disponibles en el catálogo, ya que no se puede crear un rol sin usuarios/grupos, y el rol asociado con su usuario debe tener las políticas de permisos mencionadas <link>aquí</link>.',\n 'toolbar.warning.linkText': 'aquí',\n 'toolbar.warning.note': 'Nota',\n 'toolbar.warning.noteText':\n 'Incluso después de importar usuarios/grupos en el catálogo y aplicar los permisos anteriores, si el botón crear/modificar aún está deshabilitado, comuníquese con su administrador, ya que es posible que tenga restringido de forma condicional el acceso al botón crear/modificar.',\n 'errors.notFound': 'No encontrado',\n 'errors.notAllowed': 'Permisos insuficientes para acceder a esta página',\n 'errors.unauthorized': 'No tiene autorización para crear el rol',\n 'errors.rbacDisabled':\n 'Habilite el complemento RBAC de back-end para utilizar esta funcionalidad.',\n 'errors.rbacDisabledInfo':\n 'Para habilitar RBAC, configure `permission.enabled` en `true` en el archivo app-config.',\n 'errors.fetchRoles': 'Algo salió mal al extraer los roles',\n 'errors.fetchRole': 'Algo salió mal al extraer el rol',\n 'errors.fetchPoliciesErr': 'Error al extraer las políticas. {{error}}',\n 'errors.fetchPolicies':\n 'Algo salió mal al extraer las políticas de permisos',\n 'errors.fetchPlugins': 'Error al extraer los complementos. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Error al extraer las políticas de permisos condicionales. {{error}}',\n 'errors.fetchConditions':\n 'Algo salió mal al extraer las condiciones del rol',\n 'errors.fetchUsersAndGroups':\n 'Algo salió mal al extraer los usuarios y grupos',\n 'errors.createRole': 'No se puede crear el rol.',\n 'errors.editRole': 'No se puede modificar el rol.',\n 'errors.deleteRole': 'No se puede eliminar el rol.',\n 'errors.defaultRoleReadOnly': 'El rol predeterminado es de solo lectura.',\n 'errors.roleCreatedSuccess':\n 'El rol se creó correctamente, pero no se pueden agregar políticas de permisos a él.',\n 'errors.roleCreatedConditionsSuccess':\n 'El rol se creó correctamente, pero no se pueden agregar condiciones a él.',\n 'roleForm.titles.createRole': 'Crear rol',\n 'roleForm.titles.editRole': 'Modificar rol',\n 'roleForm.titles.nameAndDescription':\n 'Ingresar el nombre y la descripción del rol',\n 'roleForm.titles.usersAndGroups': 'Agregar usuarios y grupos',\n 'roleForm.titles.permissionPolicies': 'Agregar políticas de permisos',\n 'roleForm.review.reviewAndCreate': 'Revisar y crear',\n 'roleForm.review.reviewAndSave': 'Revisar y guardar',\n 'roleForm.review.nameDescriptionOwner':\n 'Nombre, descripción y propietario del rol',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Políticas de permisos ({{count}})',\n 'roleForm.steps.next': 'Siguiente',\n 'roleForm.steps.back': 'Atrás',\n 'roleForm.steps.cancel': 'Cancelar',\n 'roleForm.steps.reset': 'Reiniciar',\n 'roleForm.steps.create': 'Crear',\n 'roleForm.steps.save': 'Guardar',\n 'roleForm.fields.name.label': 'Nombre',\n 'roleForm.fields.name.helperText': 'Ingresar el nombre del rol',\n 'roleForm.fields.description.label': 'Descripción',\n 'roleForm.fields.description.helperText':\n 'Ingrese una breve descripción sobre el rol (el propósito del rol)',\n 'roleForm.fields.owner.label': 'Propietario',\n 'roleForm.fields.owner.helperText':\n 'Opcional: Ingrese un usuario o grupo que tenga permiso para modificar este rol y crear roles adicionales. En el siguiente paso, especifique a qué usuarios pueden asignar sus roles y a qué complementos pueden conceder acceso. Si se deja en blanco, se asigna automáticamente el autor en el momento de la creación.',\n 'deleteDialog.title': 'Eliminar rol',\n 'deleteDialog.question': '¿Eliminar este rol?',\n 'deleteDialog.confirmation':\n '¿Confirma que desea eliminar el rol **{{roleName}}**? Esta acción no se puede deshacer y eliminará la funcionalidad del rol del sistema. Proceda con precaución. Los **{{members}}** asociados con este rol perderán acceso a todas las **políticas de permisos de {{permissions}}** especificadas en este rol.',\n 'deleteDialog.roleNameLabel': 'Nombre del rol',\n 'deleteDialog.roleNameHelper': 'Escriba el nombre del rol para confirmar',\n 'deleteDialog.deleteButton': 'Eliminar',\n 'deleteDialog.cancelButton': 'Cancelar',\n 'deleteDialog.successMessage': 'Rol {{roleName}} eliminado correctamente',\n 'snackbar.success': 'Éxito',\n 'dialog.cancelRoleCreation': 'Cancelar la creación del rol',\n 'dialog.exitRoleCreation': '¿Salir de la creación de roles?',\n 'dialog.exitRoleEditing': '¿Salir de la modificación de roles?',\n 'dialog.exitWarning':\n '\\n\\nAl salir de esta página, se descartará la información ingresada de forma permanente. ¿Confirma que desea salir?',\n 'dialog.discard': 'Descartar',\n 'dialog.cancel': 'Cancelar',\n 'conditionalAccess.condition': 'Condición',\n 'conditionalAccess.allOf': 'Todas',\n 'conditionalAccess.anyOf': 'Cualquiera de',\n 'conditionalAccess.not': 'No',\n 'conditionalAccess.addNestedCondition': 'Agregar condición anidada',\n 'conditionalAccess.addRule': 'Agregar regla',\n 'conditionalAccess.nestedConditionTooltip':\n 'Las condiciones anidadas son **reglas de una capa dentro de una condición principal**. Le permite habilitar el acceso apropiado mediante el uso de permisos detallados basados en diversas condiciones. Puede agregar varias condiciones anidadas.',\n 'conditionalAccess.nestedConditionExample':\n 'Por ejemplo, puede permitir el acceso a todos los tipos de entidades en la condición principal y usar una condición anidada para limitar el acceso a las entidades que son propiedad del usuario.',\n 'permissionPolicies.helperText':\n 'De forma predeterminada, a los usuarios no se les concede acceso a ningún complemento. Para otorgar acceso a los usuarios, seleccione los complementos que desea habilitar. Luego, seleccione las acciones a las que desea otorgarle permiso al usuario.',\n 'permissionPolicies.allPlugins': 'Todos los complementos ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Error al extraer las políticas de permisos: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo de recurso: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Utilice permisos personalizados avanzados para permitir el acceso a partes específicas del tipo de recurso seleccionado.',\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'No se admite la personalización avanzada para este tipo de recurso.',\n 'permissionPolicies.pluginsSelected': '{{count}} complementos',\n 'permissionPolicies.noPluginsSelected': 'No hay complementos seleccionados',\n 'permissionPolicies.search': 'Buscar',\n 'permissionPolicies.noRecordsToDisplay': 'No hay registros para mostrar.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Los complementos seleccionados aparecen aquí.',\n 'permissionPolicies.selectPlugins': 'Seleccionar complementos',\n 'permissionPolicies.noPluginsFound': 'No se encontraron complementos.',\n 'permissionPolicies.plugin': 'Complemento',\n 'permissionPolicies.permission': 'Permiso',\n 'permissionPolicies.policies': 'Políticas',\n 'permissionPolicies.conditional': 'Condicional',\n 'permissionPolicies.rules': 'reglas',\n 'permissionPolicies.rule': 'regla',\n 'permissionPolicies.permissionPolicies': 'Políticas de permisos',\n 'permissionPolicies.permissions': 'permisos',\n 'common.noResults': 'No hay resultados para este rango de fechas.',\n 'common.exportCSV': 'Exportar CSV',\n 'common.csvFilename': 'data-export.csv',\n 'common.noMembers': 'No hay miembros',\n 'common.groups': 'grupos',\n 'common.group': 'grupo',\n 'common.users': 'usuarios',\n 'common.user': 'usuario',\n 'common.use': 'Usar',\n 'common.refresh': 'Actualizar',\n 'common.edit': 'Modificar',\n 'common.unauthorizedToEdit': 'No tiene autorización para modificar',\n 'common.noRecordsFound': 'No se encontraron registros',\n 'common.selectUsersAndGroups': 'Seleccionar usuarios y grupos',\n 'common.clearSearch': 'borrar búsqueda',\n 'common.closeDrawer': 'Cerrar el panel',\n 'common.remove': 'Eliminar',\n 'common.addRule': 'Agregar regla',\n 'common.selectRule': 'Seleccionar una regla',\n 'common.rule': 'Regla',\n 'common.removeNestedCondition': 'Eliminar condición anidada',\n 'common.overview': 'Visión general',\n 'common.about': 'Acerca de',\n 'common.description': 'Descripción',\n 'common.modifiedBy': 'Modificado por',\n 'common.lastModified': 'Última modificación',\n 'common.owner': 'Propietario',\n 'common.noUsersAndGroupsSelected':\n 'No hay usuarios ni grupos seleccionados',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Aquí aparecen los usuarios y grupos seleccionados.',\n 'common.name': 'Nombre',\n 'common.type': 'Tipo',\n 'common.members': 'Miembros',\n 'common.actions': 'Acciones',\n 'common.removeMember': 'Eliminar miembro',\n 'common.delete': 'Eliminar',\n 'common.deleteRole': 'Eliminar rol',\n 'common.update': 'Actualizar',\n 'common.editRole': 'Modificar rol',\n 'common.checkingPermissions': 'Comprobando permisos…',\n 'common.unauthorizedTo': 'No tiene autorización para {{acción}}',\n 'common.performThisAction': 'realizar esta acción',\n 'common.unableToCreatePermissionPolicies':\n 'No se pueden crear las políticas de permisos.',\n 'common.unableToDeletePermissionPolicies':\n 'No se pueden eliminar las políticas de permisos.',\n 'common.unableToRemoveConditions':\n 'No se pueden eliminar las condiciones del rol.',\n 'common.unableToUpdateConditions':\n 'No se pueden actualizar las condiciones.',\n 'common.unableToAddConditions': 'No se pueden agregar condiciones al rol.',\n 'common.roleActionSuccessfully':\n 'El rol {{roleName}} {{action}} correctamente',\n 'common.unableToFetchRole': 'No se puede extraer el rol: {{error}}',\n 'common.unableToFetchMembers':\n 'No se pueden extraer los miembros: {{error}}',\n 'common.roleAction': '{{action}} rol',\n 'common.membersCount': '{{count}} miembros',\n 'common.parentGroupCount': '{{count}} grupo principal',\n 'common.childGroupsCount': '{{count}} grupos secundarios',\n 'common.searchAndSelectUsersGroups':\n 'Busque y seleccione los usuarios y grupos que desea agregar. Los usuarios y grupos seleccionados aparecerán en la tabla a continuación.',\n 'common.noUsersAndGroupsFound': 'No se encontraron usuarios ni grupos.',\n 'common.errorFetchingUserGroups':\n 'Error al extraer usuarios y grupos: {{error}}',\n 'common.nameRequired': 'El nombre es obligatorio',\n 'common.noMemberSelected': 'No se seleccionaron miembros',\n 'common.noPluginSelected': 'No hay complementos seleccionados',\n 'common.pluginRequired': 'Se requiere complemento',\n 'common.permissionRequired': 'Se requiere permiso',\n 'common.editCell': 'Modificar...',\n 'common.selectCell': 'Seleccionar...',\n 'common.expandRow': 'expandir fila',\n 'common.configureAccessFor': 'Configurar acceso para',\n 'common.defaultResourceTypeVisible':\n 'De forma predeterminada, todos los usuarios agregados pueden visualizar el tipo de recurso seleccionado. Si desea restringir u otorgar permiso a reglas de complementos específicas, selecciónelas y agregue los parámetros.',\n },\n});\n\nexport default rbacTranslationEs;\n"],"names":[],"mappings":"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"}
@@ -15,6 +15,7 @@ const rbacTranslationFr = createTranslationMessages({
15
15
  "table.headers.usersAndGroups": "Utilisateurs et groupes",
16
16
  "table.headers.accessiblePlugins": "Plugins accessibles",
17
17
  "table.headers.actions": "Actes",
18
+ "table.defaultRoleUsersAndGroups": "Tous les utilisateurs et tous les groupes",
18
19
  "table.emptyContent": "Aucun enregistrement trouv\xE9",
19
20
  "toolbar.createButton": "Cr\xE9er",
20
21
  "toolbar.warning.title": "Impossible de cr\xE9er le r\xF4le.",
@@ -38,6 +39,7 @@ const rbacTranslationFr = createTranslationMessages({
38
39
  "errors.createRole": "Impossible de cr\xE9er le r\xF4le.",
39
40
  "errors.editRole": "Impossible de modifier le r\xF4le.",
40
41
  "errors.deleteRole": "Impossible de supprimer le r\xF4le.",
42
+ "errors.defaultRoleReadOnly": "Le r\xF4le par d\xE9faut est en lecture seule.",
41
43
  "errors.roleCreatedSuccess": "Le r\xF4le a \xE9t\xE9 cr\xE9\xE9 avec succ\xE8s, mais il n'a pas \xE9t\xE9 possible d'ajouter des strat\xE9gies d'autorisation au r\xF4le.",
42
44
  "errors.roleCreatedConditionsSuccess": "R\xF4le cr\xE9\xE9 avec succ\xE8s mais impossible d'ajouter des conditions au r\xF4le.",
43
45
  "roleForm.titles.createRole": "Cr\xE9er un r\xF4le",
@@ -1 +1 @@
1
- {"version":3,"file":"fr.esm.js","sources":["../../../src/alpha/translations/fr.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * fr translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationFr = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Créer un rôle',\n 'page.editRole': 'Modifier le rôle',\n 'table.searchPlaceholder': 'Filtre',\n 'table.labelRowsSelect': 'Lignes',\n 'table.title': 'Tous les rôles',\n 'table.titleWithCount': 'Tous les rôles ({{count}})',\n 'table.headers.name': 'Nom',\n 'table.headers.usersAndGroups': 'Utilisateurs et groupes',\n 'table.headers.accessiblePlugins': 'Plugins accessibles',\n 'table.headers.actions': 'Actes',\n 'table.emptyContent': 'Aucun enregistrement trouvé',\n 'toolbar.createButton': 'Créer',\n 'toolbar.warning.title': 'Impossible de créer le rôle.',\n 'toolbar.warning.message':\n \"Pour activer le bouton Créer/Modifier un rôle, assurez-vous que les utilisateurs/groupes requis sont disponibles dans le catalogue, car un rôle ne peut pas être créé sans utilisateurs/groupes et que le rôle associé à votre utilisateur doit également avoir les politiques d'autorisation mentionnées. <link>ici</link>.\",\n 'toolbar.warning.linkText': 'ici',\n 'toolbar.warning.note': 'Note',\n 'toolbar.warning.noteText':\n \"Même après avoir ingéré des utilisateurs/groupes dans le catalogue et appliqué les autorisations ci-dessus, si le bouton Créer/Modifier est toujours désactivé, veuillez contacter votre administrateur car vous pourriez être conditionnellement limité dans l'accès au bouton Créer/Modifier.\",\n 'errors.notFound': 'Non trouvé',\n 'errors.notAllowed': 'Permissions insuffisantes pour accéder à cette page',\n 'errors.unauthorized': 'Non autorisé à créer un rôle',\n 'errors.rbacDisabled':\n 'Activez le plugin backend RBAC pour utiliser cette fonctionnalité.',\n 'errors.rbacDisabledInfo':\n 'Pour activer RBAC, définissez « permission.enabled » sur « true » dans le fichier app-config.',\n 'errors.fetchRoles':\n \"Une erreur s'est produite lors de la récupération des rôles\",\n 'errors.fetchRole':\n \"Une erreur s'est produite lors de la récupération du rôle\",\n 'errors.fetchPoliciesErr':\n 'Erreur lors de la récupération des politiques. {{error}}',\n 'errors.fetchPolicies':\n \"Une erreur s'est produite lors de la récupération des politiques d'autorisation.\",\n 'errors.fetchPlugins':\n 'Erreur lors de la récupération des plugins. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n \"Erreur lors de la récupération des politiques d'autorisation conditionnelle. {{error}}\",\n 'errors.fetchConditions':\n \"Une erreur s'est produite lors de la récupération des conditions de rôle\",\n 'errors.fetchUsersAndGroups':\n \"Une erreur s'est produite lors de la récupération des utilisateurs et des groupes\",\n 'errors.createRole': 'Impossible de créer le rôle.',\n 'errors.editRole': 'Impossible de modifier le rôle.',\n 'errors.deleteRole': 'Impossible de supprimer le rôle.',\n 'errors.roleCreatedSuccess':\n \"Le rôle a été créé avec succès, mais il n'a pas été possible d'ajouter des stratégies d'autorisation au rôle.\",\n 'errors.roleCreatedConditionsSuccess':\n \"Rôle créé avec succès mais impossible d'ajouter des conditions au rôle.\",\n 'roleForm.titles.createRole': 'Créer un rôle',\n 'roleForm.titles.editRole': 'Modifier le rôle',\n 'roleForm.titles.nameAndDescription':\n 'Entrez le nom et la description du rôle',\n 'roleForm.titles.usersAndGroups': 'Ajouter des utilisateurs et des groupes',\n 'roleForm.titles.permissionPolicies':\n \"Ajouter des politiques d'autorisation\",\n 'roleForm.review.reviewAndCreate': 'Réviser et créer',\n 'roleForm.review.reviewAndSave': 'Révisez et enregistrez',\n 'roleForm.review.nameDescriptionOwner':\n 'Nom, description et propriétaire du rôle',\n 'roleForm.review.permissionPoliciesWithCount':\n \"Politiques d'autorisations ({{count}})\",\n 'roleForm.steps.next': 'Suivant',\n 'roleForm.steps.back': 'Retour',\n 'roleForm.steps.cancel': 'Annuler',\n 'roleForm.steps.reset': 'Réinitialiser',\n 'roleForm.steps.create': 'Créer',\n 'roleForm.steps.save': 'Sauvegarder',\n 'roleForm.fields.name.label': 'Nom',\n 'roleForm.fields.name.helperText': 'Entrez le nom du rôle',\n 'roleForm.fields.description.label': 'Description',\n 'roleForm.fields.description.helperText':\n 'Saisissez une brève description du rôle (le but du rôle)',\n 'roleForm.fields.owner.label': 'Propriétaire',\n 'roleForm.fields.owner.helperText':\n \"Facultatif : saisissez un utilisateur ou un groupe qui sera autorisé à modifier ce rôle et à créer des rôles supplémentaires. À l’étape suivante, spécifiez les utilisateurs auxquels ils peuvent attribuer leurs rôles et les plugins auxquels ils peuvent accorder l’accès. Si laissé vide, attribue automatiquement l'auteur lors de la création.\",\n 'deleteDialog.title': 'Supprimer le rôle',\n 'deleteDialog.question': 'Supprimer ce rôle ?',\n 'deleteDialog.confirmation':\n \"Êtes-vous sûr de vouloir supprimer le rôle **{{roleName}}** ? La suppression de ce rôle est irréversible et supprimera sa fonctionnalité du système. Procédez avec prudence. Les **{{members}}** associés à ce rôle perdront l'accès à toutes les **{{permissions}} politiques d'autorisation** spécifiées dans ce rôle.\",\n 'deleteDialog.roleNameLabel': 'Nom du rôle',\n 'deleteDialog.roleNameHelper': 'Tapez le nom du rôle pour confirmer',\n 'deleteDialog.deleteButton': 'Supprimer',\n 'deleteDialog.cancelButton': 'Annuler',\n 'deleteDialog.successMessage':\n 'Le rôle {{roleName}} a été supprimé avec succès',\n 'snackbar.success': 'Succès',\n 'dialog.cancelRoleCreation': 'Annuler la création du rôle',\n 'dialog.exitRoleCreation': \"Création d'un rôle de sortie ?\",\n 'dialog.exitRoleEditing': \"Quitter l'édition du rôle ?\",\n 'dialog.exitWarning':\n '\\n\\nQuitter cette page supprimera définitivement les informations que vous avez saisies. Etes-vous sûr de vouloir quitter ?',\n 'dialog.discard': 'Ignorer',\n 'dialog.cancel': 'Annuler',\n 'conditionalAccess.condition': 'Condition',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Aucun',\n 'conditionalAccess.addNestedCondition': 'Ajouter une condition imbriquée',\n 'conditionalAccess.addRule': 'Ajouter une règle',\n 'conditionalAccess.nestedConditionTooltip':\n \"Les conditions imbriquées sont des **règles à 1 couche dans une condition principale**. Il vous permet d'autoriser un accès approprié en utilisant des autorisations détaillées basées sur diverses conditions. Vous pouvez ajouter plusieurs conditions imbriquées.\",\n 'conditionalAccess.nestedConditionExample':\n 'Par exemple, vous pouvez autoriser l’accès à tous les types d’entités dans la condition principale et utiliser une condition imbriquée pour limiter l’accès aux entités appartenant à l’utilisateur.',\n 'permissionPolicies.helperText':\n \"Par défaut, les utilisateurs n'ont accès à aucun plugin. Pour accorder l’accès utilisateur, sélectionnez les plugins que vous souhaitez activer. Ensuite, sélectionnez les actions pour lesquelles vous souhaitez accorder l’autorisation à l’utilisateur.\",\n 'permissionPolicies.allPlugins': 'Tous les plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n \"Erreur lors de la récupération des politiques d'autorisation : {{error}}\",\n 'permissionPolicies.resourceTypeTooltip':\n 'type de ressource : {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Utilisez des autorisations personnalisées avancées pour autoriser l’accès à des parties spécifiques du type de ressource sélectionné.',\n 'permissionPolicies.pluginsSelected': '{{count}} plugins',\n 'permissionPolicies.noPluginsSelected': 'Aucun plugin sélectionné',\n 'permissionPolicies.search': 'Recherche',\n 'permissionPolicies.noRecordsToDisplay': 'Aucun enregistrement à afficher',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Les plugins sélectionnés apparaissent ici.',\n 'permissionPolicies.selectPlugins': 'Sélectionner les plugins',\n 'permissionPolicies.noPluginsFound': 'Aucun plugin trouvé',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Autorisation',\n 'permissionPolicies.policies': 'Politiques',\n 'permissionPolicies.conditional': 'Conditionnel',\n 'permissionPolicies.rules': 'règles',\n 'permissionPolicies.rule': 'règle',\n 'permissionPolicies.permissionPolicies': \"Politiques d'autorisation\",\n 'permissionPolicies.permissions': 'autorisations',\n 'common.noResults': 'Aucun résultat pour cette plage de dates.',\n 'common.exportCSV': 'Exporter au format CSV',\n 'common.csvFilename': 'export-de-données.csv',\n 'common.noMembers': 'Aucun membre',\n 'common.groups': 'groupes',\n 'common.group': 'groupe',\n 'common.users': 'utilisateurs',\n 'common.user': 'utilisateur',\n 'common.use': 'Utiliser',\n 'common.refresh': 'Rafraîchir',\n 'common.edit': 'Modifier',\n 'common.unauthorizedToEdit': 'Modification non autorisée',\n 'common.noRecordsFound': 'Aucun enregistrement trouvé',\n 'common.selectUsersAndGroups':\n 'Sélectionner les utilisateurs et les groupes',\n 'common.clearSearch': 'supprimer la recherche',\n 'common.closeDrawer': 'Fermez le tiroir',\n 'common.remove': 'Supprimer',\n 'common.addRule': 'Ajouter une règle',\n 'common.selectRule': 'Sélectionnez une règle',\n 'common.rule': 'Règle',\n 'common.removeNestedCondition': 'Supprimer la condition imbriquée',\n 'common.overview': 'Vue d’ensemble',\n 'common.about': 'À propos',\n 'common.description': 'Description',\n 'common.modifiedBy': 'Modifié par',\n 'common.lastModified': 'Dernière modification',\n 'common.owner': 'Propriétaire',\n 'common.noUsersAndGroupsSelected':\n 'Aucun utilisateur ni groupe sélectionné',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Les utilisateurs et groupes sélectionnés apparaissent ici.',\n 'common.name': 'Nom',\n 'common.type': 'Type',\n 'common.members': 'Membres',\n 'common.actions': 'Actes',\n 'common.removeMember': 'Supprimer le membre',\n 'common.delete': 'Supprimer',\n 'common.deleteRole': 'Supprimer le rôle',\n 'common.update': 'Mise à jour',\n 'common.editRole': 'Modifier le rôle',\n 'common.checkingPermissions': 'Vérification des autorisations…',\n 'common.unauthorizedTo': 'Non autorisé à {{action}}',\n 'common.performThisAction': 'effectuer cette action',\n 'common.unableToCreatePermissionPolicies':\n \"Impossible de créer les politiques d'autorisation.\",\n 'common.unableToDeletePermissionPolicies':\n \"Impossible de supprimer les politiques d'autorisation.\",\n 'common.unableToRemoveConditions':\n 'Impossible de supprimer les conditions du rôle.',\n 'common.unableToUpdateConditions':\n 'Impossible de mettre à jour les conditions.',\n 'common.unableToAddConditions':\n \"Impossible d'ajouter des conditions au rôle.\",\n 'common.roleActionSuccessfully': 'Rôle {{roleName}} {{action}} avec succès',\n 'common.unableToFetchRole': 'Impossible de récupérer le rôle : {{error}}',\n 'common.unableToFetchMembers':\n 'Impossible de récupérer les membres : {{error}}',\n 'common.roleAction': 'rôle {{action}}',\n 'common.membersCount': '{{count}} membres',\n 'common.parentGroupCount': '{{count}} groupe parent',\n 'common.childGroupsCount': '{{count}} groupes enfants',\n 'common.searchAndSelectUsersGroups':\n 'Recherchez et sélectionnez les utilisateurs et les groupes à ajouter. Les utilisateurs et groupes sélectionnés apparaîtront dans le tableau ci-dessous.',\n 'common.noUsersAndGroupsFound': 'Aucun utilisateur ni groupe trouvé.',\n 'common.errorFetchingUserGroups':\n \"Erreur lors de la récupération de l'utilisateur et des groupes : {{error}}\",\n 'common.nameRequired': 'Le nom est obligatoire',\n 'common.noMemberSelected': 'Aucun membre sélectionné',\n 'common.noPluginSelected': 'Aucun plugin sélectionné',\n 'common.pluginRequired': 'Le plugin est requis',\n 'common.permissionRequired': 'Une autorisation est requise',\n 'common.editCell': 'Modifier...',\n 'common.selectCell': 'Sélectionner...',\n 'common.expandRow': 'développer la ligne',\n 'common.configureAccessFor': \"Configurer l'accès pour le\",\n 'common.defaultResourceTypeVisible':\n 'Par défaut, le type de ressource sélectionné est visible par tous les utilisateurs ajoutés. Si vous souhaitez restreindre ou accorder une autorisation à des règles de plugin spécifiques, sélectionnez-les et ajoutez les paramètres.',\n },\n});\n\nexport default rbacTranslationFr;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fr.esm.js","sources":["../../../src/alpha/translations/fr.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * fr translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationFr = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Créer un rôle',\n 'page.editRole': 'Modifier le rôle',\n 'table.searchPlaceholder': 'Filtre',\n 'table.labelRowsSelect': 'Lignes',\n 'table.title': 'Tous les rôles',\n 'table.titleWithCount': 'Tous les rôles ({{count}})',\n 'table.headers.name': 'Nom',\n 'table.headers.usersAndGroups': 'Utilisateurs et groupes',\n 'table.headers.accessiblePlugins': 'Plugins accessibles',\n 'table.headers.actions': 'Actes',\n 'table.defaultRoleUsersAndGroups':\n 'Tous les utilisateurs et tous les groupes',\n 'table.emptyContent': 'Aucun enregistrement trouvé',\n 'toolbar.createButton': 'Créer',\n 'toolbar.warning.title': 'Impossible de créer le rôle.',\n 'toolbar.warning.message':\n \"Pour activer le bouton Créer/Modifier un rôle, assurez-vous que les utilisateurs/groupes requis sont disponibles dans le catalogue, car un rôle ne peut pas être créé sans utilisateurs/groupes et que le rôle associé à votre utilisateur doit également avoir les politiques d'autorisation mentionnées. <link>ici</link>.\",\n 'toolbar.warning.linkText': 'ici',\n 'toolbar.warning.note': 'Note',\n 'toolbar.warning.noteText':\n \"Même après avoir ingéré des utilisateurs/groupes dans le catalogue et appliqué les autorisations ci-dessus, si le bouton Créer/Modifier est toujours désactivé, veuillez contacter votre administrateur car vous pourriez être conditionnellement limité dans l'accès au bouton Créer/Modifier.\",\n 'errors.notFound': 'Non trouvé',\n 'errors.notAllowed': 'Permissions insuffisantes pour accéder à cette page',\n 'errors.unauthorized': 'Non autorisé à créer un rôle',\n 'errors.rbacDisabled':\n 'Activez le plugin backend RBAC pour utiliser cette fonctionnalité.',\n 'errors.rbacDisabledInfo':\n 'Pour activer RBAC, définissez « permission.enabled » sur « true » dans le fichier app-config.',\n 'errors.fetchRoles':\n \"Une erreur s'est produite lors de la récupération des rôles\",\n 'errors.fetchRole':\n \"Une erreur s'est produite lors de la récupération du rôle\",\n 'errors.fetchPoliciesErr':\n 'Erreur lors de la récupération des politiques. {{error}}',\n 'errors.fetchPolicies':\n \"Une erreur s'est produite lors de la récupération des politiques d'autorisation.\",\n 'errors.fetchPlugins':\n 'Erreur lors de la récupération des plugins. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n \"Erreur lors de la récupération des politiques d'autorisation conditionnelle. {{error}}\",\n 'errors.fetchConditions':\n \"Une erreur s'est produite lors de la récupération des conditions de rôle\",\n 'errors.fetchUsersAndGroups':\n \"Une erreur s'est produite lors de la récupération des utilisateurs et des groupes\",\n 'errors.createRole': 'Impossible de créer le rôle.',\n 'errors.editRole': 'Impossible de modifier le rôle.',\n 'errors.deleteRole': 'Impossible de supprimer le rôle.',\n 'errors.defaultRoleReadOnly': 'Le rôle par défaut est en lecture seule.',\n 'errors.roleCreatedSuccess':\n \"Le rôle a été créé avec succès, mais il n'a pas été possible d'ajouter des stratégies d'autorisation au rôle.\",\n 'errors.roleCreatedConditionsSuccess':\n \"Rôle créé avec succès mais impossible d'ajouter des conditions au rôle.\",\n 'roleForm.titles.createRole': 'Créer un rôle',\n 'roleForm.titles.editRole': 'Modifier le rôle',\n 'roleForm.titles.nameAndDescription':\n 'Entrez le nom et la description du rôle',\n 'roleForm.titles.usersAndGroups': 'Ajouter des utilisateurs et des groupes',\n 'roleForm.titles.permissionPolicies':\n \"Ajouter des politiques d'autorisation\",\n 'roleForm.review.reviewAndCreate': 'Réviser et créer',\n 'roleForm.review.reviewAndSave': 'Révisez et enregistrez',\n 'roleForm.review.nameDescriptionOwner':\n 'Nom, description et propriétaire du rôle',\n 'roleForm.review.permissionPoliciesWithCount':\n \"Politiques d'autorisations ({{count}})\",\n 'roleForm.steps.next': 'Suivant',\n 'roleForm.steps.back': 'Retour',\n 'roleForm.steps.cancel': 'Annuler',\n 'roleForm.steps.reset': 'Réinitialiser',\n 'roleForm.steps.create': 'Créer',\n 'roleForm.steps.save': 'Sauvegarder',\n 'roleForm.fields.name.label': 'Nom',\n 'roleForm.fields.name.helperText': 'Entrez le nom du rôle',\n 'roleForm.fields.description.label': 'Description',\n 'roleForm.fields.description.helperText':\n 'Saisissez une brève description du rôle (le but du rôle)',\n 'roleForm.fields.owner.label': 'Propriétaire',\n 'roleForm.fields.owner.helperText':\n \"Facultatif : saisissez un utilisateur ou un groupe qui sera autorisé à modifier ce rôle et à créer des rôles supplémentaires. À l’étape suivante, spécifiez les utilisateurs auxquels ils peuvent attribuer leurs rôles et les plugins auxquels ils peuvent accorder l’accès. Si laissé vide, attribue automatiquement l'auteur lors de la création.\",\n 'deleteDialog.title': 'Supprimer le rôle',\n 'deleteDialog.question': 'Supprimer ce rôle ?',\n 'deleteDialog.confirmation':\n \"Êtes-vous sûr de vouloir supprimer le rôle **{{roleName}}** ? La suppression de ce rôle est irréversible et supprimera sa fonctionnalité du système. Procédez avec prudence. Les **{{members}}** associés à ce rôle perdront l'accès à toutes les **{{permissions}} politiques d'autorisation** spécifiées dans ce rôle.\",\n 'deleteDialog.roleNameLabel': 'Nom du rôle',\n 'deleteDialog.roleNameHelper': 'Tapez le nom du rôle pour confirmer',\n 'deleteDialog.deleteButton': 'Supprimer',\n 'deleteDialog.cancelButton': 'Annuler',\n 'deleteDialog.successMessage':\n 'Le rôle {{roleName}} a été supprimé avec succès',\n 'snackbar.success': 'Succès',\n 'dialog.cancelRoleCreation': 'Annuler la création du rôle',\n 'dialog.exitRoleCreation': \"Création d'un rôle de sortie ?\",\n 'dialog.exitRoleEditing': \"Quitter l'édition du rôle ?\",\n 'dialog.exitWarning':\n '\\n\\nQuitter cette page supprimera définitivement les informations que vous avez saisies. Etes-vous sûr de vouloir quitter ?',\n 'dialog.discard': 'Ignorer',\n 'dialog.cancel': 'Annuler',\n 'conditionalAccess.condition': 'Condition',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Aucun',\n 'conditionalAccess.addNestedCondition': 'Ajouter une condition imbriquée',\n 'conditionalAccess.addRule': 'Ajouter une règle',\n 'conditionalAccess.nestedConditionTooltip':\n \"Les conditions imbriquées sont des **règles à 1 couche dans une condition principale**. Il vous permet d'autoriser un accès approprié en utilisant des autorisations détaillées basées sur diverses conditions. Vous pouvez ajouter plusieurs conditions imbriquées.\",\n 'conditionalAccess.nestedConditionExample':\n 'Par exemple, vous pouvez autoriser l’accès à tous les types d’entités dans la condition principale et utiliser une condition imbriquée pour limiter l’accès aux entités appartenant à l’utilisateur.',\n 'permissionPolicies.helperText':\n \"Par défaut, les utilisateurs n'ont accès à aucun plugin. Pour accorder l’accès utilisateur, sélectionnez les plugins que vous souhaitez activer. Ensuite, sélectionnez les actions pour lesquelles vous souhaitez accorder l’autorisation à l’utilisateur.\",\n 'permissionPolicies.allPlugins': 'Tous les plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n \"Erreur lors de la récupération des politiques d'autorisation : {{error}}\",\n 'permissionPolicies.resourceTypeTooltip':\n 'type de ressource : {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Utilisez des autorisations personnalisées avancées pour autoriser l’accès à des parties spécifiques du type de ressource sélectionné.',\n 'permissionPolicies.pluginsSelected': '{{count}} plugins',\n 'permissionPolicies.noPluginsSelected': 'Aucun plugin sélectionné',\n 'permissionPolicies.search': 'Recherche',\n 'permissionPolicies.noRecordsToDisplay': 'Aucun enregistrement à afficher',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Les plugins sélectionnés apparaissent ici.',\n 'permissionPolicies.selectPlugins': 'Sélectionner les plugins',\n 'permissionPolicies.noPluginsFound': 'Aucun plugin trouvé',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Autorisation',\n 'permissionPolicies.policies': 'Politiques',\n 'permissionPolicies.conditional': 'Conditionnel',\n 'permissionPolicies.rules': 'règles',\n 'permissionPolicies.rule': 'règle',\n 'permissionPolicies.permissionPolicies': \"Politiques d'autorisation\",\n 'permissionPolicies.permissions': 'autorisations',\n 'common.noResults': 'Aucun résultat pour cette plage de dates.',\n 'common.exportCSV': 'Exporter au format CSV',\n 'common.csvFilename': 'export-de-données.csv',\n 'common.noMembers': 'Aucun membre',\n 'common.groups': 'groupes',\n 'common.group': 'groupe',\n 'common.users': 'utilisateurs',\n 'common.user': 'utilisateur',\n 'common.use': 'Utiliser',\n 'common.refresh': 'Rafraîchir',\n 'common.edit': 'Modifier',\n 'common.unauthorizedToEdit': 'Modification non autorisée',\n 'common.noRecordsFound': 'Aucun enregistrement trouvé',\n 'common.selectUsersAndGroups':\n 'Sélectionner les utilisateurs et les groupes',\n 'common.clearSearch': 'supprimer la recherche',\n 'common.closeDrawer': 'Fermez le tiroir',\n 'common.remove': 'Supprimer',\n 'common.addRule': 'Ajouter une règle',\n 'common.selectRule': 'Sélectionnez une règle',\n 'common.rule': 'Règle',\n 'common.removeNestedCondition': 'Supprimer la condition imbriquée',\n 'common.overview': 'Vue d’ensemble',\n 'common.about': 'À propos',\n 'common.description': 'Description',\n 'common.modifiedBy': 'Modifié par',\n 'common.lastModified': 'Dernière modification',\n 'common.owner': 'Propriétaire',\n 'common.noUsersAndGroupsSelected':\n 'Aucun utilisateur ni groupe sélectionné',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Les utilisateurs et groupes sélectionnés apparaissent ici.',\n 'common.name': 'Nom',\n 'common.type': 'Type',\n 'common.members': 'Membres',\n 'common.actions': 'Actes',\n 'common.removeMember': 'Supprimer le membre',\n 'common.delete': 'Supprimer',\n 'common.deleteRole': 'Supprimer le rôle',\n 'common.update': 'Mise à jour',\n 'common.editRole': 'Modifier le rôle',\n 'common.checkingPermissions': 'Vérification des autorisations…',\n 'common.unauthorizedTo': 'Non autorisé à {{action}}',\n 'common.performThisAction': 'effectuer cette action',\n 'common.unableToCreatePermissionPolicies':\n \"Impossible de créer les politiques d'autorisation.\",\n 'common.unableToDeletePermissionPolicies':\n \"Impossible de supprimer les politiques d'autorisation.\",\n 'common.unableToRemoveConditions':\n 'Impossible de supprimer les conditions du rôle.',\n 'common.unableToUpdateConditions':\n 'Impossible de mettre à jour les conditions.',\n 'common.unableToAddConditions':\n \"Impossible d'ajouter des conditions au rôle.\",\n 'common.roleActionSuccessfully': 'Rôle {{roleName}} {{action}} avec succès',\n 'common.unableToFetchRole': 'Impossible de récupérer le rôle : {{error}}',\n 'common.unableToFetchMembers':\n 'Impossible de récupérer les membres : {{error}}',\n 'common.roleAction': 'rôle {{action}}',\n 'common.membersCount': '{{count}} membres',\n 'common.parentGroupCount': '{{count}} groupe parent',\n 'common.childGroupsCount': '{{count}} groupes enfants',\n 'common.searchAndSelectUsersGroups':\n 'Recherchez et sélectionnez les utilisateurs et les groupes à ajouter. Les utilisateurs et groupes sélectionnés apparaîtront dans le tableau ci-dessous.',\n 'common.noUsersAndGroupsFound': 'Aucun utilisateur ni groupe trouvé.',\n 'common.errorFetchingUserGroups':\n \"Erreur lors de la récupération de l'utilisateur et des groupes : {{error}}\",\n 'common.nameRequired': 'Le nom est obligatoire',\n 'common.noMemberSelected': 'Aucun membre sélectionné',\n 'common.noPluginSelected': 'Aucun plugin sélectionné',\n 'common.pluginRequired': 'Le plugin est requis',\n 'common.permissionRequired': 'Une autorisation est requise',\n 'common.editCell': 'Modifier...',\n 'common.selectCell': 'Sélectionner...',\n 'common.expandRow': 'développer la ligne',\n 'common.configureAccessFor': \"Configurer l'accès pour le\",\n 'common.defaultResourceTypeVisible':\n 'Par défaut, le type de ressource sélectionné est visible par tous les utilisateurs ajoutés. Si vous souhaitez restreindre ou accorder une autorisation à des règles de plugin spécifiques, sélectionnez-les et ajoutez les paramètres.',\n },\n});\n\nexport default rbacTranslationFr;\n"],"names":[],"mappings":"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"}
@@ -15,6 +15,7 @@ const rbacTranslationIt = createTranslationMessages({
15
15
  "table.headers.usersAndGroups": "Utenti e gruppi",
16
16
  "table.headers.accessiblePlugins": "Plugin accessibili",
17
17
  "table.headers.actions": "Azioni",
18
+ "table.defaultRoleUsersAndGroups": "Tutti gli utenti e tutti i gruppi",
18
19
  "table.emptyContent": "Nessun record trovato",
19
20
  "toolbar.createButton": "Crea",
20
21
  "toolbar.warning.title": "Impossibile creare il ruolo.",
@@ -38,6 +39,7 @@ const rbacTranslationIt = createTranslationMessages({
38
39
  "errors.createRole": "Impossibile creare il ruolo.",
39
40
  "errors.editRole": "Impossibile modificare il ruolo.",
40
41
  "errors.deleteRole": "Impossibile eliminare il ruolo.",
42
+ "errors.defaultRoleReadOnly": "Il ruolo predefinito \xE8 in sola lettura.",
41
43
  "errors.roleCreatedSuccess": "Il ruolo \xE8 stato creato correttamente ma non \xE8 possibile aggiungere criteri di autorizzazione al ruolo.",
42
44
  "errors.roleCreatedConditionsSuccess": "Ruolo creato correttamente ma non \xE8 possibile aggiungere condizioni al ruolo.",
43
45
  "roleForm.titles.createRole": "Crea ruolo",
@@ -1 +1 @@
1
- {"version":3,"file":"it.esm.js","sources":["../../../src/alpha/translations/it.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * Italian translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationIt = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crea ruolo',\n 'page.editRole': 'Modifica ruolo',\n 'table.searchPlaceholder': 'Filtra',\n 'table.labelRowsSelect': 'Righe',\n 'table.title': 'Tutti i ruoli',\n 'table.titleWithCount': 'Tutti i ruoli ({{count}})',\n 'table.headers.name': 'Nome',\n 'table.headers.usersAndGroups': 'Utenti e gruppi',\n 'table.headers.accessiblePlugins': 'Plugin accessibili',\n 'table.headers.actions': 'Azioni',\n 'table.emptyContent': 'Nessun record trovato',\n 'toolbar.createButton': 'Crea',\n 'toolbar.warning.title': 'Impossibile creare il ruolo.',\n 'toolbar.warning.message':\n \"Per abilitare il pulsante Crea/Modifica ruolo, verificare che gli utenti/gruppi richiesti siano disponibili nel catalogo perché non è possibile creare un ruolo senza utenti/gruppi; inoltre il ruolo associato all'utente deve disporre dei criteri di autorizzazione menzionati <link>qui</link>.\",\n 'toolbar.warning.linkText': 'qui',\n 'toolbar.warning.note': 'Nota',\n 'toolbar.warning.noteText':\n \"Anche dopo aver inserito utenti/gruppi nel catalogo e applicato le autorizzazioni precedenti, se il pulsante Crea/Modifica è ancora disabilitato, contattare l'amministratore poiché potrebbero essere presenti limitazioni condizionali all'accesso al pulsante Crea/Modifica.\",\n 'errors.notFound': 'Non trovato',\n 'errors.notAllowed': 'Permessi insufficienti per accedere a questa pagina',\n 'errors.unauthorized': 'Nessuna autorizzazione a creare un ruolo',\n 'errors.rbacDisabled':\n 'Abilitare il plugin backend RBAC per utilizzare questa funzionalità.',\n 'errors.rbacDisabledInfo':\n 'Per abilitare RBAC, impostare `permission.enabled` su `true` nel file app-config.',\n 'errors.fetchRoles':\n 'Si è verificato un errore durante il recupero dei ruoli',\n 'errors.fetchRole':\n 'Si è verificato un errore durante il recupero del ruolo',\n 'errors.fetchPoliciesErr':\n 'Errore durante il recupero dei criteri. {{error}}',\n 'errors.fetchPolicies':\n 'Si è verificato un problema durante il recupero delle policy di autorizzazione',\n 'errors.fetchPlugins': 'Errore durante il recupero dei plugin. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Errore durante il recupero dei criteri di autorizzazione condizionale. {{error}}',\n 'errors.fetchConditions':\n 'Si è verificato un errore durante il recupero delle condizioni del ruolo',\n 'errors.fetchUsersAndGroups':\n 'Si è verificato un problema durante il recupero degli utenti e dei gruppi',\n 'errors.createRole': 'Impossibile creare il ruolo.',\n 'errors.editRole': 'Impossibile modificare il ruolo.',\n 'errors.deleteRole': 'Impossibile eliminare il ruolo.',\n 'errors.roleCreatedSuccess':\n 'Il ruolo è stato creato correttamente ma non è possibile aggiungere criteri di autorizzazione al ruolo.',\n 'errors.roleCreatedConditionsSuccess':\n 'Ruolo creato correttamente ma non è possibile aggiungere condizioni al ruolo.',\n 'roleForm.titles.createRole': 'Crea ruolo',\n 'roleForm.titles.editRole': 'Modifica ruolo',\n 'roleForm.titles.nameAndDescription':\n 'Inserire il nome e la descrizione del ruolo',\n 'roleForm.titles.usersAndGroups': 'Aggiungi utenti e gruppi',\n 'roleForm.titles.permissionPolicies': 'Aggiungi criteri di autorizzazione',\n 'roleForm.review.reviewAndCreate': 'Rivedi e crea',\n 'roleForm.review.reviewAndSave': 'Rivedi e salva',\n 'roleForm.review.nameDescriptionOwner':\n 'Nome, descrizione e proprietario del ruolo',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Politiche di autorizzazione ({{count}})',\n 'roleForm.steps.next': 'Successivo',\n 'roleForm.steps.back': 'Indietro',\n 'roleForm.steps.cancel': 'Cancella',\n 'roleForm.steps.reset': 'Reset',\n 'roleForm.steps.create': 'Crea',\n 'roleForm.steps.save': 'Salva',\n 'roleForm.fields.name.label': 'Nome',\n 'roleForm.fields.name.helperText': 'Inserire il nome del ruolo',\n 'roleForm.fields.description.label': 'Descrizione',\n 'roleForm.fields.description.helperText':\n 'Inserire una breve descrizione del ruolo (finalità del ruolo)',\n 'roleForm.fields.owner.label': 'Proprietario',\n 'roleForm.fields.owner.helperText':\n \"Facoltativo: inserire un utente o un gruppo che avrà l'autorizzazione a modificare questo ruolo e a creare ruoli aggiuntivi. Nel passaggio successivo, specificare quali utenti possono assegnare ai loro ruoli e a quali plugin possono concedere l'accesso. Se vuoto, l'autore viene assegnato automaticamente al momento della creazione.\",\n 'deleteDialog.title': 'Elimina ruolo',\n 'deleteDialog.question': 'Eliminare questo ruolo?',\n 'deleteDialog.confirmation':\n \"Eliminare il ruolo **{{roleName}}**? L'eliminazione di questo ruolo è irreversibile e ne rimuoverà la funzionalità dal sistema. Procedere con cautela. I **{{members}}** associati a questo ruolo perderanno l'accesso a tutti i **{{permissions}} criteri di autorizzazione** specificati in questo ruolo.\",\n 'deleteDialog.roleNameLabel': 'Nome ruolo',\n 'deleteDialog.roleNameHelper': 'Digitare il nome del ruolo per confermare',\n 'deleteDialog.deleteButton': 'Elimina',\n 'deleteDialog.cancelButton': 'Cancella',\n 'deleteDialog.successMessage': 'Ruolo {{roleName}} eliminato correttamente',\n 'snackbar.success': 'Attività riuscita',\n 'dialog.cancelRoleCreation': 'Annulla la creazione del ruolo',\n 'dialog.exitRoleCreation': 'Abbandonare la creazione del ruolo?',\n 'dialog.exitRoleEditing': 'Abbandonare la modifica del ruolo?',\n 'dialog.exitWarning':\n '\\n\\nAbbandonando questa pagina, le informazioni immesse vengono eliminate definitivamente. Uscire?',\n 'dialog.discard': 'Annulla',\n 'dialog.cancel': 'Cancella',\n 'conditionalAccess.condition': 'Condizione',\n 'conditionalAccess.allOf': 'Tutti',\n 'conditionalAccess.anyOf': 'QualunqueDi',\n 'conditionalAccess.not': 'Non',\n 'conditionalAccess.addNestedCondition': 'Aggiungi condizione nidificata',\n 'conditionalAccess.addRule': 'Aggiungi regola',\n 'conditionalAccess.nestedConditionTooltip':\n \"Le condizioni nidificate sono **regole a un livello all'interno di una condizione principale**. Permette di concedere l'accesso appropriato utilizzando autorizzazioni dettagliate basate su varie condizioni. È possibile aggiungere più condizioni nidificate.\",\n 'conditionalAccess.nestedConditionExample':\n \"Ad esempio, è possibile consentire l'accesso a tutti i tipi di entità nella condizione principale e utilizzare una condizione nidificata per limitare l'accesso alle entità di proprietà dell'utente.\",\n 'permissionPolicies.helperText':\n \"Per impostazione predefinita, agli utenti non è concesso l'accesso ad alcun plugin. Per concedere l'accesso all'utente, selezionare i plugin da abilitare. Quindi, selezionare le azioni per cui concedere l'autorizzazione all'utente.\",\n 'permissionPolicies.allPlugins': 'Tutti i plugin ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Errore durante il recupero dei criteri di autorizzazione: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo di risorsa: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n \"Utilizza autorizzazioni personalizzate avanzate per consentire l'accesso a parti specifiche del tipo di risorsa selezionato.\",\n 'permissionPolicies.pluginsSelected': '{{count}} plugin',\n 'permissionPolicies.noPluginsSelected': 'Nessun plugin selezionato',\n 'permissionPolicies.search': 'Ricerca',\n 'permissionPolicies.noRecordsToDisplay': 'Nessun record da visualizzare.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'I plugin selezionati vengono visualizzati qui.',\n 'permissionPolicies.selectPlugins': 'Selezionare i plugin',\n 'permissionPolicies.noPluginsFound': 'Nessun plugin trovato.',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Autorizzazione',\n 'permissionPolicies.policies': 'Criteri',\n 'permissionPolicies.conditional': 'Condizionale',\n 'permissionPolicies.rules': 'regole',\n 'permissionPolicies.rule': 'regola',\n 'permissionPolicies.permissionPolicies': 'Criteri di autorizzazione',\n 'permissionPolicies.permissions': 'autorizzazioni',\n 'common.noResults': 'Nessun risultato per questo intervallo di date.',\n 'common.exportCSV': 'Esporta CSV',\n 'common.csvFilename': 'data-export.csv',\n 'common.noMembers': 'Nessun membro',\n 'common.groups': 'gruppi',\n 'common.group': 'gruppo',\n 'common.users': 'utenti',\n 'common.user': 'utente',\n 'common.use': 'Utilizza',\n 'common.refresh': 'Aggiorna',\n 'common.edit': 'Modifica',\n 'common.unauthorizedToEdit': 'Non autorizzato a modificare',\n 'common.noRecordsFound': 'Nessun record trovato',\n 'common.selectUsersAndGroups': 'Selezionare utenti e gruppi',\n 'common.clearSearch': 'cancella ricerca',\n 'common.closeDrawer': 'Chiudi il riquadro',\n 'common.remove': 'Rimuovi',\n 'common.addRule': 'Aggiungi regola',\n 'common.selectRule': 'Selezionare una regola',\n 'common.rule': 'Regola',\n 'common.removeNestedCondition': 'Rimuovi condizione nidificata',\n 'common.overview': 'Panoramica',\n 'common.about': 'Informazioni',\n 'common.description': 'Descrizione',\n 'common.modifiedBy': 'Modificato da',\n 'common.lastModified': 'Ultima modifica',\n 'common.owner': 'Proprietario',\n 'common.noUsersAndGroupsSelected': 'Nessun utente e gruppo selezionato',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Qui vengono visualizzati gli utenti e i gruppi selezionati.',\n 'common.name': 'Nome',\n 'common.type': 'Tipo',\n 'common.members': 'Membri',\n 'common.actions': 'Azioni',\n 'common.removeMember': 'Rimuovi membro',\n 'common.delete': 'Elimina',\n 'common.deleteRole': 'Elimina ruolo',\n 'common.update': 'Aggiorna',\n 'common.editRole': 'Modifica ruolo',\n 'common.checkingPermissions': 'Controllo delle autorizzazioni in corso…',\n 'common.unauthorizedTo': 'Non autorizzato a {{action}}',\n 'common.performThisAction': 'eseguire questa azione',\n 'common.unableToCreatePermissionPolicies':\n 'Impossibile creare i criteri di autorizzazione.',\n 'common.unableToDeletePermissionPolicies':\n 'Impossibile eliminare i criteri di autorizzazione.',\n 'common.unableToRemoveConditions':\n 'Impossibile rimuovere le condizioni dal ruolo.',\n 'common.unableToUpdateConditions': 'Impossibile aggiornare le condizioni.',\n 'common.unableToAddConditions':\n 'Impossibile aggiungere condizioni al ruolo.',\n 'common.roleActionSuccessfully':\n 'Ruolo {{roleName}} {{action}} eseguito correttamente',\n 'common.unableToFetchRole': 'Impossibile recuperare il ruolo: {{error}}',\n 'common.unableToFetchMembers': 'Impossibile recuperare i membri: {{error}}',\n 'common.roleAction': 'ruolo {{azione}}',\n 'common.membersCount': '{{count}} membri',\n 'common.parentGroupCount': '{{count}} gruppo padre',\n 'common.childGroupsCount': '{{count}} gruppi figlio',\n 'common.searchAndSelectUsersGroups':\n 'Per cercare e selezionare gli utenti e i gruppi da aggiungere. Gli utenti e i gruppi selezionati appariranno nella tabella sottostante.',\n 'common.noUsersAndGroupsFound': 'Nessun utente e gruppo trovato.',\n 'common.errorFetchingUserGroups':\n 'Errore durante il recupero di utenti e gruppi: {{error}}',\n 'common.nameRequired': 'Il nome è obbligatorio',\n 'common.noMemberSelected': 'Nessun membro selezionato',\n 'common.noPluginSelected': 'Nessun plugin selezionato',\n 'common.pluginRequired': 'Il plugin è obbligatorio',\n 'common.permissionRequired': \"L'autorizzazione è obbligatoria\",\n 'common.editCell': 'Modifica...',\n 'common.selectCell': 'Seleziona...',\n 'common.expandRow': 'espandi riga',\n 'common.configureAccessFor': \"Configurare l'accesso per il\",\n 'common.defaultResourceTypeVisible':\n 'Per impostazione predefinita, il tipo di risorsa selezionato è visibile a tutti gli utenti aggiunti. Per limitare o concedere autorizzazioni a regole specifiche del plugin, selezionarle e aggiungere i parametri.',\n },\n});\n\nexport default rbacTranslationIt;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"it.esm.js","sources":["../../../src/alpha/translations/it.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\n/**\n * Italian translation for plugin.rbac.\n * @public\n */\nconst rbacTranslationIt = createTranslationMessages({\n ref: rbacTranslationRef,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crea ruolo',\n 'page.editRole': 'Modifica ruolo',\n 'table.searchPlaceholder': 'Filtra',\n 'table.labelRowsSelect': 'Righe',\n 'table.title': 'Tutti i ruoli',\n 'table.titleWithCount': 'Tutti i ruoli ({{count}})',\n 'table.headers.name': 'Nome',\n 'table.headers.usersAndGroups': 'Utenti e gruppi',\n 'table.headers.accessiblePlugins': 'Plugin accessibili',\n 'table.headers.actions': 'Azioni',\n 'table.defaultRoleUsersAndGroups': 'Tutti gli utenti e tutti i gruppi',\n 'table.emptyContent': 'Nessun record trovato',\n 'toolbar.createButton': 'Crea',\n 'toolbar.warning.title': 'Impossibile creare il ruolo.',\n 'toolbar.warning.message':\n \"Per abilitare il pulsante Crea/Modifica ruolo, verificare che gli utenti/gruppi richiesti siano disponibili nel catalogo perché non è possibile creare un ruolo senza utenti/gruppi; inoltre il ruolo associato all'utente deve disporre dei criteri di autorizzazione menzionati <link>qui</link>.\",\n 'toolbar.warning.linkText': 'qui',\n 'toolbar.warning.note': 'Nota',\n 'toolbar.warning.noteText':\n \"Anche dopo aver inserito utenti/gruppi nel catalogo e applicato le autorizzazioni precedenti, se il pulsante Crea/Modifica è ancora disabilitato, contattare l'amministratore poiché potrebbero essere presenti limitazioni condizionali all'accesso al pulsante Crea/Modifica.\",\n 'errors.notFound': 'Non trovato',\n 'errors.notAllowed': 'Permessi insufficienti per accedere a questa pagina',\n 'errors.unauthorized': 'Nessuna autorizzazione a creare un ruolo',\n 'errors.rbacDisabled':\n 'Abilitare il plugin backend RBAC per utilizzare questa funzionalità.',\n 'errors.rbacDisabledInfo':\n 'Per abilitare RBAC, impostare `permission.enabled` su `true` nel file app-config.',\n 'errors.fetchRoles':\n 'Si è verificato un errore durante il recupero dei ruoli',\n 'errors.fetchRole':\n 'Si è verificato un errore durante il recupero del ruolo',\n 'errors.fetchPoliciesErr':\n 'Errore durante il recupero dei criteri. {{error}}',\n 'errors.fetchPolicies':\n 'Si è verificato un problema durante il recupero delle policy di autorizzazione',\n 'errors.fetchPlugins': 'Errore durante il recupero dei plugin. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Errore durante il recupero dei criteri di autorizzazione condizionale. {{error}}',\n 'errors.fetchConditions':\n 'Si è verificato un errore durante il recupero delle condizioni del ruolo',\n 'errors.fetchUsersAndGroups':\n 'Si è verificato un problema durante il recupero degli utenti e dei gruppi',\n 'errors.createRole': 'Impossibile creare il ruolo.',\n 'errors.editRole': 'Impossibile modificare il ruolo.',\n 'errors.deleteRole': 'Impossibile eliminare il ruolo.',\n 'errors.defaultRoleReadOnly': 'Il ruolo predefinito è in sola lettura.',\n 'errors.roleCreatedSuccess':\n 'Il ruolo è stato creato correttamente ma non è possibile aggiungere criteri di autorizzazione al ruolo.',\n 'errors.roleCreatedConditionsSuccess':\n 'Ruolo creato correttamente ma non è possibile aggiungere condizioni al ruolo.',\n 'roleForm.titles.createRole': 'Crea ruolo',\n 'roleForm.titles.editRole': 'Modifica ruolo',\n 'roleForm.titles.nameAndDescription':\n 'Inserire il nome e la descrizione del ruolo',\n 'roleForm.titles.usersAndGroups': 'Aggiungi utenti e gruppi',\n 'roleForm.titles.permissionPolicies': 'Aggiungi criteri di autorizzazione',\n 'roleForm.review.reviewAndCreate': 'Rivedi e crea',\n 'roleForm.review.reviewAndSave': 'Rivedi e salva',\n 'roleForm.review.nameDescriptionOwner':\n 'Nome, descrizione e proprietario del ruolo',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Politiche di autorizzazione ({{count}})',\n 'roleForm.steps.next': 'Successivo',\n 'roleForm.steps.back': 'Indietro',\n 'roleForm.steps.cancel': 'Cancella',\n 'roleForm.steps.reset': 'Reset',\n 'roleForm.steps.create': 'Crea',\n 'roleForm.steps.save': 'Salva',\n 'roleForm.fields.name.label': 'Nome',\n 'roleForm.fields.name.helperText': 'Inserire il nome del ruolo',\n 'roleForm.fields.description.label': 'Descrizione',\n 'roleForm.fields.description.helperText':\n 'Inserire una breve descrizione del ruolo (finalità del ruolo)',\n 'roleForm.fields.owner.label': 'Proprietario',\n 'roleForm.fields.owner.helperText':\n \"Facoltativo: inserire un utente o un gruppo che avrà l'autorizzazione a modificare questo ruolo e a creare ruoli aggiuntivi. Nel passaggio successivo, specificare quali utenti possono assegnare ai loro ruoli e a quali plugin possono concedere l'accesso. Se vuoto, l'autore viene assegnato automaticamente al momento della creazione.\",\n 'deleteDialog.title': 'Elimina ruolo',\n 'deleteDialog.question': 'Eliminare questo ruolo?',\n 'deleteDialog.confirmation':\n \"Eliminare il ruolo **{{roleName}}**? L'eliminazione di questo ruolo è irreversibile e ne rimuoverà la funzionalità dal sistema. Procedere con cautela. I **{{members}}** associati a questo ruolo perderanno l'accesso a tutti i **{{permissions}} criteri di autorizzazione** specificati in questo ruolo.\",\n 'deleteDialog.roleNameLabel': 'Nome ruolo',\n 'deleteDialog.roleNameHelper': 'Digitare il nome del ruolo per confermare',\n 'deleteDialog.deleteButton': 'Elimina',\n 'deleteDialog.cancelButton': 'Cancella',\n 'deleteDialog.successMessage': 'Ruolo {{roleName}} eliminato correttamente',\n 'snackbar.success': 'Attività riuscita',\n 'dialog.cancelRoleCreation': 'Annulla la creazione del ruolo',\n 'dialog.exitRoleCreation': 'Abbandonare la creazione del ruolo?',\n 'dialog.exitRoleEditing': 'Abbandonare la modifica del ruolo?',\n 'dialog.exitWarning':\n '\\n\\nAbbandonando questa pagina, le informazioni immesse vengono eliminate definitivamente. Uscire?',\n 'dialog.discard': 'Annulla',\n 'dialog.cancel': 'Cancella',\n 'conditionalAccess.condition': 'Condizione',\n 'conditionalAccess.allOf': 'Tutti',\n 'conditionalAccess.anyOf': 'QualunqueDi',\n 'conditionalAccess.not': 'Non',\n 'conditionalAccess.addNestedCondition': 'Aggiungi condizione nidificata',\n 'conditionalAccess.addRule': 'Aggiungi regola',\n 'conditionalAccess.nestedConditionTooltip':\n \"Le condizioni nidificate sono **regole a un livello all'interno di una condizione principale**. Permette di concedere l'accesso appropriato utilizzando autorizzazioni dettagliate basate su varie condizioni. È possibile aggiungere più condizioni nidificate.\",\n 'conditionalAccess.nestedConditionExample':\n \"Ad esempio, è possibile consentire l'accesso a tutti i tipi di entità nella condizione principale e utilizzare una condizione nidificata per limitare l'accesso alle entità di proprietà dell'utente.\",\n 'permissionPolicies.helperText':\n \"Per impostazione predefinita, agli utenti non è concesso l'accesso ad alcun plugin. Per concedere l'accesso all'utente, selezionare i plugin da abilitare. Quindi, selezionare le azioni per cui concedere l'autorizzazione all'utente.\",\n 'permissionPolicies.allPlugins': 'Tutti i plugin ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Errore durante il recupero dei criteri di autorizzazione: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo di risorsa: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n \"Utilizza autorizzazioni personalizzate avanzate per consentire l'accesso a parti specifiche del tipo di risorsa selezionato.\",\n 'permissionPolicies.pluginsSelected': '{{count}} plugin',\n 'permissionPolicies.noPluginsSelected': 'Nessun plugin selezionato',\n 'permissionPolicies.search': 'Ricerca',\n 'permissionPolicies.noRecordsToDisplay': 'Nessun record da visualizzare.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'I plugin selezionati vengono visualizzati qui.',\n 'permissionPolicies.selectPlugins': 'Selezionare i plugin',\n 'permissionPolicies.noPluginsFound': 'Nessun plugin trovato.',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Autorizzazione',\n 'permissionPolicies.policies': 'Criteri',\n 'permissionPolicies.conditional': 'Condizionale',\n 'permissionPolicies.rules': 'regole',\n 'permissionPolicies.rule': 'regola',\n 'permissionPolicies.permissionPolicies': 'Criteri di autorizzazione',\n 'permissionPolicies.permissions': 'autorizzazioni',\n 'common.noResults': 'Nessun risultato per questo intervallo di date.',\n 'common.exportCSV': 'Esporta CSV',\n 'common.csvFilename': 'data-export.csv',\n 'common.noMembers': 'Nessun membro',\n 'common.groups': 'gruppi',\n 'common.group': 'gruppo',\n 'common.users': 'utenti',\n 'common.user': 'utente',\n 'common.use': 'Utilizza',\n 'common.refresh': 'Aggiorna',\n 'common.edit': 'Modifica',\n 'common.unauthorizedToEdit': 'Non autorizzato a modificare',\n 'common.noRecordsFound': 'Nessun record trovato',\n 'common.selectUsersAndGroups': 'Selezionare utenti e gruppi',\n 'common.clearSearch': 'cancella ricerca',\n 'common.closeDrawer': 'Chiudi il riquadro',\n 'common.remove': 'Rimuovi',\n 'common.addRule': 'Aggiungi regola',\n 'common.selectRule': 'Selezionare una regola',\n 'common.rule': 'Regola',\n 'common.removeNestedCondition': 'Rimuovi condizione nidificata',\n 'common.overview': 'Panoramica',\n 'common.about': 'Informazioni',\n 'common.description': 'Descrizione',\n 'common.modifiedBy': 'Modificato da',\n 'common.lastModified': 'Ultima modifica',\n 'common.owner': 'Proprietario',\n 'common.noUsersAndGroupsSelected': 'Nessun utente e gruppo selezionato',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Qui vengono visualizzati gli utenti e i gruppi selezionati.',\n 'common.name': 'Nome',\n 'common.type': 'Tipo',\n 'common.members': 'Membri',\n 'common.actions': 'Azioni',\n 'common.removeMember': 'Rimuovi membro',\n 'common.delete': 'Elimina',\n 'common.deleteRole': 'Elimina ruolo',\n 'common.update': 'Aggiorna',\n 'common.editRole': 'Modifica ruolo',\n 'common.checkingPermissions': 'Controllo delle autorizzazioni in corso…',\n 'common.unauthorizedTo': 'Non autorizzato a {{action}}',\n 'common.performThisAction': 'eseguire questa azione',\n 'common.unableToCreatePermissionPolicies':\n 'Impossibile creare i criteri di autorizzazione.',\n 'common.unableToDeletePermissionPolicies':\n 'Impossibile eliminare i criteri di autorizzazione.',\n 'common.unableToRemoveConditions':\n 'Impossibile rimuovere le condizioni dal ruolo.',\n 'common.unableToUpdateConditions': 'Impossibile aggiornare le condizioni.',\n 'common.unableToAddConditions':\n 'Impossibile aggiungere condizioni al ruolo.',\n 'common.roleActionSuccessfully':\n 'Ruolo {{roleName}} {{action}} eseguito correttamente',\n 'common.unableToFetchRole': 'Impossibile recuperare il ruolo: {{error}}',\n 'common.unableToFetchMembers': 'Impossibile recuperare i membri: {{error}}',\n 'common.roleAction': 'ruolo {{azione}}',\n 'common.membersCount': '{{count}} membri',\n 'common.parentGroupCount': '{{count}} gruppo padre',\n 'common.childGroupsCount': '{{count}} gruppi figlio',\n 'common.searchAndSelectUsersGroups':\n 'Per cercare e selezionare gli utenti e i gruppi da aggiungere. Gli utenti e i gruppi selezionati appariranno nella tabella sottostante.',\n 'common.noUsersAndGroupsFound': 'Nessun utente e gruppo trovato.',\n 'common.errorFetchingUserGroups':\n 'Errore durante il recupero di utenti e gruppi: {{error}}',\n 'common.nameRequired': 'Il nome è obbligatorio',\n 'common.noMemberSelected': 'Nessun membro selezionato',\n 'common.noPluginSelected': 'Nessun plugin selezionato',\n 'common.pluginRequired': 'Il plugin è obbligatorio',\n 'common.permissionRequired': \"L'autorizzazione è obbligatoria\",\n 'common.editCell': 'Modifica...',\n 'common.selectCell': 'Seleziona...',\n 'common.expandRow': 'espandi riga',\n 'common.configureAccessFor': \"Configurare l'accesso per il\",\n 'common.defaultResourceTypeVisible':\n 'Per impostazione predefinita, il tipo di risorsa selezionato è visibile a tutti gli utenti aggiunti. Per limitare o concedere autorizzazioni a regole specifiche del plugin, selezionarle e aggiungere i parametri.',\n },\n});\n\nexport default rbacTranslationIt;\n"],"names":[],"mappings":"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"}
@@ -17,6 +17,7 @@ const rbacMessages = {
17
17
  accessiblePlugins: "Accessible plugins",
18
18
  actions: "Actions"
19
19
  },
20
+ defaultRoleUsersAndGroups: "All users and all groups",
20
21
  emptyContent: "No records found"
21
22
  },
22
23
  toolbar: {
@@ -46,6 +47,7 @@ const rbacMessages = {
46
47
  createRole: "Unable to create role.",
47
48
  editRole: "Unable to edit the role.",
48
49
  deleteRole: "Unable to delete the role.",
50
+ defaultRoleReadOnly: "Default role is read-only.",
49
51
  roleCreatedSuccess: "Role was created successfully but unable to add permission policies to the role.",
50
52
  roleCreatedConditionsSuccess: "Role created successfully but unable to add conditions to the role."
51
53
  },