@sofit/view-locale 1.48.0 → 1.50.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/index.d.ts +3 -1
- package/dist/translations/index.js +4 -0
- package/dist/translations/modules/gate_appointment_diary.d.ts +4 -0
- package/dist/translations/modules/gate_appointment_diary.js +6 -0
- package/dist/translations/modules/vehicle_maintenance_plan.d.ts +4 -0
- package/dist/translations/modules/vehicle_maintenance_plan.js +6 -0
- package/lib/translations/common/database-errors.ts +2 -2
- package/lib/translations/index.ts +4 -0
- package/lib/translations/modules/gate_appointment_diary.ts +4 -0
- package/lib/translations/modules/vehicle_maintenance_plan.ts +4 -0
- package/package.json +1 -1
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.
|
|
2
|
-
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-07-
|
|
3
|
-
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.
|
|
1
|
+
<testsuites name="Sofit view locale tests" tests="8" failures="0" time="2.946">
|
|
2
|
+
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-07-17T19:58:44" time="1.937" tests="4">
|
|
3
|
+
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.005">
|
|
4
4
|
</testcase>
|
|
5
5
|
<testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0.001">
|
|
6
6
|
</testcase>
|
|
7
7
|
<testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0">
|
|
9
|
+
<testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0.001">
|
|
10
10
|
</testcase>
|
|
11
11
|
</testsuite>
|
|
12
|
-
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-07-
|
|
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-07-17T19:58:44" time="2.151" tests="4">
|
|
13
|
+
<testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.005">
|
|
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.001">
|
|
16
16
|
</testcase>
|
|
17
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>
|
|
@@ -10,8 +10,8 @@ exports.databaseErrors = {
|
|
|
10
10
|
es: 'Ya existe un registro de {{label}} con este {{columnName}}.'
|
|
11
11
|
},
|
|
12
12
|
foreignkey_constraint: {
|
|
13
|
-
ptBR: 'Houve um erro ao
|
|
14
|
-
es: ''
|
|
13
|
+
ptBR: 'Houve um erro ao Salvar/Deletar o registro. Um ou mais relacionamentos não foram encontrados.',
|
|
14
|
+
es: 'Se produjo un error al Guardar/Borrar el registro. Una o más relaciones no fueron encontradas.'
|
|
15
15
|
},
|
|
16
16
|
cant_delete_related: {
|
|
17
17
|
ptBR: 'Registro de {{table}} não pode ser removido, pois existem registros de {{relationedTable}} relacionados.',
|
|
@@ -29,6 +29,7 @@ import * as foreseen_service_order_item from './modules/foreseen_service_order_i
|
|
|
29
29
|
import * as gas_pump_control from './modules/gas_pump_control';
|
|
30
30
|
import * as gate from './modules/gate';
|
|
31
31
|
import * as gate_appointment from './modules/gate_appointment';
|
|
32
|
+
import * as gate_appointment_diary from './modules/gate_appointment_diary';
|
|
32
33
|
import * as item from './modules/item';
|
|
33
34
|
import * as leasing_contract from './modules/leasing_contract';
|
|
34
35
|
import * as maintenance_plan from './modules/maintenance_plan';
|
|
@@ -65,6 +66,7 @@ import * as vehicle_due from './modules/vehicle_due';
|
|
|
65
66
|
import * as vehicle_fuel from './modules/vehicle_fuel';
|
|
66
67
|
import * as vehicle_layout from './modules/vehicle_layout';
|
|
67
68
|
import * as vehicle_leasing from './modules/vehicle_leasing';
|
|
69
|
+
import * as vehicle_maintenance_plan from './modules/vehicle_maintenance_plan';
|
|
68
70
|
import * as vehicle_model from './modules/vehicle_model';
|
|
69
71
|
import * as vehicle_model_version from './modules/vehicle_model_version';
|
|
70
72
|
import * as vehicle_tag from './modules/vehicle_tag';
|
|
@@ -72,4 +74,4 @@ import * as warehouse from './modules/warehouse';
|
|
|
72
74
|
import * as warehouse_item from './modules/warehouse_item';
|
|
73
75
|
export { joi } from './common/joi';
|
|
74
76
|
export { databaseErrors } from './common/database-errors';
|
|
75
|
-
export { auth, benchmarking, general, inout, pipefy, cash_basis, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, company, cost_center, cost_sharing, customer, driver_control, driver_license_point, employee, employee_hiring_regime, employee_role, expense, fine, fine_qualification_integration_key, fine_qualification, fine_resource, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, gate_appointment, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, night_transport, parameter, pendency, qualification_severity, release_notification, request_occurrence, route, service_order, solicitation, solicitation_comment, solicitation_history, solicitation_watcher, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, trip, vehicle, vehicle_axes, vehicle_brand, vehicle_change_history, vehicle_deactivation_cause, vehicle_due, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item };
|
|
77
|
+
export { auth, benchmarking, general, inout, pipefy, cash_basis, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, company, cost_center, cost_sharing, customer, driver_control, driver_license_point, employee, employee_hiring_regime, employee_role, expense, fine, fine_qualification_integration_key, fine_qualification, fine_resource, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, gate_appointment, gate_appointment_diary, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, night_transport, parameter, pendency, qualification_severity, release_notification, request_occurrence, route, service_order, solicitation, solicitation_comment, solicitation_history, solicitation_watcher, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, trip, vehicle, vehicle_axes, vehicle_brand, vehicle_change_history, vehicle_deactivation_cause, vehicle_due, vehicle_fuel, vehicle_layout, vehicle_leasing, vehicle_maintenance_plan, vehicle_model, vehicle_model_version, vehicle_tag, warehouse, warehouse_item };
|
|
@@ -69,6 +69,8 @@ const gate = __importStar(require("./modules/gate"));
|
|
|
69
69
|
exports.gate = gate;
|
|
70
70
|
const gate_appointment = __importStar(require("./modules/gate_appointment"));
|
|
71
71
|
exports.gate_appointment = gate_appointment;
|
|
72
|
+
const gate_appointment_diary = __importStar(require("./modules/gate_appointment_diary"));
|
|
73
|
+
exports.gate_appointment_diary = gate_appointment_diary;
|
|
72
74
|
const item = __importStar(require("./modules/item"));
|
|
73
75
|
exports.item = item;
|
|
74
76
|
const leasing_contract = __importStar(require("./modules/leasing_contract"));
|
|
@@ -141,6 +143,8 @@ const vehicle_layout = __importStar(require("./modules/vehicle_layout"));
|
|
|
141
143
|
exports.vehicle_layout = vehicle_layout;
|
|
142
144
|
const vehicle_leasing = __importStar(require("./modules/vehicle_leasing"));
|
|
143
145
|
exports.vehicle_leasing = vehicle_leasing;
|
|
146
|
+
const vehicle_maintenance_plan = __importStar(require("./modules/vehicle_maintenance_plan"));
|
|
147
|
+
exports.vehicle_maintenance_plan = vehicle_maintenance_plan;
|
|
144
148
|
const vehicle_model = __importStar(require("./modules/vehicle_model"));
|
|
145
149
|
exports.vehicle_model = vehicle_model;
|
|
146
150
|
const vehicle_model_version = __importStar(require("./modules/vehicle_model_version"));
|
|
@@ -8,8 +8,8 @@ export const databaseErrors = {
|
|
|
8
8
|
es: 'Ya existe un registro de {{label}} con este {{columnName}}.'
|
|
9
9
|
},
|
|
10
10
|
foreignkey_constraint: {
|
|
11
|
-
ptBR: 'Houve um erro ao
|
|
12
|
-
es: ''
|
|
11
|
+
ptBR: 'Houve um erro ao Salvar/Deletar o registro. Um ou mais relacionamentos não foram encontrados.',
|
|
12
|
+
es: 'Se produjo un error al Guardar/Borrar el registro. Una o más relaciones no fueron encontradas.'
|
|
13
13
|
},
|
|
14
14
|
cant_delete_related: {
|
|
15
15
|
ptBR: 'Registro de {{table}} não pode ser removido, pois existem registros de {{relationedTable}} relacionados.',
|
|
@@ -29,6 +29,7 @@ import * as foreseen_service_order_item from './modules/foreseen_service_order_i
|
|
|
29
29
|
import * as gas_pump_control from './modules/gas_pump_control';
|
|
30
30
|
import * as gate from './modules/gate';
|
|
31
31
|
import * as gate_appointment from './modules/gate_appointment';
|
|
32
|
+
import * as gate_appointment_diary from './modules/gate_appointment_diary';
|
|
32
33
|
import * as item from './modules/item';
|
|
33
34
|
import * as leasing_contract from './modules/leasing_contract';
|
|
34
35
|
import * as maintenance_plan from './modules/maintenance_plan';
|
|
@@ -65,6 +66,7 @@ import * as vehicle_due from './modules/vehicle_due';
|
|
|
65
66
|
import * as vehicle_fuel from './modules/vehicle_fuel';
|
|
66
67
|
import * as vehicle_layout from './modules/vehicle_layout';
|
|
67
68
|
import * as vehicle_leasing from './modules/vehicle_leasing';
|
|
69
|
+
import * as vehicle_maintenance_plan from './modules/vehicle_maintenance_plan';
|
|
68
70
|
import * as vehicle_model from './modules/vehicle_model';
|
|
69
71
|
import * as vehicle_model_version from './modules/vehicle_model_version';
|
|
70
72
|
import * as vehicle_tag from './modules/vehicle_tag';
|
|
@@ -106,6 +108,7 @@ export {
|
|
|
106
108
|
gas_pump_control,
|
|
107
109
|
gate,
|
|
108
110
|
gate_appointment,
|
|
111
|
+
gate_appointment_diary,
|
|
109
112
|
item,
|
|
110
113
|
leasing_contract,
|
|
111
114
|
maintenance_plan,
|
|
@@ -142,6 +145,7 @@ export {
|
|
|
142
145
|
vehicle_fuel,
|
|
143
146
|
vehicle_layout,
|
|
144
147
|
vehicle_leasing,
|
|
148
|
+
vehicle_maintenance_plan,
|
|
145
149
|
vehicle_model,
|
|
146
150
|
vehicle_model_version,
|
|
147
151
|
vehicle_tag,
|