@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.
- package/coverage/jest/results.xml +11 -11
- package/dist/translations/modules/checklist_group.d.ts +6 -0
- package/dist/translations/modules/checklist_group.js +6 -0
- package/dist/translations/modules/checklist_group_item.d.ts +4 -0
- package/dist/translations/modules/checklist_group_item.js +4 -0
- package/dist/translations/modules/checklist_group_option.d.ts +6 -0
- package/dist/translations/modules/checklist_group_option.js +6 -0
- package/lib/translations/modules/checklist_group.ts +7 -0
- package/lib/translations/modules/checklist_group_item.ts +4 -0
- package/lib/translations/modules/checklist_group_option.ts +7 -0
- package/package.json +1 -1
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.
|
|
2
|
-
<testsuite name="
|
|
3
|
-
<testcase classname="
|
|
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="
|
|
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="
|
|
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="
|
|
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="
|
|
13
|
-
<testcase classname="
|
|
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="
|
|
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="
|
|
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="
|
|
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>
|
|
@@ -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
|
+
};
|
|
@@ -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
|
};
|
|
@@ -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
|
};
|