summaryrefslogtreecommitdiff
path: root/addons/mrp_landed_costs
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/mrp_landed_costs
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/mrp_landed_costs')
-rw-r--r--addons/mrp_landed_costs/__init__.py4
-rw-r--r--addons/mrp_landed_costs/__manifest__.py20
-rw-r--r--addons/mrp_landed_costs/i18n/ar.po63
-rw-r--r--addons/mrp_landed_costs/i18n/bg.po61
-rw-r--r--addons/mrp_landed_costs/i18n/bn.po60
-rw-r--r--addons/mrp_landed_costs/i18n/ca.po63
-rw-r--r--addons/mrp_landed_costs/i18n/ckb.po60
-rw-r--r--addons/mrp_landed_costs/i18n/cs.po62
-rw-r--r--addons/mrp_landed_costs/i18n/da.po65
-rw-r--r--addons/mrp_landed_costs/i18n/de.po62
-rw-r--r--addons/mrp_landed_costs/i18n/el.po61
-rw-r--r--addons/mrp_landed_costs/i18n/eo.po56
-rw-r--r--addons/mrp_landed_costs/i18n/es.po60
-rw-r--r--addons/mrp_landed_costs/i18n/es_MX.po61
-rw-r--r--addons/mrp_landed_costs/i18n/et.po63
-rw-r--r--addons/mrp_landed_costs/i18n/eu.po63
-rw-r--r--addons/mrp_landed_costs/i18n/fa.po62
-rw-r--r--addons/mrp_landed_costs/i18n/fi.po64
-rw-r--r--addons/mrp_landed_costs/i18n/fr.po66
-rw-r--r--addons/mrp_landed_costs/i18n/he.po61
-rw-r--r--addons/mrp_landed_costs/i18n/hi.po56
-rw-r--r--addons/mrp_landed_costs/i18n/hr.po62
-rw-r--r--addons/mrp_landed_costs/i18n/hu.po63
-rw-r--r--addons/mrp_landed_costs/i18n/id.po62
-rw-r--r--addons/mrp_landed_costs/i18n/it.po62
-rw-r--r--addons/mrp_landed_costs/i18n/ja.po64
-rw-r--r--addons/mrp_landed_costs/i18n/ka.po60
-rw-r--r--addons/mrp_landed_costs/i18n/km.po61
-rw-r--r--addons/mrp_landed_costs/i18n/ko.po62
-rw-r--r--addons/mrp_landed_costs/i18n/lt.po62
-rw-r--r--addons/mrp_landed_costs/i18n/lv.po62
-rw-r--r--addons/mrp_landed_costs/i18n/mn.po62
-rw-r--r--addons/mrp_landed_costs/i18n/mrp_landed_costs.pot56
-rw-r--r--addons/mrp_landed_costs/i18n/nb.po61
-rw-r--r--addons/mrp_landed_costs/i18n/nl.po62
-rw-r--r--addons/mrp_landed_costs/i18n/pl.po62
-rw-r--r--addons/mrp_landed_costs/i18n/pt.po64
-rw-r--r--addons/mrp_landed_costs/i18n/pt_BR.po66
-rw-r--r--addons/mrp_landed_costs/i18n/ro.po61
-rw-r--r--addons/mrp_landed_costs/i18n/ru.po63
-rw-r--r--addons/mrp_landed_costs/i18n/si.po56
-rw-r--r--addons/mrp_landed_costs/i18n/sk.po62
-rw-r--r--addons/mrp_landed_costs/i18n/sl.po62
-rw-r--r--addons/mrp_landed_costs/i18n/sv.po61
-rw-r--r--addons/mrp_landed_costs/i18n/th.po61
-rw-r--r--addons/mrp_landed_costs/i18n/tr.po64
-rw-r--r--addons/mrp_landed_costs/i18n/uk.po61
-rw-r--r--addons/mrp_landed_costs/i18n/ur.po56
-rw-r--r--addons/mrp_landed_costs/i18n/vi.po62
-rw-r--r--addons/mrp_landed_costs/i18n/zh_CN.po63
-rw-r--r--addons/mrp_landed_costs/i18n/zh_TW.po60
-rw-r--r--addons/mrp_landed_costs/models/__init__.py4
-rw-r--r--addons/mrp_landed_costs/models/stock_landed_cost.py36
-rw-r--r--addons/mrp_landed_costs/tests/__init__.py4
-rw-r--r--addons/mrp_landed_costs/tests/test_stock_landed_costs_mrp.py141
-rw-r--r--addons/mrp_landed_costs/views/stock_landed_cost_views.xml21
56 files changed, 3244 insertions, 0 deletions
diff --git a/addons/mrp_landed_costs/__init__.py b/addons/mrp_landed_costs/__init__.py
new file mode 100644
index 00000000..dc5e6b69
--- /dev/null
+++ b/addons/mrp_landed_costs/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import models
diff --git a/addons/mrp_landed_costs/__manifest__.py b/addons/mrp_landed_costs/__manifest__.py
new file mode 100644
index 00000000..5c64d925
--- /dev/null
+++ b/addons/mrp_landed_costs/__manifest__.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'Landed Costs On MO',
+ 'version': '1.0',
+ 'summary': 'Landed Costs on Manufacturing Order',
+ 'description': """
+This module allows you to easily add extra costs on manufacturing order
+and decide the split of these costs among their stock moves in order to
+take them into account in your stock valuation.
+ """,
+ 'depends': ['stock_landed_costs', 'mrp'],
+ 'category': 'Manufacturing/Manufacturing',
+ 'data': [
+ 'views/stock_landed_cost_views.xml',
+ ],
+ 'auto_install': True,
+ 'license': 'LGPL-3',
+}
diff --git a/addons/mrp_landed_costs/i18n/ar.po b/addons/mrp_landed_costs/i18n/ar.po
new file mode 100644
index 00000000..1e1147b0
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ar.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Mustafa Rawi <mustafa@cubexco.com>, 2020
+# Martin Trigaux, 2020
+# Mohammed Ibrahim <m.ibrahim@mussder.com>, 2020
+# Osama Ahmaro <osamaahmaro@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n"
+"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "يُطبق على"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "الاسم المعروض"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "المُعرف"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "اوامر التصنيع"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "التكلفه الاضافيه للمخزون"
diff --git a/addons/mrp_landed_costs/i18n/bg.po b/addons/mrp_landed_costs/i18n/bg.po
new file mode 100644
index 00000000..35fa0b69
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/bg.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Maria Boyadjieva <marabo2000@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n"
+"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Приложете на"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Име за показване"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Последно променено на"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Производствена поръчка "
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Складови разтоварни разходи "
diff --git a/addons/mrp_landed_costs/i18n/bn.po b/addons/mrp_landed_costs/i18n/bn.po
new file mode 100644
index 00000000..2050b3e4
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/bn.po
@@ -0,0 +1,60 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Abu Zafar <azmikbal@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n"
+"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "প্রদর্শন নাম"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "আইডি "
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "সর্বশেষ সংশোধিত"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/ca.po b/addons/mrp_landed_costs/i18n/ca.po
new file mode 100644
index 00000000..74dfe4ef
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ca.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# RGB Consulting <odoo@rgbconsulting.com>, 2020
+# Quim - eccit <quim@eccit.com>, 2020
+# Josep Anton Belchi, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Josep Anton Belchi, 2021\n"
+"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Aplicar en"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nom mostrat"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Última modificació el "
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Ordres de producció"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Cost en destí"
diff --git a/addons/mrp_landed_costs/i18n/ckb.po b/addons/mrp_landed_costs/i18n/ckb.po
new file mode 100644
index 00000000..9ce62ee7
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ckb.po
@@ -0,0 +1,60 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n"
+"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ckb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "پیشاندانی ناو"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ناسنامە"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "دواین دەستکاری لە"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/cs.po b/addons/mrp_landed_costs/i18n/cs.po
new file mode 100644
index 00000000..54831237
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/cs.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Horzinka <jan.horzinka@centrum.cz>, 2020
+# Jiří Podhorecký, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Jiří Podhorecký, 2020\n"
+"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: cs\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Použít na"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Zobrazované jméno"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Naposled změněno"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Výrobní příkazy"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/da.po b/addons/mrp_landed_costs/i18n/da.po
new file mode 100644
index 00000000..215370eb
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/da.po
@@ -0,0 +1,65 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Morten Schou <ms@msteknik.dk>, 2020
+# Jesper Carstensen <jc@danodoo.dk>, 2020
+# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020
+# Mads Søndergaard, 2020
+# Mads Søndergaard <mads@vkdata.dk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n"
+"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Tilladt MRP Produktion"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Anvend på"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Produktionsordrer"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Produktionsordre"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Lager landede omkostninger"
diff --git a/addons/mrp_landed_costs/i18n/de.po b/addons/mrp_landed_costs/i18n/de.po
new file mode 100644
index 00000000..4ff50e87
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/de.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Robert Förster <hello@suppliot.eu>, 2021
+# Chris Egal <sodaswed@web.de>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\n"
+"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Erlaubte Mrp-Produktion"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Anzuwenden auf"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Fertigungsaufträge"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Fertigungsauftrag"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Einlagerungskosten"
diff --git a/addons/mrp_landed_costs/i18n/el.po b/addons/mrp_landed_costs/i18n/el.po
new file mode 100644
index 00000000..5347254b
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/el.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kostas Goutoudis <goutoudis@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2020\n"
+"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Εμφάνιση Ονόματος"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Τελευταία τροποποίηση στις"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Εντολές Παραγωγής"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/eo.po b/addons/mrp_landed_costs/i18n/eo.po
new file mode 100644
index 00000000..c0714647
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/eo.po
@@ -0,0 +1,56 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/es.po b/addons/mrp_landed_costs/i18n/es.po
new file mode 100644
index 00000000..3c46cc8f
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/es.po
@@ -0,0 +1,60 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Aplicar Sobre"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Órdenes de producción"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Coste en destino"
diff --git a/addons/mrp_landed_costs/i18n/es_MX.po b/addons/mrp_landed_costs/i18n/es_MX.po
new file mode 100644
index 00000000..c5eb59dc
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/es_MX.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Cécile Collart <cco@odoo.com>, 2021
+# Braulio D. López Vázquez <bdl@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Braulio D. López Vázquez <bdl@odoo.com>, 2021\n"
+"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_MX\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Producción MRP permitida"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Aplicar en"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nombre en pantalla"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Órdenes de fabricación"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Orden de fabricación"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Costo en destino"
diff --git a/addons/mrp_landed_costs/i18n/et.po b/addons/mrp_landed_costs/i18n/et.po
new file mode 100644
index 00000000..18812eae
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/et.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Gert Valdek <gert@airobot.ee>, 2020
+# Egon Raamat <egon@avalah.ee>, 2020
+# Algo Kärp <algokarp@gmail.com>, 2020
+# Triine Aavik <triine@avalah.ee>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Triine Aavik <triine@avalah.ee>, 2021\n"
+"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Lubatud MRP tootmine"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Rakenda"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Kuva nimi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud (millal)"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Tootmistellimused"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Tootmistellimus"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Lao maaletoomise kulu"
diff --git a/addons/mrp_landed_costs/i18n/eu.po b/addons/mrp_landed_costs/i18n/eu.po
new file mode 100644
index 00000000..117de2c2
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/eu.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2021
+# José Miguel Andonegi <jm.andonegi@gmail.com>, 2021
+# ibinka lete <ilete@fpbidasoa.net>, 2021
+# Eneko <eastigarraga@codesyntax.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Eneko <eastigarraga@codesyntax.com>, 2021\n"
+"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Honetan aplikatu"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Azken aldaketa"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Fabrikazio eskariak"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/fa.po b/addons/mrp_landed_costs/i18n/fa.po
new file mode 100644
index 00000000..c0980288
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/fa.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Hamid Darabi, 2020
+# Hamed Mohammadi <hamed@dehongi.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n"
+"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "اعمال شدن بر"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "شناسه"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "آخرین تغییر در"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "سفارشات تولید"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/fi.po b/addons/mrp_landed_costs/i18n/fi.po
new file mode 100644
index 00000000..7bb74905
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/fi.po
@@ -0,0 +1,64 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020
+# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020
+# Marko Happonen <marko.happonen@sprintit.fi>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Marko Happonen <marko.happonen@sprintit.fi>, 2020\n"
+"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Vaikutus"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Näyttönimi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "Tunniste (ID)"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Valmistustilaukset"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Varaston kokonaiskulu"
diff --git a/addons/mrp_landed_costs/i18n/fr.po b/addons/mrp_landed_costs/i18n/fr.po
new file mode 100644
index 00000000..7cd52d17
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/fr.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Clo <clo@odoo.com>, 2020
+# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020
+# Cécile Collart <cco@odoo.com>, 2020
+# Gilles Mangin <gilles.mangin@phidias.fr>, 2020
+# Fernanda Marques <fem@odoo.com>, 2020
+# Mathieu Germain <mgm@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Mathieu Germain <mgm@odoo.com>, 2021\n"
+"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Appliqué sur"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Ordres de production"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Ordre de fabrication"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Coûts logistique de l'inventaire"
diff --git a/addons/mrp_landed_costs/i18n/he.po b/addons/mrp_landed_costs/i18n/he.po
new file mode 100644
index 00000000..7dcecd20
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/he.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Leandro Noijovich <eliel.sorcerer@gmail.com>, 2020
+# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n"
+"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "החל על"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "שם תצוגה"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "מזהה"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "שונה לאחרונה ב - "
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "הוראות ייצור"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "מלאי עלויות הוצאות הובלה"
diff --git a/addons/mrp_landed_costs/i18n/hi.po b/addons/mrp_landed_costs/i18n/hi.po
new file mode 100644
index 00000000..9d34613f
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/hi.po
@@ -0,0 +1,56 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/hr.po b/addons/mrp_landed_costs/i18n/hr.po
new file mode 100644
index 00000000..6d16560c
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/hr.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020
+# Bole <bole@dajmi5.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Bole <bole@dajmi5.com>, 2021\n"
+"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Dozvoljena proizvodnja"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Primjeni na"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Zadnja promjena"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Nalozi za proizvodnju"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Proizvodni nalog"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Zavisni trošak"
diff --git a/addons/mrp_landed_costs/i18n/hu.po b/addons/mrp_landed_costs/i18n/hu.po
new file mode 100644
index 00000000..b31b29ca
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/hu.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2021
+# Tamás Németh <ntomasz81@gmail.com>, 2021
+# Kovács Tibor <kovika@gmail.com>, 2021
+# Ákos Nagy <akos.nagy@oregional.hu>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n"
+"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Alkalmazás ezen"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "Azonosító"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Legutóbb módosítva"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Gyártási rendelések"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Raktárkészlet össz ár (termék+száll+bizt+...)"
diff --git a/addons/mrp_landed_costs/i18n/id.po b/addons/mrp_landed_costs/i18n/id.po
new file mode 100644
index 00000000..9cb36f2a
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/id.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020
+# Ryanto The <ry.the77@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Ryanto The <ry.the77@gmail.com>, 2020\n"
+"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Terapkan Pada"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Terakhir diubah pada"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Order Produksi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Saham mendarat biaya"
diff --git a/addons/mrp_landed_costs/i18n/it.po b/addons/mrp_landed_costs/i18n/it.po
new file mode 100644
index 00000000..3b014ac3
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/it.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Paolo Valier, 2020
+# Stefano Consolaro <stefano.consolaro@mymage.it>, 2020
+# Sergio Zanchetta <primes2h@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n"
+"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Produzione MRP consentita"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Applica a"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nome visualizzato"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Ordini di produzione"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Ordine di produzione"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Costi di spedizione magazzino"
diff --git a/addons/mrp_landed_costs/i18n/ja.po b/addons/mrp_landed_costs/i18n/ja.po
new file mode 100644
index 00000000..369b68d1
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ja.po
@@ -0,0 +1,64 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020
+# Martin Trigaux, 2020
+# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020
+# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020
+# Noma Yuki, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Noma Yuki, 2020\n"
+"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "許可されたMRP生産"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "適用対象"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "最終更新日"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "製造オーダ"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "製造オーダ"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "在庫仕入諸掛"
diff --git a/addons/mrp_landed_costs/i18n/ka.po b/addons/mrp_landed_costs/i18n/ka.po
new file mode 100644
index 00000000..42b967e9
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ka.po
@@ -0,0 +1,60 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021\n"
+"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ka\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "სახელი"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "იდენტიფიკატორი/ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "ბოლოს განახლებულია"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/km.po b/addons/mrp_landed_costs/i18n/km.po
new file mode 100644
index 00000000..28432c1e
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/km.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Sengtha Chay <sengtha@gmail.com>, 2020
+# Lux Sok <sok.lux@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n"
+"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: km\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "ទៅលើការដាក់ពាក្យសុំ"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "ឈ្មោះសំរាប់បង្ហាញ"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "អត្តសញ្ញាណ"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "ការបញ្ជាទិញផលិតកម្ម។"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "ថ្លៃដើមចុះចត"
diff --git a/addons/mrp_landed_costs/i18n/ko.po b/addons/mrp_landed_costs/i18n/ko.po
new file mode 100644
index 00000000..8831e776
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ko.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# JH CHOI <hwangtog@gmail.com>, 2020
+# Linkup <link-up@naver.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Linkup <link-up@naver.com>, 2021\n"
+"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "적용"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "이름 표시"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "최근 수정"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "제조 주문"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "제조 주문"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "재고 부대 비용"
diff --git a/addons/mrp_landed_costs/i18n/lt.po b/addons/mrp_landed_costs/i18n/lt.po
new file mode 100644
index 00000000..00a7d162
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/lt.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2021
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021
+# Linas Versada <linaskrisiukenas@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n"
+"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Taikyti"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Rodomas pavadinimas"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Gamybos užsakymai"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Atsargų galutiniai kaštai"
diff --git a/addons/mrp_landed_costs/i18n/lv.po b/addons/mrp_landed_costs/i18n/lv.po
new file mode 100644
index 00000000..c8531c61
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/lv.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Arnis Putniņš <arnis@allegro.lv>, 2020
+# ievaputnina <ievai.putninai@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2020\n"
+"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Lietot"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Attēlotais nosaukums"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Pēdējoreiz modificēts"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Ražošanas orderi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/mn.po b/addons/mrp_landed_costs/i18n/mn.po
new file mode 100644
index 00000000..64affd13
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/mn.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020
+# Bayarkhuu Bataa, 2020
+# Martin Trigaux, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Martin Trigaux, 2020\n"
+"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Хэрэгжүүлэх"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Дэлгэрэнгүй нэр"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Сүүлд зассан огноо"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Үйлдвэрлэлийн захиалгууд"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Өртөгт шингэх зардал"
diff --git a/addons/mrp_landed_costs/i18n/mrp_landed_costs.pot b/addons/mrp_landed_costs/i18n/mrp_landed_costs.pot
new file mode 100644
index 00000000..02116c56
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/mrp_landed_costs.pot
@@ -0,0 +1,56 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-01 07:29+0000\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Plural-Forms: \n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/nb.po b/addons/mrp_landed_costs/i18n/nb.po
new file mode 100644
index 00000000..bc98dbaa
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/nb.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marius Stedjan <marius@stedjan.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n"
+"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Bruk på"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Visningsnavn"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Sist endret"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Produksjonsordre"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/nl.po b/addons/mrp_landed_costs/i18n/nl.po
new file mode 100644
index 00000000..3c27165d
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/nl.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020
+# Martin Trigaux, 2020
+# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n"
+"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Toegestane productie"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Toepassen op"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Productieorders"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Productieorder"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Voorraad extra kosten"
diff --git a/addons/mrp_landed_costs/i18n/pl.po b/addons/mrp_landed_costs/i18n/pl.po
new file mode 100644
index 00000000..d1bbcefe
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/pl.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2020
+# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020\n"
+"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pl\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Zastosuj do"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nazwa wyświetlana"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Data ostatniej modyfikacji"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Zamówienia produkcji"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Koszty nabycia"
diff --git a/addons/mrp_landed_costs/i18n/pt.po b/addons/mrp_landed_costs/i18n/pt.po
new file mode 100644
index 00000000..a8f31cad
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/pt.po
@@ -0,0 +1,64 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Manuela Silva <manuelarodsilva@gmail.com>, 2020
+# Nuno Silva <nuno.silva@arxi.pt>, 2020
+# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020
+# Pedro Filipe <pedro2.10@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n"
+"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Aplicar Em"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Última Modificação em"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Ordens de Produção"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Custos de Entrega do Stock"
diff --git a/addons/mrp_landed_costs/i18n/pt_BR.po b/addons/mrp_landed_costs/i18n/pt_BR.po
new file mode 100644
index 00000000..988cbfb5
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/pt_BR.po
@@ -0,0 +1,66 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020
+# danimaribeiro <danimaribeiro@gmail.com>, 2020
+# Martin Trigaux, 2020
+# Mateus Lopes <mateus1@gmail.com>, 2020
+# grazziano <gra.negocia@gmail.com>, 2020
+# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020
+# Éder Brito <britoederr@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Produção Mrp Permitida"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Aplicar Em"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nome exibido"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Última modificação em"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Ordens de Produção"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Ordem de produção"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Custo de Estoque Adicionais"
diff --git a/addons/mrp_landed_costs/i18n/ro.po b/addons/mrp_landed_costs/i18n/ro.po
new file mode 100644
index 00000000..bab41572
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ro.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Cozmin Candea <office@terrabit.ro>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Cozmin Candea <office@terrabit.ro>, 2020\n"
+"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Aplică pe"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Nume afișat"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Ultima modificare la"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Comenzi de producție"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Costuri Adiționale Stoc"
diff --git a/addons/mrp_landed_costs/i18n/ru.po b/addons/mrp_landed_costs/i18n/ru.po
new file mode 100644
index 00000000..4d65f162
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ru.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Максим Дронь <dronmax@gmail.com>, 2020
+# Martin Trigaux, 2020
+# ILMIR <karamov@it-projects.info>, 2020
+# Irina Fedulova <istartlin@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n"
+"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ru\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Применить на"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Отображаемое имя"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "Идентификатор"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Последнее изменение"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Производственные заявки"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Складская стоимость с издержками"
diff --git a/addons/mrp_landed_costs/i18n/si.po b/addons/mrp_landed_costs/i18n/si.po
new file mode 100644
index 00000000..47b9b296
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/si.po
@@ -0,0 +1,56 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: si\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/sk.po b/addons/mrp_landed_costs/i18n/sk.po
new file mode 100644
index 00000000..a6763cb9
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/sk.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n"
+"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Použiť na"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Zobrazovaný názov"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Posledná úprava"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Výrobné objednávky"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Dodacie náklady skladu"
diff --git a/addons/mrp_landed_costs/i18n/sl.po b/addons/mrp_landed_costs/i18n/sl.po
new file mode 100644
index 00000000..bedee5b5
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/sl.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021
+# matjaz k <matjaz@mentis.si>, 2021
+# Jasmina Macur <jasmina@hbs.si>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n"
+"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Uporabi na"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Prikazani naziv"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Proizvodni nalogi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Odvisni stroški dobave zaloge"
diff --git a/addons/mrp_landed_costs/i18n/sv.po b/addons/mrp_landed_costs/i18n/sv.po
new file mode 100644
index 00000000..69e15af2
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/sv.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2021
+# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Anders Wallenquist <anders.wallenquist@vertel.se>, 2021\n"
+"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Visningsnamn"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Tillverkningsorder"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/th.po b/addons/mrp_landed_costs/i18n/th.po
new file mode 100644
index 00000000..a3250282
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/th.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020\n"
+"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "รหัส"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "คำสั่งผลิต"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/tr.po b/addons/mrp_landed_costs/i18n/tr.po
new file mode 100644
index 00000000..96cddaf2
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/tr.po
@@ -0,0 +1,64 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Levent Karakaş <levent@mektup.at>, 2020
+# Murat Kaplan <muratk@projetgrup.com>, 2020
+# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: abc Def <hdogan1974@gmail.com>, 2020\n"
+"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "İzin Verilen Mrp Üretimi"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Şuna Uygula"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Görünüm Adı"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Son Düzenleme"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Üretim Emirleri"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Üretim siparişi"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Stok Maliyet Yükleme"
diff --git a/addons/mrp_landed_costs/i18n/uk.po b/addons/mrp_landed_costs/i18n/uk.po
new file mode 100644
index 00000000..a8e6b417
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/uk.po
@@ -0,0 +1,61 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021\n"
+"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: uk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Дозволене виробництво"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Застосувати до"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Відобразити назву"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Останні зміни"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Замовлення на виробництво"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Замовлення на виробництво"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Додаткові складські витрати"
diff --git a/addons/mrp_landed_costs/i18n/ur.po b/addons/mrp_landed_costs/i18n/ur.po
new file mode 100644
index 00000000..f20a2b49
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/ur.po
@@ -0,0 +1,56 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ur\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr ""
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr ""
diff --git a/addons/mrp_landed_costs/i18n/vi.po b/addons/mrp_landed_costs/i18n/vi.po
new file mode 100644
index 00000000..6819a079
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/vi.po
@@ -0,0 +1,62 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020
+# Duy BQ <duybq86@gmail.com>, 2020
+# Trần Hà <tranthuha13590@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n"
+"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "Allowed Mrp Production"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "Áp dụng cho"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "Lệnh Sản xuất"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "Manufacturing order"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "Phí nhập kho"
diff --git a/addons/mrp_landed_costs/i18n/zh_CN.po b/addons/mrp_landed_costs/i18n/zh_CN.po
new file mode 100644
index 00000000..b6a16635
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/zh_CN.po
@@ -0,0 +1,63 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jeffery CHEN <jeffery9@gmail.com>, 2020
+# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020
+# Daniel Yang <daniel.yang.zhenyu@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Daniel Yang <daniel.yang.zhenyu@gmail.com>, 2021\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "允许的MRP生产"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "应用于"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "最后修改日"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "制造订单"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "制造订单"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "库存到岸成本"
diff --git a/addons/mrp_landed_costs/i18n/zh_TW.po b/addons/mrp_landed_costs/i18n/zh_TW.po
new file mode 100644
index 00000000..17749086
--- /dev/null
+++ b/addons/mrp_landed_costs/i18n/zh_TW.po
@@ -0,0 +1,60 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * mrp_landed_costs
+#
+# Translators:
+# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:29+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__allowed_mrp_production_ids
+msgid "Allowed Mrp Production"
+msgstr "允許Mrp生產"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__target_model
+msgid "Apply On"
+msgstr "應用於"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__display_name
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__id
+msgid "ID"
+msgstr "ID"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost____last_update
+msgid "Last Modified on"
+msgstr "最後修改於"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields.selection,name:mrp_landed_costs.selection__stock_landed_cost__target_model__manufacturing
+msgid "Manufacturing Orders"
+msgstr "製造訂單"
+
+#. module: mrp_landed_costs
+#: model:ir.model.fields,field_description:mrp_landed_costs.field_stock_landed_cost__mrp_production_ids
+msgid "Manufacturing order"
+msgstr "製造訂單"
+
+#. module: mrp_landed_costs
+#: model:ir.model,name:mrp_landed_costs.model_stock_landed_cost
+msgid "Stock Landed Cost"
+msgstr "庫存到岸成本"
diff --git a/addons/mrp_landed_costs/models/__init__.py b/addons/mrp_landed_costs/models/__init__.py
new file mode 100644
index 00000000..cc408347
--- /dev/null
+++ b/addons/mrp_landed_costs/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import stock_landed_cost
diff --git a/addons/mrp_landed_costs/models/stock_landed_cost.py b/addons/mrp_landed_costs/models/stock_landed_cost.py
new file mode 100644
index 00000000..5d991f8c
--- /dev/null
+++ b/addons/mrp_landed_costs/models/stock_landed_cost.py
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import fields, models, api
+
+
+class StockLandedCost(models.Model):
+ _inherit = 'stock.landed.cost'
+
+ target_model = fields.Selection(selection_add=[
+ ('manufacturing', "Manufacturing Orders")
+ ], ondelete={'manufacturing': 'set default'})
+ mrp_production_ids = fields.Many2many(
+ 'mrp.production', string='Manufacturing order',
+ copy=False, states={'done': [('readonly', True)]}, groups='mrp.group_mrp_user')
+ allowed_mrp_production_ids = fields.Many2many(
+ 'mrp.production', compute='_compute_allowed_mrp_production_ids', groups='mrp.group_mrp_user')
+
+ @api.depends('company_id')
+ def _compute_allowed_mrp_production_ids(self):
+ for cost in self:
+ moves = self.env['stock.move'].search([
+ ('stock_valuation_layer_ids', '!=', False),
+ ('production_id', '!=', False),
+ ('company_id', '=', cost.company_id.id)
+ ])
+ self.allowed_mrp_production_ids = moves.production_id
+
+ @api.onchange('target_model')
+ def _onchange_target_model(self):
+ super()._onchange_target_model()
+ if self.target_model != 'manufacturing':
+ self.mrp_production_ids = False
+
+ def _get_targeted_move_ids(self):
+ return super()._get_targeted_move_ids() | self.mrp_production_ids.move_finished_ids
diff --git a/addons/mrp_landed_costs/tests/__init__.py b/addons/mrp_landed_costs/tests/__init__.py
new file mode 100644
index 00000000..33260dc4
--- /dev/null
+++ b/addons/mrp_landed_costs/tests/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import test_stock_landed_costs_mrp
diff --git a/addons/mrp_landed_costs/tests/test_stock_landed_costs_mrp.py b/addons/mrp_landed_costs/tests/test_stock_landed_costs_mrp.py
new file mode 100644
index 00000000..686a35ab
--- /dev/null
+++ b/addons/mrp_landed_costs/tests/test_stock_landed_costs_mrp.py
@@ -0,0 +1,141 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+from odoo.addons.stock_account.tests.test_anglo_saxon_valuation_reconciliation_common import ValuationReconciliationTestCommon
+from odoo.tests import tagged, Form
+
+
+@tagged('post_install', '-at_install')
+class TestStockLandedCostsMrp(ValuationReconciliationTestCommon):
+
+ @classmethod
+ def setUpClass(cls):
+ super(TestStockLandedCostsMrp, cls).setUpClass()
+ # References
+ cls.supplier_id = cls.env['res.partner'].create({'name': 'My Test Supplier'}).id
+ cls.customer_id = cls.env['res.partner'].create({'name': 'My Test Customer'}).id
+ cls.picking_type_in_id = cls.env.ref('stock.picking_type_in')
+ cls.picking_type_out_id = cls.env.ref('stock.picking_type_out')
+ cls.supplier_location_id = cls.env.ref('stock.stock_location_suppliers')
+ cls.stock_location_id = cls.company_data['default_warehouse'].lot_stock_id
+ cls.customer_location_id = cls.env.ref('stock.stock_location_customers')
+ cls.categ_all = cls.env.ref('product.product_category_all')
+ # Create product refrigerator & oven
+ cls.product_component1 = cls.env['product.product'].create({
+ 'name': 'Component1',
+ 'type': 'product',
+ 'standard_price': 1.0,
+ 'categ_id': cls.categ_all.id
+ })
+ cls.product_component2 = cls.env['product.product'].create({
+ 'name': 'Component2',
+ 'type': 'product',
+ 'standard_price': 2.0,
+ 'categ_id': cls.categ_all.id
+ })
+ cls.product_refrigerator = cls.env['product.product'].create({
+ 'name': 'Refrigerator',
+ 'type': 'product',
+ 'categ_id': cls.categ_all.id
+ })
+ cls.uom_unit = cls.env.ref('uom.product_uom_unit')
+ cls.bom_refri = cls.env['mrp.bom'].create({
+ 'product_id': cls.product_refrigerator.id,
+ 'product_tmpl_id': cls.product_refrigerator.product_tmpl_id.id,
+ 'product_uom_id': cls.uom_unit.id,
+ 'product_qty': 1.0,
+ 'type': 'normal',
+ })
+ cls.bom_refri_line1 = cls.env['mrp.bom.line'].create({
+ 'bom_id': cls.bom_refri.id,
+ 'product_id': cls.product_component1.id,
+ 'product_qty': 3,
+ })
+ cls.bom_refri_line2 = cls.env['mrp.bom.line'].create({
+ 'bom_id': cls.bom_refri.id,
+ 'product_id': cls.product_component2.id,
+ 'product_qty': 1,
+ })
+ # Warehouses
+ cls.warehouse_1 = cls.env['stock.warehouse'].create({
+ 'name': 'Base Warehouse',
+ 'reception_steps': 'one_step',
+ 'delivery_steps': 'ship_only',
+ 'code': 'BWH'})
+
+ cls.product_refrigerator.categ_id.property_cost_method = 'fifo'
+ cls.product_refrigerator.categ_id.property_valuation = 'real_time'
+ cls.product_refrigerator.categ_id.property_stock_account_input_categ_id = cls.company_data['default_account_stock_in']
+ cls.product_refrigerator.categ_id.property_stock_account_output_categ_id = cls.company_data['default_account_stock_out']
+
+ # Create service type product 1.Labour 2.Brokerage 3.Transportation 4.Packaging
+ cls.landed_cost = cls.env['product.product'].create({
+ 'name': 'Landed Cost',
+ 'type': 'service',
+ })
+ cls.allow_user = cls.env['res.users'].with_context({'no_reset_password': True}).create({
+ 'name': "Adviser",
+ 'login': "fm",
+ 'email': "accountmanager@yourcompany.com",
+ 'groups_id': [(6, 0, [cls.env.ref('account.group_account_manager').id, cls.env.ref('mrp.group_mrp_user').id, cls.env.ref('stock.group_stock_manager').id])]
+ })
+
+ def test_landed_cost_on_mrp(self):
+ inventory = self.env['stock.inventory'].create({
+ 'name': 'Initial inventory',
+ 'line_ids': [(0, 0, {
+ 'product_id': self.product_component1.id,
+ 'product_uom_id': self.product_component1.uom_id.id,
+ 'product_qty': 500,
+ 'location_id': self.warehouse_1.lot_stock_id.id
+ }), (0, 0, {
+ 'product_id': self.product_component2.id,
+ 'product_uom_id': self.product_component2.uom_id.id,
+ 'product_qty': 500,
+ 'location_id': self.warehouse_1.lot_stock_id.id
+ })]
+ })
+ inventory.action_start()
+ inventory.action_validate()
+
+ man_order_form = Form(self.env['mrp.production'].with_user(self.allow_user))
+ man_order_form.product_id = self.product_refrigerator
+ man_order_form.bom_id = self.bom_refri
+ man_order_form.product_qty = 2.0
+ man_order = man_order_form.save()
+
+ self.assertEqual(man_order.state, 'draft', "Production order should be in draft state.")
+ man_order.action_confirm()
+ self.assertEqual(man_order.state, 'confirmed', "Production order should be in confirmed state.")
+
+ # check production move
+ production_move = man_order.move_finished_ids
+ self.assertEqual(production_move.product_id, self.product_refrigerator)
+
+ first_move = man_order.move_raw_ids.filtered(lambda move: move.product_id == self.product_component1)
+ self.assertEqual(first_move.product_qty, 6.0)
+ first_move = man_order.move_raw_ids.filtered(lambda move: move.product_id == self.product_component2)
+ self.assertEqual(first_move.product_qty, 2.0)
+
+ # produce product
+ mo_form = Form(man_order.with_user(self.allow_user))
+ mo_form.qty_producing = 2
+ man_order = mo_form.save()
+
+
+ man_order.button_mark_done()
+
+ landed_cost = Form(self.env['stock.landed.cost'].with_user(self.allow_user)).save()
+ landed_cost.target_model = 'manufacturing'
+
+ self.assertTrue(man_order.id in landed_cost.allowed_mrp_production_ids.ids)
+ landed_cost.mrp_production_ids = [(6, 0, [man_order.id])]
+ landed_cost.cost_lines = [(0, 0, {'product_id': self.landed_cost.id, 'price_unit': 5.0, 'split_method': 'equal'})]
+
+ landed_cost.button_validate()
+
+ self.assertEqual(landed_cost.state, 'done')
+ self.assertTrue(landed_cost.account_move_id)
+ # Link to one layer of product_refrigerator
+ self.assertEqual(len(landed_cost.stock_valuation_layer_ids), 1)
+ self.assertEqual(landed_cost.stock_valuation_layer_ids.product_id, self.product_refrigerator)
+ self.assertEqual(landed_cost.stock_valuation_layer_ids.value, 5.0)
diff --git a/addons/mrp_landed_costs/views/stock_landed_cost_views.xml b/addons/mrp_landed_costs/views/stock_landed_cost_views.xml
new file mode 100644
index 00000000..34f188ab
--- /dev/null
+++ b/addons/mrp_landed_costs/views/stock_landed_cost_views.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<odoo>
+ <record id='view_mrp_landed_costs_form' model='ir.ui.view'>
+ <field name="name">mrp.landed.cost.form</field>
+ <field name="model">stock.landed.cost</field>
+ <field name="inherit_id" ref="stock_landed_costs.view_stock_landed_cost_form"/>
+ <field name="arch" type="xml">
+ <field name="target_model" position="attributes">
+ <attribute name="invisible">0</attribute>
+ <attribute name="groups">mrp.group_mrp_user</attribute>
+ </field>
+ <field name="picking_ids" position="after">
+ <field name="allowed_mrp_production_ids" invisible="1"/>
+ <field name="mrp_production_ids"
+ widget="many2many_tags" options="{'no_create_edit': True}"
+ attrs="{'invisible': [('target_model', '!=', 'manufacturing')]}"
+ domain="[('id', 'in', allowed_mrp_production_ids)]"/>
+ </field>
+ </field>
+ </record>
+</odoo>