trytond_carrier_weight-5.0.3/0000755000175000017500000000000013537427323015621 5ustar cedced00000000000000trytond_carrier_weight-5.0.3/CHANGELOG0000644000175000017500000000251613537427321017035 0ustar cedced00000000000000Version 5.0.3 - 2019-09-15 * Bug fixes (see mercurial logs for details) Version 5.0.2 - 2019-03-15 * Bug fixes (see mercurial logs for details) Version 5.0.1 - 2019-02-19 * Bug fixes (see mercurial logs for details) Version 5.0.0 - 2018-10-01 * Bug fixes (see mercurial logs for details) * Remove support for Python 2.7 Version 4.8.0 - 2018-04-23 * Bug fixes (see mercurial logs for details) Version 4.6.0 - 2017-10-30 * Bug fixes (see mercurial logs for details) Version 4.4.0 - 2017-05-01 * Bug fixes (see mercurial logs for details) * Use quantity if unit is weight as fallback for missing measurement Version 4.2.0 - 2016-11-28 * Bug fixes (see mercurial logs for details) Version 4.0.0 - 2016-05-02 * Bug fixes (see mercurial logs for details) * Add Python3 support Version 3.8.0 - 2015-11-02 * Bug fixes (see mercurial logs for details) Version 3.6.0 - 2015-04-20 * Bug fixes (see mercurial logs for details) * Add support for PyPy Version 3.4.0 - 2014-10-20 * Bug fixes (see mercurial logs for details) Version 3.2.0 - 2014-04-21 * Bug fixes (see mercurial logs for details) Version 3.0.0 - 2013-10-21 * Bug fixes (see mercurial logs for details) Version 2.8.0 - 2013-04-22 * Bug fixes (see mercurial logs for details) Version 2.6.0 - 2012-10-22 * Bug fixes (see mercurial logs for details) Version 2.4.0 - 2012-04-23 * Initial release trytond_carrier_weight-5.0.3/carrier.py0000644000175000017500000001125113534001701017603 0ustar cedced00000000000000# This file is part of Tryton. The COPYRIGHT file at the top level of # this repository contains the full copyright notices and license terms. from decimal import Decimal from trytond.model import ModelSQL, ModelView, fields from trytond.pyson import Eval, Bool, Id from trytond.pool import Pool, PoolMeta from trytond.transaction import Transaction __all__ = ['Carrier', 'WeightPriceList'] class Carrier(metaclass=PoolMeta): __name__ = 'carrier' weight_uom = fields.Many2One('product.uom', 'Weight Uom', domain=[('category', '=', Id('product', 'uom_cat_weight'))], states={ 'invisible': Eval('carrier_cost_method') != 'weight', 'required': Eval('carrier_cost_method') == 'weight', 'readonly': Bool(Eval('weight_price_list', [])), }, depends=['carrier_cost_method', 'weight_price_list'], help="The unit of weight criteria of the price list.") weight_uom_digits = fields.Function(fields.Integer('Weight Uom Digits'), 'on_change_with_weight_uom_digits') weight_currency = fields.Many2One('currency.currency', 'Currency', states={ 'invisible': Eval('carrier_cost_method') != 'weight', 'required': Eval('carrier_cost_method') == 'weight', 'readonly': Bool(Eval('weight_price_list', [])), }, depends=['carrier_cost_method', 'weight_price_list'], help="The currency of the price.") weight_currency_digits = fields.Function(fields.Integer( 'Weight Currency Digits'), 'on_change_with_weight_currency_digits') weight_price_list = fields.One2Many('carrier.weight_price_list', 'carrier', 'Price List', states={ 'invisible': Eval('carrier_cost_method') != 'weight', 'readonly': ~(Eval('weight_uom', 0) & Eval('weight_currency', 0)), }, depends=['carrier_cost_method', 'weight_uom', 'weight_currency'], help="Add price to the carrier service.") @classmethod def __setup__(cls): super(Carrier, cls).__setup__() selection = ('weight', 'Weight') if selection not in cls.carrier_cost_method.selection: cls.carrier_cost_method.selection.append(selection) @staticmethod def default_weight_uom_digits(): return 2 @staticmethod def default_weight_currency_digits(): Company = Pool().get('company.company') company = Transaction().context.get('company') if company: return Company(company).currency.digits return 2 @fields.depends('weight_uom') def on_change_with_weight_uom_digits(self, name=None): if self.weight_uom: return self.weight_uom.digits return 2 @fields.depends('weight_currency') def on_change_with_weight_currency_digits(self, name=None): if self.weight_currency: return self.weight_currency.digits return 2 def compute_weight_price(self, weight): "Compute price based on weight" for line in reversed(self.weight_price_list): if line.weight < weight: return line.price return Decimal(0) def get_sale_price(self): price, currency_id = super(Carrier, self).get_sale_price() if self.carrier_cost_method == 'weight': weight_price = Decimal(0) for weight in Transaction().context.get('weights', []): weight_price += self.compute_weight_price(weight) return weight_price, self.weight_currency.id return price, currency_id def get_purchase_price(self): price, currency_id = super(Carrier, self).get_purchase_price() if self.carrier_cost_method == 'weight': weight_price = Decimal(0) for weight in Transaction().context.get('weights', []): weight_price += self.compute_weight_price(weight) return weight_price, self.weight_currency.id return price, currency_id class WeightPriceList(ModelSQL, ModelView): 'Carrier Weight Price List' __name__ = 'carrier.weight_price_list' carrier = fields.Many2One('carrier', 'Carrier', required=True, select=True, help="The carrier that the price list belongs to.") weight = fields.Float('Weight', digits=(16, Eval('_parent_carrier', {}).get('weight_uom_digits', 2)), help="The upper limit for the price.") price = fields.Numeric('Price', digits=(16, Eval('_parent_carrier', {}).get( 'weight_currency_digits', 2)), help="The price of the carrier service.") @classmethod def __setup__(cls): super(WeightPriceList, cls).__setup__() cls._order.insert(0, ('weight', 'ASC')) trytond_carrier_weight-5.0.3/COPYRIGHT0000644000175000017500000000140113537427321017106 0ustar cedced00000000000000Copyright (C) 2011-2019 Cédric Krier. Copyright (C) 2011-2013 Bertrand Chenal. Copyright (C) 2011-2017 Nicolas Évrard. Copyright (C) 2011-2019 B2CK SPRL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . trytond_carrier_weight-5.0.3/setup.cfg0000644000175000017500000000004613537427323017442 0ustar cedced00000000000000[egg_info] tag_build = tag_date = 0 trytond_carrier_weight-5.0.3/PKG-INFO0000644000175000017500000000524413537427323016723 0ustar cedced00000000000000Metadata-Version: 1.2 Name: trytond_carrier_weight Version: 5.0.3 Summary: Tryton module to add cost method "on weight" on carrier Home-page: http://www.tryton.org/ Author: Tryton Author-email: issue_tracker@tryton.org License: GPL-3 Download-URL: http://downloads.tryton.org/5.0/ Description: trytond_carrier_weight ====================== The carrier_weight module of the Tryton application platform. Installing ---------- See INSTALL Support ------- If you encounter any problems with Tryton, please don't hesitate to ask questions on the Tryton bug tracker, mailing list, wiki or IRC channel: http://bugs.tryton.org/ http://groups.tryton.org/ http://wiki.tryton.org/ irc://irc.freenode.net/tryton License ------- See LICENSE Copyright --------- See COPYRIGHT For more information please visit the Tryton web site: http://www.tryton.org/ Keywords: tryton carrier weight Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Plugins Classifier: Framework :: Tryton Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Financial and Insurance Industry Classifier: Intended Audience :: Legal Industry Classifier: Intended Audience :: Manufacturing Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Classifier: Natural Language :: Bulgarian Classifier: Natural Language :: Catalan Classifier: Natural Language :: Chinese (Simplified) Classifier: Natural Language :: Czech Classifier: Natural Language :: Dutch Classifier: Natural Language :: English Classifier: Natural Language :: French Classifier: Natural Language :: German Classifier: Natural Language :: Hungarian Classifier: Natural Language :: Italian Classifier: Natural Language :: Persian Classifier: Natural Language :: Polish Classifier: Natural Language :: Portuguese (Brazilian) Classifier: Natural Language :: Russian Classifier: Natural Language :: Slovenian Classifier: Natural Language :: Spanish Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Topic :: Office/Business Requires-Python: >=3.4 trytond_carrier_weight-5.0.3/README0000644000175000017500000000107113354423125016471 0ustar cedced00000000000000trytond_carrier_weight ====================== The carrier_weight module of the Tryton application platform. Installing ---------- See INSTALL Support ------- If you encounter any problems with Tryton, please don't hesitate to ask questions on the Tryton bug tracker, mailing list, wiki or IRC channel: http://bugs.tryton.org/ http://groups.tryton.org/ http://wiki.tryton.org/ irc://irc.freenode.net/tryton License ------- See LICENSE Copyright --------- See COPYRIGHT For more information please visit the Tryton web site: http://www.tryton.org/ trytond_carrier_weight-5.0.3/locale/0000755000175000017500000000000013537427323017060 5ustar cedced00000000000000trytond_carrier_weight-5.0.3/locale/es.po0000644000175000017500000000507713436056537020043 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Moneda" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Decimales de la moneda del peso" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Tarifa" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "UdM del peso" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Decimales de la UdM del peso" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Transportista" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Fecha de creación" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Usuario de creación" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Precio" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Nombre del registro" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Peso" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Fecha de modificación" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Usuario de modificación" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "La moneda del precio." msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "Añade precios al servicio del transportista." msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "La unidad de peso utilizada por la tarifa." msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "El transportista al que pertenece la tarifa." msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "El precio del servicio del transportista." msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "El límite superior al que aplica el precio." msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Tarifa peso transportista" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Peso" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "Tarifa peso transportista" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "Tarifas peso transportista" trytond_carrier_weight-5.0.3/locale/cs.po0000644000175000017500000000360013436056537020027 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "" trytond_carrier_weight-5.0.3/locale/de.po0000644000175000017500000000514013436056537020013 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Währung" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Nachkommastellen Währung Gewicht" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Preisliste" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "Gewicht Maßeinheit" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Nachkommastellen Maßeinheit Gewicht" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Versanddienstleister" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Erstellungsdatum" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Erstellt durch" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Preis" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Bezeichnung des Datensatzes" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Gewicht" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Zuletzt geändert" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Letzte Änderung durch" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "Die Währung des Preises." msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "Einen Preis zur Versanddienstleistung hinzufügen." msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "Die Gewichtseinheit für die Preisliste." msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "Der Versanddienstleister dem diese Preisliste zugeordnet ist." msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "Der Preis der Versanddienstleistung." msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "Die Obergrenze für den Preis." msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Preisliste Versandgewicht" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Gewicht" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "Preisliste Versandgewicht" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "Preislisten Versandgewicht" trytond_carrier_weight-5.0.3/locale/sl.po0000644000175000017500000000430613436056537020044 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Valuta" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Decimalke" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Cenik" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "ME za težo" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Decimalke za težo" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Špediter" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Izdelano" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Izdelal" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Cena" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Ime" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Teža" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Zapisano" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Zapisal" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Ceniki po teži" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Teža" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "Cenik po teži" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "Ceniki po teži" trytond_carrier_weight-5.0.3/locale/lt.po0000644000175000017500000000360013436056537020041 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "" trytond_carrier_weight-5.0.3/locale/it_IT.po0000644000175000017500000000403013436056537020430 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Valuta" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "posizioni misura peso" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "listino" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "udm peso" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "posizioni udm peso" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Vettore" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "creato il" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "creato da" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Prezzo " msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Peso" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "modificato il" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "modificato da" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "listino vettore per peso" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Peso" trytond_carrier_weight-5.0.3/locale/ja_JP.po0000644000175000017500000000360013436056537020405 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "" trytond_carrier_weight-5.0.3/locale/fa.po0000644000175000017500000000475113436056537020020 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "واحد پول" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "ارقام قیمت وزن" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "لیست قیمت" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "واحد اندازی گیری وزن" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "ارقام واحد وزن" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "حمل کننده" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "تاریخ ایجاد" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "کاربر ایجاد کننده" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "شناسه" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "قیمت" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "نام پرونده" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "وزن" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "تاریخ نوشته" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "نوشته کاربر" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "واحد ارز قیمت." msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "اضافه کردن قیمت به خدمات حمل ونقل." msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "شاخص واحد اندازه گیری وزن لیست قیمت." msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "حمل کننده ای که لیست قیمت متعلق به آن است." msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "قیمت خدمات حمل ونقل." msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "حد بالا برای قیمت." msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "لیست قیمت وزن حمل کننده" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "وزن" trytond_carrier_weight-5.0.3/locale/bg.po0000644000175000017500000000475713436056537020030 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Валута" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Цифри на валута за тегло" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Ценова листа" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "Мер. ед. за тегло" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Цифри на мер. ед, за тегло" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Превозвач" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Създадено на" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Създадено от" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Цена" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Тегло" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Променено на" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Променено от" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" #, fuzzy msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Ценови лист на карго тегло" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Тегло" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "Ценови лист на карго тегло" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "Ценови листи на карго тегло" trytond_carrier_weight-5.0.3/locale/hu_HU.po0000644000175000017500000000414413436056537020436 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" #, fuzzy msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Pénznem" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" #, fuzzy msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Árlista" #, fuzzy msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "Tömeg mértékegysége" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Létrehozás détuma" #, fuzzy msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Által létrehozva " #, fuzzy msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Tömeg" #, fuzzy msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "utolsó módosítás dátuma" #, fuzzy msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Által módosítva" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" #, fuzzy msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Tömeg" trytond_carrier_weight-5.0.3/locale/es_419.po0000644000175000017500000000374113436056537020434 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Lista de precios" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Creado por usuario" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Modificado por usuario" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Lista de precio por peso de transportista" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "" trytond_carrier_weight-5.0.3/locale/nl.po0000644000175000017500000000400113436056537020027 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" #, fuzzy msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Valuta" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Datum" #, fuzzy msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Gebruiker" #, fuzzy msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Gewicht" #, fuzzy msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Schrijfdatum" #, fuzzy msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Gebruiker" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" #, fuzzy msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Gewicht" trytond_carrier_weight-5.0.3/locale/pt_BR.po0000644000175000017500000000455213436056537020437 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Moeda" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Decimais da moeda do peso" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Lista de preços" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "UDM do peso" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Dígitos decimais da UDM do peso" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Transportadora" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Data de criação" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Criado por" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Preço" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Nome do Registro" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Peso" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Data de edição" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Editado por" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Lista de preço por peso da transportadora" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Peso" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "Lista de preço por peso da transportadora" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "Lista de preço por peso da transportadora" trytond_carrier_weight-5.0.3/locale/zh_CN.po0000644000175000017500000000374413436056537020434 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "创建日期:" #, fuzzy msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "添加用户" #, fuzzy msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "编号" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "写入日期" #, fuzzy msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "写入帐号" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "" trytond_carrier_weight-5.0.3/locale/fr.po0000644000175000017500000000507713436056537020043 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Devise" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Décimales de la devise de poids" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Liste de prix" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "Unité de poids" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Décimales de l'unité de poids" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Transporteur" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Date de création" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Créé par" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Prix" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Nom de l'enregistrement" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Poids" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Date de mise à jour" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Mis à jour par" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "La devise du prix." msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "Ajouter un prix au service du transporteur." msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "L'unit de poids des critères de la liste de prix." msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "Le transporteur à qui la liste de prix appartient." msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "Le prix du service du transporteur." msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "La limite supérieur pour le prix." msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Liste de prix par poids" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Poids" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "List de prix transport par poids" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "List de prix transport par poids" trytond_carrier_weight-5.0.3/locale/pl.po0000644000175000017500000000372213436056537020042 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Waluta" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Cennik" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Data utworzenia" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Utworzył" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Cena" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Nazwa rekordu" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Waga" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Data zapisu" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Zapisał" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Waga" trytond_carrier_weight-5.0.3/locale/lo.po0000644000175000017500000000463413436056537020044 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "ສະກຸນເງິນ" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "ນໍ້າໜັກເລກເສດສະກຸນເງິນ" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "ລາຍການລາຄາ" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "ຫົວໜ່ວຍນໍ້າໜັກ" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "ເສດຫົວໜ່ວຍນໍ້າໜັກ" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "ຜູ້ໃຫ້ບໍລິການ" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "ວັນທີສ້າງ" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "ຜູ້ສ້າງ" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ເລກລຳດັບ" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "ລາຄາ" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "ນໍ້າໜັກ" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "ວັນທີບັນທຶກ" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "ຜູ້ບັນທຶກ" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "ລາຍການລາຄາຂອງຜູ້ໃຫ້ບໍລິການນໍ້າໜັກ" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "ນໍ້າໜັກ" trytond_carrier_weight-5.0.3/locale/ca.po0000644000175000017500000000503213436056537020006 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Moneda" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "Decimals de la moneda del pes" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "Tarifa" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "UdM del pes" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "Decimals de la UdM del pes" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "Transportista" msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Data de creació" msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Usuari de creació" msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "Preu" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "Nom del registre" msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Pes" msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Data de modificació" msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Usuari de modificació" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "La moneda del preu." msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "Afegeix preus al servei del transportista." msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "La unitat de pes utilitzada per la tarifa." msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "El transportista al que pertany la tarifa." msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "El preu del servei del transportista." msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "El límit superior al que aplica el preu." msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "Tarifa pes transportista" msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Pes" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price List" msgstr "Tarifa pes transportista" msgctxt "view:carrier.weight_price_list:" msgid "Carrier Weight Price Lists" msgstr "Tarifes pes transportista" trytond_carrier_weight-5.0.3/locale/ru.po0000644000175000017500000000416613436056537020060 0ustar cedced00000000000000# msgid "" msgstr "Content-Type: text/plain; charset=utf-8\n" #, fuzzy msgctxt "field:carrier,weight_currency:" msgid "Currency" msgstr "Валюты" msgctxt "field:carrier,weight_currency_digits:" msgid "Weight Currency Digits" msgstr "" msgctxt "field:carrier,weight_price_list:" msgid "Price List" msgstr "" msgctxt "field:carrier,weight_uom:" msgid "Weight Uom" msgstr "" msgctxt "field:carrier,weight_uom_digits:" msgid "Weight Uom Digits" msgstr "" msgctxt "field:carrier.weight_price_list,carrier:" msgid "Carrier" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,create_date:" msgid "Create Date" msgstr "Дата создания" #, fuzzy msgctxt "field:carrier.weight_price_list,create_uid:" msgid "Create User" msgstr "Создано пользователем" #, fuzzy msgctxt "field:carrier.weight_price_list,id:" msgid "ID" msgstr "ID" msgctxt "field:carrier.weight_price_list,price:" msgid "Price" msgstr "" msgctxt "field:carrier.weight_price_list,rec_name:" msgid "Record Name" msgstr "" #, fuzzy msgctxt "field:carrier.weight_price_list,weight:" msgid "Weight" msgstr "Ширина" #, fuzzy msgctxt "field:carrier.weight_price_list,write_date:" msgid "Write Date" msgstr "Дата изменения" #, fuzzy msgctxt "field:carrier.weight_price_list,write_uid:" msgid "Write User" msgstr "Изменено пользователем" msgctxt "help:carrier,weight_currency:" msgid "The currency of the price." msgstr "" msgctxt "help:carrier,weight_price_list:" msgid "Add price to the carrier service." msgstr "" msgctxt "help:carrier,weight_uom:" msgid "The unit of weight criteria of the price list." msgstr "" msgctxt "help:carrier.weight_price_list,carrier:" msgid "The carrier that the price list belongs to." msgstr "" msgctxt "help:carrier.weight_price_list,price:" msgid "The price of the carrier service." msgstr "" msgctxt "help:carrier.weight_price_list,weight:" msgid "The upper limit for the price." msgstr "" msgctxt "model:carrier.weight_price_list,name:" msgid "Carrier Weight Price List" msgstr "" #, fuzzy msgctxt "selection:carrier,carrier_cost_method:" msgid "Weight" msgstr "Ширина" trytond_carrier_weight-5.0.3/view/0000755000175000017500000000000013537427323016573 5ustar cedced00000000000000trytond_carrier_weight-5.0.3/view/carrier_form.xml0000644000175000017500000000076313354423125021766 0ustar cedced00000000000000 trytond_carrier_weight-5.0.3/view/weight_price_list_tree.xml0000644000175000017500000000041313354423125024027 0ustar cedced00000000000000 trytond_carrier_weight-5.0.3/view/weight_price_list_form.xml0000644000175000017500000000055313354423125024040 0ustar cedced00000000000000