c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #06754
[Bug 680577] Re: Warning message about UL can't be translated in sale
Hello Numérigraphe,
Its fixed in https://code.launchpad.net/~openerp-dev/openobject-addons
/ssi-dev-addons1
Soon it will be merged into main addons.
Thanks for notifying us.
** Changed in: openobject-addons
Status: In Progress => Fix Released
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/680577
Title:
Warning message about UL can't be translated in sale
Status in OpenObject Addons Modules:
Fix Released
Bug description:
In the trunk near or at line 1060, there is a warning message that is hard to translate because :
- the string is split in lots of smaller strings
- the term "UL" is a French acronym for "Unité Logistique", and should be replaced with "Shipping Unit"
I suggest you change :
warn_msg = warn_msg + "\n\n" + _("EAN: ") + str(ean) + _(" Quantity: ") + str(qty_pack) + _(" Type of ul: ") + str(type_ul.name)
to something like :
warn_msg = _("%s\n\nEAN: %s Quantity: %s Type of Shipping Unit: %s") % (warn_msg, str(ean), str(qty_pack), type_ul.name)
Lionel Sausin.
References