@backstage-community/plugin-rbac 1.47.1 → 1.47.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/dist/alpha.d.ts +2 -0
- package/dist/components/CreateRole/PermissionPoliciesFormNestedRow.esm.js +1 -1
- package/dist/components/CreateRole/PermissionPoliciesFormNestedRow.esm.js.map +1 -1
- package/dist/components/CreateRole/ReviewStep.esm.js +4 -3
- package/dist/components/CreateRole/ReviewStep.esm.js.map +1 -1
- package/dist/components/RolesList/RolesList.esm.js +6 -1
- package/dist/components/RolesList/RolesList.esm.js.map +1 -1
- package/dist/translations/de.esm.js +2 -0
- package/dist/translations/de.esm.js.map +1 -1
- package/dist/translations/es.esm.js +2 -0
- package/dist/translations/es.esm.js.map +1 -1
- package/dist/translations/fr.esm.js +2 -0
- package/dist/translations/fr.esm.js.map +1 -1
- package/dist/translations/it.esm.js +2 -0
- package/dist/translations/it.esm.js.map +1 -1
- package/dist/translations/ref.esm.js +3 -1
- package/dist/translations/ref.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
### Dependencies
|
|
2
2
|
|
|
3
|
+
## 1.47.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5af1aa9: Fixed excessive vertical padding between table rows and pagination controls in RolesList component.
|
|
8
|
+
- b3dda0c: Fix RBAC conditional access tooltips for disabled buttons
|
|
9
|
+
|
|
10
|
+
## 1.47.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 64d31dd: Add translation for "Permission policies ({{count}})" in ReviewStep and all locale files (en, de, es, fr, it).
|
|
15
|
+
|
|
3
16
|
## 1.47.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ declare const rbacTranslationRef: _backstage_core_plugin_api_alpha.TranslationRe
|
|
|
54
54
|
readonly "roleForm.review.reviewAndCreate": string;
|
|
55
55
|
readonly "roleForm.review.reviewAndSave": string;
|
|
56
56
|
readonly "roleForm.review.nameDescriptionOwner": string;
|
|
57
|
+
readonly "roleForm.review.permissionPoliciesWithCount": string;
|
|
57
58
|
readonly "roleForm.steps.create": string;
|
|
58
59
|
readonly "roleForm.steps.next": string;
|
|
59
60
|
readonly "roleForm.steps.back": string;
|
|
@@ -76,6 +77,7 @@ declare const rbacTranslationRef: _backstage_core_plugin_api_alpha.TranslationRe
|
|
|
76
77
|
readonly "permissionPolicies.errorFetchingPolicies": string;
|
|
77
78
|
readonly "permissionPolicies.resourceTypeTooltip": string;
|
|
78
79
|
readonly "permissionPolicies.advancedPermissionsTooltip": string;
|
|
80
|
+
readonly "permissionPolicies.noAdvancedPermissionsTooltip": string;
|
|
79
81
|
readonly "permissionPolicies.pluginsSelected": string;
|
|
80
82
|
readonly "permissionPolicies.noPluginsSelected": string;
|
|
81
83
|
readonly "permissionPolicies.noRecordsToDisplay": string;
|
|
@@ -29,7 +29,7 @@ const PermissionPoliciesFormNestedRow = ({
|
|
|
29
29
|
}) => {
|
|
30
30
|
const { t } = useTranslation();
|
|
31
31
|
const [sidebarOpen, setSidebarOpen] = useState(false);
|
|
32
|
-
const tooltipTitle = () => /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Typography, { component: "p", align: "center", children: t("permissionPolicies.advancedPermissionsTooltip") }) });
|
|
32
|
+
const tooltipTitle = () => /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Typography, { component: "p", align: "center", children: conditionRulesLength && conditionRulesLength > 0 ? t("permissionPolicies.advancedPermissionsTooltip") : t("permissionPolicies.noAdvancedPermissionsTooltip") }) });
|
|
33
33
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
34
34
|
/* @__PURE__ */ jsxs(TableRow, { children: [
|
|
35
35
|
/* @__PURE__ */ jsx(TableCell, { align: "left", sx: { borderBottom: "none", width: "30%" }, children: /* @__PURE__ */ jsxs(
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PermissionPoliciesFormNestedRow.esm.js","sources":["../../../src/components/CreateRole/PermissionPoliciesFormNestedRow.tsx"],"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 */\nimport Box from '@mui/material/Box';\nimport Checkbox from '@mui/material/Checkbox';\nimport TableCell from '@mui/material/TableCell';\nimport TableRow from '@mui/material/TableRow';\nimport Typography from '@mui/material/Typography';\nimport { useState } from 'react';\nimport { RowPolicy } from './types';\nimport Tooltip from '@mui/material/Tooltip';\nimport IconButton from '@mui/material/IconButton';\nimport ChecklistRtlIcon from '@mui/icons-material/ChecklistRtl';\nimport Badge from '@mui/material/Badge';\nimport { ConditionRulesData, ConditionsData } from '../ConditionalAccess/types';\nimport { ConditionalAccessSidebar } from '../ConditionalAccess/ConditionalAccessSidebar';\nimport InfoOutlinedIcon from '@mui/icons-material/InfoOutlined';\nimport { useTranslation } from '../../hooks/useTranslation';\n\nconst PermissionPoliciesFormNestedRow = ({\n plugin,\n permissionPolicy,\n permissionPolicyRowIndex,\n onSelectPermission,\n policies,\n onSelectPolicy,\n conditionRulesLength,\n totalRulesCount,\n onRemovePermission,\n conditionRulesData,\n conditionsData,\n onAddConditions,\n}: {\n plugin: string;\n permissionPolicy: any;\n permissionPolicyRowIndex: number;\n policies: RowPolicy[];\n conditionRulesLength?: number;\n totalRulesCount: number;\n conditionRulesData?: ConditionRulesData;\n conditionsData?: ConditionsData;\n onSelectPermission: (\n plugin: string,\n permission: string,\n isResourced: boolean,\n policies: string[],\n resourceType?: string,\n ) => void;\n onSelectPolicy: (\n isChecked: boolean,\n policyIndex: number,\n pIndex: number,\n ) => void;\n onRemovePermission: (index: number) => void;\n onAddConditions: (index: number, conditions?: ConditionsData) => void;\n}) => {\n const { t } = useTranslation();\n const [sidebarOpen, setSidebarOpen] = useState(false);\n const tooltipTitle = () => (\n <div>\n <Typography component=\"p\" align=\"center\">\n {t('permissionPolicies.advancedPermissionsTooltip')}\n </Typography>\n </div>\n );\n return (\n <>\n <TableRow>\n <TableCell align=\"left\" sx={{ borderBottom: 'none', width: '30%' }}>\n <Box\n sx={{\n display: 'flex',\n alignItems: 'center',\n }}\n >\n <Checkbox\n onChange={e => {\n if (e.target.checked) {\n onSelectPermission(\n plugin,\n permissionPolicy.permission,\n permissionPolicy.isResourced,\n permissionPolicy.actions,\n permissionPolicy.resourceType,\n );\n } else {\n onRemovePermission(permissionPolicyRowIndex);\n }\n }}\n checked={permissionPolicyRowIndex >= 0}\n />\n {permissionPolicy.permission}\n {permissionPolicy.resourceType ? (\n <Tooltip\n title={t('permissionPolicies.resourceTypeTooltip' as any, {\n resourceType: permissionPolicy.resourceType,\n })}\n placement=\"top\"\n >\n <IconButton aria-label=\"info\" size=\"small\">\n <InfoOutlinedIcon fontSize=\"small\" />\n \n </IconButton>\n </Tooltip>\n ) : null}\n </Box>\n </TableCell>\n <TableCell\n align=\"left\"\n sx={{\n display: 'flex',\n borderBottom: 'none',\n width: '100%',\n }}\n >\n {policies.map((p: RowPolicy, pIndex: number) => (\n <Box\n sx={{ display: 'flex', alignItems: 'center' }}\n key={`${permissionPolicy.permission}-${p.policy}`}\n >\n <Checkbox\n onChange={(_e, checked) =>\n onSelectPolicy(checked, pIndex, permissionPolicyRowIndex)\n }\n checked={p.effect === 'allow'}\n disabled={permissionPolicyRowIndex < 0}\n />\n {p.policy}\n </Box>\n ))}\n </TableCell>\n <TableCell align=\"right\" sx={{ borderBottom: 'none', width: '10%' }}>\n <Tooltip title={tooltipTitle()} placement=\"top\">\n <Typography component=\"span\">\n <IconButton\n aria-label=\"remove\"\n size=\"small\"\n onClick={() => setSidebarOpen(true)}\n disabled={\n permissionPolicyRowIndex < 0 ||\n !permissionPolicy.isResourced ||\n !conditionRulesLength\n }\n sx={{\n ':disabled': { color: theme => theme.palette.grey[400] },\n }}\n >\n <Badge badgeContent={totalRulesCount} color=\"success\">\n <ChecklistRtlIcon />\n </Badge>\n \n </IconButton>\n </Typography>\n </Tooltip>\n </TableCell>\n </TableRow>\n <ConditionalAccessSidebar\n open={sidebarOpen}\n onClose={() => {\n setSidebarOpen(false);\n }}\n onSave={(conditions?: ConditionsData) => {\n onAddConditions(permissionPolicyRowIndex, conditions);\n setSidebarOpen(false);\n }}\n conditionsFormVal={conditionsData}\n selPluginResourceType={permissionPolicy.resourceType}\n conditionRulesData={\n conditionRulesData?.[`${plugin}`]?.[\n `${permissionPolicy.resourceType}`\n ]\n }\n />\n </>\n );\n};\n\nexport default PermissionPoliciesFormNestedRow;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"PermissionPoliciesFormNestedRow.esm.js","sources":["../../../src/components/CreateRole/PermissionPoliciesFormNestedRow.tsx"],"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 */\nimport Box from '@mui/material/Box';\nimport Checkbox from '@mui/material/Checkbox';\nimport TableCell from '@mui/material/TableCell';\nimport TableRow from '@mui/material/TableRow';\nimport Typography from '@mui/material/Typography';\nimport { useState } from 'react';\nimport { RowPolicy } from './types';\nimport Tooltip from '@mui/material/Tooltip';\nimport IconButton from '@mui/material/IconButton';\nimport ChecklistRtlIcon from '@mui/icons-material/ChecklistRtl';\nimport Badge from '@mui/material/Badge';\nimport { ConditionRulesData, ConditionsData } from '../ConditionalAccess/types';\nimport { ConditionalAccessSidebar } from '../ConditionalAccess/ConditionalAccessSidebar';\nimport InfoOutlinedIcon from '@mui/icons-material/InfoOutlined';\nimport { useTranslation } from '../../hooks/useTranslation';\n\nconst PermissionPoliciesFormNestedRow = ({\n plugin,\n permissionPolicy,\n permissionPolicyRowIndex,\n onSelectPermission,\n policies,\n onSelectPolicy,\n conditionRulesLength,\n totalRulesCount,\n onRemovePermission,\n conditionRulesData,\n conditionsData,\n onAddConditions,\n}: {\n plugin: string;\n permissionPolicy: any;\n permissionPolicyRowIndex: number;\n policies: RowPolicy[];\n conditionRulesLength?: number;\n totalRulesCount: number;\n conditionRulesData?: ConditionRulesData;\n conditionsData?: ConditionsData;\n onSelectPermission: (\n plugin: string,\n permission: string,\n isResourced: boolean,\n policies: string[],\n resourceType?: string,\n ) => void;\n onSelectPolicy: (\n isChecked: boolean,\n policyIndex: number,\n pIndex: number,\n ) => void;\n onRemovePermission: (index: number) => void;\n onAddConditions: (index: number, conditions?: ConditionsData) => void;\n}) => {\n const { t } = useTranslation();\n const [sidebarOpen, setSidebarOpen] = useState(false);\n const tooltipTitle = () => (\n <div>\n <Typography component=\"p\" align=\"center\">\n {conditionRulesLength && conditionRulesLength > 0\n ? t('permissionPolicies.advancedPermissionsTooltip')\n : t('permissionPolicies.noAdvancedPermissionsTooltip')}\n </Typography>\n </div>\n );\n return (\n <>\n <TableRow>\n <TableCell align=\"left\" sx={{ borderBottom: 'none', width: '30%' }}>\n <Box\n sx={{\n display: 'flex',\n alignItems: 'center',\n }}\n >\n <Checkbox\n onChange={e => {\n if (e.target.checked) {\n onSelectPermission(\n plugin,\n permissionPolicy.permission,\n permissionPolicy.isResourced,\n permissionPolicy.actions,\n permissionPolicy.resourceType,\n );\n } else {\n onRemovePermission(permissionPolicyRowIndex);\n }\n }}\n checked={permissionPolicyRowIndex >= 0}\n />\n {permissionPolicy.permission}\n {permissionPolicy.resourceType ? (\n <Tooltip\n title={t('permissionPolicies.resourceTypeTooltip' as any, {\n resourceType: permissionPolicy.resourceType,\n })}\n placement=\"top\"\n >\n <IconButton aria-label=\"info\" size=\"small\">\n <InfoOutlinedIcon fontSize=\"small\" />\n \n </IconButton>\n </Tooltip>\n ) : null}\n </Box>\n </TableCell>\n <TableCell\n align=\"left\"\n sx={{\n display: 'flex',\n borderBottom: 'none',\n width: '100%',\n }}\n >\n {policies.map((p: RowPolicy, pIndex: number) => (\n <Box\n sx={{ display: 'flex', alignItems: 'center' }}\n key={`${permissionPolicy.permission}-${p.policy}`}\n >\n <Checkbox\n onChange={(_e, checked) =>\n onSelectPolicy(checked, pIndex, permissionPolicyRowIndex)\n }\n checked={p.effect === 'allow'}\n disabled={permissionPolicyRowIndex < 0}\n />\n {p.policy}\n </Box>\n ))}\n </TableCell>\n <TableCell align=\"right\" sx={{ borderBottom: 'none', width: '10%' }}>\n <Tooltip title={tooltipTitle()} placement=\"top\">\n <Typography component=\"span\">\n <IconButton\n aria-label=\"remove\"\n size=\"small\"\n onClick={() => setSidebarOpen(true)}\n disabled={\n permissionPolicyRowIndex < 0 ||\n !permissionPolicy.isResourced ||\n !conditionRulesLength\n }\n sx={{\n ':disabled': { color: theme => theme.palette.grey[400] },\n }}\n >\n <Badge badgeContent={totalRulesCount} color=\"success\">\n <ChecklistRtlIcon />\n </Badge>\n \n </IconButton>\n </Typography>\n </Tooltip>\n </TableCell>\n </TableRow>\n <ConditionalAccessSidebar\n open={sidebarOpen}\n onClose={() => {\n setSidebarOpen(false);\n }}\n onSave={(conditions?: ConditionsData) => {\n onAddConditions(permissionPolicyRowIndex, conditions);\n setSidebarOpen(false);\n }}\n conditionsFormVal={conditionsData}\n selPluginResourceType={permissionPolicy.resourceType}\n conditionRulesData={\n conditionRulesData?.[`${plugin}`]?.[\n `${permissionPolicy.resourceType}`\n ]\n }\n />\n </>\n );\n};\n\nexport default PermissionPoliciesFormNestedRow;\n"],"names":[],"mappings":"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"}
|
|
@@ -10,9 +10,10 @@ import { useTranslation } from '../../hooks/useTranslation.esm.js';
|
|
|
10
10
|
|
|
11
11
|
const tableMetadata = (values, t) => {
|
|
12
12
|
const membersKey = values.selectedMembers.length > 0 ? `${t("table.headers.usersAndGroups")} (${getMembers(values.selectedMembers, t)})` : t("table.headers.usersAndGroups");
|
|
13
|
-
const permissionPoliciesKey =
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
const permissionPoliciesKey = t(
|
|
14
|
+
"roleForm.review.permissionPoliciesWithCount",
|
|
15
|
+
{ count: String(getPermissionsNumber(values)) }
|
|
16
|
+
);
|
|
16
17
|
return {
|
|
17
18
|
[t("roleForm.review.nameDescriptionOwner")]: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
18
19
|
/* @__PURE__ */ jsx(Typography, { sx: { margin: "0px" }, children: values.name }),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ReviewStep.esm.js","sources":["../../../src/components/CreateRole/ReviewStep.tsx"],"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 */\nimport { StructuredMetadataTable } from '@backstage/core-components';\n\nimport Typography from '@mui/material/Typography';\n\nimport { getPermissionsNumber } from '../../utils/create-role-utils';\nimport { getMembers } from '../../utils/rbac-utils';\nimport { reviewStepMemebersTableColumns } from './AddedMembersTableColumn';\nimport { ReviewStepTable } from './ReviewStepTable';\nimport { selectedPermissionPoliciesColumn } from './SelectedPermissionPoliciesColumn';\nimport { RoleFormValues } from './types';\nimport { useTranslation } from '../../hooks/useTranslation';\nimport { TranslationFunction } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from '../../translations';\n\nconst tableMetadata = (\n values: RoleFormValues,\n t: TranslationFunction<typeof rbacTranslationRef.T>,\n) => {\n const membersKey =\n values.selectedMembers.length > 0\n ? `${t('table.headers.usersAndGroups')} (${getMembers(values.selectedMembers, t)})`\n : t('table.headers.usersAndGroups');\n const permissionPoliciesKey =
|
|
1
|
+
{"version":3,"file":"ReviewStep.esm.js","sources":["../../../src/components/CreateRole/ReviewStep.tsx"],"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 */\nimport { StructuredMetadataTable } from '@backstage/core-components';\n\nimport Typography from '@mui/material/Typography';\n\nimport { getPermissionsNumber } from '../../utils/create-role-utils';\nimport { getMembers } from '../../utils/rbac-utils';\nimport { reviewStepMemebersTableColumns } from './AddedMembersTableColumn';\nimport { ReviewStepTable } from './ReviewStepTable';\nimport { selectedPermissionPoliciesColumn } from './SelectedPermissionPoliciesColumn';\nimport { RoleFormValues } from './types';\nimport { useTranslation } from '../../hooks/useTranslation';\nimport { TranslationFunction } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from '../../translations';\n\nconst tableMetadata = (\n values: RoleFormValues,\n t: TranslationFunction<typeof rbacTranslationRef.T>,\n) => {\n const membersKey =\n values.selectedMembers.length > 0\n ? `${t('table.headers.usersAndGroups')} (${getMembers(values.selectedMembers, t)})`\n : t('table.headers.usersAndGroups');\n const permissionPoliciesKey = t(\n 'roleForm.review.permissionPoliciesWithCount' as any,\n { count: String(getPermissionsNumber(values)) },\n );\n return {\n [t('roleForm.review.nameDescriptionOwner')]: (\n <>\n <Typography sx={{ margin: '0px' }}>{values.name}</Typography>\n <br />\n <Typography sx={{ margin: '0px' }}>\n {values.description || '-'}\n </Typography>\n <br />\n <Typography sx={{ margin: '0px' }}>{values.owner || '-'}</Typography>\n </>\n ),\n [membersKey]: (\n <ReviewStepTable\n rows={values.selectedMembers}\n columns={reviewStepMemebersTableColumns(t)}\n tableWrapperWidth={550}\n />\n ),\n [permissionPoliciesKey]: (\n <ReviewStepTable\n rows={values.permissionPoliciesRows}\n columns={selectedPermissionPoliciesColumn(t)}\n tableWrapperWidth={700}\n />\n ),\n };\n};\n\nexport const ReviewStep = ({\n values,\n isEditing,\n}: {\n values: RoleFormValues;\n isEditing: boolean;\n}) => {\n const { t } = useTranslation();\n\n return (\n <div style={{ overflow: 'auto' }}>\n <Typography variant=\"h6\">\n {isEditing\n ? t('roleForm.review.reviewAndSave')\n : t('roleForm.review.reviewAndCreate')}\n </Typography>\n <StructuredMetadataTable\n dense\n metadata={tableMetadata(values, t)}\n options={{ titleFormat: (key: string) => key }}\n />\n </div>\n );\n};\n"],"names":[],"mappings":";;;;;;;;;;AA6BA,MAAM,aAAA,GAAgB,CACpB,MAAA,EACA,CACG,KAAA;AACH,EAAA,MAAM,aACJ,MAAO,CAAA,eAAA,CAAgB,MAAS,GAAA,CAAA,GAC5B,GAAG,CAAE,CAAA,8BAA8B,CAAC,CAAA,EAAA,EAAK,WAAW,MAAO,CAAA,eAAA,EAAiB,CAAC,CAAC,CAAA,CAAA,CAAA,GAC9E,EAAE,8BAA8B,CAAA;AACtC,EAAA,MAAM,qBAAwB,GAAA,CAAA;AAAA,IAC5B,6CAAA;AAAA,IACA,EAAE,KAAO,EAAA,MAAA,CAAO,oBAAqB,CAAA,MAAM,CAAC,CAAE;AAAA,GAChD;AACA,EAAO,OAAA;AAAA,IACL,CAAC,CAAA,CAAE,sCAAsC,CAAC,mBAEtC,IAAA,CAAA,QAAA,EAAA,EAAA,QAAA,EAAA;AAAA,sBAAA,GAAA,CAAC,cAAW,EAAI,EAAA,EAAE,QAAQ,KAAM,EAAA,EAAI,iBAAO,IAAK,EAAA,CAAA;AAAA,0BAC/C,IAAG,EAAA,EAAA,CAAA;AAAA,sBACJ,GAAA,CAAC,cAAW,EAAI,EAAA,EAAE,QAAQ,KAAM,EAAA,EAC7B,QAAO,EAAA,MAAA,CAAA,WAAA,IAAe,GACzB,EAAA,CAAA;AAAA,0BACC,IAAG,EAAA,EAAA,CAAA;AAAA,sBACJ,GAAA,CAAC,cAAW,EAAI,EAAA,EAAE,QAAQ,KAAM,EAAA,EAAI,QAAO,EAAA,MAAA,CAAA,KAAA,IAAS,GAAI,EAAA;AAAA,KAC1D,EAAA,CAAA;AAAA,IAEF,CAAC,UAAU,mBACT,GAAA;AAAA,MAAC,eAAA;AAAA,MAAA;AAAA,QACC,MAAM,MAAO,CAAA,eAAA;AAAA,QACb,OAAA,EAAS,+BAA+B,CAAC,CAAA;AAAA,QACzC,iBAAmB,EAAA;AAAA;AAAA,KACrB;AAAA,IAEF,CAAC,qBAAqB,mBACpB,GAAA;AAAA,MAAC,eAAA;AAAA,MAAA;AAAA,QACC,MAAM,MAAO,CAAA,sBAAA;AAAA,QACb,OAAA,EAAS,iCAAiC,CAAC,CAAA;AAAA,QAC3C,iBAAmB,EAAA;AAAA;AAAA;AACrB,GAEJ;AACF,CAAA;AAEO,MAAM,aAAa,CAAC;AAAA,EACzB,MAAA;AAAA,EACA;AACF,CAGM,KAAA;AACJ,EAAM,MAAA,EAAE,CAAE,EAAA,GAAI,cAAe,EAAA;AAE7B,EAAA,4BACG,KAAI,EAAA,EAAA,KAAA,EAAO,EAAE,QAAA,EAAU,QACtB,EAAA,QAAA,EAAA;AAAA,oBAAC,GAAA,CAAA,UAAA,EAAA,EAAW,SAAQ,IACjB,EAAA,QAAA,EAAA,SAAA,GACG,EAAE,+BAA+B,CAAA,GACjC,CAAE,CAAA,iCAAiC,CACzC,EAAA,CAAA;AAAA,oBACA,GAAA;AAAA,MAAC,uBAAA;AAAA,MAAA;AAAA,QACC,KAAK,EAAA,IAAA;AAAA,QACL,QAAA,EAAU,aAAc,CAAA,MAAA,EAAQ,CAAC,CAAA;AAAA,QACjC,OAAS,EAAA,EAAE,WAAa,EAAA,CAAC,QAAgB,GAAI;AAAA;AAAA;AAC/C,GACF,EAAA,CAAA;AAEJ;;;;"}
|
|
@@ -84,7 +84,12 @@ const RolesList = () => {
|
|
|
84
84
|
title: !loading && data?.length ? t("table.titleWithCount", {
|
|
85
85
|
count: filteredRoles.length.toString()
|
|
86
86
|
}) : t("table.title"),
|
|
87
|
-
options: {
|
|
87
|
+
options: {
|
|
88
|
+
padding: "dense",
|
|
89
|
+
search: true,
|
|
90
|
+
paging: true,
|
|
91
|
+
emptyRowsWhenPaging: false
|
|
92
|
+
},
|
|
88
93
|
data,
|
|
89
94
|
isLoading: loading,
|
|
90
95
|
columns,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RolesList.esm.js","sources":["../../../src/components/RolesList/RolesList.tsx"],"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 */\nimport { useState, useMemo } from 'react';\n\nimport { Progress, Table, WarningPanel } from '@backstage/core-components';\n\nimport Box from '@mui/material/Box';\n\nimport { useCheckIfLicensePluginEnabled } from '../../hooks/useCheckIfLicensePluginEnabled';\nimport { useLocationToast } from '../../hooks/useLocationToast';\nimport { useRoles } from '../../hooks/useRoles';\nimport { filterTableData } from '../../utils/filter-table-data';\nimport DownloadCSVLink from '../DownloadUserStatistics';\nimport { SnackbarAlert } from '../SnackbarAlert';\nimport { useToast } from '../ToastContext';\nimport DeleteRoleDialog from './DeleteRoleDialog';\nimport { getColumns } from './RolesListColumns';\nimport { RolesListToolbar } from './RolesListToolbar';\nimport { useDeleteDialog } from '../DeleteDialogContext';\nimport { useTranslation } from '../../hooks/useTranslation';\nimport { useLanguage } from '../../hooks/useLanguage';\n\nexport const RolesList = () => {\n const { toastMessage, setToastMessage } = useToast();\n const { openDialog, setOpenDialog, deleteComponent } = useDeleteDialog();\n const { t } = useTranslation();\n const locale = useLanguage();\n\n useLocationToast(setToastMessage);\n const [searchText, setSearchText] = useState<string>();\n const [page, setPage] = useState(0);\n const [pageSize, setPageSize] = useState(5);\n const { loading, data, retry, createRoleAllowed, createRoleLoading, error } =\n useRoles(page, pageSize);\n\n const closeDialog = () => {\n setOpenDialog(false);\n retry.roleRetry();\n retry.policiesRetry();\n };\n\n const onAlertClose = () => {\n setToastMessage('');\n };\n const columns = getColumns(t, locale);\n const filteredRoles = useMemo(\n () => filterTableData({ data, columns, searchText, locale }),\n [data, searchText, columns, locale],\n );\n\n const getErrorWarning = () => {\n const errorWarningArr = [\n { message: error?.rolesError, title: t('errors.fetchRoles') },\n {\n message: error?.policiesError,\n title: t('errors.fetchPolicies'),\n },\n {\n message: error?.roleConditionError,\n title: t('errors.fetchConditions'),\n },\n ];\n\n return (\n errorWarningArr.find(({ message }) => message) || {\n message: '',\n title: '',\n }\n );\n };\n\n const errorWarning = getErrorWarning();\n\n const isLicensePluginEnabled = useCheckIfLicensePluginEnabled();\n if (isLicensePluginEnabled.loading) {\n return <Progress />;\n }\n\n return (\n <>\n <SnackbarAlert toastMessage={toastMessage} onAlertClose={onAlertClose} />\n <RolesListToolbar\n createRoleAllowed={createRoleAllowed}\n createRoleLoading={createRoleLoading}\n />\n {errorWarning.message && (\n <div style={{ paddingBottom: '16px' }}>\n <WarningPanel\n message={errorWarning.message}\n title={errorWarning.title}\n severity=\"error\"\n />\n </div>\n )}\n <Table\n title={\n !loading && data?.length\n ? t('table.titleWithCount' as any, {\n count: filteredRoles.length.toString(),\n })\n : t('table.title')\n }\n options={{
|
|
1
|
+
{"version":3,"file":"RolesList.esm.js","sources":["../../../src/components/RolesList/RolesList.tsx"],"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 */\nimport { useState, useMemo } from 'react';\n\nimport { Progress, Table, WarningPanel } from '@backstage/core-components';\n\nimport Box from '@mui/material/Box';\n\nimport { useCheckIfLicensePluginEnabled } from '../../hooks/useCheckIfLicensePluginEnabled';\nimport { useLocationToast } from '../../hooks/useLocationToast';\nimport { useRoles } from '../../hooks/useRoles';\nimport { filterTableData } from '../../utils/filter-table-data';\nimport DownloadCSVLink from '../DownloadUserStatistics';\nimport { SnackbarAlert } from '../SnackbarAlert';\nimport { useToast } from '../ToastContext';\nimport DeleteRoleDialog from './DeleteRoleDialog';\nimport { getColumns } from './RolesListColumns';\nimport { RolesListToolbar } from './RolesListToolbar';\nimport { useDeleteDialog } from '../DeleteDialogContext';\nimport { useTranslation } from '../../hooks/useTranslation';\nimport { useLanguage } from '../../hooks/useLanguage';\n\nexport const RolesList = () => {\n const { toastMessage, setToastMessage } = useToast();\n const { openDialog, setOpenDialog, deleteComponent } = useDeleteDialog();\n const { t } = useTranslation();\n const locale = useLanguage();\n\n useLocationToast(setToastMessage);\n const [searchText, setSearchText] = useState<string>();\n const [page, setPage] = useState(0);\n const [pageSize, setPageSize] = useState(5);\n const { loading, data, retry, createRoleAllowed, createRoleLoading, error } =\n useRoles(page, pageSize);\n\n const closeDialog = () => {\n setOpenDialog(false);\n retry.roleRetry();\n retry.policiesRetry();\n };\n\n const onAlertClose = () => {\n setToastMessage('');\n };\n const columns = getColumns(t, locale);\n const filteredRoles = useMemo(\n () => filterTableData({ data, columns, searchText, locale }),\n [data, searchText, columns, locale],\n );\n\n const getErrorWarning = () => {\n const errorWarningArr = [\n { message: error?.rolesError, title: t('errors.fetchRoles') },\n {\n message: error?.policiesError,\n title: t('errors.fetchPolicies'),\n },\n {\n message: error?.roleConditionError,\n title: t('errors.fetchConditions'),\n },\n ];\n\n return (\n errorWarningArr.find(({ message }) => message) || {\n message: '',\n title: '',\n }\n );\n };\n\n const errorWarning = getErrorWarning();\n\n const isLicensePluginEnabled = useCheckIfLicensePluginEnabled();\n if (isLicensePluginEnabled.loading) {\n return <Progress />;\n }\n\n return (\n <>\n <SnackbarAlert toastMessage={toastMessage} onAlertClose={onAlertClose} />\n <RolesListToolbar\n createRoleAllowed={createRoleAllowed}\n createRoleLoading={createRoleLoading}\n />\n {errorWarning.message && (\n <div style={{ paddingBottom: '16px' }}>\n <WarningPanel\n message={errorWarning.message}\n title={errorWarning.title}\n severity=\"error\"\n />\n </div>\n )}\n <Table\n title={\n !loading && data?.length\n ? t('table.titleWithCount' as any, {\n count: filteredRoles.length.toString(),\n })\n : t('table.title')\n }\n options={{\n padding: 'dense',\n search: true,\n paging: true,\n emptyRowsWhenPaging: false,\n }}\n data={data}\n isLoading={loading}\n columns={columns}\n emptyContent={\n <Box\n data-testid=\"roles-table-empty\"\n sx={{ display: 'flex', justifyContent: 'center', p: 2 }}\n >\n {t('table.emptyContent')}\n </Box>\n }\n onSearchChange={setSearchText}\n onPageChange={setPage}\n onRowsPerPageChange={newPageSize => {\n setPageSize(newPageSize);\n setPage(0);\n }}\n localization={{\n toolbar: { searchPlaceholder: t('table.searchPlaceholder') },\n pagination: { labelRowsSelect: t('table.labelRowsSelect') },\n }}\n />\n {isLicensePluginEnabled.isEnabled && <DownloadCSVLink />}\n {openDialog && (\n <DeleteRoleDialog\n open={openDialog}\n closeDialog={closeDialog}\n roleName={deleteComponent.roleName}\n propOptions={{\n memberRefs:\n data.find(d => d.name === deleteComponent.roleName)?.members ||\n [],\n permissions:\n data.find(d => d.name === deleteComponent.roleName)\n ?.permissions || 0,\n }}\n />\n )}\n </>\n );\n};\n"],"names":[],"mappings":"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"}
|
|
@@ -48,6 +48,7 @@ const rbacTranslationDe = createTranslationMessages({
|
|
|
48
48
|
"roleForm.review.reviewAndCreate": "\xDCberpr\xFCfen und erstellen",
|
|
49
49
|
"roleForm.review.reviewAndSave": "\xDCberpr\xFCfen und speichern",
|
|
50
50
|
"roleForm.review.nameDescriptionOwner": "Name, Beschreibung und Eigent\xFCmer der Rolle",
|
|
51
|
+
"roleForm.review.permissionPoliciesWithCount": "Berechtigungsrichtlinien ({{count}})",
|
|
51
52
|
"roleForm.steps.next": "Weiter",
|
|
52
53
|
"roleForm.steps.back": "Zur\xFCck",
|
|
53
54
|
"roleForm.steps.cancel": "Abbrechen",
|
|
@@ -154,6 +155,7 @@ const rbacTranslationDe = createTranslationMessages({
|
|
|
154
155
|
"permissionPolicies.errorFetchingPolicies": "Fehler beim Abrufen der Berechtigungsrichtlinien: {{error}}",
|
|
155
156
|
"permissionPolicies.resourceTypeTooltip": "Ressourcentyp: {{resourceType}}",
|
|
156
157
|
"permissionPolicies.advancedPermissionsTooltip": "Verwenden Sie erweiterte angepasste Berechtigungen, um Zugriff auf bestimmte Teile des ausgew\xE4hlten Ressourcentyps zu gew\xE4hren.",
|
|
158
|
+
"permissionPolicies.noAdvancedPermissionsTooltip": "Erweiterte Anpassung wird f\xFCr diesen Ressourcentyp nicht unterst\xFCtzt.",
|
|
157
159
|
"permissionPolicies.pluginsSelected": "{{count}} Plugins",
|
|
158
160
|
"permissionPolicies.noPluginsSelected": "Keine Plugins ausgew\xE4hlt",
|
|
159
161
|
"permissionPolicies.search": "Suchen",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"de.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationDe = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Rolle erstellen',\n 'page.editRole': 'Rolle bearbeiten',\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': 'Zugängliche Plugins',\n 'table.headers.actions': 'Aktionen',\n 'table.emptyContent': 'Keine Datensätze gefunden',\n 'table.searchPlaceholder': 'Filtern',\n 'table.labelRowsSelect': 'Zeilen',\n 'toolbar.createButton': 'Erstellen',\n 'toolbar.warning.title': 'Rolle kann 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 verfügbar sind, da eine Rolle nicht ohne Benutzer/Gruppen erstellt werden kann, und dass die Rolle, die mit Ihrem Benutzer verknüpft ist, die Berechtigungsrichtlinien <link>hier</link> erwähnt.',\n 'toolbar.warning.linkText': 'hier',\n 'toolbar.warning.note': 'Hinweis',\n 'toolbar.warning.noteText':\n 'Selbst nach dem Importieren von Benutzern/Gruppen in den Katalog und dem Anwenden der oben genannten Berechtigungen, wenn die Erstellen/Bearbeiten-Schaltfläche weiterhin deaktiviert ist, wenden Sie sich bitte an Ihren Administrator, da Sie möglicherweise bedingt vom Zugriff auf die Erstellen/Bearbeiten-Schaltfläche eingeschränkt sind.',\n 'errors.notFound': 'Nicht gefunden',\n 'errors.unauthorized': 'Nicht berechtigt, Rolle zu erstellen',\n 'errors.rbacDisabled':\n 'Aktivieren Sie das RBAC-Backend-Plugin, um diese Funktion zu verwenden.',\n 'errors.rbacDisabledInfo':\n 'Um RBAC zu aktivieren, setzen Sie `permission.enabled` auf `true` in der App-Konfigurationsdatei.',\n 'errors.fetchRoles': 'Beim Abrufen der Rollen ist etwas schief gelaufen',\n 'errors.fetchRole': 'Beim Abrufen der Rolle ist etwas schief gelaufen',\n 'errors.fetchPolicies':\n 'Beim Abrufen der Berechtigungsrichtlinien ist etwas schief gelaufen',\n 'errors.fetchPoliciesErr': 'Fehler beim Abrufen der Richtlinien. {{error}}',\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 etwas schief gelaufen',\n 'errors.fetchUsersAndGroups':\n 'Beim Abrufen der Benutzer und Gruppen ist etwas schief gelaufen',\n 'errors.createRole': 'Rolle kann nicht erstellt werden.',\n 'errors.editRole': 'Rolle kann nicht bearbeitet werden.',\n 'errors.deleteRole': 'Rolle kann nicht gelöscht werden.',\n 'errors.roleCreatedSuccess':\n 'Rolle wurde erfolgreich erstellt, aber Berechtigungsrichtlinien konnten nicht zur Rolle hinzugefügt werden.',\n 'errors.roleCreatedConditionsSuccess':\n 'Rolle wurde erfolgreich erstellt, aber Bedingungen konnten nicht 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.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': 'Name der Rolle eingeben',\n 'roleForm.fields.description.label': 'Beschreibung',\n 'roleForm.fields.description.helperText':\n 'Geben Sie eine kurze Beschreibung der Rolle ein (Der 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, die die Berechtigung haben soll, diese Rolle zu bearbeiten und zusätzliche Rollen zu erstellen. Im nächsten Schritt geben Sie an, welche Benutzer sie ihren Rollen zuweisen können und auf welche Plugins sie Zugriff gewähren können. Wenn leer gelassen, wird automatisch der Autor bei der Erstellung zugewiesen.',\n 'deleteDialog.title': 'Rolle löschen',\n 'deleteDialog.question': 'Diese Rolle löschen?',\n 'deleteDialog.confirmation':\n 'Bist du sicher, dass du die Rolle **{{roleName}}** löschen möchtest?\\n\\nDas Löschen dieser Rolle ist irreversibel und entfernt ihre Funktionalität aus dem System. Bitte vorsichtig vorgehen.\\n\\nDie **{{members}}**, die mit dieser Rolle verbunden sind, verlieren den Zugriff auf alle in dieser Rolle angegebenen **{{permissions}} Berechtigungsrichtlinien**.',\n 'deleteDialog.roleNameLabel': 'Rollenname',\n 'deleteDialog.roleNameHelper':\n 'Geben Sie den Namen der Rolle zur Bestätigung ein',\n 'deleteDialog.deleteButton': 'Löschen',\n 'deleteDialog.cancelButton': 'Abbrechen',\n 'deleteDialog.successMessage': 'Rolle {{roleName}} erfolgreich gelöscht',\n 'snackbar.success': 'Erfolg',\n 'common.noResults': 'Keine Ergebnisse für diesen Zeitraum.',\n 'common.exportCSV': 'CSV exportieren',\n 'common.csvFilename': 'daten-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': 'Nicht berechtigt zu 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': 'Schublade schließen',\n 'common.remove': 'Entfernen',\n 'common.addRule': 'Regel hinzufügen',\n 'common.selectRule': 'Eine Regel auswählen',\n 'common.rule': 'Regel',\n 'common.removeNestedCondition': 'Verschachtelte Bedingung entfernen',\n 'common.overview': 'Übersicht',\n 'common.about': 'Über',\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 autorisiert für {{action}}',\n 'common.performThisAction': 'diese Aktion ausführen',\n 'common.unableToCreatePermissionPolicies':\n 'Berechtigungsrichtlinien können nicht erstellt werden.',\n 'common.unableToDeletePermissionPolicies':\n 'Berechtigungsrichtlinien können nicht gelöscht werden.',\n 'common.unableToRemoveConditions':\n 'Bedingungen können nicht von der Rolle entfernt werden.',\n 'common.unableToUpdateConditions':\n 'Bedingungen können nicht aktualisiert werden.',\n 'common.unableToAddConditions':\n 'Bedingungen können nicht zur Rolle hinzugefügt werden.',\n 'common.roleActionSuccessfully':\n 'Rolle {{roleName}} {{action}} erfolgreich',\n 'common.unableToFetchRole': 'Rolle kann nicht abgerufen werden: {{error}}',\n 'common.unableToFetchMembers':\n 'Mitglieder können nicht abgerufen werden: {{error}}',\n 'common.roleAction': '{{action}} 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 Tabelle unten 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 den Zugriff einschränken oder Berechtigungen für bestimmte Plugin-Regeln gewähren möchten, wählen Sie diese aus und fügen Sie die Parameter hinzu.',\n 'conditionalAccess.condition': 'Bedingung',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\n 'conditionalAccess.addNestedCondition':\n 'Verschachtelte Bedingung hinzufügen',\n 'conditionalAccess.addRule': 'Regel hinzufügen',\n 'conditionalAccess.nestedConditionTooltip':\n 'Verschachtelte Bedingungen sind **1-Layer-Regeln innerhalb einer Hauptbedingung**. Sie ermöglichen es Ihnen, angemessenen Zugriff zu gewähren, indem Sie detaillierte Berechtigungen basierend auf verschiedenen Bedingungen verwenden. Sie können mehrere verschachtelte Bedingungen hinzufügen.',\n 'conditionalAccess.nestedConditionExample':\n 'Sie können beispielsweise Zugriff auf alle Entitätstypen in der Hauptbedingung gewähren und eine verschachtelte Bedingung verwenden, um den Zugriff auf Entitäten zu beschränken, die dem Benutzer gehören.',\n 'dialog.cancelRoleCreation': 'Rollenerstellung abbrechen',\n 'dialog.exitRoleCreation': 'Rollenerstellung beenden?',\n 'dialog.exitRoleEditing': 'Rollenbearbeitung beenden?',\n 'dialog.exitWarning':\n '\\n\\nDas Verlassen dieser Seite verwirft dauerhaft die von Ihnen eingegebenen Informationen.\\n\\nMöchten Sie wirklich beenden?',\n 'dialog.discard': 'Verwerfen',\n 'dialog.cancel': 'Abbrechen',\n 'permissionPolicies.helperText':\n 'Standardmäßig erhalten Benutzer keinen Zugriff auf Plugins. Um Benutzerzugriff zu gewähren, wählen Sie die Plugins aus, die Sie aktivieren möchten. Wählen Sie dann aus, welche Aktionen Sie dem Benutzer erlauben 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 Zugriff auf bestimmte Teile des ausgewählten Ressourcentyps zu gewähren.',\n 'permissionPolicies.pluginsSelected': '{{count}} Plugins',\n 'permissionPolicies.noPluginsSelected': 'Keine Plugins ausgewählt',\n 'permissionPolicies.search': 'Suchen',\n 'permissionPolicies.noRecordsToDisplay': 'Keine Datensätze anzuzeigen.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Ausgewählte Plugins erscheinen hier.',\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 },\n});\n\nexport default rbacTranslationDe;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"de.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationDe = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Rolle erstellen',\n 'page.editRole': 'Rolle bearbeiten',\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': 'Zugängliche Plugins',\n 'table.headers.actions': 'Aktionen',\n 'table.emptyContent': 'Keine Datensätze gefunden',\n 'table.searchPlaceholder': 'Filtern',\n 'table.labelRowsSelect': 'Zeilen',\n 'toolbar.createButton': 'Erstellen',\n 'toolbar.warning.title': 'Rolle kann 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 verfügbar sind, da eine Rolle nicht ohne Benutzer/Gruppen erstellt werden kann, und dass die Rolle, die mit Ihrem Benutzer verknüpft ist, die Berechtigungsrichtlinien <link>hier</link> erwähnt.',\n 'toolbar.warning.linkText': 'hier',\n 'toolbar.warning.note': 'Hinweis',\n 'toolbar.warning.noteText':\n 'Selbst nach dem Importieren von Benutzern/Gruppen in den Katalog und dem Anwenden der oben genannten Berechtigungen, wenn die Erstellen/Bearbeiten-Schaltfläche weiterhin deaktiviert ist, wenden Sie sich bitte an Ihren Administrator, da Sie möglicherweise bedingt vom Zugriff auf die Erstellen/Bearbeiten-Schaltfläche eingeschränkt sind.',\n 'errors.notFound': 'Nicht gefunden',\n 'errors.unauthorized': 'Nicht berechtigt, Rolle zu erstellen',\n 'errors.rbacDisabled':\n 'Aktivieren Sie das RBAC-Backend-Plugin, um diese Funktion zu verwenden.',\n 'errors.rbacDisabledInfo':\n 'Um RBAC zu aktivieren, setzen Sie `permission.enabled` auf `true` in der App-Konfigurationsdatei.',\n 'errors.fetchRoles': 'Beim Abrufen der Rollen ist etwas schief gelaufen',\n 'errors.fetchRole': 'Beim Abrufen der Rolle ist etwas schief gelaufen',\n 'errors.fetchPolicies':\n 'Beim Abrufen der Berechtigungsrichtlinien ist etwas schief gelaufen',\n 'errors.fetchPoliciesErr': 'Fehler beim Abrufen der Richtlinien. {{error}}',\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 etwas schief gelaufen',\n 'errors.fetchUsersAndGroups':\n 'Beim Abrufen der Benutzer und Gruppen ist etwas schief gelaufen',\n 'errors.createRole': 'Rolle kann nicht erstellt werden.',\n 'errors.editRole': 'Rolle kann nicht bearbeitet werden.',\n 'errors.deleteRole': 'Rolle kann nicht gelöscht werden.',\n 'errors.roleCreatedSuccess':\n 'Rolle wurde erfolgreich erstellt, aber Berechtigungsrichtlinien konnten nicht zur Rolle hinzugefügt werden.',\n 'errors.roleCreatedConditionsSuccess':\n 'Rolle wurde erfolgreich erstellt, aber Bedingungen konnten nicht 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': 'Name der Rolle eingeben',\n 'roleForm.fields.description.label': 'Beschreibung',\n 'roleForm.fields.description.helperText':\n 'Geben Sie eine kurze Beschreibung der Rolle ein (Der 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, die die Berechtigung haben soll, diese Rolle zu bearbeiten und zusätzliche Rollen zu erstellen. Im nächsten Schritt geben Sie an, welche Benutzer sie ihren Rollen zuweisen können und auf welche Plugins sie Zugriff gewähren können. Wenn leer gelassen, wird automatisch der Autor bei der Erstellung zugewiesen.',\n 'deleteDialog.title': 'Rolle löschen',\n 'deleteDialog.question': 'Diese Rolle löschen?',\n 'deleteDialog.confirmation':\n 'Bist du sicher, dass du die Rolle **{{roleName}}** löschen möchtest?\\n\\nDas Löschen dieser Rolle ist irreversibel und entfernt ihre Funktionalität aus dem System. Bitte vorsichtig vorgehen.\\n\\nDie **{{members}}**, die mit dieser Rolle verbunden sind, verlieren den Zugriff auf alle in dieser Rolle angegebenen **{{permissions}} Berechtigungsrichtlinien**.',\n 'deleteDialog.roleNameLabel': 'Rollenname',\n 'deleteDialog.roleNameHelper':\n 'Geben Sie den Namen der Rolle zur Bestätigung ein',\n 'deleteDialog.deleteButton': 'Löschen',\n 'deleteDialog.cancelButton': 'Abbrechen',\n 'deleteDialog.successMessage': 'Rolle {{roleName}} erfolgreich gelöscht',\n 'snackbar.success': 'Erfolg',\n 'common.noResults': 'Keine Ergebnisse für diesen Zeitraum.',\n 'common.exportCSV': 'CSV exportieren',\n 'common.csvFilename': 'daten-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': 'Nicht berechtigt zu 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': 'Schublade schließen',\n 'common.remove': 'Entfernen',\n 'common.addRule': 'Regel hinzufügen',\n 'common.selectRule': 'Eine Regel auswählen',\n 'common.rule': 'Regel',\n 'common.removeNestedCondition': 'Verschachtelte Bedingung entfernen',\n 'common.overview': 'Übersicht',\n 'common.about': 'Über',\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 autorisiert für {{action}}',\n 'common.performThisAction': 'diese Aktion ausführen',\n 'common.unableToCreatePermissionPolicies':\n 'Berechtigungsrichtlinien können nicht erstellt werden.',\n 'common.unableToDeletePermissionPolicies':\n 'Berechtigungsrichtlinien können nicht gelöscht werden.',\n 'common.unableToRemoveConditions':\n 'Bedingungen können nicht von der Rolle entfernt werden.',\n 'common.unableToUpdateConditions':\n 'Bedingungen können nicht aktualisiert werden.',\n 'common.unableToAddConditions':\n 'Bedingungen können nicht zur Rolle hinzugefügt werden.',\n 'common.roleActionSuccessfully':\n 'Rolle {{roleName}} {{action}} erfolgreich',\n 'common.unableToFetchRole': 'Rolle kann nicht abgerufen werden: {{error}}',\n 'common.unableToFetchMembers':\n 'Mitglieder können nicht abgerufen werden: {{error}}',\n 'common.roleAction': '{{action}} 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 Tabelle unten 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 den Zugriff einschränken oder Berechtigungen für bestimmte Plugin-Regeln gewähren möchten, wählen Sie diese aus und fügen Sie die Parameter hinzu.',\n 'conditionalAccess.condition': 'Bedingung',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\n 'conditionalAccess.addNestedCondition':\n 'Verschachtelte Bedingung hinzufügen',\n 'conditionalAccess.addRule': 'Regel hinzufügen',\n 'conditionalAccess.nestedConditionTooltip':\n 'Verschachtelte Bedingungen sind **1-Layer-Regeln innerhalb einer Hauptbedingung**. Sie ermöglichen es Ihnen, angemessenen Zugriff zu gewähren, indem Sie detaillierte Berechtigungen basierend auf verschiedenen Bedingungen verwenden. Sie können mehrere verschachtelte Bedingungen hinzufügen.',\n 'conditionalAccess.nestedConditionExample':\n 'Sie können beispielsweise Zugriff auf alle Entitätstypen in der Hauptbedingung gewähren und eine verschachtelte Bedingung verwenden, um den Zugriff auf Entitäten zu beschränken, die dem Benutzer gehören.',\n 'dialog.cancelRoleCreation': 'Rollenerstellung abbrechen',\n 'dialog.exitRoleCreation': 'Rollenerstellung beenden?',\n 'dialog.exitRoleEditing': 'Rollenbearbeitung beenden?',\n 'dialog.exitWarning':\n '\\n\\nDas Verlassen dieser Seite verwirft dauerhaft die von Ihnen eingegebenen Informationen.\\n\\nMöchten Sie wirklich beenden?',\n 'dialog.discard': 'Verwerfen',\n 'dialog.cancel': 'Abbrechen',\n 'permissionPolicies.helperText':\n 'Standardmäßig erhalten Benutzer keinen Zugriff auf Plugins. Um Benutzerzugriff zu gewähren, wählen Sie die Plugins aus, die Sie aktivieren möchten. Wählen Sie dann aus, welche Aktionen Sie dem Benutzer erlauben 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 Zugriff auf bestimmte Teile des ausgewählten Ressourcentyps zu gewähren.',\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'Erweiterte Anpassung wird 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': 'Keine Datensätze anzuzeigen.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Ausgewählte Plugins erscheinen hier.',\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 },\n});\n\nexport default rbacTranslationDe;\n"],"names":[],"mappings":"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"}
|
|
@@ -48,6 +48,7 @@ const rbacTranslationEs = createTranslationMessages({
|
|
|
48
48
|
"roleForm.review.reviewAndCreate": "Revisar y crear",
|
|
49
49
|
"roleForm.review.reviewAndSave": "Revisar y guardar",
|
|
50
50
|
"roleForm.review.nameDescriptionOwner": "Nombre, descripci\xF3n y propietario del rol",
|
|
51
|
+
"roleForm.review.permissionPoliciesWithCount": "Pol\xEDticas de permisos ({{count}})",
|
|
51
52
|
"roleForm.steps.next": "Siguiente",
|
|
52
53
|
"roleForm.steps.back": "Atr\xE1s",
|
|
53
54
|
"roleForm.steps.cancel": "Cancelar",
|
|
@@ -154,6 +155,7 @@ const rbacTranslationEs = createTranslationMessages({
|
|
|
154
155
|
"permissionPolicies.errorFetchingPolicies": "Error al obtener las pol\xEDticas de permisos: {{error}}",
|
|
155
156
|
"permissionPolicies.resourceTypeTooltip": "tipo de recurso: {{resourceType}}",
|
|
156
157
|
"permissionPolicies.advancedPermissionsTooltip": "Usa permisos personalizados avanzados para permitir el acceso a partes espec\xEDficas del tipo de recurso seleccionado.",
|
|
158
|
+
"permissionPolicies.noAdvancedPermissionsTooltip": "La personalizaci\xF3n avanzada no es compatible con este tipo de recurso.",
|
|
157
159
|
"permissionPolicies.pluginsSelected": "{{count}} plugins",
|
|
158
160
|
"permissionPolicies.noPluginsSelected": "Ning\xFAn plugin seleccionado",
|
|
159
161
|
"permissionPolicies.search": "Buscar",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationEs = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crear rol',\n 'page.editRole': 'Editar rol',\n 'table.searchPlaceholder': 'Filtrar',\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': 'Plugins accesibles',\n 'table.headers.actions': 'Acciones',\n 'table.emptyContent': 'No se encontraron registros',\n 'table.labelRowsSelect': 'Filas',\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/editar rol, asegúrate 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 también el rol asociado con tu 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 ingerir usuarios/grupos en el catálogo y aplicar los permisos mencionados anteriormente, si el botón crear/editar sigue deshabilitado, por favor contacta a tu administrador ya que podrías estar condicionalmente restringido de acceder al botón crear/editar.',\n 'errors.notFound': 'No encontrado',\n 'errors.unauthorized': 'No autorizado para crear un rol',\n 'errors.rbacDisabled':\n 'Habilita el plugin backend RBAC para usar esta funcionalidad.',\n 'errors.rbacDisabledInfo':\n 'Para habilitar RBAC, establece `permission.enabled` en `true` en el archivo de configuración de la aplicación.',\n 'errors.fetchRoles': 'Algo salió mal al obtener los roles',\n 'errors.fetchRole': 'Algo salió mal al obtener el rol',\n 'errors.fetchPolicies':\n 'Algo salió mal al obtener las políticas de permisos',\n 'errors.fetchPoliciesErr': 'Error al obtener las políticas. {{error}}',\n 'errors.fetchPlugins': 'Error al obtener los plugins. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Error al obtener las políticas de permisos condicionales. {{error}}',\n 'errors.fetchConditions':\n 'Algo salió mal al obtener las condiciones del rol',\n 'errors.fetchUsersAndGroups': 'Algo salió mal al obtener usuarios y grupos',\n 'errors.createRole': 'No se puede crear el rol.',\n 'errors.editRole': 'No se puede editar el rol.',\n 'errors.deleteRole': 'No se puede eliminar el rol.',\n 'errors.roleCreatedSuccess':\n 'El rol fue creado exitosamente pero no se pudieron agregar las políticas de permisos al rol.',\n 'errors.roleCreatedConditionsSuccess':\n 'El rol fue creado exitosamente pero no se pudieron agregar condiciones al rol.',\n 'roleForm.titles.createRole': 'Crear rol',\n 'roleForm.titles.editRole': 'Editar rol',\n 'roleForm.titles.nameAndDescription':\n 'Ingresa nombre y 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.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': 'Ingresa el nombre del rol',\n 'roleForm.fields.description.label': 'Descripción',\n 'roleForm.fields.description.helperText':\n 'Ingresa una breve descripción del rol (El propósito del rol)',\n 'roleForm.fields.owner.label': 'Propietario',\n 'roleForm.fields.owner.helperText':\n 'Opcional: Ingresa un usuario o grupo que tendrá permiso para editar este rol y crear roles adicionales. En el siguiente paso, especifica qué usuarios pueden asignar a sus roles y a qué plugins pueden otorgar acceso. Si se deja en blanco, asigna automáticamente el autor en la creación.',\n 'deleteDialog.title': 'Eliminar rol',\n 'deleteDialog.question': '¿Eliminar este rol?',\n 'deleteDialog.confirmation':\n '¿Estás seguro de que quieres eliminar el rol **{{roleName}}**?\\n\\nEliminar este rol es irreversible y eliminará su funcionalidad del sistema. Procede con precaución.\\n\\nLos **{{members}}** asociados con este rol perderán el acceso a todas las **{{permissions}} políticas de permisos** especificadas en este rol.',\n 'deleteDialog.roleNameLabel': 'Nombre del rol',\n 'deleteDialog.roleNameHelper': 'Escribe el nombre del rol para confirmar',\n 'deleteDialog.deleteButton': 'Eliminar',\n 'deleteDialog.cancelButton': 'Cancelar',\n 'deleteDialog.successMessage': 'Rol {{roleName}} eliminado exitosamente',\n 'snackbar.success': 'Éxito',\n 'common.noResults': 'No hay resultados para este rango de fechas.',\n 'common.exportCSV': 'Exportar CSV',\n 'common.csvFilename': 'exportacion-datos.csv',\n 'common.noMembers': 'Sin 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': 'Editar',\n 'common.unauthorizedToEdit': 'No autorizado para editar',\n 'common.noRecordsFound': 'No se encontraron registros',\n 'common.selectUsersAndGroups': 'Seleccionar usuarios y grupos',\n 'common.clearSearch': 'limpiar búsqueda',\n 'common.closeDrawer': 'Cerrar el cajón',\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': 'Resumen',\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': 'No se seleccionaron usuarios y grupos',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Los usuarios y grupos seleccionados aparecen aquí.',\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': 'Editar rol',\n 'common.checkingPermissions': 'Verificando permisos…',\n 'common.unauthorizedTo': 'No autorizado para {{action}}',\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': 'Rol {{roleName}} {{action}} exitosamente',\n 'common.unableToFetchRole': 'No se puede obtener el rol: {{error}}',\n 'common.unableToFetchMembers':\n 'No se pueden obtener los miembros: {{error}}',\n 'common.roleAction': '{{action}} rol',\n 'common.membersCount': '{{count}} miembros',\n 'common.parentGroupCount': '{{count}} grupo padre',\n 'common.childGroupsCount': '{{count}} grupos hijos',\n 'common.searchAndSelectUsersGroups':\n 'Busque y seleccione usuarios y grupos para agregar. Los usuarios y grupos seleccionados aparecerán en la tabla a continuación.',\n 'common.noUsersAndGroupsFound': 'No se encontraron usuarios y grupos.',\n 'common.errorFetchingUserGroups':\n 'Error al obtener usuarios y grupos: {{error}}',\n 'common.nameRequired': 'El nombre es requerido',\n 'common.noMemberSelected': 'Ningún miembro seleccionado',\n 'common.noPluginSelected': 'Ningún plugin seleccionado',\n 'common.pluginRequired': 'El plugin es requerido',\n 'common.permissionRequired': 'El permiso es requerido',\n 'common.editCell': 'Editar...',\n 'common.selectCell': 'Seleccionar...',\n 'common.expandRow': 'expandir fila',\n 'common.configureAccessFor': 'Configurar acceso para',\n 'common.defaultResourceTypeVisible':\n 'Por defecto, el tipo de recurso seleccionado es visible para todos los usuarios agregados. Si quieres restringir o otorgar permisos a reglas de plugin específicas, selecciónalas y agrega los parámetros.',\n 'conditionalAccess.condition': 'Condición',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\n 'conditionalAccess.addNestedCondition': 'Agregar condición anidada',\n 'conditionalAccess.addRule': 'Agregar regla',\n 'conditionalAccess.nestedConditionTooltip':\n 'Las condiciones anidadas son **reglas de 1 nivel dentro de una condición principal**. Te permiten permitir un acceso apropiado utilizando permisos detallados basados en varias condiciones. Puedes agregar múltiples condiciones anidadas.',\n 'conditionalAccess.nestedConditionExample':\n 'Por ejemplo, puedes 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 propiedad del usuario.',\n 'dialog.cancelRoleCreation': 'Cancelar creación de rol',\n 'dialog.exitRoleCreation': '¿Salir de la creación de rol?',\n 'dialog.exitRoleEditing': '¿Salir de la edición de rol?',\n 'dialog.exitWarning':\n '\\n\\nSalir de esta página descartará permanentemente la información que ingresaste.\\n\\n¿Estás seguro de que quieres salir?',\n 'dialog.discard': 'Descartar',\n 'dialog.cancel': 'Cancelar',\n 'permissionPolicies.helperText':\n 'Por defecto, a los usuarios no se les otorga acceso a ningún plugin. Para otorgar acceso a los usuarios, selecciona los plugins que quieres habilitar. Luego, selecciona qué acciones te gustaría dar permiso al usuario.',\n 'permissionPolicies.allPlugins': 'Todos los plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Error al obtener las políticas de permisos: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo de recurso: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Usa permisos personalizados avanzados para permitir el acceso a partes específicas del tipo de recurso seleccionado.',\n 'permissionPolicies.pluginsSelected': '{{count}} plugins',\n 'permissionPolicies.noPluginsSelected': 'Ningún plugin seleccionado',\n 'permissionPolicies.search': 'Buscar',\n 'permissionPolicies.noRecordsToDisplay': 'No hay registros para mostrar.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Los plugins seleccionados aparecen aquí.',\n 'permissionPolicies.selectPlugins': 'Seleccionar plugins',\n 'permissionPolicies.noPluginsFound': 'No se encontraron plugins.',\n 'permissionPolicies.plugin': 'Plugin',\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 },\n});\n\nexport default rbacTranslationEs;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"es.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationEs = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crear rol',\n 'page.editRole': 'Editar rol',\n 'table.searchPlaceholder': 'Filtrar',\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': 'Plugins accesibles',\n 'table.headers.actions': 'Acciones',\n 'table.emptyContent': 'No se encontraron registros',\n 'table.labelRowsSelect': 'Filas',\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/editar rol, asegúrate 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 también el rol asociado con tu 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 ingerir usuarios/grupos en el catálogo y aplicar los permisos mencionados anteriormente, si el botón crear/editar sigue deshabilitado, por favor contacta a tu administrador ya que podrías estar condicionalmente restringido de acceder al botón crear/editar.',\n 'errors.notFound': 'No encontrado',\n 'errors.unauthorized': 'No autorizado para crear un rol',\n 'errors.rbacDisabled':\n 'Habilita el plugin backend RBAC para usar esta funcionalidad.',\n 'errors.rbacDisabledInfo':\n 'Para habilitar RBAC, establece `permission.enabled` en `true` en el archivo de configuración de la aplicación.',\n 'errors.fetchRoles': 'Algo salió mal al obtener los roles',\n 'errors.fetchRole': 'Algo salió mal al obtener el rol',\n 'errors.fetchPolicies':\n 'Algo salió mal al obtener las políticas de permisos',\n 'errors.fetchPoliciesErr': 'Error al obtener las políticas. {{error}}',\n 'errors.fetchPlugins': 'Error al obtener los plugins. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Error al obtener las políticas de permisos condicionales. {{error}}',\n 'errors.fetchConditions':\n 'Algo salió mal al obtener las condiciones del rol',\n 'errors.fetchUsersAndGroups': 'Algo salió mal al obtener usuarios y grupos',\n 'errors.createRole': 'No se puede crear el rol.',\n 'errors.editRole': 'No se puede editar el rol.',\n 'errors.deleteRole': 'No se puede eliminar el rol.',\n 'errors.roleCreatedSuccess':\n 'El rol fue creado exitosamente pero no se pudieron agregar las políticas de permisos al rol.',\n 'errors.roleCreatedConditionsSuccess':\n 'El rol fue creado exitosamente pero no se pudieron agregar condiciones al rol.',\n 'roleForm.titles.createRole': 'Crear rol',\n 'roleForm.titles.editRole': 'Editar rol',\n 'roleForm.titles.nameAndDescription':\n 'Ingresa nombre y 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': 'Ingresa el nombre del rol',\n 'roleForm.fields.description.label': 'Descripción',\n 'roleForm.fields.description.helperText':\n 'Ingresa una breve descripción del rol (El propósito del rol)',\n 'roleForm.fields.owner.label': 'Propietario',\n 'roleForm.fields.owner.helperText':\n 'Opcional: Ingresa un usuario o grupo que tendrá permiso para editar este rol y crear roles adicionales. En el siguiente paso, especifica qué usuarios pueden asignar a sus roles y a qué plugins pueden otorgar acceso. Si se deja en blanco, asigna automáticamente el autor en la creación.',\n 'deleteDialog.title': 'Eliminar rol',\n 'deleteDialog.question': '¿Eliminar este rol?',\n 'deleteDialog.confirmation':\n '¿Estás seguro de que quieres eliminar el rol **{{roleName}}**?\\n\\nEliminar este rol es irreversible y eliminará su funcionalidad del sistema. Procede con precaución.\\n\\nLos **{{members}}** asociados con este rol perderán el acceso a todas las **{{permissions}} políticas de permisos** especificadas en este rol.',\n 'deleteDialog.roleNameLabel': 'Nombre del rol',\n 'deleteDialog.roleNameHelper': 'Escribe el nombre del rol para confirmar',\n 'deleteDialog.deleteButton': 'Eliminar',\n 'deleteDialog.cancelButton': 'Cancelar',\n 'deleteDialog.successMessage': 'Rol {{roleName}} eliminado exitosamente',\n 'snackbar.success': 'Éxito',\n 'common.noResults': 'No hay resultados para este rango de fechas.',\n 'common.exportCSV': 'Exportar CSV',\n 'common.csvFilename': 'exportacion-datos.csv',\n 'common.noMembers': 'Sin 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': 'Editar',\n 'common.unauthorizedToEdit': 'No autorizado para editar',\n 'common.noRecordsFound': 'No se encontraron registros',\n 'common.selectUsersAndGroups': 'Seleccionar usuarios y grupos',\n 'common.clearSearch': 'limpiar búsqueda',\n 'common.closeDrawer': 'Cerrar el cajón',\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': 'Resumen',\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': 'No se seleccionaron usuarios y grupos',\n 'common.selectedUsersAndGroupsAppearHere':\n 'Los usuarios y grupos seleccionados aparecen aquí.',\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': 'Editar rol',\n 'common.checkingPermissions': 'Verificando permisos…',\n 'common.unauthorizedTo': 'No autorizado para {{action}}',\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': 'Rol {{roleName}} {{action}} exitosamente',\n 'common.unableToFetchRole': 'No se puede obtener el rol: {{error}}',\n 'common.unableToFetchMembers':\n 'No se pueden obtener los miembros: {{error}}',\n 'common.roleAction': '{{action}} rol',\n 'common.membersCount': '{{count}} miembros',\n 'common.parentGroupCount': '{{count}} grupo padre',\n 'common.childGroupsCount': '{{count}} grupos hijos',\n 'common.searchAndSelectUsersGroups':\n 'Busque y seleccione usuarios y grupos para agregar. Los usuarios y grupos seleccionados aparecerán en la tabla a continuación.',\n 'common.noUsersAndGroupsFound': 'No se encontraron usuarios y grupos.',\n 'common.errorFetchingUserGroups':\n 'Error al obtener usuarios y grupos: {{error}}',\n 'common.nameRequired': 'El nombre es requerido',\n 'common.noMemberSelected': 'Ningún miembro seleccionado',\n 'common.noPluginSelected': 'Ningún plugin seleccionado',\n 'common.pluginRequired': 'El plugin es requerido',\n 'common.permissionRequired': 'El permiso es requerido',\n 'common.editCell': 'Editar...',\n 'common.selectCell': 'Seleccionar...',\n 'common.expandRow': 'expandir fila',\n 'common.configureAccessFor': 'Configurar acceso para',\n 'common.defaultResourceTypeVisible':\n 'Por defecto, el tipo de recurso seleccionado es visible para todos los usuarios agregados. Si quieres restringir o otorgar permisos a reglas de plugin específicas, selecciónalas y agrega los parámetros.',\n 'conditionalAccess.condition': 'Condición',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\n 'conditionalAccess.addNestedCondition': 'Agregar condición anidada',\n 'conditionalAccess.addRule': 'Agregar regla',\n 'conditionalAccess.nestedConditionTooltip':\n 'Las condiciones anidadas son **reglas de 1 nivel dentro de una condición principal**. Te permiten permitir un acceso apropiado utilizando permisos detallados basados en varias condiciones. Puedes agregar múltiples condiciones anidadas.',\n 'conditionalAccess.nestedConditionExample':\n 'Por ejemplo, puedes 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 propiedad del usuario.',\n 'dialog.cancelRoleCreation': 'Cancelar creación de rol',\n 'dialog.exitRoleCreation': '¿Salir de la creación de rol?',\n 'dialog.exitRoleEditing': '¿Salir de la edición de rol?',\n 'dialog.exitWarning':\n '\\n\\nSalir de esta página descartará permanentemente la información que ingresaste.\\n\\n¿Estás seguro de que quieres salir?',\n 'dialog.discard': 'Descartar',\n 'dialog.cancel': 'Cancelar',\n 'permissionPolicies.helperText':\n 'Por defecto, a los usuarios no se les otorga acceso a ningún plugin. Para otorgar acceso a los usuarios, selecciona los plugins que quieres habilitar. Luego, selecciona qué acciones te gustaría dar permiso al usuario.',\n 'permissionPolicies.allPlugins': 'Todos los plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Error al obtener las políticas de permisos: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo de recurso: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n 'Usa permisos personalizados avanzados para permitir el acceso a partes específicas del tipo de recurso seleccionado.',\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'La personalización avanzada no es compatible con este tipo de recurso.',\n 'permissionPolicies.pluginsSelected': '{{count}} plugins',\n 'permissionPolicies.noPluginsSelected': 'Ningún plugin seleccionado',\n 'permissionPolicies.search': 'Buscar',\n 'permissionPolicies.noRecordsToDisplay': 'No hay registros para mostrar.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'Los plugins seleccionados aparecen aquí.',\n 'permissionPolicies.selectPlugins': 'Seleccionar plugins',\n 'permissionPolicies.noPluginsFound': 'No se encontraron plugins.',\n 'permissionPolicies.plugin': 'Plugin',\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 },\n});\n\nexport default rbacTranslationEs;\n"],"names":[],"mappings":"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"}
|
|
@@ -48,6 +48,7 @@ const rbacTranslationFr = createTranslationMessages({
|
|
|
48
48
|
"roleForm.review.reviewAndCreate": "Examiner et cr\xE9er",
|
|
49
49
|
"roleForm.review.reviewAndSave": "Examiner et sauvegarder",
|
|
50
50
|
"roleForm.review.nameDescriptionOwner": "Nom, description et propri\xE9taire du r\xF4le",
|
|
51
|
+
"roleForm.review.permissionPoliciesWithCount": "Politiques de permissions ({{count}})",
|
|
51
52
|
"roleForm.steps.next": "Suivant",
|
|
52
53
|
"roleForm.steps.back": "Retour",
|
|
53
54
|
"roleForm.steps.cancel": "Annuler",
|
|
@@ -154,6 +155,7 @@ const rbacTranslationFr = createTranslationMessages({
|
|
|
154
155
|
"permissionPolicies.errorFetchingPolicies": "Erreur lors de la r\xE9cup\xE9ration des politiques de permissions : {{error}}",
|
|
155
156
|
"permissionPolicies.resourceTypeTooltip": "type de ressource : {{resourceType}}",
|
|
156
157
|
"permissionPolicies.advancedPermissionsTooltip": "Utilisez des permissions personnalis\xE9es avanc\xE9es pour autoriser l'acc\xE8s \xE0 des parties sp\xE9cifiques du type de ressource s\xE9lectionn\xE9.",
|
|
158
|
+
"permissionPolicies.noAdvancedPermissionsTooltip": "La personnalisation avanc\xE9e n\u2019est pas prise en charge pour ce type de ressource.",
|
|
157
159
|
"permissionPolicies.pluginsSelected": "{{count}} plugins",
|
|
158
160
|
"permissionPolicies.noPluginsSelected": "Aucun plugin s\xE9lectionn\xE9",
|
|
159
161
|
"permissionPolicies.search": "Rechercher",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fr.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationFr = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Créer un rôle',\n 'page.editRole': 'Modifier le rôle',\n 'table.searchPlaceholder': 'Filtrer',\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': 'Actions',\n 'table.emptyContent': 'Aucun enregistrement trouvé',\n 'table.labelRowsSelect': 'Rangées',\n 'toolbar.createButton': 'Créer',\n 'toolbar.warning.title': 'Impossible de créer un rôle.',\n 'toolbar.warning.message':\n 'Pour activer le bouton créer/modifier le 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 avoir les politiques de permissions 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é les utilisateurs/groupes dans le catalogue et appliqué les permissions ci-dessus, si le bouton créer/modifier est toujours désactivé, veuillez contacter votre administrateur car vous pourriez être conditionnellement restreint d'accéder au bouton créer/modifier.\",\n 'errors.notFound': 'Non trouvé',\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 de configuration de l'application.\",\n 'errors.fetchRoles':\n \"Quelque chose s'est mal passé lors de la récupération des rôles\",\n 'errors.fetchRole':\n \"Quelque chose s'est mal passé lors de la récupération du rôle\",\n 'errors.fetchPolicies':\n \"Quelque chose s'est mal passé lors de la récupération des politiques de permission\",\n 'errors.fetchPoliciesErr':\n 'Erreur lors de la récupération des politiques. {{error}}',\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 de permissions conditionnelles. {{error}}',\n 'errors.fetchConditions':\n \"Quelque chose s'est mal passé lors de la récupération des conditions de rôle\",\n 'errors.fetchUsersAndGroups':\n \"Quelque chose s'est mal passé lors de la récupération des utilisateurs et 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 impossible d'ajouter les politiques de permission au rôle.\",\n 'errors.roleCreatedConditionsSuccess':\n \"Le rôle a été 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 de permission',\n 'roleForm.review.reviewAndCreate': 'Examiner et créer',\n 'roleForm.review.reviewAndSave': 'Examiner et sauvegarder',\n 'roleForm.review.nameDescriptionOwner':\n 'Nom, description et propriétaire du rôle',\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': 'Enregistrer',\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 'Entrez 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 \"Optionnel : Entrez un utilisateur ou un groupe qui aura la permission de modifier ce rôle et de créer des rôles supplémentaires. À l'étape suivante, spécifiez quels utilisateurs ils peuvent assigner à leurs rôles et quels plugins ils peuvent accorder l'accès. Si laissé vide, assigne 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}}**?\\n\\nSupprimer ce rôle est irréversible et supprimera sa fonctionnalité du système. Procédez avec prudence.\\n\\nLes **{{members}}** associés à ce rôle perdront l'accès à toutes les **{{permissions}} politiques de permission** 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': 'Rôle {{roleName}} supprimé avec succès',\n 'snackbar.success': 'Succès',\n 'common.noResults': 'Aucun résultat pour cette plage de dates.',\n 'common.exportCSV': 'Exporter CSV',\n 'common.csvFilename': 'export-donnees.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': 'Actualiser',\n 'common.edit': 'Modifier',\n 'common.unauthorizedToEdit': 'Non autorisé à modifier',\n 'common.noRecordsFound': 'Aucun enregistrement trouvé',\n 'common.selectUsersAndGroups': 'Sélectionner les utilisateurs et groupes',\n 'common.clearSearch': 'effacer la recherche',\n 'common.closeDrawer': 'Fermer le tiroir',\n 'common.remove': 'Supprimer',\n 'common.addRule': 'Ajouter une règle',\n 'common.selectRule': 'Sélectionner une règle',\n 'common.rule': 'Règle',\n 'common.removeNestedCondition': 'Supprimer la condition imbriquée',\n 'common.overview': 'Aperçu',\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 et 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': 'Actions',\n 'common.removeMember': 'Supprimer le membre',\n 'common.delete': 'Supprimer',\n 'common.deleteRole': 'Supprimer le rôle',\n 'common.update': 'Mettre à jour',\n 'common.editRole': 'Modifier le rôle',\n 'common.checkingPermissions': 'Vérification des permissions…',\n 'common.unauthorizedTo': 'Non autorisé pour {{action}}',\n 'common.performThisAction': 'effectuer cette action',\n 'common.unableToCreatePermissionPolicies':\n 'Impossible de créer les politiques de permissions.',\n 'common.unableToDeletePermissionPolicies':\n 'Impossible de supprimer les politiques de permissions.',\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': '{{action}} rôle',\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 groupes à ajouter. Les utilisateurs et groupes sélectionnés apparaîtront dans le tableau ci-dessous.',\n 'common.noUsersAndGroupsFound': 'Aucun utilisateur et groupe trouvé.',\n 'common.errorFetchingUserGroups':\n 'Erreur lors de la récupération des utilisateurs et groupes : {{error}}',\n 'common.nameRequired': 'Le nom est requis',\n 'common.noMemberSelected': 'Aucun membre sélectionné',\n 'common.noPluginSelected': 'Aucun plugin sélectionné',\n 'common.pluginRequired': 'Le plugin est requis',\n 'common.permissionRequired': 'La permission 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\",\n 'common.defaultResourceTypeVisible':\n 'Par défaut, le type de ressource sélectionné est visible pour tous les utilisateurs ajoutés. Si vous souhaitez restreindre ou accorder des permissions à des règles de plugin spécifiques, sélectionnez-les et ajoutez les paramètres.',\n 'conditionalAccess.condition': 'Condition',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\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 de 1 couche au sein d'une condition principale**. Elles vous permettent de permettre un accès approprié en utilisant des permissions 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 'dialog.cancelRoleCreation': 'Annuler la création de rôle',\n 'dialog.exitRoleCreation': 'Quitter la création de rôle ?',\n 'dialog.exitRoleEditing': 'Quitter la modification de rôle ?',\n 'dialog.exitWarning':\n '\\n\\nQuitter cette page supprimera définitivement les informations que vous avez saisies.\\n\\nÊtes-vous sûr de vouloir quitter ?',\n 'dialog.discard': 'Ignorer',\n 'dialog.cancel': 'Annuler',\n 'permissionPolicies.helperText':\n \"Par défaut, les utilisateurs n'ont pas accès aux plugins. Pour accorder l'accès aux utilisateurs, sélectionnez les plugins que vous souhaitez activer. Ensuite, sélectionnez les actions que vous souhaitez autoriser pour l'utilisateur.\",\n 'permissionPolicies.allPlugins': 'Tous les plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Erreur lors de la récupération des politiques de permissions : {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'type de ressource : {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n \"Utilisez des permissions 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': 'Rechercher',\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': 'Permission',\n 'permissionPolicies.policies': 'Politiques',\n 'permissionPolicies.conditional': 'Conditionnel',\n 'permissionPolicies.rules': 'règles',\n 'permissionPolicies.rule': 'règle',\n 'permissionPolicies.permissionPolicies': 'Politiques de permissions',\n 'permissionPolicies.permissions': 'permissions',\n },\n});\n\nexport default rbacTranslationFr;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fr.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationFr = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Créer un rôle',\n 'page.editRole': 'Modifier le rôle',\n 'table.searchPlaceholder': 'Filtrer',\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': 'Actions',\n 'table.emptyContent': 'Aucun enregistrement trouvé',\n 'table.labelRowsSelect': 'Rangées',\n 'toolbar.createButton': 'Créer',\n 'toolbar.warning.title': 'Impossible de créer un rôle.',\n 'toolbar.warning.message':\n 'Pour activer le bouton créer/modifier le 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 avoir les politiques de permissions 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é les utilisateurs/groupes dans le catalogue et appliqué les permissions ci-dessus, si le bouton créer/modifier est toujours désactivé, veuillez contacter votre administrateur car vous pourriez être conditionnellement restreint d'accéder au bouton créer/modifier.\",\n 'errors.notFound': 'Non trouvé',\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 de configuration de l'application.\",\n 'errors.fetchRoles':\n \"Quelque chose s'est mal passé lors de la récupération des rôles\",\n 'errors.fetchRole':\n \"Quelque chose s'est mal passé lors de la récupération du rôle\",\n 'errors.fetchPolicies':\n \"Quelque chose s'est mal passé lors de la récupération des politiques de permission\",\n 'errors.fetchPoliciesErr':\n 'Erreur lors de la récupération des politiques. {{error}}',\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 de permissions conditionnelles. {{error}}',\n 'errors.fetchConditions':\n \"Quelque chose s'est mal passé lors de la récupération des conditions de rôle\",\n 'errors.fetchUsersAndGroups':\n \"Quelque chose s'est mal passé lors de la récupération des utilisateurs et 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 impossible d'ajouter les politiques de permission au rôle.\",\n 'errors.roleCreatedConditionsSuccess':\n \"Le rôle a été 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 de permission',\n 'roleForm.review.reviewAndCreate': 'Examiner et créer',\n 'roleForm.review.reviewAndSave': 'Examiner et sauvegarder',\n 'roleForm.review.nameDescriptionOwner':\n 'Nom, description et propriétaire du rôle',\n 'roleForm.review.permissionPoliciesWithCount':\n 'Politiques de permissions ({{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': 'Enregistrer',\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 'Entrez 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 \"Optionnel : Entrez un utilisateur ou un groupe qui aura la permission de modifier ce rôle et de créer des rôles supplémentaires. À l'étape suivante, spécifiez quels utilisateurs ils peuvent assigner à leurs rôles et quels plugins ils peuvent accorder l'accès. Si laissé vide, assigne 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}}**?\\n\\nSupprimer ce rôle est irréversible et supprimera sa fonctionnalité du système. Procédez avec prudence.\\n\\nLes **{{members}}** associés à ce rôle perdront l'accès à toutes les **{{permissions}} politiques de permission** 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': 'Rôle {{roleName}} supprimé avec succès',\n 'snackbar.success': 'Succès',\n 'common.noResults': 'Aucun résultat pour cette plage de dates.',\n 'common.exportCSV': 'Exporter CSV',\n 'common.csvFilename': 'export-donnees.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': 'Actualiser',\n 'common.edit': 'Modifier',\n 'common.unauthorizedToEdit': 'Non autorisé à modifier',\n 'common.noRecordsFound': 'Aucun enregistrement trouvé',\n 'common.selectUsersAndGroups': 'Sélectionner les utilisateurs et groupes',\n 'common.clearSearch': 'effacer la recherche',\n 'common.closeDrawer': 'Fermer le tiroir',\n 'common.remove': 'Supprimer',\n 'common.addRule': 'Ajouter une règle',\n 'common.selectRule': 'Sélectionner une règle',\n 'common.rule': 'Règle',\n 'common.removeNestedCondition': 'Supprimer la condition imbriquée',\n 'common.overview': 'Aperçu',\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 et 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': 'Actions',\n 'common.removeMember': 'Supprimer le membre',\n 'common.delete': 'Supprimer',\n 'common.deleteRole': 'Supprimer le rôle',\n 'common.update': 'Mettre à jour',\n 'common.editRole': 'Modifier le rôle',\n 'common.checkingPermissions': 'Vérification des permissions…',\n 'common.unauthorizedTo': 'Non autorisé pour {{action}}',\n 'common.performThisAction': 'effectuer cette action',\n 'common.unableToCreatePermissionPolicies':\n 'Impossible de créer les politiques de permissions.',\n 'common.unableToDeletePermissionPolicies':\n 'Impossible de supprimer les politiques de permissions.',\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': '{{action}} rôle',\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 groupes à ajouter. Les utilisateurs et groupes sélectionnés apparaîtront dans le tableau ci-dessous.',\n 'common.noUsersAndGroupsFound': 'Aucun utilisateur et groupe trouvé.',\n 'common.errorFetchingUserGroups':\n 'Erreur lors de la récupération des utilisateurs et groupes : {{error}}',\n 'common.nameRequired': 'Le nom est requis',\n 'common.noMemberSelected': 'Aucun membre sélectionné',\n 'common.noPluginSelected': 'Aucun plugin sélectionné',\n 'common.pluginRequired': 'Le plugin est requis',\n 'common.permissionRequired': 'La permission 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\",\n 'common.defaultResourceTypeVisible':\n 'Par défaut, le type de ressource sélectionné est visible pour tous les utilisateurs ajoutés. Si vous souhaitez restreindre ou accorder des permissions à des règles de plugin spécifiques, sélectionnez-les et ajoutez les paramètres.',\n 'conditionalAccess.condition': 'Condition',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\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 de 1 couche au sein d'une condition principale**. Elles vous permettent de permettre un accès approprié en utilisant des permissions 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 'dialog.cancelRoleCreation': 'Annuler la création de rôle',\n 'dialog.exitRoleCreation': 'Quitter la création de rôle ?',\n 'dialog.exitRoleEditing': 'Quitter la modification de rôle ?',\n 'dialog.exitWarning':\n '\\n\\nQuitter cette page supprimera définitivement les informations que vous avez saisies.\\n\\nÊtes-vous sûr de vouloir quitter ?',\n 'dialog.discard': 'Ignorer',\n 'dialog.cancel': 'Annuler',\n 'permissionPolicies.helperText':\n \"Par défaut, les utilisateurs n'ont pas accès aux plugins. Pour accorder l'accès aux utilisateurs, sélectionnez les plugins que vous souhaitez activer. Ensuite, sélectionnez les actions que vous souhaitez autoriser pour l'utilisateur.\",\n 'permissionPolicies.allPlugins': 'Tous les plugins ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Erreur lors de la récupération des politiques de permissions : {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'type de ressource : {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n \"Utilisez des permissions personnalisées avancées pour autoriser l'accès à des parties spécifiques du type de ressource sélectionné.\",\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'La personnalisation avancée n’est pas prise en charge pour ce type de ressource.',\n 'permissionPolicies.pluginsSelected': '{{count}} plugins',\n 'permissionPolicies.noPluginsSelected': 'Aucun plugin sélectionné',\n 'permissionPolicies.search': 'Rechercher',\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': 'Permission',\n 'permissionPolicies.policies': 'Politiques',\n 'permissionPolicies.conditional': 'Conditionnel',\n 'permissionPolicies.rules': 'règles',\n 'permissionPolicies.rule': 'règle',\n 'permissionPolicies.permissionPolicies': 'Politiques de permissions',\n 'permissionPolicies.permissions': 'permissions',\n },\n});\n\nexport default rbacTranslationFr;\n"],"names":[],"mappings":"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"}
|
|
@@ -48,6 +48,7 @@ const rbacTranslationIt = createTranslationMessages({
|
|
|
48
48
|
"roleForm.review.reviewAndCreate": "Rivedi e crea",
|
|
49
49
|
"roleForm.review.reviewAndSave": "Rivedi e salva",
|
|
50
50
|
"roleForm.review.nameDescriptionOwner": "Nome, descrizione e proprietario del ruolo",
|
|
51
|
+
"roleForm.review.permissionPoliciesWithCount": "Politiche di permessi ({{count}})",
|
|
51
52
|
"roleForm.steps.next": "Avanti",
|
|
52
53
|
"roleForm.steps.back": "Indietro",
|
|
53
54
|
"roleForm.steps.cancel": "Annulla",
|
|
@@ -154,6 +155,7 @@ const rbacTranslationIt = createTranslationMessages({
|
|
|
154
155
|
"permissionPolicies.errorFetchingPolicies": "Errore nel recupero delle politiche di permessi: {{error}}",
|
|
155
156
|
"permissionPolicies.resourceTypeTooltip": "tipo di risorsa: {{resourceType}}",
|
|
156
157
|
"permissionPolicies.advancedPermissionsTooltip": "Usa permessi personalizzati avanzati per consentire l'accesso a parti specifiche del tipo di risorsa selezionato.",
|
|
158
|
+
"permissionPolicies.noAdvancedPermissionsTooltip": "La personalizzazione avanzata non \xE8 supportata per questo tipo di risorsa.",
|
|
157
159
|
"permissionPolicies.pluginsSelected": "{{count}} plugin",
|
|
158
160
|
"permissionPolicies.noPluginsSelected": "Nessun plugin selezionato",
|
|
159
161
|
"permissionPolicies.search": "Cerca",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"it.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationIt = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crea ruolo',\n 'page.editRole': 'Modifica ruolo',\n 'table.searchPlaceholder': 'Filtra',\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 'table.labelRowsSelect': 'Righe',\n 'toolbar.createButton': 'Crea',\n 'toolbar.warning.title': 'Impossibile creare il ruolo.',\n 'toolbar.warning.message':\n 'Per abilitare il pulsante crea/modifica ruolo, assicurati che gli utenti/gruppi richiesti siano disponibili nel catalogo poiché un ruolo non può essere creato senza utenti/gruppi e anche il ruolo associato al tuo utente dovrebbe avere le politiche di permesso menzionate <link>qui</link>.',\n 'toolbar.warning.linkText': 'qui',\n 'toolbar.warning.note': 'Nota',\n 'toolbar.warning.noteText':\n \"Anche dopo aver ingerito utenti/gruppi nel catalogo e applicato i permessi sopra menzionati, se il pulsante crea/modifica è ancora disabilitato, contatta il tuo amministratore poiché potresti essere condizionalmente limitato dall'accesso al pulsante crea/modifica.\",\n 'errors.notFound': 'Non trovato',\n 'errors.unauthorized': 'Non autorizzato a creare un ruolo',\n 'errors.rbacDisabled':\n 'Abilita il plugin backend RBAC per utilizzare questa funzionalità.',\n 'errors.rbacDisabledInfo':\n \"Per abilitare RBAC, imposta `permission.enabled` su `true` nel file di configurazione dell'app.\",\n 'errors.fetchRoles':\n 'Qualcosa è andato storto durante il recupero dei ruoli',\n 'errors.fetchRole':\n 'Qualcosa è andato storto durante il recupero del ruolo',\n 'errors.fetchPolicies':\n 'Qualcosa è andato storto durante il recupero delle politiche di permesso',\n 'errors.fetchPoliciesErr': 'Errore nel recupero delle politiche. {{error}}',\n 'errors.fetchPlugins': 'Errore nel recupero dei plugin. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Errore nel recupero delle politiche di permessi condizionali. {{error}}',\n 'errors.fetchConditions':\n 'Qualcosa è andato storto durante il recupero delle condizioni del ruolo',\n 'errors.fetchUsersAndGroups':\n 'Qualcosa è andato storto durante il recupero di utenti e 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 con successo ma impossibile aggiungere le politiche di permesso al ruolo.',\n 'errors.roleCreatedConditionsSuccess':\n 'Il ruolo è stato creato con successo ma impossibile aggiungere condizioni al ruolo.',\n 'roleForm.titles.createRole': 'Crea ruolo',\n 'roleForm.titles.editRole': 'Modifica ruolo',\n 'roleForm.titles.nameAndDescription':\n 'Inserisci nome e descrizione del ruolo',\n 'roleForm.titles.usersAndGroups': 'Aggiungi utenti e gruppi',\n 'roleForm.titles.permissionPolicies': 'Aggiungi politiche di permesso',\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.steps.next': 'Avanti',\n 'roleForm.steps.back': 'Indietro',\n 'roleForm.steps.cancel': 'Annulla',\n 'roleForm.steps.reset': 'Reimposta',\n 'roleForm.steps.create': 'Crea',\n 'roleForm.steps.save': 'Salva',\n 'roleForm.fields.name.label': 'Nome',\n 'roleForm.fields.name.helperText': 'Inserisci il nome del ruolo',\n 'roleForm.fields.description.label': 'Descrizione',\n 'roleForm.fields.description.helperText':\n 'Inserisci una breve descrizione del ruolo (Lo scopo del ruolo)',\n 'roleForm.fields.owner.label': 'Proprietario',\n 'roleForm.fields.owner.helperText':\n \"Opzionale: Inserisci un utente o gruppo che avrà il permesso di modificare questo ruolo e creare ruoli aggiuntivi. Nel prossimo passo, specifica quali utenti possono assegnare ai loro ruoli e a quali plugin possono concedere accesso. Se lasciato vuoto, assegna automaticamente l'autore alla creazione.\",\n 'deleteDialog.title': 'Elimina ruolo',\n 'deleteDialog.question': 'Eliminare questo ruolo?',\n 'deleteDialog.confirmation':\n \"Sei sicuro di voler eliminare il ruolo **{{roleName}}**?\\n\\nEliminare questo ruolo è irreversibile e rimuoverà la sua funzionalità dal sistema. Procedi con cautela.\\n\\nGli **{{members}}** associati a questo ruolo perderanno l'accesso a tutte le **{{permissions}} politiche di permesso** specificate in questo ruolo.\",\n 'deleteDialog.roleNameLabel': 'Nome del ruolo',\n 'deleteDialog.roleNameHelper': 'Digita il nome del ruolo per confermare',\n 'deleteDialog.deleteButton': 'Elimina',\n 'deleteDialog.cancelButton': 'Annulla',\n 'deleteDialog.successMessage': 'Ruolo {{roleName}} eliminato con successo',\n 'snackbar.success': 'Successo',\n 'common.noResults': 'Nessun risultato per questo intervallo di date.',\n 'common.exportCSV': 'Esporta CSV',\n 'common.csvFilename': 'esportazione-dati.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': 'Usa',\n 'common.refresh': 'Aggiorna',\n 'common.edit': 'Modifica',\n 'common.unauthorizedToEdit': 'Non autorizzato a modificare',\n 'common.noRecordsFound': 'Nessun record trovato',\n 'common.selectUsersAndGroups': 'Seleziona utenti e gruppi',\n 'common.clearSearch': 'cancella ricerca',\n 'common.closeDrawer': 'Chiudi il cassetto',\n 'common.remove': 'Rimuovi',\n 'common.addRule': 'Aggiungi regola',\n 'common.selectRule': 'Seleziona una regola',\n 'common.rule': 'Regola',\n 'common.removeNestedCondition': 'Rimuovi condizione annidata',\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 'Gli utenti e gruppi selezionati appaiono qui.',\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 dei permessi…',\n 'common.unauthorizedTo': 'Non autorizzato per {{action}}',\n 'common.performThisAction': 'eseguire questa azione',\n 'common.unableToCreatePermissionPolicies':\n 'Impossibile creare le politiche di permessi.',\n 'common.unableToDeletePermissionPolicies':\n 'Impossibile eliminare le politiche di permessi.',\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}} con successo',\n 'common.unableToFetchRole': 'Impossibile recuperare il ruolo: {{error}}',\n 'common.unableToFetchMembers': 'Impossibile recuperare i membri: {{error}}',\n 'common.roleAction': '{{action}} ruolo',\n 'common.membersCount': '{{count}} membri',\n 'common.parentGroupCount': '{{count}} gruppo padre',\n 'common.childGroupsCount': '{{count}} gruppi figli',\n 'common.searchAndSelectUsersGroups':\n 'Cerca e seleziona utenti e gruppi da aggiungere. Gli utenti e gruppi selezionati appariranno nella tabella sottostante.',\n 'common.noUsersAndGroupsFound': 'Nessun utente e gruppo trovato.',\n 'common.errorFetchingUserGroups':\n 'Errore nel recupero di utenti e gruppi: {{error}}',\n 'common.nameRequired': 'Il nome è richiesto',\n 'common.noMemberSelected': 'Nessun membro selezionato',\n 'common.noPluginSelected': 'Nessun plugin selezionato',\n 'common.pluginRequired': 'Il plugin è richiesto',\n 'common.permissionRequired': 'Il permesso è richiesto',\n 'common.editCell': 'Modifica...',\n 'common.selectCell': 'Seleziona...',\n 'common.expandRow': 'espandi riga',\n 'common.configureAccessFor': 'Configura accesso per',\n 'common.defaultResourceTypeVisible':\n 'Per impostazione predefinita, il tipo di risorsa selezionato è visibile a tutti gli utenti aggiunti. Se vuoi limitare o concedere permessi a regole di plugin specifiche, selezionale e aggiungi i parametri.',\n 'conditionalAccess.condition': 'Condizione',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\n 'conditionalAccess.addNestedCondition': 'Aggiungi condizione annidata',\n 'conditionalAccess.addRule': 'Aggiungi regola',\n 'conditionalAccess.nestedConditionTooltip':\n \"Le condizioni annidate sono **regole di 1 livello all'interno di una condizione principale**. Ti permettono di consentire un accesso appropriato utilizzando permessi dettagliati basati su varie condizioni. Puoi aggiungere più condizioni annidate.\",\n 'conditionalAccess.nestedConditionExample':\n \"Ad esempio, puoi consentire l'accesso a tutti i tipi di entità nella condizione principale e utilizzare una condizione annidata per limitare l'accesso alle entità di proprietà dell'utente.\",\n 'dialog.cancelRoleCreation': 'Annulla creazione ruolo',\n 'dialog.exitRoleCreation': 'Uscire dalla creazione del ruolo?',\n 'dialog.exitRoleEditing': 'Uscire dalla modifica del ruolo?',\n 'dialog.exitWarning':\n '\\n\\nUscire da questa pagina scarterà permanentemente le informazioni inserite.\\n\\nSei sicuro di voler uscire?',\n 'dialog.discard': 'Scarta',\n 'dialog.cancel': 'Annulla',\n 'permissionPolicies.helperText':\n \"Per impostazione predefinita, agli utenti non viene concesso l'accesso a nessun plugin. Per concedere l'accesso agli utenti, seleziona i plugin che vuoi abilitare. Quindi, seleziona le azioni che vuoi autorizzare per l'utente.\",\n 'permissionPolicies.allPlugins': 'Tutti i plugin ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Errore nel recupero delle politiche di permessi: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo di risorsa: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n \"Usa permessi personalizzati avanzati 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': 'Cerca',\n 'permissionPolicies.noRecordsToDisplay': 'Nessun record da visualizzare.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'I plugin selezionati appaiono qui.',\n 'permissionPolicies.selectPlugins': 'Seleziona plugin',\n 'permissionPolicies.noPluginsFound': 'Nessun plugin trovato.',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Permesso',\n 'permissionPolicies.policies': 'Politiche',\n 'permissionPolicies.conditional': 'Condizionale',\n 'permissionPolicies.rules': 'regole',\n 'permissionPolicies.rule': 'regola',\n 'permissionPolicies.permissionPolicies': 'Politiche di permessi',\n 'permissionPolicies.permissions': 'permessi',\n },\n});\n\nexport default rbacTranslationIt;\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"it.esm.js","sources":["../../src/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 */\nimport { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { rbacTranslationRef } from './ref';\n\nconst rbacTranslationIt = createTranslationMessages({\n ref: rbacTranslationRef,\n full: true,\n messages: {\n 'page.title': 'RBAC',\n 'page.createRole': 'Crea ruolo',\n 'page.editRole': 'Modifica ruolo',\n 'table.searchPlaceholder': 'Filtra',\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 'table.labelRowsSelect': 'Righe',\n 'toolbar.createButton': 'Crea',\n 'toolbar.warning.title': 'Impossibile creare il ruolo.',\n 'toolbar.warning.message':\n 'Per abilitare il pulsante crea/modifica ruolo, assicurati che gli utenti/gruppi richiesti siano disponibili nel catalogo poiché un ruolo non può essere creato senza utenti/gruppi e anche il ruolo associato al tuo utente dovrebbe avere le politiche di permesso menzionate <link>qui</link>.',\n 'toolbar.warning.linkText': 'qui',\n 'toolbar.warning.note': 'Nota',\n 'toolbar.warning.noteText':\n \"Anche dopo aver ingerito utenti/gruppi nel catalogo e applicato i permessi sopra menzionati, se il pulsante crea/modifica è ancora disabilitato, contatta il tuo amministratore poiché potresti essere condizionalmente limitato dall'accesso al pulsante crea/modifica.\",\n 'errors.notFound': 'Non trovato',\n 'errors.unauthorized': 'Non autorizzato a creare un ruolo',\n 'errors.rbacDisabled':\n 'Abilita il plugin backend RBAC per utilizzare questa funzionalità.',\n 'errors.rbacDisabledInfo':\n \"Per abilitare RBAC, imposta `permission.enabled` su `true` nel file di configurazione dell'app.\",\n 'errors.fetchRoles':\n 'Qualcosa è andato storto durante il recupero dei ruoli',\n 'errors.fetchRole':\n 'Qualcosa è andato storto durante il recupero del ruolo',\n 'errors.fetchPolicies':\n 'Qualcosa è andato storto durante il recupero delle politiche di permesso',\n 'errors.fetchPoliciesErr': 'Errore nel recupero delle politiche. {{error}}',\n 'errors.fetchPlugins': 'Errore nel recupero dei plugin. {{error}}',\n 'errors.fetchConditionalPermissionPolicies':\n 'Errore nel recupero delle politiche di permessi condizionali. {{error}}',\n 'errors.fetchConditions':\n 'Qualcosa è andato storto durante il recupero delle condizioni del ruolo',\n 'errors.fetchUsersAndGroups':\n 'Qualcosa è andato storto durante il recupero di utenti e 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 con successo ma impossibile aggiungere le politiche di permesso al ruolo.',\n 'errors.roleCreatedConditionsSuccess':\n 'Il ruolo è stato creato con successo ma impossibile aggiungere condizioni al ruolo.',\n 'roleForm.titles.createRole': 'Crea ruolo',\n 'roleForm.titles.editRole': 'Modifica ruolo',\n 'roleForm.titles.nameAndDescription':\n 'Inserisci nome e descrizione del ruolo',\n 'roleForm.titles.usersAndGroups': 'Aggiungi utenti e gruppi',\n 'roleForm.titles.permissionPolicies': 'Aggiungi politiche di permesso',\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 permessi ({{count}})',\n 'roleForm.steps.next': 'Avanti',\n 'roleForm.steps.back': 'Indietro',\n 'roleForm.steps.cancel': 'Annulla',\n 'roleForm.steps.reset': 'Reimposta',\n 'roleForm.steps.create': 'Crea',\n 'roleForm.steps.save': 'Salva',\n 'roleForm.fields.name.label': 'Nome',\n 'roleForm.fields.name.helperText': 'Inserisci il nome del ruolo',\n 'roleForm.fields.description.label': 'Descrizione',\n 'roleForm.fields.description.helperText':\n 'Inserisci una breve descrizione del ruolo (Lo scopo del ruolo)',\n 'roleForm.fields.owner.label': 'Proprietario',\n 'roleForm.fields.owner.helperText':\n \"Opzionale: Inserisci un utente o gruppo che avrà il permesso di modificare questo ruolo e creare ruoli aggiuntivi. Nel prossimo passo, specifica quali utenti possono assegnare ai loro ruoli e a quali plugin possono concedere accesso. Se lasciato vuoto, assegna automaticamente l'autore alla creazione.\",\n 'deleteDialog.title': 'Elimina ruolo',\n 'deleteDialog.question': 'Eliminare questo ruolo?',\n 'deleteDialog.confirmation':\n \"Sei sicuro di voler eliminare il ruolo **{{roleName}}**?\\n\\nEliminare questo ruolo è irreversibile e rimuoverà la sua funzionalità dal sistema. Procedi con cautela.\\n\\nGli **{{members}}** associati a questo ruolo perderanno l'accesso a tutte le **{{permissions}} politiche di permesso** specificate in questo ruolo.\",\n 'deleteDialog.roleNameLabel': 'Nome del ruolo',\n 'deleteDialog.roleNameHelper': 'Digita il nome del ruolo per confermare',\n 'deleteDialog.deleteButton': 'Elimina',\n 'deleteDialog.cancelButton': 'Annulla',\n 'deleteDialog.successMessage': 'Ruolo {{roleName}} eliminato con successo',\n 'snackbar.success': 'Successo',\n 'common.noResults': 'Nessun risultato per questo intervallo di date.',\n 'common.exportCSV': 'Esporta CSV',\n 'common.csvFilename': 'esportazione-dati.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': 'Usa',\n 'common.refresh': 'Aggiorna',\n 'common.edit': 'Modifica',\n 'common.unauthorizedToEdit': 'Non autorizzato a modificare',\n 'common.noRecordsFound': 'Nessun record trovato',\n 'common.selectUsersAndGroups': 'Seleziona utenti e gruppi',\n 'common.clearSearch': 'cancella ricerca',\n 'common.closeDrawer': 'Chiudi il cassetto',\n 'common.remove': 'Rimuovi',\n 'common.addRule': 'Aggiungi regola',\n 'common.selectRule': 'Seleziona una regola',\n 'common.rule': 'Regola',\n 'common.removeNestedCondition': 'Rimuovi condizione annidata',\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 'Gli utenti e gruppi selezionati appaiono qui.',\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 dei permessi…',\n 'common.unauthorizedTo': 'Non autorizzato per {{action}}',\n 'common.performThisAction': 'eseguire questa azione',\n 'common.unableToCreatePermissionPolicies':\n 'Impossibile creare le politiche di permessi.',\n 'common.unableToDeletePermissionPolicies':\n 'Impossibile eliminare le politiche di permessi.',\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}} con successo',\n 'common.unableToFetchRole': 'Impossibile recuperare il ruolo: {{error}}',\n 'common.unableToFetchMembers': 'Impossibile recuperare i membri: {{error}}',\n 'common.roleAction': '{{action}} ruolo',\n 'common.membersCount': '{{count}} membri',\n 'common.parentGroupCount': '{{count}} gruppo padre',\n 'common.childGroupsCount': '{{count}} gruppi figli',\n 'common.searchAndSelectUsersGroups':\n 'Cerca e seleziona utenti e gruppi da aggiungere. Gli utenti e gruppi selezionati appariranno nella tabella sottostante.',\n 'common.noUsersAndGroupsFound': 'Nessun utente e gruppo trovato.',\n 'common.errorFetchingUserGroups':\n 'Errore nel recupero di utenti e gruppi: {{error}}',\n 'common.nameRequired': 'Il nome è richiesto',\n 'common.noMemberSelected': 'Nessun membro selezionato',\n 'common.noPluginSelected': 'Nessun plugin selezionato',\n 'common.pluginRequired': 'Il plugin è richiesto',\n 'common.permissionRequired': 'Il permesso è richiesto',\n 'common.editCell': 'Modifica...',\n 'common.selectCell': 'Seleziona...',\n 'common.expandRow': 'espandi riga',\n 'common.configureAccessFor': 'Configura accesso per',\n 'common.defaultResourceTypeVisible':\n 'Per impostazione predefinita, il tipo di risorsa selezionato è visibile a tutti gli utenti aggiunti. Se vuoi limitare o concedere permessi a regole di plugin specifiche, selezionale e aggiungi i parametri.',\n 'conditionalAccess.condition': 'Condizione',\n 'conditionalAccess.allOf': 'AllOf',\n 'conditionalAccess.anyOf': 'AnyOf',\n 'conditionalAccess.not': 'Not',\n 'conditionalAccess.addNestedCondition': 'Aggiungi condizione annidata',\n 'conditionalAccess.addRule': 'Aggiungi regola',\n 'conditionalAccess.nestedConditionTooltip':\n \"Le condizioni annidate sono **regole di 1 livello all'interno di una condizione principale**. Ti permettono di consentire un accesso appropriato utilizzando permessi dettagliati basati su varie condizioni. Puoi aggiungere più condizioni annidate.\",\n 'conditionalAccess.nestedConditionExample':\n \"Ad esempio, puoi consentire l'accesso a tutti i tipi di entità nella condizione principale e utilizzare una condizione annidata per limitare l'accesso alle entità di proprietà dell'utente.\",\n 'dialog.cancelRoleCreation': 'Annulla creazione ruolo',\n 'dialog.exitRoleCreation': 'Uscire dalla creazione del ruolo?',\n 'dialog.exitRoleEditing': 'Uscire dalla modifica del ruolo?',\n 'dialog.exitWarning':\n '\\n\\nUscire da questa pagina scarterà permanentemente le informazioni inserite.\\n\\nSei sicuro di voler uscire?',\n 'dialog.discard': 'Scarta',\n 'dialog.cancel': 'Annulla',\n 'permissionPolicies.helperText':\n \"Per impostazione predefinita, agli utenti non viene concesso l'accesso a nessun plugin. Per concedere l'accesso agli utenti, seleziona i plugin che vuoi abilitare. Quindi, seleziona le azioni che vuoi autorizzare per l'utente.\",\n 'permissionPolicies.allPlugins': 'Tutti i plugin ({{count}})',\n 'permissionPolicies.errorFetchingPolicies':\n 'Errore nel recupero delle politiche di permessi: {{error}}',\n 'permissionPolicies.resourceTypeTooltip':\n 'tipo di risorsa: {{resourceType}}',\n 'permissionPolicies.advancedPermissionsTooltip':\n \"Usa permessi personalizzati avanzati per consentire l'accesso a parti specifiche del tipo di risorsa selezionato.\",\n 'permissionPolicies.noAdvancedPermissionsTooltip':\n 'La personalizzazione avanzata non è supportata per questo tipo di risorsa.',\n 'permissionPolicies.pluginsSelected': '{{count}} plugin',\n 'permissionPolicies.noPluginsSelected': 'Nessun plugin selezionato',\n 'permissionPolicies.search': 'Cerca',\n 'permissionPolicies.noRecordsToDisplay': 'Nessun record da visualizzare.',\n 'permissionPolicies.selectedPluginsAppearHere':\n 'I plugin selezionati appaiono qui.',\n 'permissionPolicies.selectPlugins': 'Seleziona plugin',\n 'permissionPolicies.noPluginsFound': 'Nessun plugin trovato.',\n 'permissionPolicies.plugin': 'Plugin',\n 'permissionPolicies.permission': 'Permesso',\n 'permissionPolicies.policies': 'Politiche',\n 'permissionPolicies.conditional': 'Condizionale',\n 'permissionPolicies.rules': 'regole',\n 'permissionPolicies.rule': 'regola',\n 'permissionPolicies.permissionPolicies': 'Politiche di permessi',\n 'permissionPolicies.permissions': 'permessi',\n },\n});\n\nexport default rbacTranslationIt;\n"],"names":[],"mappings":"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"}
|
|
@@ -59,7 +59,8 @@ const rbacMessages = {
|
|
|
59
59
|
review: {
|
|
60
60
|
reviewAndCreate: "Review and create",
|
|
61
61
|
reviewAndSave: "Review and save",
|
|
62
|
-
nameDescriptionOwner: "Name, description, and owner of role"
|
|
62
|
+
nameDescriptionOwner: "Name, description, and owner of role",
|
|
63
|
+
permissionPoliciesWithCount: "Permission policies ({{count}})"
|
|
63
64
|
},
|
|
64
65
|
steps: {
|
|
65
66
|
next: "Next",
|
|
@@ -121,6 +122,7 @@ const rbacMessages = {
|
|
|
121
122
|
errorFetchingPolicies: "Error fetching the permission policies: {{error}}",
|
|
122
123
|
resourceTypeTooltip: "resource type: {{resourceType}}",
|
|
123
124
|
advancedPermissionsTooltip: "Use advanced customized permissions to allow access to specific parts of the selected resource type.",
|
|
125
|
+
noAdvancedPermissionsTooltip: "Advanced customization is not supported for this resource type.",
|
|
124
126
|
pluginsSelected: "{{count}} plugins",
|
|
125
127
|
noPluginsSelected: "No plugins selected",
|
|
126
128
|
search: "Search",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ref.esm.js","sources":["../../src/translations/ref.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 */\nimport { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\nexport const rbacMessages = {\n page: {\n title: 'RBAC',\n createRole: 'Create role',\n editRole: 'Edit role',\n },\n table: {\n searchPlaceholder: 'Filter',\n labelRowsSelect: 'Rows',\n title: 'All roles',\n titleWithCount: 'All roles ({{count}})',\n headers: {\n name: 'Name',\n usersAndGroups: 'Users and groups',\n accessiblePlugins: 'Accessible plugins',\n actions: 'Actions',\n },\n emptyContent: 'No records found',\n },\n toolbar: {\n createButton: 'Create',\n warning: {\n title: 'Unable to create role.',\n message:\n 'To enable create/edit role button, make sure required users/groups are available in catalog as a role cannot be created without users/groups and also the role associated with your user should have the permission policies mentioned <link>here</link>.',\n linkText: 'here',\n note: 'Note',\n noteText:\n 'Even after ingesting users/groups in catalog and applying above permissions if the create/edit button is still disabled then please contact your administrator as you might be conditionally restricted from accessing the create/edit button.',\n },\n },\n errors: {\n notFound: 'Not Found',\n unauthorized: 'Unauthorized to create role',\n rbacDisabled: 'Enable the RBAC backend plugin to use this feature.',\n rbacDisabledInfo:\n 'To enable RBAC, set `permission.enabled` to `true` in the app-config file.',\n fetchRoles: 'Something went wrong while fetching the roles',\n fetchRole: 'Something went wrong while fetching the role',\n fetchPoliciesErr: 'Error fetching the policies. {{error}}',\n fetchPolicies:\n 'Something went wrong while fetching the permission policies',\n fetchPlugins: 'Error fetching the plugins. {{error}}',\n fetchConditionalPermissionPolicies:\n 'Error fetching the conditional permission policies. {{error}}',\n fetchConditions: 'Something went wrong while fetching the role conditions',\n fetchUsersAndGroups:\n 'Something went wrong while fetching the users and groups',\n createRole: 'Unable to create role.',\n editRole: 'Unable to edit the role.',\n deleteRole: 'Unable to delete the role.',\n roleCreatedSuccess:\n 'Role was created successfully but unable to add permission policies to the role.',\n roleCreatedConditionsSuccess:\n 'Role created successfully but unable to add conditions to the role.',\n },\n roleForm: {\n titles: {\n createRole: 'Create Role',\n editRole: 'Edit Role',\n nameAndDescription: 'Enter name and description of role',\n usersAndGroups: 'Add users and groups',\n permissionPolicies: 'Add permission policies',\n },\n review: {\n reviewAndCreate: 'Review and create',\n reviewAndSave: 'Review and save',\n nameDescriptionOwner: 'Name, description, and owner of role',\n },\n steps: {\n next: 'Next',\n back: 'Back',\n cancel: 'Cancel',\n reset: 'Reset',\n create: 'Create',\n save: 'Save',\n },\n fields: {\n name: {\n label: 'Name',\n helperText: 'Enter name of the role',\n },\n description: {\n label: 'Description',\n helperText:\n 'Enter a brief description about the role (The purpose of the role)',\n },\n owner: {\n label: 'Owner',\n helperText:\n 'Optional: Enter a user or group who will have permission to edit this role and create additional roles. In the next step, specify which users they can assign to their roles and which plugins they can grant access to. If left blank, automatically assigns the author at creation.',\n },\n },\n },\n deleteDialog: {\n title: 'Delete Role',\n question: 'Delete this role?',\n confirmation:\n 'Are you sure you want to delete the role **{{roleName}}**?\\n\\nDeleting this role is irreversible and will remove its functionality from the system. Proceed with caution.\\n\\nThe **{{members}}** associated with this role will lose access to all the **{{permissions}} permission policies** specified in this role.',\n roleNameLabel: 'Role name',\n roleNameHelper: 'Type the name of the role to confirm',\n deleteButton: 'Delete',\n cancelButton: 'Cancel',\n successMessage: 'Role {{roleName}} deleted successfully',\n },\n snackbar: {\n success: 'Success',\n },\n dialog: {\n cancelRoleCreation: 'Cancel role creation',\n exitRoleCreation: 'Exit role creation?',\n exitRoleEditing: 'Exit role editing?',\n exitWarning:\n '\\n\\nExiting this page will permanently discard the information you entered.\\n\\nAre you sure you want to exit?',\n discard: 'Discard',\n cancel: 'Cancel',\n },\n conditionalAccess: {\n condition: 'Condition',\n allOf: 'AllOf',\n anyOf: 'AnyOf',\n not: 'Not',\n addNestedCondition: 'Add nested condition',\n addRule: 'Add rule',\n nestedConditionTooltip:\n 'Nested conditions are **1 layer rules within a main condition**. It lets you allow appropriate access by using detailed permissions based on various conditions. You can add multiple nested conditions.',\n nestedConditionExample:\n 'For example, you can allow access to all entity types in the main condition and use a nested condition to limit the access to entities owned by the user.',\n },\n permissionPolicies: {\n helperText:\n 'By default, users are not granted access to any plugins. To grant user access, select the plugins you want to enable. Then, select which actions you would like to give user permission to.',\n allPlugins: 'All plugins ({{count}})',\n errorFetchingPolicies: 'Error fetching the permission policies: {{error}}',\n resourceTypeTooltip: 'resource type: {{resourceType}}',\n advancedPermissionsTooltip:\n 'Use advanced customized permissions to allow access to specific parts of the selected resource type.',\n pluginsSelected: '{{count}} plugins',\n noPluginsSelected: 'No plugins selected',\n search: 'Search',\n noRecordsToDisplay: 'No records to display.',\n selectedPluginsAppearHere: 'Selected plugins appear here.',\n selectPlugins: 'Select plugins',\n noPluginsFound: 'No plugins found.',\n plugin: 'Plugin',\n permission: 'Permission',\n policies: 'Policies',\n conditional: 'Conditional',\n rules: 'rules',\n rule: 'rule',\n permissionPolicies: 'Permission Policies',\n permissions: 'permissions',\n },\n common: {\n noResults: 'No results for this date range.',\n exportCSV: 'Export CSV',\n csvFilename: 'data-export.csv',\n noMembers: 'No members',\n groups: 'groups',\n group: 'group',\n users: 'users',\n user: 'user',\n use: 'Use',\n refresh: 'Refresh',\n edit: 'Edit',\n unauthorizedToEdit: 'Unauthorized to edit',\n noRecordsFound: 'No records found',\n selectUsersAndGroups: 'Select users and groups',\n clearSearch: 'clear search',\n closeDrawer: 'Close the drawer',\n remove: 'Remove',\n addRule: 'Add rule',\n selectRule: 'Select a rule',\n rule: 'Rule',\n removeNestedCondition: 'Remove nested condition',\n overview: 'Overview',\n about: 'About',\n description: 'Description',\n modifiedBy: 'Modified By',\n lastModified: 'Last Modified',\n owner: 'Owner',\n noUsersAndGroupsSelected: 'No users and groups selected',\n selectedUsersAndGroupsAppearHere: 'Selected users and groups appear here.',\n name: 'Name',\n type: 'Type',\n members: 'Members',\n actions: 'Actions',\n removeMember: 'Remove member',\n delete: 'Delete',\n deleteRole: 'Delete Role',\n update: 'Update',\n editRole: 'Edit Role',\n checkingPermissions: 'Checking permissions…',\n unauthorizedTo: 'Unauthorized to {{action}}',\n performThisAction: 'perform this action',\n unableToCreatePermissionPolicies:\n 'Unable to create the permission policies.',\n unableToDeletePermissionPolicies:\n 'Unable to delete the permission policies.',\n unableToRemoveConditions: 'Unable to remove conditions from the role.',\n unableToUpdateConditions: 'Unable to update conditions.',\n unableToAddConditions: 'Unable to add conditions to the role.',\n roleActionSuccessfully: 'Role {{roleName}} {{action}} successfully',\n unableToFetchRole: 'Unable to fetch role: {{error}}',\n unableToFetchMembers: 'Unable to fetch members: {{error}}',\n roleAction: '{{action}} role',\n membersCount: '{{count}} members',\n parentGroupCount: '{{count}} parent group',\n childGroupsCount: '{{count}} child groups',\n searchAndSelectUsersGroups:\n 'Search and select users and groups to be added. Selected users and groups will appear in the table below.',\n noUsersAndGroupsFound: 'No users and groups found.',\n errorFetchingUserGroups: 'Error fetching user and groups: {{error}}',\n nameRequired: 'Name is required',\n noMemberSelected: 'No member selected',\n noPluginSelected: 'No plugin selected',\n pluginRequired: 'Plugin is required',\n permissionRequired: 'Permission is required',\n editCell: 'Edit...',\n selectCell: 'Select...',\n expandRow: 'expand row',\n configureAccessFor: 'Configure access for the',\n defaultResourceTypeVisible:\n 'By default, the selected resource type is visible to all added users. If you want to restrict or grant permission to specific plugin rules, select them and add the parameters.',\n },\n};\n\n/**\n * Translation reference for RBAC plugin\n * @public\n */\nexport const rbacTranslationRef = createTranslationRef({\n id: 'plugin.rbac',\n messages: rbacMessages,\n});\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ref.esm.js","sources":["../../src/translations/ref.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 */\nimport { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\nexport const rbacMessages = {\n page: {\n title: 'RBAC',\n createRole: 'Create role',\n editRole: 'Edit role',\n },\n table: {\n searchPlaceholder: 'Filter',\n labelRowsSelect: 'Rows',\n title: 'All roles',\n titleWithCount: 'All roles ({{count}})',\n headers: {\n name: 'Name',\n usersAndGroups: 'Users and groups',\n accessiblePlugins: 'Accessible plugins',\n actions: 'Actions',\n },\n emptyContent: 'No records found',\n },\n toolbar: {\n createButton: 'Create',\n warning: {\n title: 'Unable to create role.',\n message:\n 'To enable create/edit role button, make sure required users/groups are available in catalog as a role cannot be created without users/groups and also the role associated with your user should have the permission policies mentioned <link>here</link>.',\n linkText: 'here',\n note: 'Note',\n noteText:\n 'Even after ingesting users/groups in catalog and applying above permissions if the create/edit button is still disabled then please contact your administrator as you might be conditionally restricted from accessing the create/edit button.',\n },\n },\n errors: {\n notFound: 'Not Found',\n unauthorized: 'Unauthorized to create role',\n rbacDisabled: 'Enable the RBAC backend plugin to use this feature.',\n rbacDisabledInfo:\n 'To enable RBAC, set `permission.enabled` to `true` in the app-config file.',\n fetchRoles: 'Something went wrong while fetching the roles',\n fetchRole: 'Something went wrong while fetching the role',\n fetchPoliciesErr: 'Error fetching the policies. {{error}}',\n fetchPolicies:\n 'Something went wrong while fetching the permission policies',\n fetchPlugins: 'Error fetching the plugins. {{error}}',\n fetchConditionalPermissionPolicies:\n 'Error fetching the conditional permission policies. {{error}}',\n fetchConditions: 'Something went wrong while fetching the role conditions',\n fetchUsersAndGroups:\n 'Something went wrong while fetching the users and groups',\n createRole: 'Unable to create role.',\n editRole: 'Unable to edit the role.',\n deleteRole: 'Unable to delete the role.',\n roleCreatedSuccess:\n 'Role was created successfully but unable to add permission policies to the role.',\n roleCreatedConditionsSuccess:\n 'Role created successfully but unable to add conditions to the role.',\n },\n roleForm: {\n titles: {\n createRole: 'Create Role',\n editRole: 'Edit Role',\n nameAndDescription: 'Enter name and description of role',\n usersAndGroups: 'Add users and groups',\n permissionPolicies: 'Add permission policies',\n },\n review: {\n reviewAndCreate: 'Review and create',\n reviewAndSave: 'Review and save',\n nameDescriptionOwner: 'Name, description, and owner of role',\n permissionPoliciesWithCount: 'Permission policies ({{count}})',\n },\n steps: {\n next: 'Next',\n back: 'Back',\n cancel: 'Cancel',\n reset: 'Reset',\n create: 'Create',\n save: 'Save',\n },\n fields: {\n name: {\n label: 'Name',\n helperText: 'Enter name of the role',\n },\n description: {\n label: 'Description',\n helperText:\n 'Enter a brief description about the role (The purpose of the role)',\n },\n owner: {\n label: 'Owner',\n helperText:\n 'Optional: Enter a user or group who will have permission to edit this role and create additional roles. In the next step, specify which users they can assign to their roles and which plugins they can grant access to. If left blank, automatically assigns the author at creation.',\n },\n },\n },\n deleteDialog: {\n title: 'Delete Role',\n question: 'Delete this role?',\n confirmation:\n 'Are you sure you want to delete the role **{{roleName}}**?\\n\\nDeleting this role is irreversible and will remove its functionality from the system. Proceed with caution.\\n\\nThe **{{members}}** associated with this role will lose access to all the **{{permissions}} permission policies** specified in this role.',\n roleNameLabel: 'Role name',\n roleNameHelper: 'Type the name of the role to confirm',\n deleteButton: 'Delete',\n cancelButton: 'Cancel',\n successMessage: 'Role {{roleName}} deleted successfully',\n },\n snackbar: {\n success: 'Success',\n },\n dialog: {\n cancelRoleCreation: 'Cancel role creation',\n exitRoleCreation: 'Exit role creation?',\n exitRoleEditing: 'Exit role editing?',\n exitWarning:\n '\\n\\nExiting this page will permanently discard the information you entered.\\n\\nAre you sure you want to exit?',\n discard: 'Discard',\n cancel: 'Cancel',\n },\n conditionalAccess: {\n condition: 'Condition',\n allOf: 'AllOf',\n anyOf: 'AnyOf',\n not: 'Not',\n addNestedCondition: 'Add nested condition',\n addRule: 'Add rule',\n nestedConditionTooltip:\n 'Nested conditions are **1 layer rules within a main condition**. It lets you allow appropriate access by using detailed permissions based on various conditions. You can add multiple nested conditions.',\n nestedConditionExample:\n 'For example, you can allow access to all entity types in the main condition and use a nested condition to limit the access to entities owned by the user.',\n },\n permissionPolicies: {\n helperText:\n 'By default, users are not granted access to any plugins. To grant user access, select the plugins you want to enable. Then, select which actions you would like to give user permission to.',\n allPlugins: 'All plugins ({{count}})',\n errorFetchingPolicies: 'Error fetching the permission policies: {{error}}',\n resourceTypeTooltip: 'resource type: {{resourceType}}',\n advancedPermissionsTooltip:\n 'Use advanced customized permissions to allow access to specific parts of the selected resource type.',\n noAdvancedPermissionsTooltip:\n 'Advanced customization is not supported for this resource type.',\n pluginsSelected: '{{count}} plugins',\n noPluginsSelected: 'No plugins selected',\n search: 'Search',\n noRecordsToDisplay: 'No records to display.',\n selectedPluginsAppearHere: 'Selected plugins appear here.',\n selectPlugins: 'Select plugins',\n noPluginsFound: 'No plugins found.',\n plugin: 'Plugin',\n permission: 'Permission',\n policies: 'Policies',\n conditional: 'Conditional',\n rules: 'rules',\n rule: 'rule',\n permissionPolicies: 'Permission Policies',\n permissions: 'permissions',\n },\n common: {\n noResults: 'No results for this date range.',\n exportCSV: 'Export CSV',\n csvFilename: 'data-export.csv',\n noMembers: 'No members',\n groups: 'groups',\n group: 'group',\n users: 'users',\n user: 'user',\n use: 'Use',\n refresh: 'Refresh',\n edit: 'Edit',\n unauthorizedToEdit: 'Unauthorized to edit',\n noRecordsFound: 'No records found',\n selectUsersAndGroups: 'Select users and groups',\n clearSearch: 'clear search',\n closeDrawer: 'Close the drawer',\n remove: 'Remove',\n addRule: 'Add rule',\n selectRule: 'Select a rule',\n rule: 'Rule',\n removeNestedCondition: 'Remove nested condition',\n overview: 'Overview',\n about: 'About',\n description: 'Description',\n modifiedBy: 'Modified By',\n lastModified: 'Last Modified',\n owner: 'Owner',\n noUsersAndGroupsSelected: 'No users and groups selected',\n selectedUsersAndGroupsAppearHere: 'Selected users and groups appear here.',\n name: 'Name',\n type: 'Type',\n members: 'Members',\n actions: 'Actions',\n removeMember: 'Remove member',\n delete: 'Delete',\n deleteRole: 'Delete Role',\n update: 'Update',\n editRole: 'Edit Role',\n checkingPermissions: 'Checking permissions…',\n unauthorizedTo: 'Unauthorized to {{action}}',\n performThisAction: 'perform this action',\n unableToCreatePermissionPolicies:\n 'Unable to create the permission policies.',\n unableToDeletePermissionPolicies:\n 'Unable to delete the permission policies.',\n unableToRemoveConditions: 'Unable to remove conditions from the role.',\n unableToUpdateConditions: 'Unable to update conditions.',\n unableToAddConditions: 'Unable to add conditions to the role.',\n roleActionSuccessfully: 'Role {{roleName}} {{action}} successfully',\n unableToFetchRole: 'Unable to fetch role: {{error}}',\n unableToFetchMembers: 'Unable to fetch members: {{error}}',\n roleAction: '{{action}} role',\n membersCount: '{{count}} members',\n parentGroupCount: '{{count}} parent group',\n childGroupsCount: '{{count}} child groups',\n searchAndSelectUsersGroups:\n 'Search and select users and groups to be added. Selected users and groups will appear in the table below.',\n noUsersAndGroupsFound: 'No users and groups found.',\n errorFetchingUserGroups: 'Error fetching user and groups: {{error}}',\n nameRequired: 'Name is required',\n noMemberSelected: 'No member selected',\n noPluginSelected: 'No plugin selected',\n pluginRequired: 'Plugin is required',\n permissionRequired: 'Permission is required',\n editCell: 'Edit...',\n selectCell: 'Select...',\n expandRow: 'expand row',\n configureAccessFor: 'Configure access for the',\n defaultResourceTypeVisible:\n 'By default, the selected resource type is visible to all added users. If you want to restrict or grant permission to specific plugin rules, select them and add the parameters.',\n },\n};\n\n/**\n * Translation reference for RBAC plugin\n * @public\n */\nexport const rbacTranslationRef = createTranslationRef({\n id: 'plugin.rbac',\n messages: rbacMessages,\n});\n"],"names":[],"mappings":"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"}
|