@sofit/view-locale 1.81.0 → 1.82.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.
@@ -1,22 +1,22 @@
1
- <testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.488">
2
- <testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2020-03-19T12:31:33" time="1.755" tests="4">
3
- <testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.003">
1
+ <testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.741">
2
+ <testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2020-03-23T19:30:01" time="1.903" tests="4">
3
+ <testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.004">
4
4
  </testcase>
5
- <testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0.001">
5
+ <testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0">
6
6
  </testcase>
7
- <testcase classname="Vehicle locale test Should get translations with raw" name="Vehicle locale test Should get translations with raw" time="0">
7
+ <testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0.001">
8
8
  </testcase>
9
- <testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0">
9
+ <testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0">
10
10
  </testcase>
11
11
  </testsuite>
12
- <testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2020-03-19T12:31:33" time="1.751" tests="4">
13
- <testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.003">
12
+ <testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2020-03-23T19:30:01" time="1.977" tests="4">
13
+ <testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.004">
14
14
  </testcase>
15
- <testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0.001">
15
+ <testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0">
16
16
  </testcase>
17
- <testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0">
17
+ <testcase classname="Vehicle locale test Should get translations with raw" name="Vehicle locale test Should get translations with raw" time="0.001">
18
18
  </testcase>
19
- <testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0.001">
19
+ <testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0">
20
20
  </testcase>
21
21
  </testsuite>
22
22
  </testsuites>
@@ -36,3 +36,9 @@ export declare const fields: {
36
36
  es: string;
37
37
  };
38
38
  };
39
+ export declare const messages: {
40
+ is_not_allowed_to_exclude: {
41
+ ptBR: string;
42
+ es: string;
43
+ };
44
+ };
@@ -21,3 +21,9 @@ exports.fields = Object.assign({}, entity_1.ENTITY_COMMON, { description: {
21
21
  ptBR: 'Itens',
22
22
  es: 'Itens'
23
23
  } });
24
+ exports.messages = {
25
+ is_not_allowed_to_exclude: {
26
+ ptBR: 'Não é possível excluir um grupo do modelo vinculado ao checklist.',
27
+ es: 'No es posible eliminar un grupo del modelo vinculado a la lista de verificación.'
28
+ }
29
+ };
@@ -41,4 +41,8 @@ export declare const messages: {
41
41
  ptBR: string;
42
42
  es: string;
43
43
  };
44
+ is_not_allowed_to_exclude: {
45
+ ptBR: string;
46
+ es: string;
47
+ };
44
48
  };
@@ -25,5 +25,9 @@ exports.messages = {
25
25
  is_not_allowed_to_activate: {
26
26
  ptBR: 'Não é permitido reativar um item.',
27
27
  es: 'No se permite volver a habilitar un elemento.'
28
+ },
29
+ is_not_allowed_to_exclude: {
30
+ ptBR: 'Não é possível excluir um item do modelo vinculado ao checklist.',
31
+ es: 'No es posible eliminar un elemento del modelo vinculado a la lista de verificación.'
28
32
  }
29
33
  };
@@ -20,3 +20,9 @@ export declare const fields: {
20
20
  es: string;
21
21
  };
22
22
  };
23
+ export declare const messages: {
24
+ is_not_allowed_to_exclude: {
25
+ ptBR: string;
26
+ es: string;
27
+ };
28
+ };
@@ -9,3 +9,9 @@ exports.fields = Object.assign({}, entity_1.ENTITY_COMMON, { checklist_group_id:
9
9
  ptBR: 'Grupo do Checklist',
10
10
  es: 'Grupo do Checklist'
11
11
  } });
12
+ exports.messages = {
13
+ is_not_allowed_to_exclude: {
14
+ ptBR: 'Não é possível excluir um motivo de reprovação do modelo vinculado ao checklist.',
15
+ es: 'No es posible excluir un motivo de desaprobación del modelo vinculado a la lista de verificación.'
16
+ }
17
+ };
@@ -27,4 +27,11 @@ export const fields = {
27
27
  ptBR: 'Itens',
28
28
  es: 'Itens'
29
29
  }
30
+ };
31
+
32
+ export const messages = {
33
+ is_not_allowed_to_exclude: {
34
+ ptBR: 'Não é possível excluir um grupo do modelo vinculado ao checklist.',
35
+ es: 'No es posible eliminar un grupo del modelo vinculado a la lista de verificación.'
36
+ }
30
37
  };
@@ -33,5 +33,9 @@ export const messages = {
33
33
  is_not_allowed_to_activate: {
34
34
  ptBR: 'Não é permitido reativar um item.',
35
35
  es: 'No se permite volver a habilitar un elemento.'
36
+ },
37
+ is_not_allowed_to_exclude: {
38
+ ptBR: 'Não é possível excluir um item do modelo vinculado ao checklist.',
39
+ es: 'No es posible eliminar un elemento del modelo vinculado a la lista de verificación.'
36
40
  }
37
41
  };
@@ -11,4 +11,11 @@ export const fields = {
11
11
  ptBR: 'Grupo do Checklist',
12
12
  es: 'Grupo do Checklist'
13
13
  }
14
+ };
15
+
16
+ export const messages = {
17
+ is_not_allowed_to_exclude: {
18
+ ptBR: 'Não é possível excluir um motivo de reprovação do modelo vinculado ao checklist.',
19
+ es: 'No es posible excluir un motivo de desaprobación del modelo vinculado a la lista de verificación.'
20
+ }
14
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sofit/view-locale",
3
- "version": "1.81.0",
3
+ "version": "1.82.0",
4
4
  "description": "Traduções do Sofit View",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",