@backstage-community/plugin-tekton 3.40.1 → 3.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/components/PipelineRunList/PipelineRunList.esm.js +1 -1
- package/dist/components/PipelineRunList/PipelineRunListSearchBar.esm.js +1 -1
- package/dist/components/PipelineRunList/PipelineRunOutput.esm.js +1 -1
- package/dist/components/PipelineRunList/PipelineRunRow.esm.js +1 -1
- package/dist/components/PipelineRunList/PipelineRunRowActions.esm.js +1 -1
- package/dist/components/PipelineRunList/PipelineRunVulnerabilities.esm.js +1 -1
- package/dist/components/PipelineRunList/PipelineTableHeader.esm.js +1 -1
- package/dist/components/PipelineRunList/PlrStatus.esm.js +1 -1
- package/dist/components/PipelineRunLogs/PipelineRunLogDialog.esm.js +1 -1
- package/dist/components/PipelineRunLogs/PipelineRunLogDownloader.esm.js +1 -1
- package/dist/components/PipelineRunLogs/PipelineRunLogViewer.esm.js +1 -1
- package/dist/components/PipelineRunLogs/PipelineRunLogs.esm.js +1 -1
- package/dist/components/PipelineRunLogs/PodLogsDownloadLink.esm.js +1 -1
- package/dist/components/PipelineRunLogs/TaskStatusStepper.esm.js +1 -1
- package/dist/components/PipelineRunOutput/PipelineRunOutputDialog.esm.js +1 -1
- package/dist/components/PipelineRunParamsAndResults/Output.esm.js +1 -1
- package/dist/components/PipelineRunParamsAndResults/PipelineRunParams.esm.js +1 -1
- package/dist/components/PipelineRunParamsAndResults/PipelineRunParamsAndResults.esm.js +1 -1
- package/dist/components/PipelineRunParamsAndResults/PipelineRunParamsAndResultsDialog.esm.js +1 -1
- package/dist/components/PipelineRunParamsAndResults/PipelineRunResults.esm.js +1 -1
- package/dist/components/common/ClusterSelector.esm.js +1 -1
- package/dist/components/common/ErrorPanel.esm.js +1 -1
- package/dist/components/common/PermissionAlert.esm.js +1 -1
- package/dist/components/common/StatusSelector.esm.js +1 -1
- package/dist/components/common/TableExpandCollapse.esm.js +1 -1
- package/dist/components/pipeline-topology/PipelineTaskNode.esm.js +1 -1
- package/dist/components/pipeline-topology/PipelineVisualization.esm.js +1 -1
- package/dist/components/pipeline-topology/PipelineVisualizationStepList.esm.js +1 -1
- package/dist/components/pipeline-topology/PipelineVisualizationView.esm.js +1 -1
- package/dist/index.d.ts +3 -85
- package/dist/index.esm.js +1 -1
- package/dist/translations.d.ts +92 -0
- package/dist/translations.esm.js +29 -0
- package/dist/translations.esm.js.map +1 -0
- package/package.json +13 -2
- package/dist/translations/index.esm.js +0 -16
- package/dist/translations/index.esm.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -26,7 +26,7 @@ import { PipelineRunTableBody } from './PipelineRunTableBody.esm.js';
|
|
|
26
26
|
import { EnhancedTableHead } from './PipelineTableHeader.esm.js';
|
|
27
27
|
import { pipelineRunTableSx } from './pipelineRunTableColumns.esm.js';
|
|
28
28
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
29
|
-
import '../../translations
|
|
29
|
+
import '../../translations.esm.js';
|
|
30
30
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
31
31
|
|
|
32
32
|
const titleSx = {
|
|
@@ -6,7 +6,7 @@ import InputAdornment from '@mui/material/InputAdornment';
|
|
|
6
6
|
import Clear from '@mui/icons-material/Clear';
|
|
7
7
|
import Search from '@mui/icons-material/Search';
|
|
8
8
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
9
|
-
import '../../translations
|
|
9
|
+
import '../../translations.esm.js';
|
|
10
10
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
11
11
|
|
|
12
12
|
const PipelineRunListSearchBar = ({
|
|
@@ -8,7 +8,7 @@ import Paper from '@mui/material/Paper';
|
|
|
8
8
|
import Typography from '@mui/material/Typography';
|
|
9
9
|
import { kubernetesProxyApiRef } from '@backstage/plugin-kubernetes-react';
|
|
10
10
|
import { TektonResourcesContext } from '../../hooks/TektonResourcesContext.esm.js';
|
|
11
|
-
import '../../translations
|
|
11
|
+
import '../../translations.esm.js';
|
|
12
12
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
13
13
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
14
14
|
|
|
@@ -20,7 +20,7 @@ import '../pipeline-topology/PipelineTaskNode.esm.js';
|
|
|
20
20
|
import '../pipeline-topology/TaskGroupEdge.esm.js';
|
|
21
21
|
import '../pipeline-topology/PipelineVisualization.css.esm.js';
|
|
22
22
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
23
|
-
import '../../translations
|
|
23
|
+
import '../../translations.esm.js';
|
|
24
24
|
import { PipelineRunVisualization } from '../pipeline-topology/PipelineRunVisualization.esm.js';
|
|
25
25
|
import PipelineRunRowActions from './PipelineRunRowActions.esm.js';
|
|
26
26
|
import PipelineRunTaskStatus from './PipelineRunTaskStatus.esm.js';
|
|
@@ -16,7 +16,7 @@ import PipelineRunLogDialog from '../PipelineRunLogs/PipelineRunLogDialog.esm.js
|
|
|
16
16
|
import PipelineRunOutputDialog from '../PipelineRunOutput/PipelineRunOutputDialog.esm.js';
|
|
17
17
|
import PipelineRunSBOMLink from './PipelineRunSBOMLink.esm.js';
|
|
18
18
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
19
|
-
import '../../translations
|
|
19
|
+
import '../../translations.esm.js';
|
|
20
20
|
import { PipelineRunParamsAndResultsDialog } from '../PipelineRunParamsAndResults/PipelineRunParamsAndResultsDialog.esm.js';
|
|
21
21
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
22
22
|
|
|
@@ -8,7 +8,7 @@ import classNames from 'classnames';
|
|
|
8
8
|
import { usePipelineRunScanResults } from '../../hooks/usePipelineRunScanResults.esm.js';
|
|
9
9
|
import CriticalRiskIcon from '../Icons/CriticalRiskIcon.esm.js';
|
|
10
10
|
import EqualsIcon from '../Icons/EqualsIcon.esm.js';
|
|
11
|
-
import '../../translations
|
|
11
|
+
import '../../translations.esm.js';
|
|
12
12
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
13
13
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
14
14
|
|
|
@@ -6,7 +6,7 @@ import TableSortLabel from '@mui/material/TableSortLabel';
|
|
|
6
6
|
import { getPipelineRunColumnHeader } from './PipelineRunColumnHeader.esm.js';
|
|
7
7
|
import { getMergedPipelineRunTableHeaderCellSx } from './pipelineRunTableColumns.esm.js';
|
|
8
8
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
9
|
-
import '../../translations
|
|
9
|
+
import '../../translations.esm.js';
|
|
10
10
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
11
11
|
|
|
12
12
|
const EnhancedTableHead = ({
|
|
@@ -3,7 +3,7 @@ import { pipelineRunFilterReducer } from '@backstage-community/plugin-tekton-rea
|
|
|
3
3
|
import { Status } from '../common/Status.esm.js';
|
|
4
4
|
import './PlrStatus.css.esm.js';
|
|
5
5
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
6
|
-
import '../../translations
|
|
6
|
+
import '../../translations.esm.js';
|
|
7
7
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
8
8
|
|
|
9
9
|
const PlrStatus = ({ obj }) => {
|
|
@@ -12,7 +12,7 @@ import ResourceBadge from '../PipelineRunList/ResourceBadge.esm.js';
|
|
|
12
12
|
import PipelineRunLogDownloader from './PipelineRunLogDownloader.esm.js';
|
|
13
13
|
import { PipelineRunLogs } from './PipelineRunLogs.esm.js';
|
|
14
14
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
15
|
-
import '../../translations
|
|
15
|
+
import '../../translations.esm.js';
|
|
16
16
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
17
17
|
|
|
18
18
|
const titleContainerSx = {
|
|
@@ -4,7 +4,7 @@ import { Flex, FlexItem } from '@patternfly/react-core';
|
|
|
4
4
|
import { TEKTON_PIPELINE_RUN, TEKTON_PIPELINE_TASKRUN, TEKTON_PIPELINE_TASK } from '../../consts/tekton-const.esm.js';
|
|
5
5
|
import PodLogsDownloadLink from './PodLogsDownloadLink.esm.js';
|
|
6
6
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
7
|
-
import '../../translations
|
|
7
|
+
import '../../translations.esm.js';
|
|
8
8
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
9
9
|
|
|
10
10
|
const PipelineRunLogDownloader = ({ pods, pipelineRun, activeTask }) => {
|
|
@@ -5,7 +5,7 @@ import Skeleton from '@mui/material/Skeleton';
|
|
|
5
5
|
import { QueryClientProvider, QueryClient } from '@tanstack/react-query';
|
|
6
6
|
import { usePodLogsOfPipelineRun } from '../../hooks/usePodLogsOfPipelineRun.esm.js';
|
|
7
7
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
8
|
-
import '../../translations
|
|
8
|
+
import '../../translations.esm.js';
|
|
9
9
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
10
10
|
|
|
11
11
|
const PipelineRunLogViewer = ({ pod }) => {
|
|
@@ -8,7 +8,7 @@ import { getSortedTaskRuns, getActiveTaskRun } from '../../utils/taskRun-utils.e
|
|
|
8
8
|
import { PipelineRunLogViewer as PipelineRunLogViewerWithQueryClient } from './PipelineRunLogViewer.esm.js';
|
|
9
9
|
import { TaskStatusStepper } from './TaskStatusStepper.esm.js';
|
|
10
10
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
11
|
-
import '../../translations
|
|
11
|
+
import '../../translations.esm.js';
|
|
12
12
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
13
13
|
|
|
14
14
|
const PipelineRunLogs = ({
|
|
@@ -7,7 +7,7 @@ import DownloadIcon from '@mui/icons-material/FileDownloadOutlined';
|
|
|
7
7
|
import { TektonResourcesContext } from '../../hooks/TektonResourcesContext.esm.js';
|
|
8
8
|
import { getPodLogs } from '../../utils/log-downloader-utils.esm.js';
|
|
9
9
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
10
|
-
import '../../translations
|
|
10
|
+
import '../../translations.esm.js';
|
|
11
11
|
import { downloadLogFile } from '../../utils/download-log-file-utils.esm.js';
|
|
12
12
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ import classNames from 'classnames';
|
|
|
15
15
|
import { ComputedStatus } from '@backstage-community/plugin-tekton-react';
|
|
16
16
|
import { calculateDuration } from '../../utils/tekton-utils.esm.js';
|
|
17
17
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
18
|
-
import '../../translations
|
|
18
|
+
import '../../translations.esm.js';
|
|
19
19
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
20
20
|
|
|
21
21
|
const StepTimeTicker = ({ step }) => {
|
|
@@ -11,7 +11,7 @@ import { tektonGroupColor } from '../../types/types.esm.js';
|
|
|
11
11
|
import PipelineRunOutput from '../PipelineRunList/PipelineRunOutput.esm.js';
|
|
12
12
|
import ResourceBadge from '../PipelineRunList/ResourceBadge.esm.js';
|
|
13
13
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
14
|
-
import '../../translations
|
|
14
|
+
import '../../translations.esm.js';
|
|
15
15
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
16
16
|
|
|
17
17
|
const titleContainerSx = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
2
2
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
3
3
|
import { Table, Thead, Tr, Th, Tbody, Td } from '@patternfly/react-table';
|
|
4
|
-
import '../../translations
|
|
4
|
+
import '../../translations.esm.js';
|
|
5
5
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
6
6
|
|
|
7
7
|
const Output = ({ results }) => {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
3
3
|
import Typography from '@mui/material/Typography';
|
|
4
|
-
import '../../translations
|
|
4
|
+
import '../../translations.esm.js';
|
|
5
5
|
import { Output } from './Output.esm.js';
|
|
6
6
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
3
|
-
import '../../translations
|
|
3
|
+
import '../../translations.esm.js';
|
|
4
4
|
import Typography from '@mui/material/Typography';
|
|
5
5
|
import { PipelineRunParams } from './PipelineRunParams.esm.js';
|
|
6
6
|
import { PipelineRunResults } from './PipelineRunResults.esm.js';
|
package/dist/components/PipelineRunParamsAndResults/PipelineRunParamsAndResultsDialog.esm.js
CHANGED
|
@@ -9,7 +9,7 @@ import CloseIcon from '@mui/icons-material/Close';
|
|
|
9
9
|
import { tektonGroupColor } from '../../types/types.esm.js';
|
|
10
10
|
import ResourceBadge from '../PipelineRunList/ResourceBadge.esm.js';
|
|
11
11
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
12
|
-
import '../../translations
|
|
12
|
+
import '../../translations.esm.js';
|
|
13
13
|
import { PipelineRunParamsAndResults } from './PipelineRunParamsAndResults.esm.js';
|
|
14
14
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
15
15
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
3
3
|
import Typography from '@mui/material/Typography';
|
|
4
|
-
import '../../translations
|
|
4
|
+
import '../../translations.esm.js';
|
|
5
5
|
import { Output } from './Output.esm.js';
|
|
6
6
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
7
7
|
|
|
@@ -5,7 +5,7 @@ import Typography from '@mui/material/Typography';
|
|
|
5
5
|
import { TektonResourcesContext } from '../../hooks/TektonResourcesContext.esm.js';
|
|
6
6
|
import './ClusterSelector.css.esm.js';
|
|
7
7
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
8
|
-
import '../../translations
|
|
8
|
+
import '../../translations.esm.js';
|
|
9
9
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
10
10
|
|
|
11
11
|
const labelSx = {
|
|
@@ -3,7 +3,7 @@ import { WarningPanel } from '@backstage/core-components';
|
|
|
3
3
|
import { useEntity } from '@backstage/plugin-catalog-react';
|
|
4
4
|
import Typography from '@mui/material/Typography';
|
|
5
5
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
6
|
-
import '../../translations
|
|
6
|
+
import '../../translations.esm.js';
|
|
7
7
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
8
8
|
|
|
9
9
|
const ErrorPanel = ({ allErrors }) => {
|
|
@@ -3,7 +3,7 @@ import Alert from '@mui/material/Alert';
|
|
|
3
3
|
import AlertTitle from '@mui/material/AlertTitle';
|
|
4
4
|
import { kubernetesClustersReadPermission, kubernetesResourcesReadPermission } from '@backstage/plugin-kubernetes-common';
|
|
5
5
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
6
|
-
import '../../translations
|
|
6
|
+
import '../../translations.esm.js';
|
|
7
7
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
8
8
|
|
|
9
9
|
const permissions = [
|
|
@@ -6,7 +6,7 @@ import './StatusSelector.css.esm.js';
|
|
|
6
6
|
import { ComputedStatus } from '@backstage-community/plugin-tekton-react';
|
|
7
7
|
import { TektonResourcesContext } from '../../hooks/TektonResourcesContext.esm.js';
|
|
8
8
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
9
|
-
import '../../translations
|
|
9
|
+
import '../../translations.esm.js';
|
|
10
10
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
11
11
|
|
|
12
12
|
const labelSx = {
|
|
@@ -7,7 +7,7 @@ import Collapse from '@mui/icons-material/UnfoldLess';
|
|
|
7
7
|
import Expand from '@mui/icons-material/UnfoldMore';
|
|
8
8
|
import { TektonResourcesContext } from '../../hooks/TektonResourcesContext.esm.js';
|
|
9
9
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
10
|
-
import '../../translations
|
|
10
|
+
import '../../translations.esm.js';
|
|
11
11
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
12
12
|
|
|
13
13
|
const TableExpandCollapse = () => {
|
|
@@ -12,7 +12,7 @@ import PipelineRunLogDialog from '../PipelineRunLogs/PipelineRunLogDialog.esm.js
|
|
|
12
12
|
import { PipelineVisualizationStepList } from './PipelineVisualizationStepList.esm.js';
|
|
13
13
|
import './PipelineTaskNode.css.esm.js';
|
|
14
14
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
15
|
-
import '../../translations
|
|
15
|
+
import '../../translations.esm.js';
|
|
16
16
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
17
17
|
|
|
18
18
|
const PipelineTaskNode$1 = ({
|
|
@@ -4,7 +4,7 @@ import { getGraphDataModel } from '../../utils/pipeline-topology-utils.esm.js';
|
|
|
4
4
|
import { PipelineLayout } from './PipelineLayout.esm.js';
|
|
5
5
|
import './PipelineVisualization.css.esm.js';
|
|
6
6
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
7
|
-
import '../../translations
|
|
7
|
+
import '../../translations.esm.js';
|
|
8
8
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
9
9
|
|
|
10
10
|
const PipelineVisualization = ({
|
|
@@ -11,7 +11,7 @@ import ReportProblemOutlined from '@mui/icons-material/ReportProblemOutlined';
|
|
|
11
11
|
import classNames from 'classnames';
|
|
12
12
|
import './PipelineVisualizationStepList.css.esm.js';
|
|
13
13
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
14
|
-
import '../../translations
|
|
14
|
+
import '../../translations.esm.js';
|
|
15
15
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
16
16
|
|
|
17
17
|
const tooltipStatusIconSx = {
|
|
@@ -7,7 +7,7 @@ import { getPipelineRun } from '../../utils/pipelineRun-utils.esm.js';
|
|
|
7
7
|
import { PipelineVisualization } from './PipelineVisualization.esm.js';
|
|
8
8
|
import './PipelineVisualization.css.esm.js';
|
|
9
9
|
import { useTranslationRef } from '@backstage/core-plugin-api/alpha';
|
|
10
|
-
import '../../translations
|
|
10
|
+
import '../../translations.esm.js';
|
|
11
11
|
import { tektonTranslationRef } from '../../translations/ref.esm.js';
|
|
12
12
|
|
|
13
13
|
const PipelineVisualizationView = ({
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
3
3
|
import { Entity } from '@backstage/catalog-model';
|
|
4
|
-
|
|
4
|
+
export { tektonTranslationRef, tektonTranslations, default as tektonTranslationsModule } from './translations.js';
|
|
5
|
+
import '@backstage/frontend-plugin-api';
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* A Tekton plugin.
|
|
@@ -29,87 +30,4 @@ declare const TektonCI: () => react_jsx_runtime.JSX.Element | null;
|
|
|
29
30
|
*/
|
|
30
31
|
declare const isTektonCIAvailable: (entity: Entity) => boolean;
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
* Tekton translation reference.
|
|
34
|
-
* @public
|
|
35
|
-
*/
|
|
36
|
-
declare const tektonTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"tekton", {
|
|
37
|
-
readonly "errorPanel.title": "There was a problem retrieving Kubernetes objects";
|
|
38
|
-
readonly "errorPanel.description": "There was a problem retrieving some Kubernetes resources for the entity: {{entityName}}. This could mean that the Error Reporting card is not completely accurate.";
|
|
39
|
-
readonly "permissionAlert.title": "Permission required";
|
|
40
|
-
readonly "permissionAlert.description": "To view Tekton Pipeline Runs, contact your administrator to give you the following permission(s): {{permissions}}.";
|
|
41
|
-
readonly "statusSelector.label": "Status";
|
|
42
|
-
readonly "clusterSelector.label": "Cluster";
|
|
43
|
-
readonly "tableExpandCollapse.collapseAll": "Collapse all";
|
|
44
|
-
readonly "tableExpandCollapse.expandAll": "Expand all";
|
|
45
|
-
readonly "pipelineVisualization.emptyState.description": "No Pipeline Run to visualize";
|
|
46
|
-
readonly "pipelineVisualization.noTasksDescription": "This Pipeline Run has no tasks to visualize";
|
|
47
|
-
readonly "pipelineVisualization.stepList.finallyTaskTitle": "Finally Task";
|
|
48
|
-
readonly "pipelineRunList.title": "Pipeline Runs";
|
|
49
|
-
readonly "pipelineRunList.noPipelineRuns": "No Pipeline Runs found";
|
|
50
|
-
readonly "pipelineRunList.searchBarPlaceholder": "Search";
|
|
51
|
-
readonly "pipelineRunList.rowActions.viewParamsAndResults": "View Parameters and Results";
|
|
52
|
-
readonly "pipelineRunList.rowActions.viewLogs": "View logs";
|
|
53
|
-
readonly "pipelineRunList.rowActions.unauthorizedViewLogs": "Unauthorized to view logs";
|
|
54
|
-
readonly "pipelineRunList.rowActions.viewSBOM": "View SBOM";
|
|
55
|
-
readonly "pipelineRunList.rowActions.SBOMNotApplicable": "View SBOM is not applicable for this PipelineRun";
|
|
56
|
-
readonly "pipelineRunList.rowActions.viewOutput": "View output";
|
|
57
|
-
readonly "pipelineRunList.rowActions.outputNotApplicable": "View Output is not applicable for this PipelineRun";
|
|
58
|
-
readonly "pipelineRunList.vulnerabilitySeverityTitle.medium": "Medium";
|
|
59
|
-
readonly "pipelineRunList.vulnerabilitySeverityTitle.critical": "Critical";
|
|
60
|
-
readonly "pipelineRunList.vulnerabilitySeverityTitle.high": "High";
|
|
61
|
-
readonly "pipelineRunList.vulnerabilitySeverityTitle.low": "Low";
|
|
62
|
-
readonly "pipelineRunList.tableHeaderTitle.name": "NAME";
|
|
63
|
-
readonly "pipelineRunList.tableHeaderTitle.startTime": "STARTED";
|
|
64
|
-
readonly "pipelineRunList.tableHeaderTitle.status": "STATUS";
|
|
65
|
-
readonly "pipelineRunList.tableHeaderTitle.taskStatus": "TASK STATUS";
|
|
66
|
-
readonly "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULNERABILITIES";
|
|
67
|
-
readonly "pipelineRunList.tableHeaderTitle.duration": "DURATION";
|
|
68
|
-
readonly "pipelineRunList.tableHeaderTitle.actions": "ACTIONS";
|
|
69
|
-
readonly "pipelineRunList.tablePagination.rowsPerPage": "Rows per page";
|
|
70
|
-
readonly "pipelineRunList.tablePagination.rowsPerPageOptionLabel": "{{num}} rows";
|
|
71
|
-
readonly "pipelineRunLogs.title": "PipelineRun Logs";
|
|
72
|
-
readonly "pipelineRunLogs.noLogs": "No logs found";
|
|
73
|
-
readonly "pipelineRunLogs.downloader.downloadTaskLogs": "Download";
|
|
74
|
-
readonly "pipelineRunLogs.downloader.downloadPipelineRunLogs": "Download all tasks logs";
|
|
75
|
-
readonly "pipelineRunLogs.podLogsDownloadLink.title": "Download";
|
|
76
|
-
readonly "pipelineRunLogs.podLogsDownloadLink.downloading": "downloading logs";
|
|
77
|
-
readonly "pipelineRunLogs.taskStatusStepper.skipped": "Skipped";
|
|
78
|
-
readonly "pipelineRunOutput.title": "PipelineRun Output";
|
|
79
|
-
readonly "pipelineRunOutput.noOutput": "No output";
|
|
80
|
-
readonly "pipelineRunStatus.All": "All";
|
|
81
|
-
readonly "pipelineRunStatus.Cancelling": "Cancelling";
|
|
82
|
-
readonly "pipelineRunStatus.Succeeded": "Succeeded";
|
|
83
|
-
readonly "pipelineRunStatus.Failed": "Failed";
|
|
84
|
-
readonly "pipelineRunStatus.Running": "Running";
|
|
85
|
-
readonly "pipelineRunStatus.In Progress": "In Progress";
|
|
86
|
-
readonly "pipelineRunStatus.FailedToStart": "FailedToStart";
|
|
87
|
-
readonly "pipelineRunStatus.PipelineNotStarted": "PipelineNotStarted";
|
|
88
|
-
readonly "pipelineRunStatus.Skipped": "Skipped";
|
|
89
|
-
readonly "pipelineRunStatus.Cancelled": "Cancelled";
|
|
90
|
-
readonly "pipelineRunStatus.Pending": "Pending";
|
|
91
|
-
readonly "pipelineRunStatus.Idle": "Idle";
|
|
92
|
-
readonly "pipelineRunStatus.Other": "Other";
|
|
93
|
-
readonly "pipelineRunDuration.lessThanSec": "less than a sec";
|
|
94
|
-
readonly "pipelineRunDuration.hour_one": "{{count}} hour";
|
|
95
|
-
readonly "pipelineRunDuration.hour_other": "{{count}} hours";
|
|
96
|
-
readonly "pipelineRunDuration.minute_one": "{{count}} minute";
|
|
97
|
-
readonly "pipelineRunDuration.minute_other": "{{count}} minutes";
|
|
98
|
-
readonly "pipelineRunDuration.second_one": "{{count}} second";
|
|
99
|
-
readonly "pipelineRunDuration.second_other": "{{count}} seconds";
|
|
100
|
-
readonly "pipelineRunParamsAndResults.title": "PipelineRun Parameters and Results";
|
|
101
|
-
readonly "pipelineRunParamsAndResults.results": "Results";
|
|
102
|
-
readonly "pipelineRunParamsAndResults.noParams": "No parameters found";
|
|
103
|
-
readonly "pipelineRunParamsAndResults.noResults": "No results found";
|
|
104
|
-
readonly "pipelineRunParamsAndResults.params": "Parameters";
|
|
105
|
-
readonly "pipelineRunParamsAndResults.outputTableColumn.name": "Name";
|
|
106
|
-
readonly "pipelineRunParamsAndResults.outputTableColumn.value": "Value";
|
|
107
|
-
}>;
|
|
108
|
-
|
|
109
|
-
/**
|
|
110
|
-
* The translation resource for the Tekton plugin
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
|
-
declare const tektonTranslations: _backstage_frontend_plugin_api.TranslationResource<"tekton">;
|
|
114
|
-
|
|
115
|
-
export { TektonCI, isTektonCIAvailable, tektonPlugin, tektonTranslationRef, tektonTranslations };
|
|
33
|
+
export { TektonCI, isTektonCIAvailable, tektonPlugin };
|
package/dist/index.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { TektonCI, tektonPlugin } from './plugin.esm.js';
|
|
2
2
|
export { isTektonCIAvailable } from './utils/isTektonCIAvailable.esm.js';
|
|
3
|
-
export { tektonTranslations } from './translations
|
|
3
|
+
export { tektonTranslations, default as tektonTranslationsModule } from './translations.esm.js';
|
|
4
4
|
export { tektonTranslationRef } from './translations/ref.esm.js';
|
|
5
5
|
//# sourceMappingURL=index.esm.js.map
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Tekton translation reference.
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
declare const tektonTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"tekton", {
|
|
8
|
+
readonly "errorPanel.title": "There was a problem retrieving Kubernetes objects";
|
|
9
|
+
readonly "errorPanel.description": "There was a problem retrieving some Kubernetes resources for the entity: {{entityName}}. This could mean that the Error Reporting card is not completely accurate.";
|
|
10
|
+
readonly "permissionAlert.title": "Permission required";
|
|
11
|
+
readonly "permissionAlert.description": "To view Tekton Pipeline Runs, contact your administrator to give you the following permission(s): {{permissions}}.";
|
|
12
|
+
readonly "statusSelector.label": "Status";
|
|
13
|
+
readonly "clusterSelector.label": "Cluster";
|
|
14
|
+
readonly "tableExpandCollapse.collapseAll": "Collapse all";
|
|
15
|
+
readonly "tableExpandCollapse.expandAll": "Expand all";
|
|
16
|
+
readonly "pipelineVisualization.emptyState.description": "No Pipeline Run to visualize";
|
|
17
|
+
readonly "pipelineVisualization.noTasksDescription": "This Pipeline Run has no tasks to visualize";
|
|
18
|
+
readonly "pipelineVisualization.stepList.finallyTaskTitle": "Finally Task";
|
|
19
|
+
readonly "pipelineRunList.title": "Pipeline Runs";
|
|
20
|
+
readonly "pipelineRunList.noPipelineRuns": "No Pipeline Runs found";
|
|
21
|
+
readonly "pipelineRunList.searchBarPlaceholder": "Search";
|
|
22
|
+
readonly "pipelineRunList.rowActions.viewParamsAndResults": "View Parameters and Results";
|
|
23
|
+
readonly "pipelineRunList.rowActions.viewLogs": "View logs";
|
|
24
|
+
readonly "pipelineRunList.rowActions.unauthorizedViewLogs": "Unauthorized to view logs";
|
|
25
|
+
readonly "pipelineRunList.rowActions.viewSBOM": "View SBOM";
|
|
26
|
+
readonly "pipelineRunList.rowActions.SBOMNotApplicable": "View SBOM is not applicable for this PipelineRun";
|
|
27
|
+
readonly "pipelineRunList.rowActions.viewOutput": "View output";
|
|
28
|
+
readonly "pipelineRunList.rowActions.outputNotApplicable": "View Output is not applicable for this PipelineRun";
|
|
29
|
+
readonly "pipelineRunList.vulnerabilitySeverityTitle.medium": "Medium";
|
|
30
|
+
readonly "pipelineRunList.vulnerabilitySeverityTitle.critical": "Critical";
|
|
31
|
+
readonly "pipelineRunList.vulnerabilitySeverityTitle.high": "High";
|
|
32
|
+
readonly "pipelineRunList.vulnerabilitySeverityTitle.low": "Low";
|
|
33
|
+
readonly "pipelineRunList.tableHeaderTitle.name": "NAME";
|
|
34
|
+
readonly "pipelineRunList.tableHeaderTitle.startTime": "STARTED";
|
|
35
|
+
readonly "pipelineRunList.tableHeaderTitle.status": "STATUS";
|
|
36
|
+
readonly "pipelineRunList.tableHeaderTitle.taskStatus": "TASK STATUS";
|
|
37
|
+
readonly "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULNERABILITIES";
|
|
38
|
+
readonly "pipelineRunList.tableHeaderTitle.duration": "DURATION";
|
|
39
|
+
readonly "pipelineRunList.tableHeaderTitle.actions": "ACTIONS";
|
|
40
|
+
readonly "pipelineRunList.tablePagination.rowsPerPage": "Rows per page";
|
|
41
|
+
readonly "pipelineRunList.tablePagination.rowsPerPageOptionLabel": "{{num}} rows";
|
|
42
|
+
readonly "pipelineRunLogs.title": "PipelineRun Logs";
|
|
43
|
+
readonly "pipelineRunLogs.noLogs": "No logs found";
|
|
44
|
+
readonly "pipelineRunLogs.downloader.downloadTaskLogs": "Download";
|
|
45
|
+
readonly "pipelineRunLogs.downloader.downloadPipelineRunLogs": "Download all tasks logs";
|
|
46
|
+
readonly "pipelineRunLogs.podLogsDownloadLink.title": "Download";
|
|
47
|
+
readonly "pipelineRunLogs.podLogsDownloadLink.downloading": "downloading logs";
|
|
48
|
+
readonly "pipelineRunLogs.taskStatusStepper.skipped": "Skipped";
|
|
49
|
+
readonly "pipelineRunOutput.title": "PipelineRun Output";
|
|
50
|
+
readonly "pipelineRunOutput.noOutput": "No output";
|
|
51
|
+
readonly "pipelineRunStatus.All": "All";
|
|
52
|
+
readonly "pipelineRunStatus.Cancelling": "Cancelling";
|
|
53
|
+
readonly "pipelineRunStatus.Succeeded": "Succeeded";
|
|
54
|
+
readonly "pipelineRunStatus.Failed": "Failed";
|
|
55
|
+
readonly "pipelineRunStatus.Running": "Running";
|
|
56
|
+
readonly "pipelineRunStatus.In Progress": "In Progress";
|
|
57
|
+
readonly "pipelineRunStatus.FailedToStart": "FailedToStart";
|
|
58
|
+
readonly "pipelineRunStatus.PipelineNotStarted": "PipelineNotStarted";
|
|
59
|
+
readonly "pipelineRunStatus.Skipped": "Skipped";
|
|
60
|
+
readonly "pipelineRunStatus.Cancelled": "Cancelled";
|
|
61
|
+
readonly "pipelineRunStatus.Pending": "Pending";
|
|
62
|
+
readonly "pipelineRunStatus.Idle": "Idle";
|
|
63
|
+
readonly "pipelineRunStatus.Other": "Other";
|
|
64
|
+
readonly "pipelineRunDuration.lessThanSec": "less than a sec";
|
|
65
|
+
readonly "pipelineRunDuration.hour_one": "{{count}} hour";
|
|
66
|
+
readonly "pipelineRunDuration.hour_other": "{{count}} hours";
|
|
67
|
+
readonly "pipelineRunDuration.minute_one": "{{count}} minute";
|
|
68
|
+
readonly "pipelineRunDuration.minute_other": "{{count}} minutes";
|
|
69
|
+
readonly "pipelineRunDuration.second_one": "{{count}} second";
|
|
70
|
+
readonly "pipelineRunDuration.second_other": "{{count}} seconds";
|
|
71
|
+
readonly "pipelineRunParamsAndResults.title": "PipelineRun Parameters and Results";
|
|
72
|
+
readonly "pipelineRunParamsAndResults.results": "Results";
|
|
73
|
+
readonly "pipelineRunParamsAndResults.noParams": "No parameters found";
|
|
74
|
+
readonly "pipelineRunParamsAndResults.noResults": "No results found";
|
|
75
|
+
readonly "pipelineRunParamsAndResults.params": "Parameters";
|
|
76
|
+
readonly "pipelineRunParamsAndResults.outputTableColumn.name": "Name";
|
|
77
|
+
readonly "pipelineRunParamsAndResults.outputTableColumn.value": "Value";
|
|
78
|
+
}>;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* The translation resource for the Tekton plugin
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
declare const tektonTranslations: _backstage_frontend_plugin_api.TranslationResource<"tekton">;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Translation module for the Tekton plugin.
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
declare const tektonTranslationsModule: _backstage_frontend_plugin_api.FrontendModule;
|
|
91
|
+
|
|
92
|
+
export { tektonTranslationsModule as default, tektonTranslationRef, tektonTranslations };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { createTranslationResource } from '@backstage/core-plugin-api/alpha';
|
|
2
|
+
import { createFrontendModule } from '@backstage/frontend-plugin-api';
|
|
3
|
+
import { TranslationBlueprint } from '@backstage/plugin-app-react';
|
|
4
|
+
import { tektonTranslationRef } from './translations/ref.esm.js';
|
|
5
|
+
|
|
6
|
+
const tektonTranslations = createTranslationResource({
|
|
7
|
+
ref: tektonTranslationRef,
|
|
8
|
+
translations: {
|
|
9
|
+
de: () => import('./translations/de.esm.js'),
|
|
10
|
+
es: () => import('./translations/es.esm.js'),
|
|
11
|
+
fr: () => import('./translations/fr.esm.js'),
|
|
12
|
+
it: () => import('./translations/it.esm.js'),
|
|
13
|
+
ja: () => import('./translations/ja.esm.js')
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
const tektonTranslationsModule = createFrontendModule({
|
|
17
|
+
pluginId: "app",
|
|
18
|
+
extensions: [
|
|
19
|
+
TranslationBlueprint.make({
|
|
20
|
+
name: "tekton-translations",
|
|
21
|
+
params: {
|
|
22
|
+
resource: tektonTranslations
|
|
23
|
+
}
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
export { tektonTranslationsModule as default, tektonTranslationRef, tektonTranslations };
|
|
29
|
+
//# sourceMappingURL=translations.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"translations.esm.js","sources":["../src/translations/index.ts"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationResource } from '@backstage/core-plugin-api/alpha';\nimport { createFrontendModule } from '@backstage/frontend-plugin-api';\nimport { TranslationBlueprint } from '@backstage/plugin-app-react';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * The translation resource for the Tekton plugin\n * @public\n */\nexport const tektonTranslations = createTranslationResource({\n ref: tektonTranslationRef,\n translations: {\n de: () => import('./de'),\n es: () => import('./es'),\n fr: () => import('./fr'),\n it: () => import('./it'),\n ja: () => import('./ja'),\n },\n});\n\nexport { tektonTranslationRef };\n\n/**\n * Translation module for the Tekton plugin.\n * @public\n */\nconst tektonTranslationsModule = createFrontendModule({\n pluginId: 'app',\n extensions: [\n TranslationBlueprint.make({\n name: 'tekton-translations',\n params: {\n resource: tektonTranslations,\n },\n }),\n ],\n});\n\nexport default tektonTranslationsModule;\n"],"names":[],"mappings":";;;;;AAyBO,MAAM,qBAAqB,yBAAA,CAA0B;AAAA,EAC1D,GAAA,EAAK,oBAAA;AAAA,EACL,YAAA,EAAc;AAAA,IACZ,EAAA,EAAI,MAAM,OAAO,0BAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,0BAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,0BAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,0BAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,0BAAM;AAAA;AAE3B,CAAC;AAQD,MAAM,2BAA2B,oBAAA,CAAqB;AAAA,EACpD,QAAA,EAAU,KAAA;AAAA,EACV,UAAA,EAAY;AAAA,IACV,qBAAqB,IAAA,CAAK;AAAA,MACxB,IAAA,EAAM,qBAAA;AAAA,MACN,MAAA,EAAQ;AAAA,QACN,QAAA,EAAU;AAAA;AACZ,KACD;AAAA;AAEL,CAAC;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-tekton",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.41.0",
|
|
4
4
|
"main": "./dist/index.esm.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
"types": "./dist/alpha.d.ts",
|
|
20
20
|
"default": "./dist/alpha.esm.js"
|
|
21
21
|
},
|
|
22
|
+
"./translations": {
|
|
23
|
+
"backstage": "@backstage/FrontendModule",
|
|
24
|
+
"import": "./dist/translations.esm.js",
|
|
25
|
+
"types": "./dist/translations.d.ts",
|
|
26
|
+
"default": "./dist/translations.esm.js"
|
|
27
|
+
},
|
|
22
28
|
"./package.json": "./package.json"
|
|
23
29
|
},
|
|
24
30
|
"typesVersions": {
|
|
@@ -26,6 +32,9 @@
|
|
|
26
32
|
"alpha": [
|
|
27
33
|
"dist/alpha.d.ts"
|
|
28
34
|
],
|
|
35
|
+
"translations": [
|
|
36
|
+
"dist/translations.d.ts"
|
|
37
|
+
],
|
|
29
38
|
"package.json": [
|
|
30
39
|
"package.json"
|
|
31
40
|
]
|
|
@@ -41,7 +50,8 @@
|
|
|
41
50
|
"@backstage-community/plugin-tekton-react"
|
|
42
51
|
],
|
|
43
52
|
"features": {
|
|
44
|
-
"./alpha": "@backstage/FrontendPlugin"
|
|
53
|
+
"./alpha": "@backstage/FrontendPlugin",
|
|
54
|
+
"./translations": "@backstage/FrontendModule"
|
|
45
55
|
}
|
|
46
56
|
},
|
|
47
57
|
"sideEffects": [
|
|
@@ -66,6 +76,7 @@
|
|
|
66
76
|
"@backstage/core-components": "^0.18.11",
|
|
67
77
|
"@backstage/core-plugin-api": "^1.12.7",
|
|
68
78
|
"@backstage/frontend-plugin-api": "^0.17.2",
|
|
79
|
+
"@backstage/plugin-app-react": "^0.2.4",
|
|
69
80
|
"@backstage/plugin-catalog-react": "^3.1.0",
|
|
70
81
|
"@backstage/plugin-kubernetes-common": "^0.9.12",
|
|
71
82
|
"@backstage/plugin-kubernetes-react": "^0.5.20",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { createTranslationResource } from '@backstage/core-plugin-api/alpha';
|
|
2
|
-
import { tektonTranslationRef } from './ref.esm.js';
|
|
3
|
-
|
|
4
|
-
const tektonTranslations = createTranslationResource({
|
|
5
|
-
ref: tektonTranslationRef,
|
|
6
|
-
translations: {
|
|
7
|
-
de: () => import('./de.esm.js'),
|
|
8
|
-
es: () => import('./es.esm.js'),
|
|
9
|
-
fr: () => import('./fr.esm.js'),
|
|
10
|
-
it: () => import('./it.esm.js'),
|
|
11
|
-
ja: () => import('./ja.esm.js')
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
|
-
|
|
15
|
-
export { tektonTranslationRef, tektonTranslations };
|
|
16
|
-
//# sourceMappingURL=index.esm.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":["../../src/translations/index.ts"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createTranslationResource } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * The translation resource for the Tekton plugin\n * @public\n */\nexport const tektonTranslations = createTranslationResource({\n ref: tektonTranslationRef,\n translations: {\n de: () => import('./de'),\n es: () => import('./es'),\n fr: () => import('./fr'),\n it: () => import('./it'),\n ja: () => import('./ja'),\n },\n});\n\nexport { tektonTranslationRef };\n"],"names":[],"mappings":";;;AAuBO,MAAM,qBAAqB,yBAAA,CAA0B;AAAA,EAC1D,GAAA,EAAK,oBAAA;AAAA,EACL,YAAA,EAAc;AAAA,IACZ,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM,CAAA;AAAA,IACvB,EAAA,EAAI,MAAM,OAAO,aAAM;AAAA;AAE3B,CAAC;;;;"}
|