Skip to content

Commit

Permalink
[ADD] product_origin : French translation
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Jan 11, 2024
1 parent ec0f78f commit 46a1e52
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 2 deletions.
60 changes: 60 additions & 0 deletions product_origin/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * product_origin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-01-11 12:44+0000\n"
"PO-Revision-Date: 2024-01-11 12:44+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: product_origin
#: model:ir.model.fields,field_description:product_origin.field_product_product__state_id
#: model:ir.model.fields,field_description:product_origin.field_product_template__state_id
msgid "Country State of Origin"
msgstr "Région de fabrication"

#. module: product_origin
#: model:ir.model.fields,field_description:product_origin.field_product_product__country_id
#: model:ir.model.fields,field_description:product_origin.field_product_template__country_id
#: model_terms:ir.ui.view,arch_db:product_origin.product_template_search_view
msgid "Country of Origin"
msgstr "Pays de fabrication"

#. module: product_origin
#: model_terms:ir.ui.view,arch_db:product_origin.product_template_form_view
#: model_terms:ir.ui.view,arch_db:product_origin.view_product_product_form
#: model_terms:ir.ui.view,arch_db:product_origin.view_product_product_form_variant
msgid "Origin"
msgstr "Origine"

#. module: product_origin
#: model:ir.model,name:product_origin.model_product_template
msgid "Product"
msgstr "Produit"

#. module: product_origin
#: model:ir.model,name:product_origin.model_product_product
msgid "Product Variant"
msgstr "Variante de produit"

#. module: product_origin
#: model:ir.model.fields,field_description:product_origin.field_product_product__state_id_domain
#: model:ir.model.fields,field_description:product_origin.field_product_template__state_id_domain
msgid "State Id Domain"
msgstr ""

#. module: product_origin
#: model:ir.model.fields,help:product_origin.field_product_product__state_id_domain
#: model:ir.model.fields,help:product_origin.field_product_template__state_id_domain
msgid ""
"Technical field, used to compute dynamically state domaindepending on the "
"country."
msgstr "Champ technique, utilisé pour calculer dynamiquement le domaine de l'état, en fonction du pays."
2 changes: 1 addition & 1 deletion product_origin/models/product_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ProductProduct(models.Model):
state_id_domain = fields.Binary(
compute="_compute_state_id_domain",
help="Technical field, used to compute dynamically state domain"
"depending on the country.",
" depending on the country.",
)

@api.constrains("country_id", "state_id")
Expand Down
2 changes: 1 addition & 1 deletion product_origin/models/product_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ProductTemplate(models.Model):
state_id_domain = fields.Binary(
compute="_compute_state_id_domain",
help="Technical field, used to compute dynamically state domain"
"depending on the country.",
" depending on the country.",
)

@api.constrains("country_id", "state_id")
Expand Down

0 comments on commit 46a1e52

Please sign in to comment.