Skip to content

Commit

Permalink
TA#57380 [IMP] stock_picking_barcode: Adjust Translation
Browse files Browse the repository at this point in the history
  • Loading branch information
majouda committed Jun 4, 2024
1 parent 7ad5a0d commit 90464d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
13 changes: 7 additions & 6 deletions stock_picking_barcode/I18n/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0+e\n"
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-22 04:07+0000\n"
"PO-Revision-Date: 2024-04-22 04:07+0000\n"
"POT-Creation-Date: 2024-06-04 19:54+0000\n"
"PO-Revision-Date: 2024-06-04 19:54+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -62,8 +62,8 @@ msgstr "Numériser depuis ce type d'opération"
#. module: stock_picking_barcode
#: code:addons/stock_picking_barcode/models/stock_picking.py:0
#, python-format
msgid "The barcode \"%(barcode)s\" doesn't correspond to a proper product."
msgstr ""
msgid "The barcode \"%(barcode)s\" does not match any product."
msgstr "Le code barre \"%(barcode)s\" ne correspond à aucun article."

#. module: stock_picking_barcode
#: model:ir.model.fields,help:stock_picking_barcode.field_stock_picking_type__nomenclature_id
Expand All @@ -89,7 +89,8 @@ msgstr "Valeur du dernier code-barres scanné."
msgid ""
"When this box is checked, a new “Scan” field is displayed on\n"
" transfers of this type of operation to allow scanning of a barcode."
msgstr "Lorsque cette case est cochée, un nouveau champ “Numériser” est affiché sur les transferts de ce type d’opération afin de permettre de numériser un code-barres."
msgstr "Lorsque cette case est cochée, un nouveau champ “Code-barres numérisé” est affiché sur\n
" les transferts de ce type d’opération afin de permettre de numériser un code-barres."

#. module: stock_picking_barcode
#: code:addons/stock_picking_barcode/models/stock_picking.py:0
Expand Down
4 changes: 1 addition & 3 deletions stock_picking_barcode/models/stock_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ def on_barcode_scanned(self, barcode):
return {
"warning": {
"title": _("Wrong barcode"),
"message": _(
'The barcode "%(barcode)s" doesn\'t correspond to a proper product.'
)
"message": _('The barcode "%(barcode)s" does not match any product.')
% {"barcode": barcode},
}
}
Expand Down

0 comments on commit 90464d5

Please sign in to comment.