@backstage-community/plugin-tekton 3.41.1 → 4.0.1

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 CHANGED
@@ -1,5 +1,37 @@
1
1
  # @backstage-community/plugin-tekton
2
2
 
3
+ ## 4.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 842669b: Added missing translation for "unknown" vulnerability severity
8
+
9
+ ## 4.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - 929477e: **Breaking:** The new frontend system (NFS) plugin is now the default export. The `/alpha` subpath no longer exports the NFS plugin — it now re-exports only translations. Legacy frontend system APIs moved to `/legacy`.
14
+
15
+ **If you use the new frontend system**, import the plugin from the package root instead of `/alpha`.
16
+
17
+ **If you use the legacy frontend system**, update imports of `TektonCI`, `tektonPlugin`, and `isTektonCIAvailable` to the `/legacy` subpath.
18
+
19
+ **If you use RHDH / dynamic plugins (scalprum)**, the `TektonCI` component and `tektonTranslations` resource are now exposed under the `Legacy` module.
20
+
21
+ Translations are now available from `/translations` and `/alpha`.
22
+
23
+ ### Minor Changes
24
+
25
+ - 77c4615: Backstage version bump to v1.54.5
26
+ Added New Frontend System development entrypoints and e2e coverage for both NFS and legacy.
27
+
28
+ ### Patch Changes
29
+
30
+ - 5611e85: Updated dependency `react-router-dom` to `^6.30.5`.
31
+ - Updated dependencies [77c4615]
32
+ - @backstage-community/plugin-tekton-common@1.24.0
33
+ - @backstage-community/plugin-tekton-react@0.9.0
34
+
3
35
  ## 3.41.1
4
36
 
5
37
  ### Patch Changes
package/README.md CHANGED
@@ -119,26 +119,56 @@ The Tekton plugin enables you to visualize the `PipelineRun` resources available
119
119
  yarn workspace app add @backstage-community/plugin-tekton
120
120
  ```
121
121
 
122
- 1. To enable the PipelineRun list in the **CI/CD** tab on the entity view page, add the following snippet in the `packages/app/src/components/catalog/EntityPage.tsx`.
123
-
124
- ```tsx title="packages/app/src/components/catalog/EntityPage.tsx"
125
- /* highlight-add-next-line */
126
- import {
127
- isTektonCIAvailable,
128
- TektonCI,
129
- } from '@backstage-community/plugin-tekton';
130
-
131
- const cicdContent = (
132
- <EntitySwitch>
133
- {/* ... */}
134
- {/* highlight-add-start */}
135
- <EntitySwitch.Case if={isTektonCIAvailable}>
136
- <TektonCI />
137
- </EntitySwitch.Case>
138
- {/* highlight-add-end */}
139
- </EntitySwitch>
140
- );
141
- ```
122
+ ### New frontend system
123
+
124
+ If you are using Backstage's [new frontend system](https://backstage.io/docs/frontend-system/), add the default export and the translations module to your app `features` array. The Tekton entity tab is registered automatically for entities with the `tekton.dev/cicd` annotation.
125
+
126
+ ```ts
127
+ import tektonPlugin, {
128
+ tektonTranslationsModule,
129
+ } from '@backstage-community/plugin-tekton';
130
+
131
+ export const app = createApp({
132
+ features: [
133
+ // ...
134
+ tektonPlugin,
135
+ tektonTranslationsModule,
136
+ ],
137
+ });
138
+ ```
139
+
140
+ ### Legacy frontend system
141
+
142
+ If you are using the legacy frontend system, import the plugin from the `/legacy` subpath and add the Tekton CI/CD component to `packages/app/src/components/catalog/EntityPage.tsx`. Register translations with `.addTranslationResource(tektonTranslations)` in `App.tsx`.
143
+
144
+ ```ts
145
+ // packages/app/src/App.tsx
146
+ import { tektonTranslations } from '@backstage-community/plugin-tekton/legacy';
147
+
148
+ createApp({
149
+ __experimentalTranslations: {
150
+ availableLanguages: ['en', 'de', 'es', 'fr', 'it', 'ja'],
151
+ resources: [tektonTranslations],
152
+ },
153
+ // ...
154
+ });
155
+ ```
156
+
157
+ ```tsx title="packages/app/src/components/catalog/EntityPage.tsx"
158
+ import {
159
+ isTektonCIAvailable,
160
+ TektonCI,
161
+ } from '@backstage-community/plugin-tekton/legacy';
162
+
163
+ const cicdContent = (
164
+ <EntitySwitch>
165
+ {/* ... */}
166
+ <EntitySwitch.Case if={isTektonCIAvailable}>
167
+ <TektonCI />
168
+ </EntitySwitch.Case>
169
+ </EntitySwitch>
170
+ );
171
+ ```
142
172
 
143
173
  #### Permissions
144
174
 
@@ -164,9 +194,9 @@ Tekton is a front-end plugin that enables you to view the `PipelineRun` resource
164
194
 
165
195
  1. Open your Backstage application and select a component from the **Catalog** page.
166
196
 
167
- 1. Go to the **CI/CD** tab.
197
+ 1. Open the **Tekton** tab (new frontend system) or the **CI/CD** tab (legacy frontend system / RHDH).
168
198
 
169
- The **CI/CD** tab displays the list of PipelineRun resources associated with a Kubernetes cluster. The list contains pipeline run details, such as **NAME**, **STATUS**, **TASK STATUS**, **STARTED**, and **DURATION**.
199
+ The tab displays the list of PipelineRun resources associated with a Kubernetes cluster. The list contains pipeline run details, such as **NAME**, **STATUS**, **TASK STATUS**, **STARTED**, and **DURATION**.
170
200
 
171
201
  ![ci-cd-tab-tekton](./docs/images/tekton-plugin-user4.png)
172
202
 
@@ -1,9 +1,14 @@
1
1
  dynamicPlugins:
2
2
  frontend:
3
3
  backstage-community.plugin-tekton:
4
+ translationResources:
5
+ - importName: tektonTranslations
6
+ module: Legacy
7
+ ref: tektonTranslationRef
4
8
  mountPoints:
5
9
  - mountPoint: entity.page.ci/cards
6
10
  importName: TektonCI
11
+ module: Legacy
7
12
  config:
8
13
  layout:
9
14
  gridColumn: '1 / -1'
package/dist/alpha.d.ts CHANGED
@@ -1,55 +1,2 @@
1
- import * as _backstage_catalog_model from '@backstage/catalog-model';
2
- import * as react from 'react';
3
- import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
4
- import * as _backstage_filter_predicates from '@backstage/filter-predicates';
5
-
6
- /**
7
- * The Tekton backstage NFS plugin.
8
- * @alpha
9
- */
10
- declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
11
- "entity-content:tekton/tektonEntityContent": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
12
- kind: "entity-content";
13
- name: "tektonEntityContent";
14
- config: {
15
- path: string | undefined;
16
- title: string | undefined;
17
- filter: _backstage_filter_predicates.FilterPredicate | undefined;
18
- group: string | false | undefined;
19
- icon: string | undefined;
20
- };
21
- configInput: {
22
- path?: string | undefined;
23
- title?: string | undefined;
24
- filter?: _backstage_filter_predicates.FilterPredicate | undefined;
25
- group?: string | false | undefined;
26
- icon?: string | undefined;
27
- };
28
- output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
29
- optional: true;
30
- }> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
31
- optional: true;
32
- }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-filter-expression", {
33
- optional: true;
34
- }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
35
- optional: true;
36
- }> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
37
- optional: true;
38
- }>;
39
- inputs: {};
40
- params: {
41
- defaultPath?: [Error: `Use the 'path' param instead`];
42
- path: string;
43
- defaultTitle?: [Error: `Use the 'title' param instead`];
44
- title: string;
45
- defaultGroup?: [Error: `Use the 'group' param instead`];
46
- group?: ("overview" | "documentation" | "development" | "deployment" | "operation" | "observability") | (string & {});
47
- icon?: string | react.ReactElement;
48
- loader: () => Promise<JSX.Element>;
49
- routeRef?: _backstage_frontend_plugin_api.RouteRef;
50
- filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
51
- };
52
- }>;
53
- }>;
54
-
55
- export { _default as default };
1
+ export { tektonTranslationRef, tektonTranslations, default as tektonTranslationsModule } from './translations.js';
2
+ import '@backstage/frontend-plugin-api';
package/dist/alpha.esm.js CHANGED
@@ -1,21 +1,3 @@
1
- import { jsx } from 'react/jsx-runtime';
2
- import { createFrontendPlugin } from '@backstage/frontend-plugin-api';
3
- import { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';
4
- import { isTektonCIAvailable } from './utils/isTektonCIAvailable.esm.js';
5
-
6
- const tektonEntityContent = EntityContentBlueprint.make({
7
- name: "tektonEntityContent",
8
- params: {
9
- path: "/tekton",
10
- title: "Tekton",
11
- filter: isTektonCIAvailable,
12
- loader: () => import('./components/Router.esm.js').then((m) => /* @__PURE__ */ jsx(m.Router, {}))
13
- }
14
- });
15
- var alpha = createFrontendPlugin({
16
- pluginId: "tekton",
17
- extensions: [tektonEntityContent]
18
- });
19
-
20
- export { alpha as default };
1
+ export { tektonTranslations, default as tektonTranslationsModule } from './translations.esm.js';
2
+ export { tektonTranslationRef } from './translations/ref.esm.js';
21
3
  //# sourceMappingURL=alpha.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"alpha.esm.js","sources":["../src/alpha.tsx"],"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 */\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';\nimport { isTektonCIAvailable } from './utils/isTektonCIAvailable';\n\nconst tektonEntityContent = EntityContentBlueprint.make({\n name: 'tektonEntityContent',\n params: {\n path: '/tekton',\n title: 'Tekton',\n filter: isTektonCIAvailable,\n loader: () => import('./components/Router').then(m => <m.Router />),\n },\n});\n\n/**\n * The Tekton backstage NFS plugin.\n * @alpha\n */\nexport default createFrontendPlugin({\n pluginId: 'tekton',\n extensions: [tektonEntityContent],\n});\n"],"names":[],"mappings":";;;;;AAmBA,MAAM,mBAAA,GAAsB,uBAAuB,IAAA,CAAK;AAAA,EACtD,IAAA,EAAM,qBAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,SAAA;AAAA,IACN,KAAA,EAAO,QAAA;AAAA,IACP,MAAA,EAAQ,mBAAA;AAAA,IACR,MAAA,EAAQ,MAAM,OAAO,4BAAqB,CAAA,CAAE,IAAA,CAAK,CAAA,CAAA,qBAAK,GAAA,CAAC,CAAA,CAAE,MAAA,EAAF,EAAS,CAAE;AAAA;AAEtE,CAAC,CAAA;AAMD,YAAe,oBAAA,CAAqB;AAAA,EAClC,QAAA,EAAU,QAAA;AAAA,EACV,UAAA,EAAY,CAAC,mBAAmB;AAClC,CAAC,CAAA;;;;"}
1
+ {"version":3,"file":"alpha.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
package/dist/index.d.ts CHANGED
@@ -1,33 +1,56 @@
1
- import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
3
- import { Entity } from '@backstage/catalog-model';
4
- export { tektonTranslationRef, tektonTranslations, default as tektonTranslationsModule } from './translations.js';
5
- import '@backstage/frontend-plugin-api';
1
+ import * as _backstage_catalog_model from '@backstage/catalog-model';
2
+ import * as react from 'react';
3
+ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
4
+ import * as _backstage_filter_predicates from '@backstage/filter-predicates';
6
5
 
7
6
  /**
8
- * A Tekton plugin.
7
+ * The Tekton frontend plugin for the new frontend system.
9
8
  *
10
9
  * @public
11
10
  */
12
- declare const tektonPlugin: _backstage_core_plugin_api.BackstagePlugin<{}, {}, {}>;
13
- /**
14
- * Component for the catalog entity CI/CD tab.
15
- *
16
- * @public
17
- */
18
- declare const TektonCI: () => react_jsx_runtime.JSX.Element | null;
19
-
20
- /**
21
- * Returns true if the entity supports the Tekton CI/CD feature and
22
- * the Tekton CI/CD card should be shown on the CI/CD tab.
23
- *
24
- * This means that the catalog entity has one of this annotations set:
25
- *
26
- * 1. `tekton.dev/ci-cd: "true"` or
27
- * 2. `janus-idp.io/tekton` is defined (any value is accepted).
28
- *
29
- * @public
30
- */
31
- declare const isTektonCIAvailable: (entity: Entity) => boolean;
11
+ declare const tektonPlugin: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
12
+ "entity-content:tekton/tektonEntityContent": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
13
+ kind: "entity-content";
14
+ name: "tektonEntityContent";
15
+ config: {
16
+ path: string | undefined;
17
+ title: string | undefined;
18
+ filter: _backstage_filter_predicates.FilterPredicate | undefined;
19
+ group: string | false | undefined;
20
+ icon: string | undefined;
21
+ };
22
+ configInput: {
23
+ path?: string | undefined;
24
+ title?: string | undefined;
25
+ filter?: _backstage_filter_predicates.FilterPredicate | undefined;
26
+ group?: string | false | undefined;
27
+ icon?: string | undefined;
28
+ };
29
+ output: _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
30
+ optional: true;
31
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
32
+ optional: true;
33
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-filter-expression", {
34
+ optional: true;
35
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
36
+ optional: true;
37
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
38
+ optional: true;
39
+ }>;
40
+ inputs: {};
41
+ params: {
42
+ defaultPath?: [Error: `Use the 'path' param instead`];
43
+ path: string;
44
+ defaultTitle?: [Error: `Use the 'title' param instead`];
45
+ title: string;
46
+ defaultGroup?: [Error: `Use the 'group' param instead`];
47
+ group?: ("overview" | "documentation" | "development" | "deployment" | "operation" | "observability") | (string & {});
48
+ icon?: string | react.ReactElement;
49
+ loader: () => Promise<JSX.Element>;
50
+ routeRef?: _backstage_frontend_plugin_api.RouteRef;
51
+ filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
52
+ };
53
+ }>;
54
+ }>;
32
55
 
33
- export { TektonCI, isTektonCIAvailable, tektonPlugin };
56
+ export { tektonPlugin as default };
package/dist/index.esm.js CHANGED
@@ -1,5 +1,2 @@
1
- export { TektonCI, tektonPlugin } from './plugin.esm.js';
2
- export { isTektonCIAvailable } from './utils/isTektonCIAvailable.esm.js';
3
- export { tektonTranslations, default as tektonTranslationsModule } from './translations.esm.js';
4
- export { tektonTranslationRef } from './translations/ref.esm.js';
1
+ export { default } from './plugin.esm.js';
5
2
  //# sourceMappingURL=index.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
@@ -0,0 +1,16 @@
1
+ import { createPlugin, createComponentExtension } from '@backstage/core-plugin-api';
2
+
3
+ const tektonPlugin = createPlugin({
4
+ id: "tekton"
5
+ });
6
+ const TektonCI = tektonPlugin.provide(
7
+ createComponentExtension({
8
+ name: "TektonCI",
9
+ component: {
10
+ lazy: () => import('../components/Router.esm.js').then((m) => m.Router)
11
+ }
12
+ })
13
+ );
14
+
15
+ export { TektonCI, tektonPlugin };
16
+ //# sourceMappingURL=plugin.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.esm.js","sources":["../../src/legacy/plugin.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 {\n createComponentExtension,\n createPlugin,\n} from '@backstage/core-plugin-api';\n\n/**\n * A Tekton plugin (legacy frontend system).\n *\n * @public\n * @remarks Prefer the default export from the package root for the new frontend system.\n */\nexport const tektonPlugin = createPlugin({\n id: 'tekton',\n});\n\n/**\n * Component for the catalog entity CI/CD tab (legacy frontend system).\n *\n * @public\n * @remarks Prefer the default export from the package root for the new frontend system.\n */\nexport const TektonCI = tektonPlugin.provide(\n createComponentExtension({\n name: 'TektonCI',\n component: {\n lazy: () => import('../components/Router').then(m => m.Router),\n },\n }),\n);\n"],"names":[],"mappings":";;AA0BO,MAAM,eAAe,YAAA,CAAa;AAAA,EACvC,EAAA,EAAI;AACN,CAAC;AAQM,MAAM,WAAW,YAAA,CAAa,OAAA;AAAA,EACnC,wBAAA,CAAyB;AAAA,IACvB,IAAA,EAAM,UAAA;AAAA,IACN,SAAA,EAAW;AAAA,MACT,IAAA,EAAM,MAAM,OAAO,6BAAsB,EAAE,IAAA,CAAK,CAAA,CAAA,KAAK,EAAE,MAAM;AAAA;AAC/D,GACD;AACH;;;;"}
@@ -0,0 +1,33 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
3
+ import { Entity } from '@backstage/catalog-model';
4
+
5
+ /**
6
+ * A Tekton plugin (legacy frontend system).
7
+ *
8
+ * @public
9
+ * @remarks Prefer the default export from the package root for the new frontend system.
10
+ */
11
+ declare const tektonPlugin: _backstage_core_plugin_api.BackstagePlugin<{}, {}, {}>;
12
+ /**
13
+ * Component for the catalog entity CI/CD tab (legacy frontend system).
14
+ *
15
+ * @public
16
+ * @remarks Prefer the default export from the package root for the new frontend system.
17
+ */
18
+ declare const TektonCI: () => react_jsx_runtime.JSX.Element | null;
19
+
20
+ /**
21
+ * Returns true if the entity supports the Tekton CI/CD feature and
22
+ * the Tekton CI/CD card should be shown on the CI/CD tab.
23
+ *
24
+ * This means that the catalog entity has one of this annotations set:
25
+ *
26
+ * 1. `tekton.dev/ci-cd: "true"` or
27
+ * 2. `janus-idp.io/tekton` is defined (any value is accepted).
28
+ *
29
+ * @public
30
+ */
31
+ declare const isTektonCIAvailable: (entity: Entity) => boolean;
32
+
33
+ export { TektonCI, isTektonCIAvailable, tektonPlugin };
@@ -0,0 +1,3 @@
1
+ export { TektonCI, tektonPlugin } from './legacy/plugin.esm.js';
2
+ export { isTektonCIAvailable } from './utils/isTektonCIAvailable.esm.js';
3
+ //# sourceMappingURL=legacy.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"legacy.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -1,16 +1,22 @@
1
- import { createPlugin, createComponentExtension } from '@backstage/core-plugin-api';
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { createFrontendPlugin } from '@backstage/frontend-plugin-api';
3
+ import { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';
4
+ import { isTektonCIAvailable } from './utils/isTektonCIAvailable.esm.js';
2
5
 
3
- const tektonPlugin = createPlugin({
4
- id: "tekton"
6
+ const tektonEntityContent = EntityContentBlueprint.make({
7
+ name: "tektonEntityContent",
8
+ params: {
9
+ path: "/tekton",
10
+ title: "Tekton",
11
+ filter: isTektonCIAvailable,
12
+ loader: () => import('./components/Router.esm.js').then((m) => /* @__PURE__ */ jsx(m.Router, {}))
13
+ }
14
+ });
15
+ const tektonPlugin = createFrontendPlugin({
16
+ pluginId: "tekton",
17
+ info: { packageJson: () => import('./plugins/tekton/package.json.esm.js') },
18
+ extensions: [tektonEntityContent]
5
19
  });
6
- const TektonCI = tektonPlugin.provide(
7
- createComponentExtension({
8
- name: "TektonCI",
9
- component: {
10
- lazy: () => import('./components/Router.esm.js').then((m) => m.Router)
11
- }
12
- })
13
- );
14
20
 
15
- export { TektonCI, tektonPlugin };
21
+ export { tektonPlugin as default };
16
22
  //# sourceMappingURL=plugin.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.esm.js","sources":["../src/plugin.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 {\n createComponentExtension,\n createPlugin,\n} from '@backstage/core-plugin-api';\n\n/**\n * A Tekton plugin.\n *\n * @public\n */\nexport const tektonPlugin = createPlugin({\n id: 'tekton',\n});\n\n/**\n * Component for the catalog entity CI/CD tab.\n *\n * @public\n */\nexport const TektonCI = tektonPlugin.provide(\n createComponentExtension({\n name: 'TektonCI',\n component: {\n lazy: () => import('./components/Router').then(m => m.Router),\n },\n }),\n);\n"],"names":[],"mappings":";;AAyBO,MAAM,eAAe,YAAA,CAAa;AAAA,EACvC,EAAA,EAAI;AACN,CAAC;AAOM,MAAM,WAAW,YAAA,CAAa,OAAA;AAAA,EACnC,wBAAA,CAAyB;AAAA,IACvB,IAAA,EAAM,UAAA;AAAA,IACN,SAAA,EAAW;AAAA,MACT,IAAA,EAAM,MAAM,OAAO,4BAAqB,EAAE,IAAA,CAAK,CAAA,CAAA,KAAK,EAAE,MAAM;AAAA;AAC9D,GACD;AACH;;;;"}
1
+ {"version":3,"file":"plugin.esm.js","sources":["../src/plugin.tsx"],"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 */\nimport { createFrontendPlugin } from '@backstage/frontend-plugin-api';\nimport { EntityContentBlueprint } from '@backstage/plugin-catalog-react/alpha';\nimport { isTektonCIAvailable } from './utils/isTektonCIAvailable';\n\nconst tektonEntityContent = EntityContentBlueprint.make({\n name: 'tektonEntityContent',\n params: {\n path: '/tekton',\n title: 'Tekton',\n filter: isTektonCIAvailable,\n loader: () => import('./components/Router').then(m => <m.Router />),\n },\n});\n\n/**\n * The Tekton frontend plugin for the new frontend system.\n *\n * @public\n */\nconst tektonPlugin = createFrontendPlugin({\n pluginId: 'tekton',\n info: { packageJson: () => import('../package.json') },\n extensions: [tektonEntityContent],\n});\n\nexport default tektonPlugin;\n"],"names":[],"mappings":";;;;;AAmBA,MAAM,mBAAA,GAAsB,uBAAuB,IAAA,CAAK;AAAA,EACtD,IAAA,EAAM,qBAAA;AAAA,EACN,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM,SAAA;AAAA,IACN,KAAA,EAAO,QAAA;AAAA,IACP,MAAA,EAAQ,mBAAA;AAAA,IACR,MAAA,EAAQ,MAAM,OAAO,4BAAqB,CAAA,CAAE,IAAA,CAAK,CAAA,CAAA,qBAAK,GAAA,CAAC,CAAA,CAAE,MAAA,EAAF,EAAS,CAAE;AAAA;AAEtE,CAAC,CAAA;AAOD,MAAM,eAAe,oBAAA,CAAqB;AAAA,EACxC,QAAA,EAAU,QAAA;AAAA,EACV,MAAM,EAAE,WAAA,EAAa,MAAM,OAAO,sCAAiB,CAAA,EAAE;AAAA,EACrD,UAAA,EAAY,CAAC,mBAAmB;AAClC,CAAC;;;;"}
@@ -0,0 +1,176 @@
1
+ var name = "@backstage-community/plugin-tekton";
2
+ var version = "4.0.1";
3
+ var main = "src/index.ts";
4
+ var types = "src/index.ts";
5
+ var license = "Apache-2.0";
6
+ var publishConfig = {
7
+ access: "public"
8
+ };
9
+ var exports$1 = {
10
+ ".": "./src/index.ts",
11
+ "./alpha": "./src/alpha.ts",
12
+ "./legacy": "./src/legacy.ts",
13
+ "./translations": "./src/translations/index.ts",
14
+ "./package.json": "./package.json"
15
+ };
16
+ var typesVersions = {
17
+ "*": {
18
+ alpha: [
19
+ "src/alpha.ts"
20
+ ],
21
+ legacy: [
22
+ "src/legacy.ts"
23
+ ],
24
+ translations: [
25
+ "src/translations/index.ts"
26
+ ],
27
+ "package.json": [
28
+ "package.json"
29
+ ]
30
+ }
31
+ };
32
+ var backstage = {
33
+ role: "frontend-plugin",
34
+ pluginId: "tekton",
35
+ pluginPackage: "@backstage-community/plugin-tekton",
36
+ pluginPackages: [
37
+ "@backstage-community/plugin-tekton",
38
+ "@backstage-community/plugin-tekton-common",
39
+ "@backstage-community/plugin-tekton-react"
40
+ ]
41
+ };
42
+ var sideEffects = [
43
+ "./**/*.css",
44
+ "./**/*.css.esm.js"
45
+ ];
46
+ var scripts = {
47
+ start: "backstage-cli package start",
48
+ "start:legacy": "backstage-cli package start --entrypoint dev/legacy",
49
+ "start:mock": "backstage-cli package start --entrypoint dev/index.mock.tsx",
50
+ "start:legacy:mock": "backstage-cli package start --entrypoint dev/legacy.mock.tsx",
51
+ build: "backstage-cli package build",
52
+ lint: "backstage-cli package lint",
53
+ test: "backstage-cli package test --passWithNoTests --coverage",
54
+ clean: "backstage-cli package clean",
55
+ prepack: "backstage-cli package prepack",
56
+ postpack: "backstage-cli package postpack",
57
+ prepublish: "./fix-style-inject-imports.sh"
58
+ };
59
+ var dependencies = {
60
+ "@aonic-ui/pipelines": "^3.1.0",
61
+ "@backstage-community/plugin-tekton-common": "workspace:^",
62
+ "@backstage-community/plugin-tekton-react": "workspace:^",
63
+ "@backstage/catalog-model": "^1.10.0",
64
+ "@backstage/core-components": "^0.18.13",
65
+ "@backstage/core-plugin-api": "^1.12.9",
66
+ "@backstage/frontend-plugin-api": "^0.18.0",
67
+ "@backstage/plugin-app-react": "^0.2.6",
68
+ "@backstage/plugin-catalog-react": "^3.2.2",
69
+ "@backstage/plugin-kubernetes-common": "^0.9.12",
70
+ "@backstage/plugin-kubernetes-react": "^0.5.23",
71
+ "@backstage/plugin-permission-react": "^0.5.4",
72
+ "@backstage/theme": "^0.7.3",
73
+ "@emotion/cache": "^11.14.0",
74
+ "@emotion/react": "^11.11.4",
75
+ "@kubernetes/client-node": "1.4.0",
76
+ "@mui/icons-material": "^5.18.0",
77
+ "@mui/material": "^5.18.0",
78
+ "@patternfly/patternfly": "^6.0.0",
79
+ "@patternfly/react-core": "^6.0.0",
80
+ "@patternfly/react-table": "^6.3.1",
81
+ "@patternfly/react-tokens": "^6.0.0",
82
+ "@patternfly/react-topology": "^6.0.0",
83
+ "@tanstack/react-query": "^5.62.7",
84
+ classnames: "^2.3.2",
85
+ dagre: "^0.8.5",
86
+ lodash: "^4.17.21",
87
+ "mobx-react": "^7.6.0",
88
+ "react-use": "^17.4.0"
89
+ };
90
+ var peerDependencies = {
91
+ react: "^17.0.0 || ^18.0.0",
92
+ "react-dom": "^17.0.0 || ^18.0.0",
93
+ "react-router-dom": "^6.30.5"
94
+ };
95
+ var devDependencies = {
96
+ "@axe-core/playwright": "^4.11.0",
97
+ "@backstage/catalog-client": "^1.16.1",
98
+ "@backstage/cli": "^0.36.5",
99
+ "@backstage/dev-utils": "^1.1.26",
100
+ "@backstage/frontend-defaults": "^0.5.5",
101
+ "@backstage/plugin-catalog": "^2.0.8",
102
+ "@backstage/plugin-kubernetes": "^0.12.22",
103
+ "@backstage/plugin-permission-common": "^0.9.10",
104
+ "@backstage/test-utils": "^1.7.21",
105
+ "@backstage/ui": "^0.17.1",
106
+ "@playwright/test": "1.61.1",
107
+ "@remixicon/react": "^4.2.0",
108
+ "@testing-library/dom": "^10.4.1",
109
+ "@testing-library/jest-dom": "6.9.1",
110
+ "@testing-library/react": "16.3.2",
111
+ "@types/dagre": "^0.7.52",
112
+ "@types/lodash": "4.17.24",
113
+ "@types/react": "^18",
114
+ "@types/react-dom": "^18",
115
+ "cross-fetch": "4.1.0",
116
+ react: "^18.0.2",
117
+ "react-aria-components": "~1.17.0",
118
+ "react-dom": "^18.0.2",
119
+ "react-router-dom": "^6.30.2"
120
+ };
121
+ var files = [
122
+ "app-config.dynamic.yaml",
123
+ "dist"
124
+ ];
125
+ var scalprum = {
126
+ name: "backstage-community.plugin-tekton",
127
+ exposedModules: {
128
+ PluginRoot: "./src/index.ts",
129
+ Legacy: "./src/legacy.ts",
130
+ Alpha: "./src/alpha.ts"
131
+ }
132
+ };
133
+ var repository = {
134
+ type: "git",
135
+ url: "https://github.com/backstage/community-plugins",
136
+ directory: "workspaces/tekton/plugins/tekton"
137
+ };
138
+ var keywords = [
139
+ "kubernetes",
140
+ "tekton",
141
+ "backstage",
142
+ "plugin"
143
+ ];
144
+ var bugs = "https://github.com/backstage/community-plugins/issues";
145
+ var maintainers = [
146
+ "christoph-jerolimov",
147
+ "@debsmita1",
148
+ "@divyanshiGupta"
149
+ ];
150
+ var author = "Red Hat";
151
+ var _package = {
152
+ name: name,
153
+ version: version,
154
+ main: main,
155
+ types: types,
156
+ license: license,
157
+ publishConfig: publishConfig,
158
+ exports: exports$1,
159
+ typesVersions: typesVersions,
160
+ backstage: backstage,
161
+ sideEffects: sideEffects,
162
+ scripts: scripts,
163
+ dependencies: dependencies,
164
+ peerDependencies: peerDependencies,
165
+ devDependencies: devDependencies,
166
+ files: files,
167
+ scalprum: scalprum,
168
+ repository: repository,
169
+ keywords: keywords,
170
+ bugs: bugs,
171
+ maintainers: maintainers,
172
+ author: author
173
+ };
174
+
175
+ export { author, backstage, bugs, _package as default, dependencies, devDependencies, exports$1 as exports, files, keywords, license, main, maintainers, name, peerDependencies, publishConfig, repository, scalprum, scripts, sideEffects, types, typesVersions, version };
176
+ //# sourceMappingURL=package.json.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"package.json.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -29,6 +29,7 @@ const tektonTranslationDe = createTranslationMessages({
29
29
  "pipelineRunList.vulnerabilitySeverityTitle.high": "Hoch",
30
30
  "pipelineRunList.vulnerabilitySeverityTitle.medium": "Mittel",
31
31
  "pipelineRunList.vulnerabilitySeverityTitle.low": "Niedrig",
32
+ "pipelineRunList.vulnerabilitySeverityTitle.unknown": "Unbekannt",
32
33
  "pipelineRunList.tableHeaderTitle.name": "NAME",
33
34
  "pipelineRunList.tableHeaderTitle.vulnerabilities": "SCHWACHSTELLEN",
34
35
  "pipelineRunList.tableHeaderTitle.status": "STATUS",
@@ -1 +1 @@
1
- {"version":3,"file":"de.esm.js","sources":["../../src/translations/de.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * de translation for tekton.\n * @public\n */\nconst tektonTranslationDe = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title': 'Problem beim Abrufen von Kubernetes-Objekten',\n 'errorPanel.description':\n 'Es gab ein Problem beim Abrufen einiger Kubernetes-Ressourcen für das Element: {{entityName}}. Dies könnte bedeuten, dass die Karte mit den Fehlerberichten nicht ganz korrekt ist.',\n 'permissionAlert.title': 'Berechtigung erforderlich',\n 'permissionAlert.description':\n 'Zum Anzeigen von Tekton-Pipeline-Ausführungen wenden Sie sich an den Administrator, um die folgende(n) Berechtigung(en) zu erhalten: {{permissions}}.',\n 'statusSelector.label': 'Status',\n 'clusterSelector.label': 'Cluster',\n 'tableExpandCollapse.collapseAll': 'Alle komprimieren',\n 'tableExpandCollapse.expandAll': 'Alle erweitern',\n 'pipelineVisualization.emptyState.description':\n 'Keine Pipeline-Ausführung zur Visualisierung',\n 'pipelineVisualization.noTasksDescription':\n 'Diese Pipeline-Ausführung enthält keine zu visualisierenden Aufgaben.',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Abschließende Aufgabe',\n 'pipelineRunList.title': 'Pipeline-Ausführungen',\n 'pipelineRunList.noPipelineRuns': 'Keine Pipeline-Ausführungen gefunden',\n 'pipelineRunList.searchBarPlaceholder': 'Suchen',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Parameter und Ergebnisse anzeigen',\n 'pipelineRunList.rowActions.viewLogs': 'Logs anzeigen',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'Keine Berechtigung zum Anzeigen von Logs',\n 'pipelineRunList.rowActions.viewSBOM': 'SBOM anzeigen',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n \"'SBOM anzeigen' ist für diese Pipeline-Ausführung nicht anwendbar.\",\n 'pipelineRunList.rowActions.viewOutput': 'Ausgabe anzeigen',\n 'pipelineRunList.rowActions.outputNotApplicable':\n \"'Ausgabe anzeigen' ist für diese Pipeline-Ausführung nicht anwendbar.\",\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Kritisch',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Hoch',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Mittel',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Niedrig',\n 'pipelineRunList.tableHeaderTitle.name': 'NAME',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'SCHWACHSTELLEN',\n 'pipelineRunList.tableHeaderTitle.status': 'STATUS',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'AUFGABENSTATUS',\n 'pipelineRunList.tableHeaderTitle.startTime': 'GESTARTET',\n 'pipelineRunList.tableHeaderTitle.duration': 'DAUER',\n 'pipelineRunList.tableHeaderTitle.actions': 'AKTIONEN',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Zeilen pro Seite',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} Zeilen',\n 'pipelineRunLogs.title': 'Logs der Pipeline-Ausführung',\n 'pipelineRunLogs.noLogs': 'Keine Logs gefunden',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Herunterladen',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Alle Aufgaben-Logs herunterladen',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Herunterladen',\n 'pipelineRunLogs.podLogsDownloadLink.downloading':\n 'Logs werden heruntergeladen',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Übersprungen',\n 'pipelineRunOutput.title': 'Ausgabe der Pipeline-Ausführung',\n 'pipelineRunOutput.noOutput': 'Keine Ausgabe',\n 'pipelineRunStatus.All': 'Alle',\n 'pipelineRunStatus.Cancelling': 'Wird abgebrochen',\n 'pipelineRunStatus.Succeeded': 'Erfolgreich',\n 'pipelineRunStatus.Failed': 'Fehlgeschlagen',\n 'pipelineRunStatus.Running': 'Wird ausgeführt',\n 'pipelineRunStatus.FailedToStart': 'Start fehlgeschlagen',\n 'pipelineRunStatus.PipelineNotStarted': 'Pipeline nicht gestartet',\n 'pipelineRunStatus.Skipped': 'Übersprungen',\n 'pipelineRunStatus.Cancelled': 'Abgebrochen',\n 'pipelineRunStatus.Pending': 'Ausstehend',\n 'pipelineRunStatus.Idle': 'Leerlauf',\n 'pipelineRunStatus.Other': 'Andere',\n 'pipelineRunDuration.lessThanSec': 'weniger als eine Sekunde',\n 'pipelineRunDuration.hour_one': '{{count}} Stunde',\n 'pipelineRunDuration.hour_other': '{{count}} Stunden',\n 'pipelineRunDuration.minute_one': '{{count}} Minute',\n 'pipelineRunDuration.minute_other': '{{count}} Minuten',\n 'pipelineRunDuration.second_one': '{{count}} Sekunde',\n 'pipelineRunDuration.second_other': '{{count}} Sekunden',\n 'pipelineRunParamsAndResults.title':\n 'Parameter und Ergebnisse für Pipeline-Ausführung',\n 'pipelineRunParamsAndResults.noParams': 'Keine Parameter gefunden',\n 'pipelineRunParamsAndResults.noResults': 'Keine Ergebnisse gefunden',\n 'pipelineRunParamsAndResults.params': 'Parameter',\n 'pipelineRunParamsAndResults.results': 'Ergebnisse',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Name',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Wert',\n },\n});\n\nexport default tektonTranslationDe;\n"],"names":[],"mappings":";;;AAuBA,MAAM,sBAAsB,yBAAA,CAA0B;AAAA,EACpD,GAAA,EAAK,oBAAA;AAAA,EACL,QAAA,EAAU;AAAA,IACR,kBAAA,EAAoB,8CAAA;AAAA,IACpB,wBAAA,EACE,2LAAA;AAAA,IACF,uBAAA,EAAyB,2BAAA;AAAA,IACzB,6BAAA,EACE,0JAAA;AAAA,IACF,sBAAA,EAAwB,QAAA;AAAA,IACxB,uBAAA,EAAyB,SAAA;AAAA,IACzB,iCAAA,EAAmC,mBAAA;AAAA,IACnC,+BAAA,EAAiC,gBAAA;AAAA,IACjC,8CAAA,EACE,iDAAA;AAAA,IACF,0CAAA,EACE,6EAAA;AAAA,IACF,iDAAA,EAAmD,0BAAA;AAAA,IACnD,uBAAA,EAAyB,0BAAA;AAAA,IACzB,gCAAA,EAAkC,yCAAA;AAAA,IAClC,sCAAA,EAAwC,QAAA;AAAA,IACxC,iDAAA,EACE,mCAAA;AAAA,IACF,qCAAA,EAAuC,eAAA;AAAA,IACvC,iDAAA,EACE,0CAAA;AAAA,IACF,qCAAA,EAAuC,eAAA;AAAA,IACvC,8CAAA,EACE,0EAAA;AAAA,IACF,uCAAA,EAAyC,kBAAA;AAAA,IACzC,gDAAA,EACE,6EAAA;AAAA,IACF,qDAAA,EAAuD,UAAA;AAAA,IACvD,iDAAA,EAAmD,MAAA;AAAA,IACnD,mDAAA,EAAqD,QAAA;AAAA,IACrD,gDAAA,EAAkD,SAAA;AAAA,IAClD,uCAAA,EAAyC,MAAA;AAAA,IACzC,kDAAA,EAAoD,gBAAA;AAAA,IACpD,yCAAA,EAA2C,QAAA;AAAA,IAC3C,6CAAA,EAA+C,gBAAA;AAAA,IAC/C,4CAAA,EAA8C,WAAA;AAAA,IAC9C,2CAAA,EAA6C,OAAA;AAAA,IAC7C,0CAAA,EAA4C,UAAA;AAAA,IAC5C,6CAAA,EAA+C,kBAAA;AAAA,IAC/C,wDAAA,EAA0D,gBAAA;AAAA,IAC1D,uBAAA,EAAyB,iCAAA;AAAA,IACzB,wBAAA,EAA0B,qBAAA;AAAA,IAC1B,6CAAA,EAA+C,eAAA;AAAA,IAC/C,oDAAA,EACE,kCAAA;AAAA,IACF,2CAAA,EAA6C,eAAA;AAAA,IAC7C,iDAAA,EACE,6BAAA;AAAA,IACF,2CAAA,EAA6C,iBAAA;AAAA,IAC7C,yBAAA,EAA2B,oCAAA;AAAA,IAC3B,4BAAA,EAA8B,eAAA;AAAA,IAC9B,uBAAA,EAAyB,MAAA;AAAA,IACzB,8BAAA,EAAgC,kBAAA;AAAA,IAChC,6BAAA,EAA+B,aAAA;AAAA,IAC/B,0BAAA,EAA4B,gBAAA;AAAA,IAC5B,2BAAA,EAA6B,oBAAA;AAAA,IAC7B,iCAAA,EAAmC,sBAAA;AAAA,IACnC,sCAAA,EAAwC,0BAAA;AAAA,IACxC,2BAAA,EAA6B,iBAAA;AAAA,IAC7B,6BAAA,EAA+B,aAAA;AAAA,IAC/B,2BAAA,EAA6B,YAAA;AAAA,IAC7B,wBAAA,EAA0B,UAAA;AAAA,IAC1B,yBAAA,EAA2B,QAAA;AAAA,IAC3B,iCAAA,EAAmC,0BAAA;AAAA,IACnC,8BAAA,EAAgC,kBAAA;AAAA,IAChC,gCAAA,EAAkC,mBAAA;AAAA,IAClC,gCAAA,EAAkC,kBAAA;AAAA,IAClC,kCAAA,EAAoC,mBAAA;AAAA,IACpC,gCAAA,EAAkC,mBAAA;AAAA,IAClC,kCAAA,EAAoC,oBAAA;AAAA,IACpC,mCAAA,EACE,wDAAA;AAAA,IACF,sCAAA,EAAwC,0BAAA;AAAA,IACxC,uCAAA,EAAyC,2BAAA;AAAA,IACzC,oCAAA,EAAsC,WAAA;AAAA,IACtC,qCAAA,EAAuC,YAAA;AAAA,IACvC,oDAAA,EAAsD,MAAA;AAAA,IACtD,qDAAA,EAAuD;AAAA;AAE3D,CAAC;;;;"}
1
+ {"version":3,"file":"de.esm.js","sources":["../../src/translations/de.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * de translation for tekton.\n * @public\n */\nconst tektonTranslationDe = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title': 'Problem beim Abrufen von Kubernetes-Objekten',\n 'errorPanel.description':\n 'Es gab ein Problem beim Abrufen einiger Kubernetes-Ressourcen für das Element: {{entityName}}. Dies könnte bedeuten, dass die Karte mit den Fehlerberichten nicht ganz korrekt ist.',\n 'permissionAlert.title': 'Berechtigung erforderlich',\n 'permissionAlert.description':\n 'Zum Anzeigen von Tekton-Pipeline-Ausführungen wenden Sie sich an den Administrator, um die folgende(n) Berechtigung(en) zu erhalten: {{permissions}}.',\n 'statusSelector.label': 'Status',\n 'clusterSelector.label': 'Cluster',\n 'tableExpandCollapse.collapseAll': 'Alle komprimieren',\n 'tableExpandCollapse.expandAll': 'Alle erweitern',\n 'pipelineVisualization.emptyState.description':\n 'Keine Pipeline-Ausführung zur Visualisierung',\n 'pipelineVisualization.noTasksDescription':\n 'Diese Pipeline-Ausführung enthält keine zu visualisierenden Aufgaben.',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Abschließende Aufgabe',\n 'pipelineRunList.title': 'Pipeline-Ausführungen',\n 'pipelineRunList.noPipelineRuns': 'Keine Pipeline-Ausführungen gefunden',\n 'pipelineRunList.searchBarPlaceholder': 'Suchen',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Parameter und Ergebnisse anzeigen',\n 'pipelineRunList.rowActions.viewLogs': 'Logs anzeigen',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'Keine Berechtigung zum Anzeigen von Logs',\n 'pipelineRunList.rowActions.viewSBOM': 'SBOM anzeigen',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n \"'SBOM anzeigen' ist für diese Pipeline-Ausführung nicht anwendbar.\",\n 'pipelineRunList.rowActions.viewOutput': 'Ausgabe anzeigen',\n 'pipelineRunList.rowActions.outputNotApplicable':\n \"'Ausgabe anzeigen' ist für diese Pipeline-Ausführung nicht anwendbar.\",\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Kritisch',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Hoch',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Mittel',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Niedrig',\n 'pipelineRunList.vulnerabilitySeverityTitle.unknown': 'Unbekannt',\n 'pipelineRunList.tableHeaderTitle.name': 'NAME',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'SCHWACHSTELLEN',\n 'pipelineRunList.tableHeaderTitle.status': 'STATUS',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'AUFGABENSTATUS',\n 'pipelineRunList.tableHeaderTitle.startTime': 'GESTARTET',\n 'pipelineRunList.tableHeaderTitle.duration': 'DAUER',\n 'pipelineRunList.tableHeaderTitle.actions': 'AKTIONEN',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Zeilen pro Seite',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} Zeilen',\n 'pipelineRunLogs.title': 'Logs der Pipeline-Ausführung',\n 'pipelineRunLogs.noLogs': 'Keine Logs gefunden',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Herunterladen',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Alle Aufgaben-Logs herunterladen',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Herunterladen',\n 'pipelineRunLogs.podLogsDownloadLink.downloading':\n 'Logs werden heruntergeladen',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Übersprungen',\n 'pipelineRunOutput.title': 'Ausgabe der Pipeline-Ausführung',\n 'pipelineRunOutput.noOutput': 'Keine Ausgabe',\n 'pipelineRunStatus.All': 'Alle',\n 'pipelineRunStatus.Cancelling': 'Wird abgebrochen',\n 'pipelineRunStatus.Succeeded': 'Erfolgreich',\n 'pipelineRunStatus.Failed': 'Fehlgeschlagen',\n 'pipelineRunStatus.Running': 'Wird ausgeführt',\n 'pipelineRunStatus.FailedToStart': 'Start fehlgeschlagen',\n 'pipelineRunStatus.PipelineNotStarted': 'Pipeline nicht gestartet',\n 'pipelineRunStatus.Skipped': 'Übersprungen',\n 'pipelineRunStatus.Cancelled': 'Abgebrochen',\n 'pipelineRunStatus.Pending': 'Ausstehend',\n 'pipelineRunStatus.Idle': 'Leerlauf',\n 'pipelineRunStatus.Other': 'Andere',\n 'pipelineRunDuration.lessThanSec': 'weniger als eine Sekunde',\n 'pipelineRunDuration.hour_one': '{{count}} Stunde',\n 'pipelineRunDuration.hour_other': '{{count}} Stunden',\n 'pipelineRunDuration.minute_one': '{{count}} Minute',\n 'pipelineRunDuration.minute_other': '{{count}} Minuten',\n 'pipelineRunDuration.second_one': '{{count}} Sekunde',\n 'pipelineRunDuration.second_other': '{{count}} Sekunden',\n 'pipelineRunParamsAndResults.title':\n 'Parameter und Ergebnisse für Pipeline-Ausführung',\n 'pipelineRunParamsAndResults.noParams': 'Keine Parameter gefunden',\n 'pipelineRunParamsAndResults.noResults': 'Keine Ergebnisse gefunden',\n 'pipelineRunParamsAndResults.params': 'Parameter',\n 'pipelineRunParamsAndResults.results': 'Ergebnisse',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Name',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Wert',\n },\n});\n\nexport default tektonTranslationDe;\n"],"names":[],"mappings":"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"}
@@ -29,6 +29,7 @@ const tektonTranslationEs = createTranslationMessages({
29
29
  "pipelineRunList.vulnerabilitySeverityTitle.high": "Alta",
30
30
  "pipelineRunList.vulnerabilitySeverityTitle.medium": "Media",
31
31
  "pipelineRunList.vulnerabilitySeverityTitle.low": "Baja",
32
+ "pipelineRunList.vulnerabilitySeverityTitle.unknown": "Desconocida",
32
33
  "pipelineRunList.tableHeaderTitle.name": "NOMBRE",
33
34
  "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULNERABILIDADES",
34
35
  "pipelineRunList.tableHeaderTitle.status": "ESTADO",
@@ -1 +1 @@
1
- {"version":3,"file":"es.esm.js","sources":["../../src/translations/es.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * es translation for tekton.\n * @public\n */\nconst tektonTranslationEs = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title':\n 'Ocurrió un problema al recuperar objetos de Kubernetes',\n 'errorPanel.description':\n 'Ocurrió un problema al recuperar algunos recursos de Kubernetes para la entidad: {{entityName}}. Esto podría significar que la tarjeta de informe de errores no es completamente precisa.',\n 'permissionAlert.title': 'Permiso requerido',\n 'permissionAlert.description':\n 'Para ver las ejecuciones de pipeline de Tekton, comuníquese con su administrador para que le otorgue los siguientes permisos: {{permissions}}.',\n 'statusSelector.label': 'Estado',\n 'clusterSelector.label': 'Clúster',\n 'tableExpandCollapse.collapseAll': 'Contraer todo',\n 'tableExpandCollapse.expandAll': 'Expandir todo',\n 'pipelineVisualization.emptyState.description':\n 'No hay ejecución de pipeline para visualizar',\n 'pipelineVisualization.noTasksDescription':\n 'Esta ejecución de pipeline no tiene tareas para visualizar',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Tarea final',\n 'pipelineRunList.title': 'Ejecuciones de pipeline',\n 'pipelineRunList.noPipelineRuns':\n 'No se encontraron ejecuciones de pipeline',\n 'pipelineRunList.searchBarPlaceholder': 'Buscar',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Ver parámetros y resultados',\n 'pipelineRunList.rowActions.viewLogs': 'Ver registros',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'No tiene autorización para ver los registros',\n 'pipelineRunList.rowActions.viewSBOM': 'Ver SBOM',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n 'Ver SBOM no es aplicable a esta ejecución de pipeline',\n 'pipelineRunList.rowActions.viewOutput': 'Ver salida',\n 'pipelineRunList.rowActions.outputNotApplicable':\n 'Ver salida no es aplicable para esta ejecución de pipeline',\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Crítica',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Alta',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Media',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Baja',\n 'pipelineRunList.tableHeaderTitle.name': 'NOMBRE',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'VULNERABILIDADES',\n 'pipelineRunList.tableHeaderTitle.status': 'ESTADO',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'ESTADO DE LA TAREA',\n 'pipelineRunList.tableHeaderTitle.startTime': 'INICIADA',\n 'pipelineRunList.tableHeaderTitle.duration': 'DURACIÓN',\n 'pipelineRunList.tableHeaderTitle.actions': 'ACCIONES',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Filas por página',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} filas',\n 'pipelineRunLogs.title': 'Registros de ejecuciones de pipeline',\n 'pipelineRunLogs.noLogs': 'No se encontraron registros',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Descargar',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Descargar todos los registros de tareas',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Descargar',\n 'pipelineRunLogs.podLogsDownloadLink.downloading': 'descargando registros',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Omitida',\n 'pipelineRunOutput.title': 'Salida de la ejecución de pipeline',\n 'pipelineRunOutput.noOutput': 'Sin salida',\n 'pipelineRunStatus.All': 'Todos',\n 'pipelineRunStatus.Cancelling': 'Cancelada',\n 'pipelineRunStatus.Succeeded': 'Ejecución exitosa',\n 'pipelineRunStatus.Failed': 'Fallida',\n 'pipelineRunStatus.Running': 'En ejecución',\n 'pipelineRunStatus.FailedToStart': 'Error al iniciar',\n 'pipelineRunStatus.PipelineNotStarted': 'Pipeline no iniciado',\n 'pipelineRunStatus.Skipped': 'Omitida',\n 'pipelineRunStatus.Cancelled': 'Cancelada',\n 'pipelineRunStatus.Pending': 'Pendiente',\n 'pipelineRunStatus.Idle': 'Inactiva',\n 'pipelineRunStatus.Other': 'Otro',\n 'pipelineRunDuration.lessThanSec': 'menos de un segundo',\n 'pipelineRunDuration.hour_one': '{{count}} hora',\n 'pipelineRunDuration.hour_other': '{{count}} horas',\n 'pipelineRunDuration.minute_one': '{{count}} minuto',\n 'pipelineRunDuration.minute_other': '{{count}} minutos',\n 'pipelineRunDuration.second_one': '{{count}} segundo',\n 'pipelineRunDuration.second_other': '{{count}} segundos',\n 'pipelineRunParamsAndResults.title':\n 'Parámetros y resultados de la ejecución de pipeline',\n 'pipelineRunParamsAndResults.noParams': 'No se encontraron parámetros',\n 'pipelineRunParamsAndResults.noResults': 'No se encontraron resultados',\n 'pipelineRunParamsAndResults.params': 'Parámetros',\n 'pipelineRunParamsAndResults.results': 'Resultados',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Nombre',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Valor',\n },\n});\n\nexport default tektonTranslationEs;\n"],"names":[],"mappings":";;;AAuBA,MAAM,sBAAsB,yBAAA,CAA0B;AAAA,EACpD,GAAA,EAAK,oBAAA;AAAA,EACL,QAAA,EAAU;AAAA,IACR,kBAAA,EACE,2DAAA;AAAA,IACF,wBAAA,EACE,iMAAA;AAAA,IACF,uBAAA,EAAyB,mBAAA;AAAA,IACzB,6BAAA,EACE,mJAAA;AAAA,IACF,sBAAA,EAAwB,QAAA;AAAA,IACxB,uBAAA,EAAyB,YAAA;AAAA,IACzB,iCAAA,EAAmC,eAAA;AAAA,IACnC,+BAAA,EAAiC,eAAA;AAAA,IACjC,8CAAA,EACE,iDAAA;AAAA,IACF,0CAAA,EACE,+DAAA;AAAA,IACF,iDAAA,EAAmD,aAAA;AAAA,IACnD,uBAAA,EAAyB,yBAAA;AAAA,IACzB,gCAAA,EACE,2CAAA;AAAA,IACF,sCAAA,EAAwC,QAAA;AAAA,IACxC,iDAAA,EACE,gCAAA;AAAA,IACF,qCAAA,EAAuC,eAAA;AAAA,IACvC,iDAAA,EACE,iDAAA;AAAA,IACF,qCAAA,EAAuC,UAAA;AAAA,IACvC,8CAAA,EACE,0DAAA;AAAA,IACF,uCAAA,EAAyC,YAAA;AAAA,IACzC,gDAAA,EACE,+DAAA;AAAA,IACF,qDAAA,EAAuD,YAAA;AAAA,IACvD,iDAAA,EAAmD,MAAA;AAAA,IACnD,mDAAA,EAAqD,OAAA;AAAA,IACrD,gDAAA,EAAkD,MAAA;AAAA,IAClD,uCAAA,EAAyC,QAAA;AAAA,IACzC,kDAAA,EAAoD,kBAAA;AAAA,IACpD,yCAAA,EAA2C,QAAA;AAAA,IAC3C,6CAAA,EAA+C,oBAAA;AAAA,IAC/C,4CAAA,EAA8C,UAAA;AAAA,IAC9C,2CAAA,EAA6C,aAAA;AAAA,IAC7C,0CAAA,EAA4C,UAAA;AAAA,IAC5C,6CAAA,EAA+C,qBAAA;AAAA,IAC/C,wDAAA,EAA0D,kBAAA;AAAA,IAC1D,uBAAA,EAAyB,sCAAA;AAAA,IACzB,wBAAA,EAA0B,6BAAA;AAAA,IAC1B,6CAAA,EAA+C,WAAA;AAAA,IAC/C,oDAAA,EACE,yCAAA;AAAA,IACF,2CAAA,EAA6C,WAAA;AAAA,IAC7C,iDAAA,EAAmD,uBAAA;AAAA,IACnD,2CAAA,EAA6C,SAAA;AAAA,IAC7C,yBAAA,EAA2B,uCAAA;AAAA,IAC3B,4BAAA,EAA8B,YAAA;AAAA,IAC9B,uBAAA,EAAyB,OAAA;AAAA,IACzB,8BAAA,EAAgC,WAAA;AAAA,IAChC,6BAAA,EAA+B,sBAAA;AAAA,IAC/B,0BAAA,EAA4B,SAAA;AAAA,IAC5B,2BAAA,EAA6B,iBAAA;AAAA,IAC7B,iCAAA,EAAmC,kBAAA;AAAA,IACnC,sCAAA,EAAwC,sBAAA;AAAA,IACxC,2BAAA,EAA6B,SAAA;AAAA,IAC7B,6BAAA,EAA+B,WAAA;AAAA,IAC/B,2BAAA,EAA6B,WAAA;AAAA,IAC7B,wBAAA,EAA0B,UAAA;AAAA,IAC1B,yBAAA,EAA2B,MAAA;AAAA,IAC3B,iCAAA,EAAmC,qBAAA;AAAA,IACnC,8BAAA,EAAgC,mBAAA;AAAA,IAChC,gCAAA,EAAkC,oBAAA;AAAA,IAClC,gCAAA,EAAkC,qBAAA;AAAA,IAClC,kCAAA,EAAoC,sBAAA;AAAA,IACpC,gCAAA,EAAkC,sBAAA;AAAA,IAClC,kCAAA,EAAoC,uBAAA;AAAA,IACpC,mCAAA,EACE,2DAAA;AAAA,IACF,sCAAA,EAAwC,iCAAA;AAAA,IACxC,uCAAA,EAAyC,8BAAA;AAAA,IACzC,oCAAA,EAAsC,eAAA;AAAA,IACtC,qCAAA,EAAuC,YAAA;AAAA,IACvC,oDAAA,EAAsD,QAAA;AAAA,IACtD,qDAAA,EAAuD;AAAA;AAE3D,CAAC;;;;"}
1
+ {"version":3,"file":"es.esm.js","sources":["../../src/translations/es.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * es translation for tekton.\n * @public\n */\nconst tektonTranslationEs = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title':\n 'Ocurrió un problema al recuperar objetos de Kubernetes',\n 'errorPanel.description':\n 'Ocurrió un problema al recuperar algunos recursos de Kubernetes para la entidad: {{entityName}}. Esto podría significar que la tarjeta de informe de errores no es completamente precisa.',\n 'permissionAlert.title': 'Permiso requerido',\n 'permissionAlert.description':\n 'Para ver las ejecuciones de pipeline de Tekton, comuníquese con su administrador para que le otorgue los siguientes permisos: {{permissions}}.',\n 'statusSelector.label': 'Estado',\n 'clusterSelector.label': 'Clúster',\n 'tableExpandCollapse.collapseAll': 'Contraer todo',\n 'tableExpandCollapse.expandAll': 'Expandir todo',\n 'pipelineVisualization.emptyState.description':\n 'No hay ejecución de pipeline para visualizar',\n 'pipelineVisualization.noTasksDescription':\n 'Esta ejecución de pipeline no tiene tareas para visualizar',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Tarea final',\n 'pipelineRunList.title': 'Ejecuciones de pipeline',\n 'pipelineRunList.noPipelineRuns':\n 'No se encontraron ejecuciones de pipeline',\n 'pipelineRunList.searchBarPlaceholder': 'Buscar',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Ver parámetros y resultados',\n 'pipelineRunList.rowActions.viewLogs': 'Ver registros',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'No tiene autorización para ver los registros',\n 'pipelineRunList.rowActions.viewSBOM': 'Ver SBOM',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n 'Ver SBOM no es aplicable a esta ejecución de pipeline',\n 'pipelineRunList.rowActions.viewOutput': 'Ver salida',\n 'pipelineRunList.rowActions.outputNotApplicable':\n 'Ver salida no es aplicable para esta ejecución de pipeline',\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Crítica',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Alta',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Media',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Baja',\n 'pipelineRunList.vulnerabilitySeverityTitle.unknown': 'Desconocida',\n 'pipelineRunList.tableHeaderTitle.name': 'NOMBRE',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'VULNERABILIDADES',\n 'pipelineRunList.tableHeaderTitle.status': 'ESTADO',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'ESTADO DE LA TAREA',\n 'pipelineRunList.tableHeaderTitle.startTime': 'INICIADA',\n 'pipelineRunList.tableHeaderTitle.duration': 'DURACIÓN',\n 'pipelineRunList.tableHeaderTitle.actions': 'ACCIONES',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Filas por página',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} filas',\n 'pipelineRunLogs.title': 'Registros de ejecuciones de pipeline',\n 'pipelineRunLogs.noLogs': 'No se encontraron registros',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Descargar',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Descargar todos los registros de tareas',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Descargar',\n 'pipelineRunLogs.podLogsDownloadLink.downloading': 'descargando registros',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Omitida',\n 'pipelineRunOutput.title': 'Salida de la ejecución de pipeline',\n 'pipelineRunOutput.noOutput': 'Sin salida',\n 'pipelineRunStatus.All': 'Todos',\n 'pipelineRunStatus.Cancelling': 'Cancelada',\n 'pipelineRunStatus.Succeeded': 'Ejecución exitosa',\n 'pipelineRunStatus.Failed': 'Fallida',\n 'pipelineRunStatus.Running': 'En ejecución',\n 'pipelineRunStatus.FailedToStart': 'Error al iniciar',\n 'pipelineRunStatus.PipelineNotStarted': 'Pipeline no iniciado',\n 'pipelineRunStatus.Skipped': 'Omitida',\n 'pipelineRunStatus.Cancelled': 'Cancelada',\n 'pipelineRunStatus.Pending': 'Pendiente',\n 'pipelineRunStatus.Idle': 'Inactiva',\n 'pipelineRunStatus.Other': 'Otro',\n 'pipelineRunDuration.lessThanSec': 'menos de un segundo',\n 'pipelineRunDuration.hour_one': '{{count}} hora',\n 'pipelineRunDuration.hour_other': '{{count}} horas',\n 'pipelineRunDuration.minute_one': '{{count}} minuto',\n 'pipelineRunDuration.minute_other': '{{count}} minutos',\n 'pipelineRunDuration.second_one': '{{count}} segundo',\n 'pipelineRunDuration.second_other': '{{count}} segundos',\n 'pipelineRunParamsAndResults.title':\n 'Parámetros y resultados de la ejecución de pipeline',\n 'pipelineRunParamsAndResults.noParams': 'No se encontraron parámetros',\n 'pipelineRunParamsAndResults.noResults': 'No se encontraron resultados',\n 'pipelineRunParamsAndResults.params': 'Parámetros',\n 'pipelineRunParamsAndResults.results': 'Resultados',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Nombre',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Valor',\n },\n});\n\nexport default tektonTranslationEs;\n"],"names":[],"mappings":"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"}
@@ -29,6 +29,7 @@ const tektonTranslationFr = createTranslationMessages({
29
29
  "pipelineRunList.vulnerabilitySeverityTitle.high": "Haut",
30
30
  "pipelineRunList.vulnerabilitySeverityTitle.medium": "Moyen",
31
31
  "pipelineRunList.vulnerabilitySeverityTitle.low": "Faible",
32
+ "pipelineRunList.vulnerabilitySeverityTitle.unknown": "Inconnu",
32
33
  "pipelineRunList.tableHeaderTitle.name": "NOM",
33
34
  "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULN\xC9RABILIT\xC9S",
34
35
  "pipelineRunList.tableHeaderTitle.status": "STATUT",
@@ -1 +1 @@
1
- {"version":3,"file":"fr.esm.js","sources":["../../src/translations/fr.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * fr translation for plugin.tekton.\n * @public\n */\nconst tektonTranslationFr = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title':\n 'Un problème est survenu lors de la récupération des objets Kubernetes',\n 'errorPanel.description':\n \"Un problème est survenu lors de la récupération de certaines ressources Kubernetes pour l'entité : {{entityName}}. Cela pourrait signifier que la carte de rapport d’erreur n’est pas complètement précise.\",\n 'permissionAlert.title': 'Autorisation requise',\n 'permissionAlert.description':\n \"Pour afficher les exécutions de pipelines Tekton, contactez votre administrateur pour qu'il vous accorde les autorisations suivantes : {{permissions}}.\",\n 'statusSelector.label': 'Statut',\n 'clusterSelector.label': 'Cluster',\n 'tableExpandCollapse.collapseAll': 'Tout Réduire',\n 'tableExpandCollapse.expandAll': 'Tout Développer',\n 'pipelineVisualization.emptyState.description':\n 'Aucune exécution de pipeline à visualiser',\n 'pipelineVisualization.noTasksDescription':\n \"Cette exécution de pipeline n'a aucune tâche à visualiser\",\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Enfin la tâche',\n 'pipelineRunList.title': 'Pipelines',\n 'pipelineRunList.noPipelineRuns': 'Aucune exécution de pipeline trouvée',\n 'pipelineRunList.searchBarPlaceholder': 'Rechercher',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Afficher les Paramètres et les Résultats',\n 'pipelineRunList.rowActions.viewLogs': 'Afficher les journaux',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'Non autorisé à consulter les journaux',\n 'pipelineRunList.rowActions.viewSBOM': 'Voir SBOM',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n \"La vue SBOM n'est pas applicable pour ce PipelineRun\",\n 'pipelineRunList.rowActions.viewOutput': 'Afficher la sortie',\n 'pipelineRunList.rowActions.outputNotApplicable':\n \"La vue de sortie n'est pas applicable pour ce PipelineRun\",\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Critique',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Haut',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Moyen',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Faible',\n 'pipelineRunList.tableHeaderTitle.name': 'NOM',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'VULNÉRABILITÉS',\n 'pipelineRunList.tableHeaderTitle.status': 'STATUT',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'STATUT DE LA TÂCHE',\n 'pipelineRunList.tableHeaderTitle.startTime': 'COMMENCÉ',\n 'pipelineRunList.tableHeaderTitle.duration': 'DURÉE',\n 'pipelineRunList.tableHeaderTitle.actions': 'ACTES',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Lignes par page',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} lignes',\n 'pipelineRunLogs.title': \"Journaux d'exécution de pipeline\",\n 'pipelineRunLogs.noLogs': 'Aucun journal trouvé',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Télécharger',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Télécharger tous les journaux de tâches',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Télécharger',\n 'pipelineRunLogs.podLogsDownloadLink.downloading':\n 'téléchargement des journaux',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Ignoré',\n 'pipelineRunOutput.title': 'Sortie de PipelineRun',\n 'pipelineRunOutput.noOutput': 'Aucune sortie',\n 'pipelineRunStatus.All': 'Tous',\n 'pipelineRunStatus.Cancelling': 'Annulation',\n 'pipelineRunStatus.Succeeded': 'Réussi',\n 'pipelineRunStatus.Failed': 'Échoué',\n 'pipelineRunStatus.Running': \"En cours d'exécution\",\n 'pipelineRunStatus.In Progress': 'En cours',\n 'pipelineRunStatus.FailedToStart': 'Échec du démarrage',\n 'pipelineRunStatus.PipelineNotStarted': 'PipelineNotStarted',\n 'pipelineRunStatus.Skipped': 'Ignoré',\n 'pipelineRunStatus.Cancelled': 'Annulé',\n 'pipelineRunStatus.Pending': 'En attente',\n 'pipelineRunStatus.Idle': 'Inactif',\n 'pipelineRunStatus.Other': 'Autre',\n 'pipelineRunDuration.lessThanSec': \"moins d'une seconde\",\n 'pipelineRunDuration.hour_one': '{{count}} heure',\n 'pipelineRunDuration.hour_other': '{{count}} heures',\n 'pipelineRunDuration.minute_one': '{{count}} minute',\n 'pipelineRunDuration.minute_other': '{{count}} minutes',\n 'pipelineRunDuration.second_one': '{{count}} seconde',\n 'pipelineRunDuration.second_other': '{{count}} secondes',\n 'pipelineRunParamsAndResults.title': 'PipelineRun Paramètres et Résultats',\n 'pipelineRunParamsAndResults.noParams': 'Aucun paramètre trouvé',\n 'pipelineRunParamsAndResults.noResults': 'Aucun résultat trouvé',\n 'pipelineRunParamsAndResults.params': 'Paramètres',\n 'pipelineRunParamsAndResults.results': 'Résultats',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Nom',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Valeur',\n },\n});\n\nexport default tektonTranslationFr;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fr.esm.js","sources":["../../src/translations/fr.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * fr translation for plugin.tekton.\n * @public\n */\nconst tektonTranslationFr = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title':\n 'Un problème est survenu lors de la récupération des objets Kubernetes',\n 'errorPanel.description':\n \"Un problème est survenu lors de la récupération de certaines ressources Kubernetes pour l'entité : {{entityName}}. Cela pourrait signifier que la carte de rapport d’erreur n’est pas complètement précise.\",\n 'permissionAlert.title': 'Autorisation requise',\n 'permissionAlert.description':\n \"Pour afficher les exécutions de pipelines Tekton, contactez votre administrateur pour qu'il vous accorde les autorisations suivantes : {{permissions}}.\",\n 'statusSelector.label': 'Statut',\n 'clusterSelector.label': 'Cluster',\n 'tableExpandCollapse.collapseAll': 'Tout Réduire',\n 'tableExpandCollapse.expandAll': 'Tout Développer',\n 'pipelineVisualization.emptyState.description':\n 'Aucune exécution de pipeline à visualiser',\n 'pipelineVisualization.noTasksDescription':\n \"Cette exécution de pipeline n'a aucune tâche à visualiser\",\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Enfin la tâche',\n 'pipelineRunList.title': 'Pipelines',\n 'pipelineRunList.noPipelineRuns': 'Aucune exécution de pipeline trouvée',\n 'pipelineRunList.searchBarPlaceholder': 'Rechercher',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Afficher les Paramètres et les Résultats',\n 'pipelineRunList.rowActions.viewLogs': 'Afficher les journaux',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'Non autorisé à consulter les journaux',\n 'pipelineRunList.rowActions.viewSBOM': 'Voir SBOM',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n \"La vue SBOM n'est pas applicable pour ce PipelineRun\",\n 'pipelineRunList.rowActions.viewOutput': 'Afficher la sortie',\n 'pipelineRunList.rowActions.outputNotApplicable':\n \"La vue de sortie n'est pas applicable pour ce PipelineRun\",\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Critique',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Haut',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Moyen',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Faible',\n 'pipelineRunList.vulnerabilitySeverityTitle.unknown': 'Inconnu',\n 'pipelineRunList.tableHeaderTitle.name': 'NOM',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'VULNÉRABILITÉS',\n 'pipelineRunList.tableHeaderTitle.status': 'STATUT',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'STATUT DE LA TÂCHE',\n 'pipelineRunList.tableHeaderTitle.startTime': 'COMMENCÉ',\n 'pipelineRunList.tableHeaderTitle.duration': 'DURÉE',\n 'pipelineRunList.tableHeaderTitle.actions': 'ACTES',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Lignes par page',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} lignes',\n 'pipelineRunLogs.title': \"Journaux d'exécution de pipeline\",\n 'pipelineRunLogs.noLogs': 'Aucun journal trouvé',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Télécharger',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Télécharger tous les journaux de tâches',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Télécharger',\n 'pipelineRunLogs.podLogsDownloadLink.downloading':\n 'téléchargement des journaux',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Ignoré',\n 'pipelineRunOutput.title': 'Sortie de PipelineRun',\n 'pipelineRunOutput.noOutput': 'Aucune sortie',\n 'pipelineRunStatus.All': 'Tous',\n 'pipelineRunStatus.Cancelling': 'Annulation',\n 'pipelineRunStatus.Succeeded': 'Réussi',\n 'pipelineRunStatus.Failed': 'Échoué',\n 'pipelineRunStatus.Running': \"En cours d'exécution\",\n 'pipelineRunStatus.In Progress': 'En cours',\n 'pipelineRunStatus.FailedToStart': 'Échec du démarrage',\n 'pipelineRunStatus.PipelineNotStarted': 'PipelineNotStarted',\n 'pipelineRunStatus.Skipped': 'Ignoré',\n 'pipelineRunStatus.Cancelled': 'Annulé',\n 'pipelineRunStatus.Pending': 'En attente',\n 'pipelineRunStatus.Idle': 'Inactif',\n 'pipelineRunStatus.Other': 'Autre',\n 'pipelineRunDuration.lessThanSec': \"moins d'une seconde\",\n 'pipelineRunDuration.hour_one': '{{count}} heure',\n 'pipelineRunDuration.hour_other': '{{count}} heures',\n 'pipelineRunDuration.minute_one': '{{count}} minute',\n 'pipelineRunDuration.minute_other': '{{count}} minutes',\n 'pipelineRunDuration.second_one': '{{count}} seconde',\n 'pipelineRunDuration.second_other': '{{count}} secondes',\n 'pipelineRunParamsAndResults.title': 'PipelineRun Paramètres et Résultats',\n 'pipelineRunParamsAndResults.noParams': 'Aucun paramètre trouvé',\n 'pipelineRunParamsAndResults.noResults': 'Aucun résultat trouvé',\n 'pipelineRunParamsAndResults.params': 'Paramètres',\n 'pipelineRunParamsAndResults.results': 'Résultats',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Nom',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Valeur',\n },\n});\n\nexport default tektonTranslationFr;\n"],"names":[],"mappings":"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"}
@@ -29,6 +29,7 @@ const tektonTranslationIt = createTranslationMessages({
29
29
  "pipelineRunList.vulnerabilitySeverityTitle.high": "Alta",
30
30
  "pipelineRunList.vulnerabilitySeverityTitle.medium": "Media",
31
31
  "pipelineRunList.vulnerabilitySeverityTitle.low": "Bassa",
32
+ "pipelineRunList.vulnerabilitySeverityTitle.unknown": "Sconosciuta",
32
33
  "pipelineRunList.tableHeaderTitle.name": "NOME",
33
34
  "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULNERABILIT\xC0",
34
35
  "pipelineRunList.tableHeaderTitle.status": "STATO",
@@ -1 +1 @@
1
- {"version":3,"file":"it.esm.js","sources":["../../src/translations/it.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * Italian translation for plugin.tekton.\n * @public\n */\nconst tektonTranslationIt = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title':\n 'Si è verificato un problema durante il recupero degli oggetti Kubernetes',\n 'errorPanel.description':\n \"Si è verificato un problema durante il recupero di alcune risorse Kubernetes per l'entità: {{entityName}}. Potrebbe significare che la scheda Segnalazione errori non è del tutto precisa.\",\n 'permissionAlert.title': 'Autorizzazione richiesta',\n 'permissionAlert.description':\n \"Per visualizzare le esecuzioni delle pipeline Tekton, contattare l'amministratore per ottenere le seguenti autorizzazioni: {{permissions}}.\",\n 'statusSelector.label': 'Stato',\n 'clusterSelector.label': 'Cluster',\n 'tableExpandCollapse.collapseAll': 'Comprimi tutto',\n 'tableExpandCollapse.expandAll': 'Espandi tutto',\n 'pipelineVisualization.emptyState.description':\n 'Nessuna esecuzione della pipeline da visualizzare',\n 'pipelineVisualization.noTasksDescription':\n 'Questa esecuzione della pipeline non ha attività da visualizzare',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Attività finale',\n 'pipelineRunList.title': 'Esecuzioni di pipeline',\n 'pipelineRunList.noPipelineRuns': 'Nessuna esecuzione di pipeline trovata',\n 'pipelineRunList.searchBarPlaceholder': 'Ricerca',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Visualizza parametri e risultati',\n 'pipelineRunList.rowActions.viewLogs': 'Visualizza registri',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'Non autorizzato a visualizzare i registri',\n 'pipelineRunList.rowActions.viewSBOM': 'Visualizza SBOM',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n 'Visualizza SBOM non è applicabile a questa PipelineRun',\n 'pipelineRunList.rowActions.viewOutput': 'Visualizza output',\n 'pipelineRunList.rowActions.outputNotApplicable':\n 'Visualizza output non è applicabile a questa PipelineRun',\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Critica',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Alta',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Media',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Bassa',\n 'pipelineRunList.tableHeaderTitle.name': 'NOME',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'VULNERABILITÀ',\n 'pipelineRunList.tableHeaderTitle.status': 'STATO',\n 'pipelineRunList.tableHeaderTitle.taskStatus': \"STATO DELL'ATTIVITÀ\",\n 'pipelineRunList.tableHeaderTitle.startTime': 'Iniziata',\n 'pipelineRunList.tableHeaderTitle.duration': 'DURATA',\n 'pipelineRunList.tableHeaderTitle.actions': 'AZIONI',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Righe per pagina',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} righe',\n 'pipelineRunLogs.title': 'Registri PipelineRun',\n 'pipelineRunLogs.noLogs': 'Nessun registro trovato',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Scaricamento',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Scarica tutti i registri delle attività',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Scaricamento',\n 'pipelineRunLogs.podLogsDownloadLink.downloading':\n 'download dei registri in corso',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Ignorato',\n 'pipelineRunOutput.title': 'Output di PipelineRun',\n 'pipelineRunOutput.noOutput': 'Nessun output',\n 'pipelineRunStatus.All': 'Tutto',\n 'pipelineRunStatus.Cancelling': 'Annullamento',\n 'pipelineRunStatus.Succeeded': 'Riuscito',\n 'pipelineRunStatus.Failed': 'Non riuscito',\n 'pipelineRunStatus.Running': 'In esecuzione',\n 'pipelineRunStatus.In Progress': 'In corso',\n 'pipelineRunStatus.FailedToStart': 'Impossibile avviare',\n 'pipelineRunStatus.PipelineNotStarted': 'Pipeline non avviata',\n 'pipelineRunStatus.Skipped': 'Ignorato',\n 'pipelineRunStatus.Cancelled': 'Annullato',\n 'pipelineRunStatus.Pending': 'In pausa',\n 'pipelineRunStatus.Idle': 'Inattivo',\n 'pipelineRunStatus.Other': 'Altro',\n 'pipelineRunDuration.lessThanSec': 'meno di un secondo',\n 'pipelineRunDuration.hour_one': '{{count}} ora',\n 'pipelineRunDuration.hour_other': '{{count}} ore',\n 'pipelineRunDuration.minute_one': '{{count}} minuto',\n 'pipelineRunDuration.minute_other': '{{count}} minuti',\n 'pipelineRunDuration.second_one': '{{count}} secondo',\n 'pipelineRunDuration.second_other': '{{count}} secondi',\n 'pipelineRunParamsAndResults.title': 'Parametri e risultati di PipelineRun',\n 'pipelineRunParamsAndResults.noParams': 'Nessun parametro trovato',\n 'pipelineRunParamsAndResults.noResults': 'Nessun risultato trovato',\n 'pipelineRunParamsAndResults.params': 'Parametri',\n 'pipelineRunParamsAndResults.results': 'Risultati',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Nome',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Valore',\n },\n});\n\nexport default tektonTranslationIt;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"it.esm.js","sources":["../../src/translations/it.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * Italian translation for plugin.tekton.\n * @public\n */\nconst tektonTranslationIt = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title':\n 'Si è verificato un problema durante il recupero degli oggetti Kubernetes',\n 'errorPanel.description':\n \"Si è verificato un problema durante il recupero di alcune risorse Kubernetes per l'entità: {{entityName}}. Potrebbe significare che la scheda Segnalazione errori non è del tutto precisa.\",\n 'permissionAlert.title': 'Autorizzazione richiesta',\n 'permissionAlert.description':\n \"Per visualizzare le esecuzioni delle pipeline Tekton, contattare l'amministratore per ottenere le seguenti autorizzazioni: {{permissions}}.\",\n 'statusSelector.label': 'Stato',\n 'clusterSelector.label': 'Cluster',\n 'tableExpandCollapse.collapseAll': 'Comprimi tutto',\n 'tableExpandCollapse.expandAll': 'Espandi tutto',\n 'pipelineVisualization.emptyState.description':\n 'Nessuna esecuzione della pipeline da visualizzare',\n 'pipelineVisualization.noTasksDescription':\n 'Questa esecuzione della pipeline non ha attività da visualizzare',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Attività finale',\n 'pipelineRunList.title': 'Esecuzioni di pipeline',\n 'pipelineRunList.noPipelineRuns': 'Nessuna esecuzione di pipeline trovata',\n 'pipelineRunList.searchBarPlaceholder': 'Ricerca',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'Visualizza parametri e risultati',\n 'pipelineRunList.rowActions.viewLogs': 'Visualizza registri',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'Non autorizzato a visualizzare i registri',\n 'pipelineRunList.rowActions.viewSBOM': 'Visualizza SBOM',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n 'Visualizza SBOM non è applicabile a questa PipelineRun',\n 'pipelineRunList.rowActions.viewOutput': 'Visualizza output',\n 'pipelineRunList.rowActions.outputNotApplicable':\n 'Visualizza output non è applicabile a questa PipelineRun',\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': 'Critica',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': 'Alta',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': 'Media',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': 'Bassa',\n 'pipelineRunList.vulnerabilitySeverityTitle.unknown': 'Sconosciuta',\n 'pipelineRunList.tableHeaderTitle.name': 'NOME',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': 'VULNERABILITÀ',\n 'pipelineRunList.tableHeaderTitle.status': 'STATO',\n 'pipelineRunList.tableHeaderTitle.taskStatus': \"STATO DELL'ATTIVITÀ\",\n 'pipelineRunList.tableHeaderTitle.startTime': 'Iniziata',\n 'pipelineRunList.tableHeaderTitle.duration': 'DURATA',\n 'pipelineRunList.tableHeaderTitle.actions': 'AZIONI',\n 'pipelineRunList.tablePagination.rowsPerPage': 'Righe per pagina',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} righe',\n 'pipelineRunLogs.title': 'Registri PipelineRun',\n 'pipelineRunLogs.noLogs': 'Nessun registro trovato',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'Scaricamento',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'Scarica tutti i registri delle attività',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'Scaricamento',\n 'pipelineRunLogs.podLogsDownloadLink.downloading':\n 'download dei registri in corso',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'Ignorato',\n 'pipelineRunOutput.title': 'Output di PipelineRun',\n 'pipelineRunOutput.noOutput': 'Nessun output',\n 'pipelineRunStatus.All': 'Tutto',\n 'pipelineRunStatus.Cancelling': 'Annullamento',\n 'pipelineRunStatus.Succeeded': 'Riuscito',\n 'pipelineRunStatus.Failed': 'Non riuscito',\n 'pipelineRunStatus.Running': 'In esecuzione',\n 'pipelineRunStatus.In Progress': 'In corso',\n 'pipelineRunStatus.FailedToStart': 'Impossibile avviare',\n 'pipelineRunStatus.PipelineNotStarted': 'Pipeline non avviata',\n 'pipelineRunStatus.Skipped': 'Ignorato',\n 'pipelineRunStatus.Cancelled': 'Annullato',\n 'pipelineRunStatus.Pending': 'In pausa',\n 'pipelineRunStatus.Idle': 'Inattivo',\n 'pipelineRunStatus.Other': 'Altro',\n 'pipelineRunDuration.lessThanSec': 'meno di un secondo',\n 'pipelineRunDuration.hour_one': '{{count}} ora',\n 'pipelineRunDuration.hour_other': '{{count}} ore',\n 'pipelineRunDuration.minute_one': '{{count}} minuto',\n 'pipelineRunDuration.minute_other': '{{count}} minuti',\n 'pipelineRunDuration.second_one': '{{count}} secondo',\n 'pipelineRunDuration.second_other': '{{count}} secondi',\n 'pipelineRunParamsAndResults.title': 'Parametri e risultati di PipelineRun',\n 'pipelineRunParamsAndResults.noParams': 'Nessun parametro trovato',\n 'pipelineRunParamsAndResults.noResults': 'Nessun risultato trovato',\n 'pipelineRunParamsAndResults.params': 'Parametri',\n 'pipelineRunParamsAndResults.results': 'Risultati',\n 'pipelineRunParamsAndResults.outputTableColumn.name': 'Nome',\n 'pipelineRunParamsAndResults.outputTableColumn.value': 'Valore',\n },\n});\n\nexport default tektonTranslationIt;\n"],"names":[],"mappings":"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"}
@@ -29,6 +29,7 @@ const tektonTranslationJa = createTranslationMessages({
29
29
  "pipelineRunList.vulnerabilitySeverityTitle.high": "\u9AD8",
30
30
  "pipelineRunList.vulnerabilitySeverityTitle.medium": "\u4E2D",
31
31
  "pipelineRunList.vulnerabilitySeverityTitle.low": "\u4F4E",
32
+ "pipelineRunList.vulnerabilitySeverityTitle.unknown": "\u4E0D\u660E",
32
33
  "pipelineRunList.tableHeaderTitle.name": "\u540D\u524D",
33
34
  "pipelineRunList.tableHeaderTitle.vulnerabilities": "\u8106\u5F31\u6027",
34
35
  "pipelineRunList.tableHeaderTitle.status": "\u72B6\u614B",
@@ -1 +1 @@
1
- {"version":3,"file":"ja.esm.js","sources":["../../src/translations/ja.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * Japanese translation for plugin.tekton.\n * @public\n */\nconst tektonTranslationJa = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title': 'Kubernetes オブジェクトの取得中に問題が発生しました',\n 'errorPanel.description':\n 'エンティティー {{entityName}} の一部の Kubernetes リソースの取得中に問題が発生しました。そのため、エラーレポートカードの表示が完全には正確でない可能性があります。',\n 'permissionAlert.title': '権限が必要',\n 'permissionAlert.description':\n 'Tekton パイプライン実行を表示するには、管理者に連絡して次の権限を付与してもらうよう依頼してください: {{permissions}}。',\n 'statusSelector.label': 'ステータス',\n 'clusterSelector.label': 'クラスター',\n 'tableExpandCollapse.collapseAll': 'すべて折りたたむ',\n 'tableExpandCollapse.expandAll': 'すべて展開',\n 'pipelineVisualization.emptyState.description':\n '視覚化するパイプライン実行がありません',\n 'pipelineVisualization.noTasksDescription':\n 'このパイプライン実行には視覚化するタスクがありません',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Finally Task',\n 'pipelineRunList.title': 'パイプライン実行',\n 'pipelineRunList.noPipelineRuns': 'パイプライン実行が見つかりません',\n 'pipelineRunList.searchBarPlaceholder': '検索',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'パラメーターと結果の表示',\n 'pipelineRunList.rowActions.viewLogs': 'ログの表示',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'ログを表示する権限がありません',\n 'pipelineRunList.rowActions.viewSBOM': 'SBOM の表示',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n 'この PipelineRun には SBOM の表示は適用されません',\n 'pipelineRunList.rowActions.viewOutput': '出力の表示',\n 'pipelineRunList.rowActions.outputNotApplicable':\n 'この PipelineRun には出力の表示は適用されません',\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': '重大',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': '高',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': '中',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': '低',\n 'pipelineRunList.tableHeaderTitle.name': '名前',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': '脆弱性',\n 'pipelineRunList.tableHeaderTitle.status': '状態',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'タスクステータス',\n 'pipelineRunList.tableHeaderTitle.startTime': '開始済み',\n 'pipelineRunList.tableHeaderTitle.duration': '期間',\n 'pipelineRunList.tableHeaderTitle.actions': 'アクション',\n 'pipelineRunList.tablePagination.rowsPerPage': 'ページあたりの行数',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} 行',\n 'pipelineRunLogs.title': 'PipelineRun ログ',\n 'pipelineRunLogs.noLogs': 'ログが見つかりません',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'ダウンロード',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'すべてのタスクログのダウンロード',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'ダウンロード',\n 'pipelineRunLogs.podLogsDownloadLink.downloading': 'ログのダウンロード中',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'スキップ済み',\n 'pipelineRunOutput.title': 'PipelineRun 出力',\n 'pipelineRunOutput.noOutput': '出力なし',\n 'pipelineRunStatus.All': 'すべて',\n 'pipelineRunStatus.Cancelling': 'キャンセル中',\n 'pipelineRunStatus.Succeeded': '成功',\n 'pipelineRunStatus.Failed': '失敗',\n 'pipelineRunStatus.Running': '実行中',\n 'pipelineRunStatus.In Progress': '進行中',\n 'pipelineRunStatus.FailedToStart': 'FailedToStart',\n 'pipelineRunStatus.PipelineNotStarted': 'PipelineNotStarted',\n 'pipelineRunStatus.Skipped': 'スキップ済み',\n 'pipelineRunStatus.Cancelled': 'キャンセル済み',\n 'pipelineRunStatus.Pending': '保留中',\n 'pipelineRunStatus.Idle': 'アイドル',\n 'pipelineRunStatus.Other': 'その他',\n 'pipelineRunDuration.lessThanSec': '1 秒未満',\n 'pipelineRunDuration.hour_one': '{{count}} 時間',\n 'pipelineRunDuration.hour_other': '{{count}} 時間',\n 'pipelineRunDuration.minute_one': '{{count}} 分',\n 'pipelineRunDuration.minute_other': '{{count}} 分',\n 'pipelineRunDuration.second_one': '{{count}} 秒',\n 'pipelineRunDuration.second_other': '{{count}} 秒',\n 'pipelineRunParamsAndResults.title': 'PipelineRun のパラメーターと結果',\n 'pipelineRunParamsAndResults.noParams': 'パラメーターが見つかりません',\n 'pipelineRunParamsAndResults.noResults': '結果が見つかりません',\n 'pipelineRunParamsAndResults.params': 'パラメーター',\n 'pipelineRunParamsAndResults.results': '結果',\n 'pipelineRunParamsAndResults.outputTableColumn.name': '名前',\n 'pipelineRunParamsAndResults.outputTableColumn.value': '値',\n },\n});\n\nexport default tektonTranslationJa;\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ja.esm.js","sources":["../../src/translations/ja.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 { createTranslationMessages } from '@backstage/core-plugin-api/alpha';\nimport { tektonTranslationRef } from './ref';\n\n/**\n * Japanese translation for plugin.tekton.\n * @public\n */\nconst tektonTranslationJa = createTranslationMessages({\n ref: tektonTranslationRef,\n messages: {\n 'errorPanel.title': 'Kubernetes オブジェクトの取得中に問題が発生しました',\n 'errorPanel.description':\n 'エンティティー {{entityName}} の一部の Kubernetes リソースの取得中に問題が発生しました。そのため、エラーレポートカードの表示が完全には正確でない可能性があります。',\n 'permissionAlert.title': '権限が必要',\n 'permissionAlert.description':\n 'Tekton パイプライン実行を表示するには、管理者に連絡して次の権限を付与してもらうよう依頼してください: {{permissions}}。',\n 'statusSelector.label': 'ステータス',\n 'clusterSelector.label': 'クラスター',\n 'tableExpandCollapse.collapseAll': 'すべて折りたたむ',\n 'tableExpandCollapse.expandAll': 'すべて展開',\n 'pipelineVisualization.emptyState.description':\n '視覚化するパイプライン実行がありません',\n 'pipelineVisualization.noTasksDescription':\n 'このパイプライン実行には視覚化するタスクがありません',\n 'pipelineVisualization.stepList.finallyTaskTitle': 'Finally Task',\n 'pipelineRunList.title': 'パイプライン実行',\n 'pipelineRunList.noPipelineRuns': 'パイプライン実行が見つかりません',\n 'pipelineRunList.searchBarPlaceholder': '検索',\n 'pipelineRunList.rowActions.viewParamsAndResults':\n 'パラメーターと結果の表示',\n 'pipelineRunList.rowActions.viewLogs': 'ログの表示',\n 'pipelineRunList.rowActions.unauthorizedViewLogs':\n 'ログを表示する権限がありません',\n 'pipelineRunList.rowActions.viewSBOM': 'SBOM の表示',\n 'pipelineRunList.rowActions.SBOMNotApplicable':\n 'この PipelineRun には SBOM の表示は適用されません',\n 'pipelineRunList.rowActions.viewOutput': '出力の表示',\n 'pipelineRunList.rowActions.outputNotApplicable':\n 'この PipelineRun には出力の表示は適用されません',\n 'pipelineRunList.vulnerabilitySeverityTitle.critical': '重大',\n 'pipelineRunList.vulnerabilitySeverityTitle.high': '高',\n 'pipelineRunList.vulnerabilitySeverityTitle.medium': '中',\n 'pipelineRunList.vulnerabilitySeverityTitle.low': '低',\n 'pipelineRunList.vulnerabilitySeverityTitle.unknown': '不明',\n 'pipelineRunList.tableHeaderTitle.name': '名前',\n 'pipelineRunList.tableHeaderTitle.vulnerabilities': '脆弱性',\n 'pipelineRunList.tableHeaderTitle.status': '状態',\n 'pipelineRunList.tableHeaderTitle.taskStatus': 'タスクステータス',\n 'pipelineRunList.tableHeaderTitle.startTime': '開始済み',\n 'pipelineRunList.tableHeaderTitle.duration': '期間',\n 'pipelineRunList.tableHeaderTitle.actions': 'アクション',\n 'pipelineRunList.tablePagination.rowsPerPage': 'ページあたりの行数',\n 'pipelineRunList.tablePagination.rowsPerPageOptionLabel': '{{num}} 行',\n 'pipelineRunLogs.title': 'PipelineRun ログ',\n 'pipelineRunLogs.noLogs': 'ログが見つかりません',\n 'pipelineRunLogs.downloader.downloadTaskLogs': 'ダウンロード',\n 'pipelineRunLogs.downloader.downloadPipelineRunLogs':\n 'すべてのタスクログのダウンロード',\n 'pipelineRunLogs.podLogsDownloadLink.title': 'ダウンロード',\n 'pipelineRunLogs.podLogsDownloadLink.downloading': 'ログのダウンロード中',\n 'pipelineRunLogs.taskStatusStepper.skipped': 'スキップ済み',\n 'pipelineRunOutput.title': 'PipelineRun 出力',\n 'pipelineRunOutput.noOutput': '出力なし',\n 'pipelineRunStatus.All': 'すべて',\n 'pipelineRunStatus.Cancelling': 'キャンセル中',\n 'pipelineRunStatus.Succeeded': '成功',\n 'pipelineRunStatus.Failed': '失敗',\n 'pipelineRunStatus.Running': '実行中',\n 'pipelineRunStatus.In Progress': '進行中',\n 'pipelineRunStatus.FailedToStart': 'FailedToStart',\n 'pipelineRunStatus.PipelineNotStarted': 'PipelineNotStarted',\n 'pipelineRunStatus.Skipped': 'スキップ済み',\n 'pipelineRunStatus.Cancelled': 'キャンセル済み',\n 'pipelineRunStatus.Pending': '保留中',\n 'pipelineRunStatus.Idle': 'アイドル',\n 'pipelineRunStatus.Other': 'その他',\n 'pipelineRunDuration.lessThanSec': '1 秒未満',\n 'pipelineRunDuration.hour_one': '{{count}} 時間',\n 'pipelineRunDuration.hour_other': '{{count}} 時間',\n 'pipelineRunDuration.minute_one': '{{count}} 分',\n 'pipelineRunDuration.minute_other': '{{count}} 分',\n 'pipelineRunDuration.second_one': '{{count}} 秒',\n 'pipelineRunDuration.second_other': '{{count}} 秒',\n 'pipelineRunParamsAndResults.title': 'PipelineRun のパラメーターと結果',\n 'pipelineRunParamsAndResults.noParams': 'パラメーターが見つかりません',\n 'pipelineRunParamsAndResults.noResults': '結果が見つかりません',\n 'pipelineRunParamsAndResults.params': 'パラメーター',\n 'pipelineRunParamsAndResults.results': '結果',\n 'pipelineRunParamsAndResults.outputTableColumn.name': '名前',\n 'pipelineRunParamsAndResults.outputTableColumn.value': '値',\n },\n});\n\nexport default tektonTranslationJa;\n"],"names":[],"mappings":"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"}
@@ -45,7 +45,8 @@ const tektonMessages = {
45
45
  critical: "Critical",
46
46
  high: "High",
47
47
  medium: "Medium",
48
- low: "Low"
48
+ low: "Low",
49
+ unknown: "Unknown"
49
50
  },
50
51
  tableHeaderTitle: {
51
52
  name: "NAME",
@@ -1 +1 @@
1
- {"version":3,"file":"ref.esm.js","sources":["../../src/translations/ref.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 { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\n/** Default (English) messages; exported for e2e tests. */\nexport const tektonMessages = {\n errorPanel: {\n title: 'There was a problem retrieving Kubernetes objects',\n description:\n 'There was a problem retrieving some Kubernetes resources for the entity: {{entityName}}. This could mean that the Error Reporting card is not completely accurate.',\n },\n permissionAlert: {\n title: 'Permission required',\n description:\n 'To view Tekton Pipeline Runs, contact your administrator to give you the following permission(s): {{permissions}}.',\n },\n statusSelector: {\n label: 'Status',\n },\n clusterSelector: {\n label: 'Cluster',\n },\n tableExpandCollapse: {\n collapseAll: 'Collapse all',\n expandAll: 'Expand all',\n },\n pipelineVisualization: {\n emptyState: {\n description: 'No Pipeline Run to visualize',\n },\n noTasksDescription: 'This Pipeline Run has no tasks to visualize',\n stepList: {\n finallyTaskTitle: 'Finally Task',\n },\n },\n pipelineRunList: {\n title: 'Pipeline Runs',\n noPipelineRuns: 'No Pipeline Runs found',\n searchBarPlaceholder: 'Search',\n rowActions: {\n viewParamsAndResults: 'View Parameters and Results',\n viewLogs: 'View logs',\n unauthorizedViewLogs: 'Unauthorized to view logs',\n viewSBOM: 'View SBOM',\n SBOMNotApplicable: 'View SBOM is not applicable for this PipelineRun',\n viewOutput: 'View output',\n outputNotApplicable: 'View Output is not applicable for this PipelineRun',\n },\n vulnerabilitySeverityTitle: {\n critical: 'Critical',\n high: 'High',\n medium: 'Medium',\n low: 'Low',\n },\n tableHeaderTitle: {\n name: 'NAME',\n vulnerabilities: 'VULNERABILITIES',\n status: 'STATUS',\n taskStatus: 'TASK STATUS',\n startTime: 'STARTED',\n duration: 'DURATION',\n actions: 'ACTIONS',\n },\n tablePagination: {\n rowsPerPage: 'Rows per page',\n rowsPerPageOptionLabel: '{{num}} rows',\n },\n },\n pipelineRunLogs: {\n title: 'PipelineRun Logs',\n noLogs: 'No logs found',\n downloader: {\n downloadTaskLogs: 'Download',\n downloadPipelineRunLogs: 'Download all tasks logs',\n },\n podLogsDownloadLink: {\n title: 'Download',\n downloading: 'downloading logs',\n },\n taskStatusStepper: {\n skipped: 'Skipped',\n },\n },\n pipelineRunOutput: {\n title: 'PipelineRun Output',\n noOutput: 'No output',\n },\n pipelineRunStatus: {\n All: 'All',\n Cancelling: 'Cancelling',\n Succeeded: 'Succeeded',\n Failed: 'Failed',\n Running: 'Running',\n 'In Progress': 'In Progress',\n FailedToStart: 'FailedToStart',\n PipelineNotStarted: 'PipelineNotStarted',\n Skipped: 'Skipped',\n Cancelled: 'Cancelled',\n Pending: 'Pending',\n Idle: 'Idle',\n Other: 'Other',\n },\n pipelineRunDuration: {\n lessThanSec: 'less than a sec',\n hour_one: '{{count}} hour',\n hour_other: '{{count}} hours',\n minute_one: '{{count}} minute',\n minute_other: '{{count}} minutes',\n second_one: '{{count}} second',\n second_other: '{{count}} seconds',\n },\n pipelineRunParamsAndResults: {\n title: 'PipelineRun Parameters and Results',\n noParams: 'No parameters found',\n noResults: 'No results found',\n params: 'Parameters',\n results: 'Results',\n outputTableColumn: {\n name: 'Name',\n value: 'Value',\n },\n },\n} as const;\n\n/**\n * Tekton translation reference.\n * @public\n */\nexport const tektonTranslationRef = createTranslationRef({\n id: 'tekton',\n messages: tektonMessages,\n});\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ref.esm.js","sources":["../../src/translations/ref.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 { createTranslationRef } from '@backstage/core-plugin-api/alpha';\n\n/** Default (English) messages; exported for e2e tests. */\nexport const tektonMessages = {\n errorPanel: {\n title: 'There was a problem retrieving Kubernetes objects',\n description:\n 'There was a problem retrieving some Kubernetes resources for the entity: {{entityName}}. This could mean that the Error Reporting card is not completely accurate.',\n },\n permissionAlert: {\n title: 'Permission required',\n description:\n 'To view Tekton Pipeline Runs, contact your administrator to give you the following permission(s): {{permissions}}.',\n },\n statusSelector: {\n label: 'Status',\n },\n clusterSelector: {\n label: 'Cluster',\n },\n tableExpandCollapse: {\n collapseAll: 'Collapse all',\n expandAll: 'Expand all',\n },\n pipelineVisualization: {\n emptyState: {\n description: 'No Pipeline Run to visualize',\n },\n noTasksDescription: 'This Pipeline Run has no tasks to visualize',\n stepList: {\n finallyTaskTitle: 'Finally Task',\n },\n },\n pipelineRunList: {\n title: 'Pipeline Runs',\n noPipelineRuns: 'No Pipeline Runs found',\n searchBarPlaceholder: 'Search',\n rowActions: {\n viewParamsAndResults: 'View Parameters and Results',\n viewLogs: 'View logs',\n unauthorizedViewLogs: 'Unauthorized to view logs',\n viewSBOM: 'View SBOM',\n SBOMNotApplicable: 'View SBOM is not applicable for this PipelineRun',\n viewOutput: 'View output',\n outputNotApplicable: 'View Output is not applicable for this PipelineRun',\n },\n vulnerabilitySeverityTitle: {\n critical: 'Critical',\n high: 'High',\n medium: 'Medium',\n low: 'Low',\n unknown: 'Unknown',\n },\n tableHeaderTitle: {\n name: 'NAME',\n vulnerabilities: 'VULNERABILITIES',\n status: 'STATUS',\n taskStatus: 'TASK STATUS',\n startTime: 'STARTED',\n duration: 'DURATION',\n actions: 'ACTIONS',\n },\n tablePagination: {\n rowsPerPage: 'Rows per page',\n rowsPerPageOptionLabel: '{{num}} rows',\n },\n },\n pipelineRunLogs: {\n title: 'PipelineRun Logs',\n noLogs: 'No logs found',\n downloader: {\n downloadTaskLogs: 'Download',\n downloadPipelineRunLogs: 'Download all tasks logs',\n },\n podLogsDownloadLink: {\n title: 'Download',\n downloading: 'downloading logs',\n },\n taskStatusStepper: {\n skipped: 'Skipped',\n },\n },\n pipelineRunOutput: {\n title: 'PipelineRun Output',\n noOutput: 'No output',\n },\n pipelineRunStatus: {\n All: 'All',\n Cancelling: 'Cancelling',\n Succeeded: 'Succeeded',\n Failed: 'Failed',\n Running: 'Running',\n 'In Progress': 'In Progress',\n FailedToStart: 'FailedToStart',\n PipelineNotStarted: 'PipelineNotStarted',\n Skipped: 'Skipped',\n Cancelled: 'Cancelled',\n Pending: 'Pending',\n Idle: 'Idle',\n Other: 'Other',\n },\n pipelineRunDuration: {\n lessThanSec: 'less than a sec',\n hour_one: '{{count}} hour',\n hour_other: '{{count}} hours',\n minute_one: '{{count}} minute',\n minute_other: '{{count}} minutes',\n second_one: '{{count}} second',\n second_other: '{{count}} seconds',\n },\n pipelineRunParamsAndResults: {\n title: 'PipelineRun Parameters and Results',\n noParams: 'No parameters found',\n noResults: 'No results found',\n params: 'Parameters',\n results: 'Results',\n outputTableColumn: {\n name: 'Name',\n value: 'Value',\n },\n },\n} as const;\n\n/**\n * Tekton translation reference.\n * @public\n */\nexport const tektonTranslationRef = createTranslationRef({\n id: 'tekton',\n messages: tektonMessages,\n});\n"],"names":[],"mappings":";;AAmBO,MAAM,cAAA,GAAiB;AAAA,EAC5B,UAAA,EAAY;AAAA,IACV,KAAA,EAAO,mDAAA;AAAA,IACP,WAAA,EACE;AAAA,GACJ;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,KAAA,EAAO,qBAAA;AAAA,IACP,WAAA,EACE;AAAA,GACJ;AAAA,EACA,cAAA,EAAgB;AAAA,IACd,KAAA,EAAO;AAAA,GACT;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,KAAA,EAAO;AAAA,GACT;AAAA,EACA,mBAAA,EAAqB;AAAA,IACnB,WAAA,EAAa,cAAA;AAAA,IACb,SAAA,EAAW;AAAA,GACb;AAAA,EACA,qBAAA,EAAuB;AAAA,IACrB,UAAA,EAAY;AAAA,MACV,WAAA,EAAa;AAAA,KACf;AAAA,IACA,kBAAA,EAAoB,6CAAA;AAAA,IACpB,QAAA,EAAU;AAAA,MACR,gBAAA,EAAkB;AAAA;AACpB,GACF;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,KAAA,EAAO,eAAA;AAAA,IACP,cAAA,EAAgB,wBAAA;AAAA,IAChB,oBAAA,EAAsB,QAAA;AAAA,IACtB,UAAA,EAAY;AAAA,MACV,oBAAA,EAAsB,6BAAA;AAAA,MACtB,QAAA,EAAU,WAAA;AAAA,MACV,oBAAA,EAAsB,2BAAA;AAAA,MACtB,QAAA,EAAU,WAAA;AAAA,MACV,iBAAA,EAAmB,kDAAA;AAAA,MACnB,UAAA,EAAY,aAAA;AAAA,MACZ,mBAAA,EAAqB;AAAA,KACvB;AAAA,IACA,0BAAA,EAA4B;AAAA,MAC1B,QAAA,EAAU,UAAA;AAAA,MACV,IAAA,EAAM,MAAA;AAAA,MACN,MAAA,EAAQ,QAAA;AAAA,MACR,GAAA,EAAK,KAAA;AAAA,MACL,OAAA,EAAS;AAAA,KACX;AAAA,IACA,gBAAA,EAAkB;AAAA,MAChB,IAAA,EAAM,MAAA;AAAA,MACN,eAAA,EAAiB,iBAAA;AAAA,MACjB,MAAA,EAAQ,QAAA;AAAA,MACR,UAAA,EAAY,aAAA;AAAA,MACZ,SAAA,EAAW,SAAA;AAAA,MACX,QAAA,EAAU,UAAA;AAAA,MACV,OAAA,EAAS;AAAA,KACX;AAAA,IACA,eAAA,EAAiB;AAAA,MACf,WAAA,EAAa,eAAA;AAAA,MACb,sBAAA,EAAwB;AAAA;AAC1B,GACF;AAAA,EACA,eAAA,EAAiB;AAAA,IACf,KAAA,EAAO,kBAAA;AAAA,IACP,MAAA,EAAQ,eAAA;AAAA,IACR,UAAA,EAAY;AAAA,MACV,gBAAA,EAAkB,UAAA;AAAA,MAClB,uBAAA,EAAyB;AAAA,KAC3B;AAAA,IACA,mBAAA,EAAqB;AAAA,MACnB,KAAA,EAAO,UAAA;AAAA,MACP,WAAA,EAAa;AAAA,KACf;AAAA,IACA,iBAAA,EAAmB;AAAA,MACjB,OAAA,EAAS;AAAA;AACX,GACF;AAAA,EACA,iBAAA,EAAmB;AAAA,IACjB,KAAA,EAAO,oBAAA;AAAA,IACP,QAAA,EAAU;AAAA,GACZ;AAAA,EACA,iBAAA,EAAmB;AAAA,IACjB,GAAA,EAAK,KAAA;AAAA,IACL,UAAA,EAAY,YAAA;AAAA,IACZ,SAAA,EAAW,WAAA;AAAA,IACX,MAAA,EAAQ,QAAA;AAAA,IACR,OAAA,EAAS,SAAA;AAAA,IACT,aAAA,EAAe,aAAA;AAAA,IACf,aAAA,EAAe,eAAA;AAAA,IACf,kBAAA,EAAoB,oBAAA;AAAA,IACpB,OAAA,EAAS,SAAA;AAAA,IACT,SAAA,EAAW,WAAA;AAAA,IACX,OAAA,EAAS,SAAA;AAAA,IACT,IAAA,EAAM,MAAA;AAAA,IACN,KAAA,EAAO;AAAA,GACT;AAAA,EACA,mBAAA,EAAqB;AAAA,IACnB,WAAA,EAAa,iBAAA;AAAA,IACb,QAAA,EAAU,gBAAA;AAAA,IACV,UAAA,EAAY,iBAAA;AAAA,IACZ,UAAA,EAAY,kBAAA;AAAA,IACZ,YAAA,EAAc,mBAAA;AAAA,IACd,UAAA,EAAY,kBAAA;AAAA,IACZ,YAAA,EAAc;AAAA,GAChB;AAAA,EACA,2BAAA,EAA6B;AAAA,IAC3B,KAAA,EAAO,oCAAA;AAAA,IACP,QAAA,EAAU,qBAAA;AAAA,IACV,SAAA,EAAW,kBAAA;AAAA,IACX,MAAA,EAAQ,YAAA;AAAA,IACR,OAAA,EAAS,SAAA;AAAA,IACT,iBAAA,EAAmB;AAAA,MACjB,IAAA,EAAM,MAAA;AAAA,MACN,KAAA,EAAO;AAAA;AACT;AAEJ;AAMO,MAAM,uBAAuB,oBAAA,CAAqB;AAAA,EACvD,EAAA,EAAI,QAAA;AAAA,EACJ,QAAA,EAAU;AACZ,CAAC;;;;"}
@@ -26,15 +26,16 @@ declare const tektonTranslationRef: _backstage_frontend_plugin_api.TranslationRe
26
26
  readonly "pipelineRunList.rowActions.SBOMNotApplicable": "View SBOM is not applicable for this PipelineRun";
27
27
  readonly "pipelineRunList.rowActions.viewOutput": "View output";
28
28
  readonly "pipelineRunList.rowActions.outputNotApplicable": "View Output is not applicable for this PipelineRun";
29
- readonly "pipelineRunList.vulnerabilitySeverityTitle.medium": "Medium";
30
29
  readonly "pipelineRunList.vulnerabilitySeverityTitle.critical": "Critical";
31
30
  readonly "pipelineRunList.vulnerabilitySeverityTitle.high": "High";
31
+ readonly "pipelineRunList.vulnerabilitySeverityTitle.medium": "Medium";
32
32
  readonly "pipelineRunList.vulnerabilitySeverityTitle.low": "Low";
33
+ readonly "pipelineRunList.vulnerabilitySeverityTitle.unknown": "Unknown";
33
34
  readonly "pipelineRunList.tableHeaderTitle.name": "NAME";
34
- readonly "pipelineRunList.tableHeaderTitle.startTime": "STARTED";
35
+ readonly "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULNERABILITIES";
35
36
  readonly "pipelineRunList.tableHeaderTitle.status": "STATUS";
36
37
  readonly "pipelineRunList.tableHeaderTitle.taskStatus": "TASK STATUS";
37
- readonly "pipelineRunList.tableHeaderTitle.vulnerabilities": "VULNERABILITIES";
38
+ readonly "pipelineRunList.tableHeaderTitle.startTime": "STARTED";
38
39
  readonly "pipelineRunList.tableHeaderTitle.duration": "DURATION";
39
40
  readonly "pipelineRunList.tableHeaderTitle.actions": "ACTIONS";
40
41
  readonly "pipelineRunList.tablePagination.rowsPerPage": "Rows per page";
@@ -48,6 +49,7 @@ declare const tektonTranslationRef: _backstage_frontend_plugin_api.TranslationRe
48
49
  readonly "pipelineRunLogs.taskStatusStepper.skipped": "Skipped";
49
50
  readonly "pipelineRunOutput.title": "PipelineRun Output";
50
51
  readonly "pipelineRunOutput.noOutput": "No output";
52
+ readonly "pipelineRunStatus.Skipped": "Skipped";
51
53
  readonly "pipelineRunStatus.All": "All";
52
54
  readonly "pipelineRunStatus.Cancelling": "Cancelling";
53
55
  readonly "pipelineRunStatus.Succeeded": "Succeeded";
@@ -56,7 +58,6 @@ declare const tektonTranslationRef: _backstage_frontend_plugin_api.TranslationRe
56
58
  readonly "pipelineRunStatus.In Progress": "In Progress";
57
59
  readonly "pipelineRunStatus.FailedToStart": "FailedToStart";
58
60
  readonly "pipelineRunStatus.PipelineNotStarted": "PipelineNotStarted";
59
- readonly "pipelineRunStatus.Skipped": "Skipped";
60
61
  readonly "pipelineRunStatus.Cancelled": "Cancelled";
61
62
  readonly "pipelineRunStatus.Pending": "Pending";
62
63
  readonly "pipelineRunStatus.Idle": "Idle";
@@ -69,10 +70,10 @@ declare const tektonTranslationRef: _backstage_frontend_plugin_api.TranslationRe
69
70
  readonly "pipelineRunDuration.second_one": "{{count}} second";
70
71
  readonly "pipelineRunDuration.second_other": "{{count}} seconds";
71
72
  readonly "pipelineRunParamsAndResults.title": "PipelineRun Parameters and Results";
72
- readonly "pipelineRunParamsAndResults.results": "Results";
73
73
  readonly "pipelineRunParamsAndResults.noParams": "No parameters found";
74
74
  readonly "pipelineRunParamsAndResults.noResults": "No results found";
75
75
  readonly "pipelineRunParamsAndResults.params": "Parameters";
76
+ readonly "pipelineRunParamsAndResults.results": "Results";
76
77
  readonly "pipelineRunParamsAndResults.outputTableColumn.name": "Name";
77
78
  readonly "pipelineRunParamsAndResults.outputTableColumn.value": "Value";
78
79
  }>;
@@ -89,4 +90,4 @@ declare const tektonTranslations: _backstage_frontend_plugin_api.TranslationReso
89
90
  */
90
91
  declare const tektonTranslationsModule: _backstage_frontend_plugin_api.FrontendModule;
91
92
 
92
- export { tektonTranslationsModule as default, tektonTranslationRef, tektonTranslations };
93
+ export { tektonTranslationsModule as default, tektonTranslationRef, tektonTranslations, tektonTranslationsModule };
@@ -1,5 +1,4 @@
1
- import { createTranslationResource } from '@backstage/core-plugin-api/alpha';
2
- import { createFrontendModule } from '@backstage/frontend-plugin-api';
1
+ import { createTranslationResource, createFrontendModule } from '@backstage/frontend-plugin-api';
3
2
  import { TranslationBlueprint } from '@backstage/plugin-app-react';
4
3
  import { tektonTranslationRef } from './translations/ref.esm.js';
5
4
 
@@ -25,5 +24,5 @@ const tektonTranslationsModule = createFrontendModule({
25
24
  ]
26
25
  });
27
26
 
28
- export { tektonTranslationsModule as default, tektonTranslationRef, tektonTranslations };
27
+ export { tektonTranslationsModule as default, tektonTranslationRef, tektonTranslations, tektonTranslationsModule };
29
28
  //# sourceMappingURL=translations.esm.js.map
@@ -1 +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;;;;"}
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 {\n createFrontendModule,\n createTranslationResource,\n} 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 */\nexport const 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":";;;;AA2BO,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;AAQM,MAAM,2BAA2B,oBAAA,CAAqB;AAAA,EAC3D,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.41.1",
3
+ "version": "4.0.1",
4
4
  "main": "./dist/index.esm.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -9,16 +9,21 @@
9
9
  },
10
10
  "exports": {
11
11
  ".": {
12
+ "backstage": "@backstage/FrontendPlugin",
12
13
  "import": "./dist/index.esm.js",
13
14
  "types": "./dist/index.d.ts",
14
15
  "default": "./dist/index.esm.js"
15
16
  },
16
17
  "./alpha": {
17
- "backstage": "@backstage/FrontendPlugin",
18
18
  "import": "./dist/alpha.esm.js",
19
19
  "types": "./dist/alpha.d.ts",
20
20
  "default": "./dist/alpha.esm.js"
21
21
  },
22
+ "./legacy": {
23
+ "import": "./dist/legacy.esm.js",
24
+ "types": "./dist/legacy.d.ts",
25
+ "default": "./dist/legacy.esm.js"
26
+ },
22
27
  "./translations": {
23
28
  "backstage": "@backstage/FrontendModule",
24
29
  "import": "./dist/translations.esm.js",
@@ -32,6 +37,9 @@
32
37
  "alpha": [
33
38
  "dist/alpha.d.ts"
34
39
  ],
40
+ "legacy": [
41
+ "dist/legacy.d.ts"
42
+ ],
35
43
  "translations": [
36
44
  "dist/translations.d.ts"
37
45
  ],
@@ -50,7 +58,7 @@
50
58
  "@backstage-community/plugin-tekton-react"
51
59
  ],
52
60
  "features": {
53
- "./alpha": "@backstage/FrontendPlugin",
61
+ ".": "@backstage/FrontendPlugin",
54
62
  "./translations": "@backstage/FrontendModule"
55
63
  }
56
64
  },
@@ -60,6 +68,9 @@
60
68
  ],
61
69
  "scripts": {
62
70
  "start": "backstage-cli package start",
71
+ "start:legacy": "backstage-cli package start --entrypoint dev/legacy",
72
+ "start:mock": "backstage-cli package start --entrypoint dev/index.mock.tsx",
73
+ "start:legacy:mock": "backstage-cli package start --entrypoint dev/legacy.mock.tsx",
63
74
  "build": "backstage-cli package build",
64
75
  "lint": "backstage-cli package lint",
65
76
  "test": "backstage-cli package test --passWithNoTests --coverage",
@@ -70,17 +81,17 @@
70
81
  },
71
82
  "dependencies": {
72
83
  "@aonic-ui/pipelines": "^3.1.0",
73
- "@backstage-community/plugin-tekton-common": "^1.23.0",
74
- "@backstage-community/plugin-tekton-react": "^0.8.0",
75
- "@backstage/catalog-model": "^1.9.0",
76
- "@backstage/core-components": "^0.18.11",
77
- "@backstage/core-plugin-api": "^1.12.7",
78
- "@backstage/frontend-plugin-api": "^0.17.2",
79
- "@backstage/plugin-app-react": "^0.2.4",
80
- "@backstage/plugin-catalog-react": "^3.1.0",
84
+ "@backstage-community/plugin-tekton-common": "^1.24.0",
85
+ "@backstage-community/plugin-tekton-react": "^0.9.0",
86
+ "@backstage/catalog-model": "^1.10.0",
87
+ "@backstage/core-components": "^0.18.13",
88
+ "@backstage/core-plugin-api": "^1.12.9",
89
+ "@backstage/frontend-plugin-api": "^0.18.0",
90
+ "@backstage/plugin-app-react": "^0.2.6",
91
+ "@backstage/plugin-catalog-react": "^3.2.2",
81
92
  "@backstage/plugin-kubernetes-common": "^0.9.12",
82
- "@backstage/plugin-kubernetes-react": "^0.5.20",
83
- "@backstage/plugin-permission-react": "^0.5.2",
93
+ "@backstage/plugin-kubernetes-react": "^0.5.23",
94
+ "@backstage/plugin-permission-react": "^0.5.4",
84
95
  "@backstage/theme": "^0.7.3",
85
96
  "@emotion/cache": "^11.14.0",
86
97
  "@emotion/react": "^11.11.4",
@@ -102,25 +113,46 @@
102
113
  "peerDependencies": {
103
114
  "react": "^17.0.0 || ^18.0.0",
104
115
  "react-dom": "^17.0.0 || ^18.0.0",
105
- "react-router-dom": "^6.0.0"
116
+ "react-router-dom": "^6.30.5"
106
117
  },
107
118
  "devDependencies": {
108
119
  "@axe-core/playwright": "^4.11.0",
109
- "@backstage/cli": "^0.36.3",
110
- "@backstage/dev-utils": "^1.1.24",
111
- "@backstage/test-utils": "^1.7.19",
120
+ "@backstage/catalog-client": "^1.16.1",
121
+ "@backstage/cli": "^0.36.5",
122
+ "@backstage/dev-utils": "^1.1.26",
123
+ "@backstage/frontend-defaults": "^0.5.5",
124
+ "@backstage/plugin-catalog": "^2.0.8",
125
+ "@backstage/plugin-kubernetes": "^0.12.22",
126
+ "@backstage/plugin-permission-common": "^0.9.10",
127
+ "@backstage/test-utils": "^1.7.21",
128
+ "@backstage/ui": "^0.17.1",
112
129
  "@playwright/test": "1.61.1",
130
+ "@remixicon/react": "^4.2.0",
113
131
  "@testing-library/dom": "^10.4.1",
114
132
  "@testing-library/jest-dom": "6.9.1",
115
133
  "@testing-library/react": "16.3.2",
116
134
  "@types/dagre": "^0.7.52",
117
135
  "@types/lodash": "4.17.24",
118
- "cross-fetch": "4.1.0"
136
+ "@types/react": "^18",
137
+ "@types/react-dom": "^18",
138
+ "cross-fetch": "4.1.0",
139
+ "react": "^18.0.2",
140
+ "react-aria-components": "~1.17.0",
141
+ "react-dom": "^18.0.2",
142
+ "react-router-dom": "^6.30.2"
119
143
  },
120
144
  "files": [
121
145
  "app-config.dynamic.yaml",
122
146
  "dist"
123
147
  ],
148
+ "scalprum": {
149
+ "name": "backstage-community.plugin-tekton",
150
+ "exposedModules": {
151
+ "PluginRoot": "./src/index.ts",
152
+ "Legacy": "./src/legacy.ts",
153
+ "Alpha": "./src/alpha.ts"
154
+ }
155
+ },
124
156
  "repository": {
125
157
  "type": "git",
126
158
  "url": "https://github.com/backstage/community-plugins",