@sofit/view-locale 1.61.0 → 1.62.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 +7 -7
- package/dist/translations/common/database-errors.js +2 -2
- package/dist/translations/modules/employee.d.ts +4 -0
- package/dist/translations/modules/employee.js +4 -0
- package/lib/translations/common/database-errors.ts +2 -2
- package/lib/translations/modules/employee.ts +4 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="
|
|
2
|
-
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-08-
|
|
1
|
+
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="3.095">
|
|
2
|
+
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-08-30T17:22:34" time="2.137" tests="4">
|
|
3
3
|
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.004">
|
|
4
4
|
</testcase>
|
|
5
5
|
<testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0">
|
|
@@ -9,14 +9,14 @@
|
|
|
9
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="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-08-
|
|
13
|
-
<testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.
|
|
12
|
+
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-08-30T17:22:34" time="2.291" 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="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0.
|
|
15
|
+
<testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0.004">
|
|
16
16
|
</testcase>
|
|
17
|
-
<testcase classname="Vehicle locale test Should get translations with raw" name="Vehicle locale test Should get translations with raw" time="0
|
|
17
|
+
<testcase classname="Vehicle locale test Should get translations with raw" name="Vehicle locale test Should get translations with raw" time="0">
|
|
18
18
|
</testcase>
|
|
19
|
-
<testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0.
|
|
19
|
+
<testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0.001">
|
|
20
20
|
</testcase>
|
|
21
21
|
</testsuite>
|
|
22
22
|
</testsuites>
|
|
@@ -30,7 +30,7 @@ exports.databaseErrors = {
|
|
|
30
30
|
es: 'No se encontró el registro de {{resource}}.'
|
|
31
31
|
},
|
|
32
32
|
duplicate_registers: {
|
|
33
|
-
ptBR: '
|
|
34
|
-
es: 'Hay
|
|
33
|
+
ptBR: 'Há mais de um registro com o valor {{value}} no campo {{column}} em {{table}}',
|
|
34
|
+
es: 'Hay más de un registro con el valor {{value}} en el campo {{column}} en {{table}}'
|
|
35
35
|
}
|
|
36
36
|
};
|
|
@@ -162,6 +162,10 @@ exports.messages = {
|
|
|
162
162
|
ptBR: 'O gestor imediato deve estar vinculado a um usuário.',
|
|
163
163
|
es: 'El gerente inmediato debe estar vinculado a un usuario.'
|
|
164
164
|
},
|
|
165
|
+
there_are_managers_with_same_name: {
|
|
166
|
+
ptBR: 'Há mais de um gestor imediato com o nome: {{name}}',
|
|
167
|
+
es: 'Ya más de un gerente inmediato con el nombre: {{name}}'
|
|
168
|
+
},
|
|
165
169
|
immediate_manager_can_not_be_yourself: {
|
|
166
170
|
ptBR: 'Não é possível informar o gestor imediato como sendo o próprio colaborador.',
|
|
167
171
|
es: 'No es posible informar al gerente inmediato como el colaborador mismo'
|
|
@@ -28,7 +28,7 @@ export const databaseErrors = {
|
|
|
28
28
|
es: 'No se encontró el registro de {{resource}}.'
|
|
29
29
|
},
|
|
30
30
|
duplicate_registers: {
|
|
31
|
-
ptBR: '
|
|
32
|
-
es: 'Hay
|
|
31
|
+
ptBR: 'Há mais de um registro com o valor {{value}} no campo {{column}} em {{table}}',
|
|
32
|
+
es: 'Hay más de un registro con el valor {{value}} en el campo {{column}} en {{table}}'
|
|
33
33
|
}
|
|
34
34
|
};
|
|
@@ -202,6 +202,10 @@ export const messages = {
|
|
|
202
202
|
ptBR: 'O gestor imediato deve estar vinculado a um usuário.',
|
|
203
203
|
es: 'El gerente inmediato debe estar vinculado a un usuario.'
|
|
204
204
|
},
|
|
205
|
+
there_are_managers_with_same_name: {
|
|
206
|
+
ptBR: 'Há mais de um gestor imediato com o nome: {{name}}',
|
|
207
|
+
es: 'Ya más de un gerente inmediato con el nombre: {{name}}'
|
|
208
|
+
},
|
|
205
209
|
immediate_manager_can_not_be_yourself: {
|
|
206
210
|
ptBR: 'Não é possível informar o gestor imediato como sendo o próprio colaborador.',
|
|
207
211
|
es: 'No es posible informar al gerente inmediato como el colaborador mismo'
|