diff --git a/shopfloor_mobile/__manifest__.py b/shopfloor_mobile/__manifest__.py
index fdb6c5d605..6c629afba8 100644
--- a/shopfloor_mobile/__manifest__.py
+++ b/shopfloor_mobile/__manifest__.py
@@ -5,7 +5,7 @@
{
"name": "Shopfloor mobile",
"summary": "Mobile frontend for WMS Shopfloor app",
- "version": "13.0.1.3.1",
+ "version": "13.0.1.4.0",
"development_status": "Alpha",
"depends": ["shopfloor"],
"author": "Camptocamp, BCIM, Akretion, Odoo Community Association (OCA)",
diff --git a/shopfloor_mobile/static/wms/src/components/misc.js b/shopfloor_mobile/static/wms/src/components/misc.js
index 31c7ffe27c..4119c96b3c 100644
--- a/shopfloor_mobile/static/wms/src/components/misc.js
+++ b/shopfloor_mobile/static/wms/src/components/misc.js
@@ -17,7 +17,7 @@ Vue.component("reset-screen-button", {
template: `
- Reset
+ {{ $t('btn.reset.title') }}
`,
@@ -26,7 +26,7 @@ Vue.component("reset-screen-button", {
Vue.component("cancel-button", {
template: `
- Cancel
+ {{ $t('btn.cancel.title') }}
`,
});
@@ -46,7 +46,7 @@ Vue.component("last-operation", {
The next operation is ready to be processed.
- OK
+ {{ $t('btn.ok.title') }}
@@ -58,10 +58,10 @@ Vue.component("get-work", {
template: `
- Get work
+ {{ $t('misc.btn_get_work') }}
- Manual selection
+ {{ $t('misc.btn_manual_selection') }}
`,
@@ -75,12 +75,16 @@ Vue.component("stock-zero-check", {
- Confirm stock = 0
+
+ {{ $t('misc.stock_zero_check.confirm_stock_zero') }}
+
- Confirm stock NOT empty
+
+ {{ $t('misc.stock_zero_check.confirm_stock_not_zero') }}
+
@@ -294,7 +298,7 @@ Vue.component("btn-reset-config", {
this.$root.$router.push(this.$props.redirect);
},
},
- template: `Reload config and menu`,
+ template: `{{ $t('btn.reload_config.title') }}`,
});
Vue.component("line-actions-popup", {
@@ -327,7 +331,7 @@ Vue.component("line-actions-popup", {
- Action
+ {{ $t('misc.actions_popup.btn_action') }}
@@ -341,7 +345,7 @@ Vue.component("line-actions-popup", {
- Back
+ {{ $t('btn.back.title') }}
@@ -362,7 +366,9 @@ Vue.component("line-stock-out", {