@sofit/view-locale 1.38.0 → 1.38.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/coverage/jest/results.xml +11 -11
- package/dist/translations/index.d.ts +2 -1
- package/dist/translations/index.js +2 -0
- package/dist/translations/modules/fine.d.ts +4 -0
- package/dist/translations/modules/fine.js +6 -0
- package/lib/translations/index.ts +2 -0
- package/lib/translations/modules/fine.ts +4 -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.71">
|
|
2
|
+
<testsuite name="Vehicle locale test" errors="0" failures="0" skipped="0" timestamp="2019-05-24T14:24:13" time="1.949" tests="4">
|
|
3
|
+
<testcase classname="Vehicle locale test Should get translations with reach" name="Vehicle locale test Should get translations with reach" time="0.004">
|
|
4
4
|
</testcase>
|
|
5
|
-
<testcase classname="
|
|
5
|
+
<testcase classname="Vehicle locale test Should replace correctly with reach" name="Vehicle locale test Should replace correctly with reach" time="0">
|
|
6
6
|
</testcase>
|
|
7
|
-
<testcase classname="
|
|
7
|
+
<testcase classname="Vehicle locale test Should get translations with raw" name="Vehicle locale test Should get translations with raw" time="0.001">
|
|
8
8
|
</testcase>
|
|
9
|
-
<testcase classname="
|
|
9
|
+
<testcase classname="Vehicle locale test Should replace correctly with raw" name="Vehicle locale test Should replace correctly with raw" time="0">
|
|
10
10
|
</testcase>
|
|
11
11
|
</testsuite>
|
|
12
|
-
<testsuite name="
|
|
13
|
-
<testcase classname="
|
|
12
|
+
<testsuite name="Joi tests" errors="0" failures="0" skipped="0" timestamp="2019-05-24T14:24:13" time="1.931" tests="4">
|
|
13
|
+
<testcase classname="Joi tests should return default message" name="Joi tests should return default message" time="0.006">
|
|
14
14
|
</testcase>
|
|
15
|
-
<testcase classname="
|
|
15
|
+
<testcase classname="Joi tests should return non label message" name="Joi tests should return non label message" time="0.001">
|
|
16
16
|
</testcase>
|
|
17
|
-
<testcase classname="
|
|
17
|
+
<testcase classname="Joi tests should return translated label message" name="Joi tests should return translated label message" time="0.001">
|
|
18
18
|
</testcase>
|
|
19
|
-
<testcase classname="
|
|
19
|
+
<testcase classname="Joi tests should return translated label index" name="Joi tests should return translated label index" time="0">
|
|
20
20
|
</testcase>
|
|
21
21
|
</testsuite>
|
|
22
22
|
</testsuites>
|
|
@@ -15,6 +15,7 @@ import * as cost_sharing from './modules/cost_sharing';
|
|
|
15
15
|
import * as customer from './modules/customer';
|
|
16
16
|
import * as employee from './modules/employee';
|
|
17
17
|
import * as employee_role from './modules/employee_role';
|
|
18
|
+
import * as fine from './modules/fine';
|
|
18
19
|
import * as fine_qualification from './modules/fine_qualification';
|
|
19
20
|
import * as fine_resource from './modules/fine_resource';
|
|
20
21
|
import * as foreseen_maintenance_plan_service_item from './modules/foreseen_maintenance_plan_service_item';
|
|
@@ -53,4 +54,4 @@ import * as warehouse from './modules/warehouse';
|
|
|
53
54
|
import * as warehouse_item from './modules/warehouse_item';
|
|
54
55
|
export { joi } from './common/joi';
|
|
55
56
|
export { databaseErrors } from './common/database-errors';
|
|
56
|
-
export { auth, benchmarking, general, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, cash_basis, company, cost_center, cost_sharing, customer, employee, employee_role, fine_resource, fine_qualification, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, parameter, pipefy, qualification_severity, release_notification, route, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, vehicle_brand, vehicle_layout, vehicle_leasing, vehicle_model, vehicle_model_version, vehicle, vehicle_fuel, vehicle_axes, vehicle_due, vehicle_tag, warehouse, warehouse_item };
|
|
57
|
+
export { auth, benchmarking, general, checklist, checklist_group, checklist_group_item, checklist_group_option, checklist_model, checklist_reply, cash_basis, company, cost_center, cost_sharing, customer, employee, employee_role, fine_resource, fine, fine_qualification, foreseen_maintenance_plan_service_item, foreseen_service_order_item, gas_pump_control, gate, item, leasing_contract, maintenance_plan, maintenance_plan_service, measurement_unit, parameter, pipefy, qualification_severity, release_notification, route, stock_entry_item, sub_system, subsidiary, supplier, system, tire_brand, tire_dimension, tire_drawing, transaction, vehicle_brand, vehicle_layout, vehicle_leasing, vehicle_model, vehicle_model_version, vehicle, vehicle_fuel, vehicle_axes, vehicle_due, vehicle_tag, warehouse, warehouse_item };
|
|
@@ -41,6 +41,8 @@ const employee = __importStar(require("./modules/employee"));
|
|
|
41
41
|
exports.employee = employee;
|
|
42
42
|
const employee_role = __importStar(require("./modules/employee_role"));
|
|
43
43
|
exports.employee_role = employee_role;
|
|
44
|
+
const fine = __importStar(require("./modules/fine"));
|
|
45
|
+
exports.fine = fine;
|
|
44
46
|
const fine_qualification = __importStar(require("./modules/fine_qualification"));
|
|
45
47
|
exports.fine_qualification = fine_qualification;
|
|
46
48
|
const fine_resource = __importStar(require("./modules/fine_resource"));
|
|
@@ -15,6 +15,7 @@ import * as cost_sharing from './modules/cost_sharing';
|
|
|
15
15
|
import * as customer from './modules/customer';
|
|
16
16
|
import * as employee from './modules/employee';
|
|
17
17
|
import * as employee_role from './modules/employee_role';
|
|
18
|
+
import * as fine from './modules/fine';
|
|
18
19
|
import * as fine_qualification from './modules/fine_qualification';
|
|
19
20
|
import * as fine_resource from './modules/fine_resource';
|
|
20
21
|
import * as foreseen_maintenance_plan_service_item from './modules/foreseen_maintenance_plan_service_item';
|
|
@@ -73,6 +74,7 @@ export {
|
|
|
73
74
|
employee,
|
|
74
75
|
employee_role,
|
|
75
76
|
fine_resource,
|
|
77
|
+
fine,
|
|
76
78
|
fine_qualification,
|
|
77
79
|
foreseen_maintenance_plan_service_item,
|
|
78
80
|
foreseen_service_order_item,
|