@ovh-ux/manager-common-translations 0.5.2 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.6.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-common-translations@0.5.3...@ovh-ux/manager-common-translations@0.6.0) (2025-05-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **i18n:** add missing translations [CDS 3763] ([b0c0b82](https://github.com/ovh/manager/commit/b0c0b823b6c8f78187fafd167da3d0ff2b05eedb))
12
+
13
+
14
+ ### Features
15
+
16
+ * **common-translation:** add iam translation ([79bfc06](https://github.com/ovh/manager/commit/79bfc067d850fafacf94a9521fa7f83a30dc540f)), closes [#15091](https://github.com/ovh/manager/issues/15091)
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.5.3](https://github.com/ovh/manager/compare/@ovh-ux/manager-common-translations@0.5.2...@ovh-ux/manager-common-translations@0.5.3) (2025-04-30)
23
+
24
+ **Note:** Version bump only for package @ovh-ux/manager-common-translations
25
+
26
+
27
+
28
+
29
+
6
30
  ## [0.5.2](https://github.com/ovh/manager/compare/@ovh-ux/manager-common-translations@0.5.1...@ovh-ux/manager-common-translations@0.5.2) (2025-04-24)
7
31
 
8
32
  **Note:** Version bump only for package @ovh-ux/manager-common-translations
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Sie sind nicht berechtigt, diese Aktion auszuführen. Wenden Sie sich an Ihren Administrator.",
3
+ "iam_hidden": "Verborgen"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "You do not have the necessary permissions to perform this action, please contact your administrator",
3
+ "iam_hidden": "Hidden"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Si no dispone de los permisos necesarios para realizar esta acción, póngase en contacto con su administrador.",
3
+ "iam_hidden": "Oculto"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Vous ne disposez pas des permissions nécessaires pour effectuer cette action, veuillez contacter votre administrateur",
3
+ "iam_hidden": "Caché"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Vous ne disposez pas des permissions nécessaires pour effectuer cette action, veuillez contacter votre administrateur",
3
+ "iam_hidden": "Caché"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Non disponi dei permessi necessari per effettuare questa azione, contatta l'amministratore.",
3
+ "iam_hidden": "Nascosto"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Nie masz wystarczających uprawnień, aby wykonać tę operację. Skontaktuj się z administratorem",
3
+ "iam_hidden": "Ukryte"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "iam_actions_message": "Não tem as permissões necessárias para efetuar esta ação, contacte o seu administrador.",
3
+ "iam_hidden": "Oculto"
4
+ }
package/dist/index.cjs.js CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o="@ovh-ux/manager-common-translations",t={BYTES:`${o}/bytes`,CLIPBOARD:`${o}/clipboard`,ACTIONS:`${o}/actions`,FORM:`${o}/form`};exports.NAMESPACES=t;exports.NAMESPACE_PREFIX=o;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o="@ovh-ux/manager-common-translations",t={BYTES:`${o}/bytes`,CLIPBOARD:`${o}/clipboard`,ACTIONS:`${o}/actions`,FORM:`${o}/form`,IAM:`${o}/iam`};exports.NAMESPACES=t;exports.NAMESPACE_PREFIX=o;
package/dist/index.esm.js CHANGED
@@ -1,10 +1,11 @@
1
- const o = "@ovh-ux/manager-common-translations", n = {
1
+ const o = "@ovh-ux/manager-common-translations", a = {
2
2
  BYTES: `${o}/bytes`,
3
3
  CLIPBOARD: `${o}/clipboard`,
4
4
  ACTIONS: `${o}/actions`,
5
- FORM: `${o}/form`
5
+ FORM: `${o}/form`,
6
+ IAM: `${o}/iam`
6
7
  };
7
8
  export {
8
- n as NAMESPACES,
9
+ a as NAMESPACES,
9
10
  o as NAMESPACE_PREFIX
10
11
  };
@@ -4,4 +4,5 @@ export declare const NAMESPACES: {
4
4
  CLIPBOARD: string;
5
5
  ACTIONS: string;
6
6
  FORM: string;
7
+ IAM: string;
7
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ovh-ux/manager-common-translations",
3
- "version": "0.5.2",
3
+ "version": "0.6.0",
4
4
  "description": "Common translations for Manager µ-apps",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,8 +19,7 @@
19
19
  "scripts": {
20
20
  "build": "tsc && vite build",
21
21
  "dev": "tsc && vite build",
22
- "prepare": "tsc && vite build",
23
- "start:watch": "tsc -w"
22
+ "prepare": "tsc && vite build"
24
23
  },
25
24
  "devDependencies": {
26
25
  "typescript": "^5.8.2",