From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/mail/static/src/js/core/translation.js | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 addons/mail/static/src/js/core/translation.js (limited to 'addons/mail/static/src/js/core') diff --git a/addons/mail/static/src/js/core/translation.js b/addons/mail/static/src/js/core/translation.js new file mode 100644 index 00000000..faecafaf --- /dev/null +++ b/addons/mail/static/src/js/core/translation.js @@ -0,0 +1,28 @@ +odoo.define('mail/static/src/js/core/translation.js', function (require) { +'use strict'; + +const { TranslationDataBase } = require('web.translation'); + +const { Component } = owl; + +TranslationDataBase.include({ + /** + * @override + */ + set_bundle() { + const res = this._super(...arguments); + if (Component.env.messaging) { + // Update messaging locale whenever the translation bundle changes. + // In particular if messaging is created before the end of the + // `load_translations` RPC, the default values have to be + // updated by the received ones. + Component.env.messaging.locale.update({ + language: this.parameters.code, + textDirection: this.parameters.direction, + }); + } + return res; + }, +}); + +}); -- cgit v1.2.3