@ovh-ux/manager-common-translations 0.5.0 → 0.5.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
|
@@ -3,6 +3,17 @@
|
|
|
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.5.1](https://github.com/ovh/manager/compare/@ovh-ux/manager-common-translations@0.5.0...@ovh-ux/manager-common-translations@0.5.1) (2025-03-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **i18n:** add missing translations [CDS 3782] ([03c1436](https://github.com/ovh/manager/commit/03c14360f9e813274e4c3d9a965ddd572c6da691))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.5.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-common-translations@0.4.1...@ovh-ux/manager-common-translations@0.5.0) (2025-03-06)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
"required_field": "Campo obligatorio",
|
|
6
6
|
"required_fields": "Campo obligatorio",
|
|
7
7
|
"error_required_field": "Complete este campo.",
|
|
8
|
-
"error_required_fields": "
|
|
8
|
+
"error_required_fields": "Complete estos campos.",
|
|
9
9
|
"error_number": "Introduzca un valor numérico válido.",
|
|
10
10
|
"error_email": "Introduzca una dirección de correo electrónico válida.",
|
|
11
11
|
"error_min_exclusive": "Introduzca un valor superior a {{ value }}.",
|
|
12
|
-
"error_min_inclusive": "Introduzca un valor
|
|
13
|
-
"error_max_exclusive": "Introduzca un valor
|
|
14
|
-
"error_max_inclusive": "Introduzca un valor
|
|
12
|
+
"error_min_inclusive": "Introduzca un valor superior o igual a {{ value }}.",
|
|
13
|
+
"error_max_exclusive": "Introduzca un valor inferior a {{ value }}.",
|
|
14
|
+
"error_max_inclusive": "Introduzca un valor inferior o igual a {{ value }}.",
|
|
15
15
|
"error_min_chars": "Introduzca un mínimo de {{ value }} caracteres.",
|
|
16
16
|
"error_max_chars": "Introduzca un máximo de {{ value }} caracteres.",
|
|
17
17
|
"error_between_min_max_chars": "El campo debe contener entre {{ min }} y {{ max }} caracteres.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ovh-ux/manager-common-translations",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Common translations for Manager µ-apps",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"start:watch": "tsc -w"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
+
"typescript": "^5.8.2",
|
|
26
27
|
"vite": "^5.4.12",
|
|
27
28
|
"vite-plugin-dts": "3.5.1",
|
|
28
29
|
"vite-plugin-static-copy": "^2.0.0"
|