openerp-expert-localization team mailing list archive
-
openerp-expert-localization team
-
Mailing list archive
-
Message #00148
[Bug 680577] [NEW] Warning message about UL can't be translated in sale
You have been subscribed to a public bug by Numérigraphe (numerigraphe):
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.
** Affects: openobject-addons
Importance: Undecided
Status: New
--
Warning message about UL can't be translated in sale
https://bugs.launchpad.net/bugs/680577
You received this bug notification because you are a member of OpenERP Localization Experts, which is a direct subscriber.
References