first commit
This commit is contained in:
2
modules/account_stock_shipment_cost/__init__.py
Normal file
2
modules/account_stock_shipment_cost/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
468
modules/account_stock_shipment_cost/account.py
Normal file
468
modules/account_stock_shipment_cost/account.py
Normal file
@@ -0,0 +1,468 @@
|
||||
# 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 itertools import groupby
|
||||
|
||||
from sql.functions import CharLength
|
||||
|
||||
from trytond.i18n import gettext
|
||||
from trytond.model import (
|
||||
ChatMixin, Index, ModelSQL, ModelView, Workflow, fields)
|
||||
from trytond.model.exceptions import AccessError
|
||||
from trytond.modules.company.model import CompanyValueMixin
|
||||
from trytond.modules.product import price_digits, round_price
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.pyson import Eval, Id
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.wizard import Button, StateTransition, StateView, Wizard
|
||||
|
||||
from .exceptions import NoShipmentWarning, SamePartiesWarning
|
||||
|
||||
|
||||
class Configuration(metaclass=PoolMeta):
|
||||
__name__ = 'account.configuration'
|
||||
shipment_cost_sequence = fields.MultiValue(fields.Many2One(
|
||||
'ir.sequence', "Shipment Cost Sequence", required=True,
|
||||
domain=[
|
||||
('company', 'in',
|
||||
[Eval('context', {}).get('company', -1), None]),
|
||||
('sequence_type', '=',
|
||||
Id('account_stock_shipment_cost',
|
||||
'sequence_type_shipment_cost')),
|
||||
]))
|
||||
|
||||
@classmethod
|
||||
def default_shipment_cost_sequence(cls, **pattern):
|
||||
return cls.multivalue_model(
|
||||
'shipment_cost_sequence').default_shipment_cost_sequence()
|
||||
|
||||
|
||||
class ConfigurationShipmentCostSequence(ModelSQL, CompanyValueMixin):
|
||||
__name__ = 'account.configuration.shipment_cost_sequence'
|
||||
shipment_cost_sequence = fields.Many2One(
|
||||
'ir.sequence', "Shipment Cost Sequence", required=True,
|
||||
domain=[
|
||||
('company', 'in', [Eval('company', -1), None]),
|
||||
('sequence_type', '=',
|
||||
Id('account_stock_shipment_cost',
|
||||
'sequence_type_shipment_cost')),
|
||||
])
|
||||
|
||||
@classmethod
|
||||
def default_shipment_cost_sequence(cls, **pattern):
|
||||
pool = Pool()
|
||||
ModelData = pool.get('ir.model.data')
|
||||
try:
|
||||
return ModelData.get_id(
|
||||
'account_stock_shipment_cost', 'sequence_shipment_cost')
|
||||
except KeyError:
|
||||
return None
|
||||
|
||||
|
||||
class ShipmentCost(Workflow, ModelSQL, ModelView, ChatMixin):
|
||||
__name__ = 'account.shipment_cost'
|
||||
_rec_name = 'number'
|
||||
|
||||
_states = {
|
||||
'readonly': Eval('state') != 'draft',
|
||||
}
|
||||
|
||||
number = fields.Char(
|
||||
"Number", readonly=True,
|
||||
help="The main identifier for the shipment cost.")
|
||||
company = fields.Many2One(
|
||||
'company.company', "Company", required=True,
|
||||
states=_states,
|
||||
help="The company the shipment cost is associated with.")
|
||||
|
||||
shipments = fields.Many2Many(
|
||||
'account.shipment_cost-stock.shipment.out',
|
||||
'shipment_cost', 'shipment', "Shipments",
|
||||
domain=[
|
||||
('company', '=', Eval('company', -1)),
|
||||
('state', '=', 'done'),
|
||||
],
|
||||
states=_states)
|
||||
shipment_returns = fields.Many2Many(
|
||||
'account.shipment_cost-stock.shipment.out.return',
|
||||
'shipment_cost', 'shipment', "Shipment Returns",
|
||||
domain=[
|
||||
('company', '=', Eval('company', -1)),
|
||||
('state', 'in', ['received', 'done']),
|
||||
],
|
||||
states=_states)
|
||||
|
||||
invoice_lines = fields.One2Many(
|
||||
'account.invoice.line', 'shipment_cost', 'Invoice Lines',
|
||||
add_remove=[
|
||||
('shipment_cost', '=', None),
|
||||
],
|
||||
domain=[
|
||||
('company', '=', Eval('company', -1)),
|
||||
('invoice.state', 'in', ['posted', 'paid']),
|
||||
('invoice.type', '=', 'in'),
|
||||
('product.shipment_cost', '=', True),
|
||||
('type', '=', 'line'),
|
||||
],
|
||||
states=_states)
|
||||
allocation_method = fields.Selection([
|
||||
('shipment', "By Shipment"),
|
||||
], "Allocation Method", required=True,
|
||||
states=_states)
|
||||
|
||||
posted_date = fields.Date("Posted Date", readonly=True)
|
||||
state = fields.Selection([
|
||||
('draft', "Draft"),
|
||||
('posted', "Posted"),
|
||||
('cancelled', "Cancelled"),
|
||||
], "State", readonly=True, sort=False)
|
||||
|
||||
factors = fields.Dict(None, "Factors", readonly=True)
|
||||
|
||||
del _states
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
cls.number.search_unaccented = False
|
||||
super().__setup__()
|
||||
t = cls.__table__()
|
||||
cls._sql_indexes.add(
|
||||
Index(
|
||||
t,
|
||||
(t.state, Index.Equality(cardinality='low')),
|
||||
where=t.state == 'draft'))
|
||||
cls._order.insert(0, ('number', 'DESC'))
|
||||
cls._transitions |= set((
|
||||
('draft', 'posted'),
|
||||
('draft', 'cancelled'),
|
||||
('posted', 'cancelled'),
|
||||
('cancelled', 'draft'),
|
||||
))
|
||||
cls._buttons.update({
|
||||
'cancel': {
|
||||
'invisible': Eval('state') == 'cancelled',
|
||||
'depends': ['state'],
|
||||
},
|
||||
'draft': {
|
||||
'invisible': Eval('state') != 'cancelled',
|
||||
'depends': ['state'],
|
||||
},
|
||||
'post_wizard': {
|
||||
'invisible': Eval('state') != 'draft',
|
||||
'depends': ['state'],
|
||||
},
|
||||
'show': {
|
||||
'invisible': Eval('state').in_(['draft', 'cancelled']),
|
||||
'depends': ['state']
|
||||
},
|
||||
})
|
||||
|
||||
@classmethod
|
||||
def order_number(cls, tables):
|
||||
table, _ = tables[None]
|
||||
return [CharLength(table.number), table.number]
|
||||
|
||||
@classmethod
|
||||
def default_company(cls):
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@classmethod
|
||||
def default_allocation_method(cls):
|
||||
return 'shipment'
|
||||
|
||||
@classmethod
|
||||
def default_state(cls):
|
||||
return 'draft'
|
||||
|
||||
@classmethod
|
||||
@ModelView.button
|
||||
@Workflow.transition('cancelled')
|
||||
def cancel(cls, shipment_costs):
|
||||
for shipment_cost in shipment_costs:
|
||||
if shipment_cost.state == 'posted':
|
||||
getattr(shipment_cost, 'unallocate_cost_by_%s' %
|
||||
shipment_cost.allocation_method)()
|
||||
cls.write(shipment_costs, {
|
||||
'posted_date': None,
|
||||
'factors': None,
|
||||
'state': 'cancelled',
|
||||
})
|
||||
|
||||
@classmethod
|
||||
@ModelView.button
|
||||
@Workflow.transition('draft')
|
||||
def draft(cls, shipment_costs):
|
||||
pass
|
||||
|
||||
@property
|
||||
def cost(self):
|
||||
pool = Pool()
|
||||
Currency = pool.get('currency.currency')
|
||||
|
||||
currency = self.company.currency
|
||||
cost = Decimal(0)
|
||||
|
||||
for line in self.invoice_lines:
|
||||
with Transaction().set_context(date=line.invoice.currency_date):
|
||||
cost += Currency.compute(
|
||||
line.invoice.currency, line.amount, currency, round=False)
|
||||
return cost
|
||||
|
||||
@property
|
||||
def all_shipments(self):
|
||||
return self.shipments + self.shipment_returns
|
||||
|
||||
@property
|
||||
def parties(self):
|
||||
return {l.invoice.party for l in self.invoice_lines}
|
||||
|
||||
def allocate_cost_by_shipment(self):
|
||||
self.factors = self._get_factors('shipment')
|
||||
self._allocate_cost(self.factors)
|
||||
|
||||
def unallocate_cost_by_shipment(self):
|
||||
factors = self.factors or self._get_factors('shipment')
|
||||
self._allocate_cost(factors, sign=-1)
|
||||
|
||||
def _get_factors(self, method=None):
|
||||
if method is None:
|
||||
method = self.allocation_method
|
||||
return getattr(self, '_get_%s_factors' % method)()
|
||||
|
||||
def _get_shipment_factors(self):
|
||||
shipments = self.all_shipments
|
||||
length = Decimal(len(shipments))
|
||||
factor = 1 / length
|
||||
return {str(shipment): factor for shipment in shipments}
|
||||
|
||||
def _allocate_cost(self, factors, sign=1):
|
||||
"Allocate cost on shipments using factors"
|
||||
pool = Pool()
|
||||
Shipment = pool.get('stock.shipment.out')
|
||||
ShipmentReturn = pool.get('stock.shipment.out.return')
|
||||
assert sign in {1, -1}
|
||||
|
||||
cost = self.cost * sign
|
||||
for shipments, klass in [
|
||||
(list(self.shipments), Shipment),
|
||||
(list(self.shipment_returns), ShipmentReturn),
|
||||
]:
|
||||
for shipment in shipments:
|
||||
try:
|
||||
factor = factors[str(shipment)]
|
||||
except KeyError:
|
||||
# Try with just id for backward compatibility
|
||||
factor = factors[str(shipment.id)]
|
||||
if (any(c.state == 'posted' for c in shipment.shipment_costs)
|
||||
and shipment.cost):
|
||||
shipment.cost += round_price(cost * factor)
|
||||
else:
|
||||
shipment.cost = round_price(cost * factor)
|
||||
if shipment.cost_currency != shipment.company.currency:
|
||||
shipment.cost_currency = shipment.company.currency
|
||||
klass.save(shipments)
|
||||
klass.set_shipment_cost(shipments)
|
||||
|
||||
@classmethod
|
||||
@ModelView.button_action(
|
||||
'account_stock_shipment_cost.wizard_shipment_cost_post')
|
||||
def post_wizard(cls, shipment_costs):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
@ModelView.button_action(
|
||||
'account_stock_shipment_cost.wizard_shipment_cost_show')
|
||||
def show(cls, shipment_costs):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
@Workflow.transition('posted')
|
||||
def post(cls, shipment_costs):
|
||||
pool = Pool()
|
||||
Date = pool.get('ir.date')
|
||||
Warning = pool.get('res.user.warning')
|
||||
|
||||
for shipment_cost in shipment_costs:
|
||||
parties = shipment_cost.parties
|
||||
all_shipments = shipment_cost.all_shipments
|
||||
if not all_shipments:
|
||||
key = Warning.format('post no shipment', [shipment_cost])
|
||||
if Warning.check(key):
|
||||
raise NoShipmentWarning(
|
||||
key,
|
||||
gettext('account_stock_shipment_cost'
|
||||
'.msg_shipment_cost_post_no_shipment',
|
||||
shipment_cost=shipment_cost.rec_name))
|
||||
for shipment in all_shipments:
|
||||
for other in shipment.shipment_costs:
|
||||
if other == shipment_cost:
|
||||
continue
|
||||
if other.parties & parties:
|
||||
key = Warning.format(
|
||||
'post same parties', [shipment_cost])
|
||||
if Warning.check(key):
|
||||
raise SamePartiesWarning(
|
||||
key,
|
||||
gettext('account_stock_shipment_cost'
|
||||
'.msg_shipment_cost_post_same_parties',
|
||||
shipment_cost=shipment_cost.rec_name,
|
||||
shipment=shipment.rec_name,
|
||||
other=other.rec_name))
|
||||
else:
|
||||
break
|
||||
getattr(shipment_cost, 'allocate_cost_by_%s' %
|
||||
shipment_cost.allocation_method)()
|
||||
for company, c_shipment_costs in groupby(
|
||||
shipment_costs, key=lambda s: s.company):
|
||||
with Transaction().set_context(company=company.id):
|
||||
today = Date.today()
|
||||
cls.write(list(c_shipment_costs), {
|
||||
'posted_date': today,
|
||||
'state': 'posted',
|
||||
})
|
||||
|
||||
@classmethod
|
||||
def preprocess_values(cls, mode, values):
|
||||
pool = Pool()
|
||||
Config = pool.get('account.configuration')
|
||||
values = super().preprocess_values(mode, values)
|
||||
if values.get('number') is None:
|
||||
config = Config(1)
|
||||
company_id = values.get('company', cls.default_company())
|
||||
if company_id is not None:
|
||||
if sequence := config.get_multivalue(
|
||||
'shipment_cost_sequence', company=company_id):
|
||||
values['number'] = sequence.get()
|
||||
return values
|
||||
|
||||
@classmethod
|
||||
def check_modification(
|
||||
cls, mode, shipment_costs, values=None, external=False):
|
||||
super().check_modification(
|
||||
mode, shipment_costs, values=values, external=external)
|
||||
if mode == 'delete':
|
||||
for shipment_cost in shipment_costs:
|
||||
if shipment_cost.state not in {'cancelled', 'draft'}:
|
||||
raise AccessError(
|
||||
gettext('account_stock_shipment_cost'
|
||||
'.msg_shipment_cost_delete_cancel',
|
||||
shipment_cost=shipment_cost.rec_name))
|
||||
|
||||
|
||||
class ShipmentCost_Shipment(ModelSQL):
|
||||
__name__ = 'account.shipment_cost-stock.shipment.out'
|
||||
shipment_cost = fields.Many2One(
|
||||
'account.shipment_cost', "Shipment Cost",
|
||||
required=True, ondelete='CASCADE')
|
||||
shipment = fields.Many2One(
|
||||
'stock.shipment.out', "Shipment", required=True, ondelete='CASCADE')
|
||||
|
||||
|
||||
class ShipmentCost_ShipmentReturn(ModelSQL):
|
||||
__name__ = 'account.shipment_cost-stock.shipment.out.return'
|
||||
shipment_cost = fields.Many2One(
|
||||
'account.shipment_cost', "Shipment Cost",
|
||||
required=True, ondelete='CASCADE')
|
||||
shipment = fields.Many2One(
|
||||
'stock.shipment.out.return', "Shipment",
|
||||
required=True, ondelete='CASCADE')
|
||||
|
||||
|
||||
class ShowShipmentCostMixin(Wizard):
|
||||
start_state = 'show'
|
||||
show = StateView('account.shipment_cost.show',
|
||||
'account_stock_shipment_cost.shipment_cost_show_view_form', [])
|
||||
|
||||
@property
|
||||
def factors(self):
|
||||
return self.record._get_factors()
|
||||
|
||||
def default_show(self, fields):
|
||||
shipments = []
|
||||
cost = self.record.cost
|
||||
default = {
|
||||
'cost': round_price(cost),
|
||||
'shipments': shipments,
|
||||
}
|
||||
factors = self.factors
|
||||
for shipment in self.record.all_shipments:
|
||||
shipments.append({
|
||||
'shipment': str(shipment),
|
||||
'cost': round_price(cost * factors[str(shipment)]),
|
||||
})
|
||||
return default
|
||||
|
||||
|
||||
class PostShipmentCost(ShowShipmentCostMixin):
|
||||
__name__ = 'account.shipment_cost.post'
|
||||
post = StateTransition()
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
cls.show.buttons.extend([
|
||||
Button("Cancel", 'end', 'tryton-cancel'),
|
||||
Button("Post", 'post', 'tryton-ok', default=True),
|
||||
])
|
||||
|
||||
def transition_post(self):
|
||||
self.model.post([self.record])
|
||||
return 'end'
|
||||
|
||||
|
||||
class ShowShipmentCost(ShowShipmentCostMixin):
|
||||
__name__ = 'account.shipment_cost.show'
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
cls.show.buttons.extend([
|
||||
Button("Close", 'end', 'tryton-close', default=True),
|
||||
])
|
||||
|
||||
@property
|
||||
def factors(self):
|
||||
return self.record.factors or super().factors
|
||||
|
||||
|
||||
class ShipmentCostShow(ModelView):
|
||||
__name__ = 'account.shipment_cost.show'
|
||||
|
||||
cost = fields.Numeric("Cost", digits=price_digits, readonly=True)
|
||||
shipments = fields.One2Many(
|
||||
'account.shipment_cost.show.shipment', None, "Shipments",
|
||||
readonly=True)
|
||||
|
||||
|
||||
class ShipmentCostShowShipment(ModelView):
|
||||
__name__ = 'account.shipment_cost.show.shipment'
|
||||
|
||||
shipment = fields.Reference("Shipments", [
|
||||
('stock.shipment.out', "Shipment"),
|
||||
('stock.shipment.out.return', "Shipment Return"),
|
||||
], readonly=True)
|
||||
cost = fields.Numeric("Cost", digits=price_digits, readonly=True)
|
||||
|
||||
|
||||
class InvoiceLine(metaclass=PoolMeta):
|
||||
__name__ = 'account.invoice.line'
|
||||
shipment_cost = fields.Many2One(
|
||||
'account.shipment_cost', "Shipment Cost",
|
||||
readonly=True,
|
||||
states={
|
||||
'invisible': ~Eval('shipment_cost'),
|
||||
})
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
cls._check_modify_exclude.add('shipment_cost')
|
||||
|
||||
@classmethod
|
||||
def copy(cls, lines, default=None):
|
||||
if default is None:
|
||||
default = {}
|
||||
else:
|
||||
default = default.copy()
|
||||
default.setdefault('shipment_cost', None)
|
||||
return super().copy(lines, default=default)
|
||||
190
modules/account_stock_shipment_cost/account.xml
Normal file
190
modules/account_stock_shipment_cost/account.xml
Normal file
@@ -0,0 +1,190 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.sequence.type" id="sequence_type_shipment_cost">
|
||||
<field name="name">Shipment Cost</field>
|
||||
</record>
|
||||
<record model="ir.sequence.type-res.group" id="sequence_type_shipment_cost_group_admin">
|
||||
<field name="sequence_type" ref="sequence_type_shipment_cost"/>
|
||||
<field name="group" ref="res.group_admin"/>
|
||||
</record>
|
||||
<record model="ir.sequence.type-res.group" id="sequence_type_shipment_cost_group_account_admin">
|
||||
<field name="sequence_type" ref="sequence_type_shipment_cost"/>
|
||||
<field name="group" ref="account.group_account_admin"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.sequence" id="sequence_shipment_cost">
|
||||
<field name="name">Shipment Cost</field>
|
||||
<field name="sequence_type" ref="sequence_type_shipment_cost"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="configuration_view_form">
|
||||
<field name="model">account.configuration</field>
|
||||
<field name="inherit" ref="account.configuration_view_form"/>
|
||||
<field name="name">configuration_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="shipment_cost_view_form">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">shipment_cost_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="shipment_cost_view_list">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">shipment_cost_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window" id="act_shipment_cost_form">
|
||||
<field name="name">Shipment Costs</field>
|
||||
<field name="res_model">account.shipment_cost</field>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_shipment_cost_form_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="shipment_cost_view_list"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_shipment_cost_form_view2">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="shipment_cost_view_form"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_shipment_cost_form_domain_draft">
|
||||
<field name="name">Draft</field>
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="domain" eval="[('state', '=', 'draft')]" pyson="1"/>
|
||||
<field name="count" eval="True"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_shipment_cost_form_domain_posted">
|
||||
<field name="name">Posted</field>
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="domain" eval="[('state', '=', 'posted')]" pyson="1"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_shipment_cost_form_domain_all">
|
||||
<field name="name">All</field>
|
||||
<field name="sequence" eval="9999"/>
|
||||
<field name="domain"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form"/>
|
||||
</record>
|
||||
|
||||
<menuitem
|
||||
parent="account_invoice.menu_invoices"
|
||||
action="act_shipment_cost_form"
|
||||
sequence="30"
|
||||
id="menu_shipment_cost"/>
|
||||
|
||||
<record model="ir.action.act_window" id="act_shipment_cost_form_shipment">
|
||||
<field name="name">Shipment Costs</field>
|
||||
<field name="res_model">account.shipment_cost</field>
|
||||
<field
|
||||
name="domain"
|
||||
eval="[If(Eval('active_ids', []) == [Eval('active_id')], (If(Eval('active_model') == 'stock.shipment.out.return', 'shipment_returns', 'shipments'), '=', Eval('active_id')), (If(Eval('active_model') == 'stock.shipment.out.return', 'shipment_returns', 'shipments'), 'in', Eval('active_ids')))]"
|
||||
pyson="1"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_shipment_cost_form_shipment_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="shipment_cost_view_list"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form_shipment"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_shipment_cost_form_shipment_view2">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="shipment_cost_view_form"/>
|
||||
<field name="act_window" ref="act_shipment_cost_form_shipment"/>
|
||||
</record>
|
||||
<record model="ir.action.keyword" id="act_shipment_cost_form_shipment_keyword1">
|
||||
<field name="keyword">form_relate</field>
|
||||
<field name="model">stock.shipment.out,-1</field>
|
||||
<field name="action" ref="act_shipment_cost_form_shipment"/>
|
||||
</record>
|
||||
<record model="ir.action.keyword" id="act_shipment_cost_form_shipment_keyword2">
|
||||
<field name="keyword">form_relate</field>
|
||||
<field name="model">stock.shipment.out.return,-1</field>
|
||||
<field name="action" ref="act_shipment_cost_form_shipment"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.access" id="access_shipment_cost">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="perm_read" eval="False"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.access" id="access_shipment_cost_account">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
<field name="perm_create" eval="True"/>
|
||||
<field name="perm_delete" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="shipment_cost_cancel_button">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="name">cancel</field>
|
||||
<field name="string">Cancel</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="shipment_cost_post_button">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="name">post_wizard</field>
|
||||
<field name="string">Post</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="shipment_cost_show_button">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="name">show</field>
|
||||
<field name="string">Show</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.button" id="shipment_cost_draft_button">
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="name">draft</field>
|
||||
<field name="string">Draft</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.rule.group" id="rule_group_shipment_cost_companies">
|
||||
<field name="name">User in companies</field>
|
||||
<field name="model">account.shipment_cost</field>
|
||||
<field name="global_p" eval="True"/>
|
||||
</record>
|
||||
<record model="ir.rule" id="rule_shipment_cost_companies">
|
||||
<field name="domain" eval="[('company', 'in', Eval('companies', []))]" pyson="1"/>
|
||||
<field name="rule_group" ref="rule_group_shipment_cost_companies"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.wizard" id="wizard_shipment_cost_post">
|
||||
<field name="name">Post Shipment Cost</field>
|
||||
<field name="wiz_name">account.shipment_cost.post</field>
|
||||
<field name="model">account.shipment_cost</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.wizard" id="wizard_shipment_cost_show">
|
||||
<field name="name">Show Shipment Cost</field>
|
||||
<field name="wiz_name">account.shipment_cost.show</field>
|
||||
<field name="model">account.shipment_cost</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="shipment_cost_show_view_form">
|
||||
<field name="model">account.shipment_cost.show</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">shipment_cost_show_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="shipment_cost_show_shipment_view_list">
|
||||
<field name="model">account.shipment_cost.show.shipment</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">shipment_cost_show_shipment_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="invoice_line_view_form">
|
||||
<field name="model">account.invoice.line</field>
|
||||
<field name="inherit" ref="account_invoice.invoice_line_view_form"/>
|
||||
<field name="name">invoice_line_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
11
modules/account_stock_shipment_cost/exceptions.py
Normal file
11
modules/account_stock_shipment_cost/exceptions.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# 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 trytond.exceptions import UserWarning
|
||||
|
||||
|
||||
class NoShipmentWarning(UserWarning):
|
||||
pass
|
||||
|
||||
|
||||
class SamePartiesWarning(UserWarning):
|
||||
pass
|
||||
260
modules/account_stock_shipment_cost/locale/bg.po
Normal file
260
modules/account_stock_shipment_cost/locale/bg.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
263
modules/account_stock_shipment_cost/locale/ca.po
Normal file
263
modules/account_stock_shipment_cost/locale/ca.po
Normal file
@@ -0,0 +1,263 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Seqüència de costos d'enviament"
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Seqüència de costos d'albarà"
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr "Mètode d'assignació"
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr "Factors"
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr "Línies de factura"
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr "Número"
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr "Data de comptabilització"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr "Albarans de devolució"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Albarans"
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Albarà"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Albarà"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Cost"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Albarans"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Cost"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr "Albarans"
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costos d'enviament"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costos d'enviament"
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr "L'empresa a la que el cost d'enviament està associat."
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr "L'identificador principal del cost d'enviament."
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr "Configuració de seqüència de costos d'albarà"
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr "Cost d'enviament - Albarà"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr "Cost d'enviament - Devolució d'albarà"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr "Mostra cost d'enviament"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr "Cost d'enviament mostra albarà"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costos d'enviament"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costos d'enviament"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr "Comptabilitzar cost d'enviament"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr "Mostrar cost d'enviament"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Tot"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr "Comptabilitzat"
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
"Per suprimir el cost d'enviament \"%(shipment_cost)s\", cal cancel·lar-lo."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr "El cost d'enviament \"%(shipment_cost)s\" no té cap albarà."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
"L'albarà\"%(shipment)s\" del cost d'enviament \"%(shipment_cost)s\" ja té un"
|
||||
" cost d'enviament del mateix tercer \"%(other)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr "Comptabilitza"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr "Mostra"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Usuari a les empreses"
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'albarà"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costos d'enviament"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr "Per albarà"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancel·lat"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Esborrany"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr "Comptabilitzat"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Albarà"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr "Albarà de devolució"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Seqüència"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Cost d'enviament"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr "Comptabilitza"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
260
modules/account_stock_shipment_cost/locale/cs.po
Normal file
260
modules/account_stock_shipment_cost/locale/cs.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
264
modules/account_stock_shipment_cost/locale/de.po
Normal file
264
modules/account_stock_shipment_cost/locale/de.po
Normal file
@@ -0,0 +1,264 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Nummernkreis Lieferkosten"
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Nummernkreis Lieferkosten"
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr "Zuordnungsmethode"
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr "Faktoren"
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr "Rechnungspositionen"
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr "Nummer"
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr "Festschreibungsdatum"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr "Warenrücknahmen"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Lieferungen"
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Lieferung"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Lieferung"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Kosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Lieferungen"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Kosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr "Lieferungen"
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr "Das Unternehmen dem die Lieferkosten zugeordnet sind."
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr "Das Hauptidentifizierungsmerkmal für die Lieferkosten."
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr "Buchhaltung Einstellungen Lieferkosten Nummernkreis"
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr "Buchhaltung Lieferkosten"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr "Buchhaltung Lieferkosten - Lager Warenausgangslieferung"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr "Buchhaltung Lieferkosten - Lager Warenrücknahmen vom Kunden"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr "Buchhaltung Lieferkosten anzeigen"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr "Buchhaltung Lieferkosten - Lieferung anzeigen"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr "Lieferkosten festschreiben"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr "Lieferkosten anzeigen"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr "Festgeschrieben"
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
"Damit die Lieferkosten \"%(shipment_cost)s\" gelöscht werden können, müssen "
|
||||
"sie zuerst annulliert werden."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr "Die Lieferkosten \"%(shipment_cost)s\" sind keiner Lieferung zugeordnet."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
"Die Lieferung \"%(shipment)s\" mit den Lieferkosten \"%(shipment_cost)s\" "
|
||||
"verfügt bereits über Lieferkosten der gleichen Partei \"%(other)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr "Annullieren"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr "Festschreiben"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr "Anzeigen"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Benutzer in Unternehmen"
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr "Nach Lieferungen"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulliert"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr "Festgeschrieben"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Lieferung"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr "Warenrücknahme"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Nummernkreis"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Lieferkosten"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr "Festschreiben"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
262
modules/account_stock_shipment_cost/locale/es.po
Normal file
262
modules/account_stock_shipment_cost/locale/es.po
Normal file
@@ -0,0 +1,262 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Secuencia de costes de envío"
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Secuencia de costes de envío"
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste albarán"
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr "Método de asignación"
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr "Factores"
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr "Líneas de factura"
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr "Número"
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr "Fecha contabilización"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr "Albaranes de devolución"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Albaranes"
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Albarán"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Albarán"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Coste"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Albaranes"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Coste"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr "Albaranes"
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costes de envío"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costes de envío"
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr "La empresa a la que el coste de albarán está asociado."
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr "El identificador principal del coste de envío."
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr "Configuración de secuencia de costes de envío"
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr "Coste de envío - Albarán"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr "Coste de envío - Devolución de albarán"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr "Mostrar coste envío"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr "Coste de envío mostrar Albarán"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costes de envío"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costes de envío"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr "Contabilizar coste envío"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr "Mostrar coste envío"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Todo"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr "Contabilizado"
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr "Para eliminar el costo de envío “%(shipment_cost)s” debes cancelarlo."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr "El coste de envío \"%(shipment_cost)s\" no tiene albarán."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
"El albarán \"%(shipment)s\" del coste de envío \"%(shipment_cost)s\" ya "
|
||||
"tiene coste de envío del mismo tercero \"%(other)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr "Contabilizar"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr "Mostrar"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Usuario en las empresas"
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Costes de envío"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr "Por albarán"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr "Contabilizado"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Albarán"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr "Albaran de devolución"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Coste de envío"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr "Contabilizar"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
260
modules/account_stock_shipment_cost/locale/es_419.po
Normal file
260
modules/account_stock_shipment_cost/locale/es_419.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/et.po
Normal file
260
modules/account_stock_shipment_cost/locale/et.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/fa.po
Normal file
260
modules/account_stock_shipment_cost/locale/fa.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/fi.po
Normal file
260
modules/account_stock_shipment_cost/locale/fi.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
264
modules/account_stock_shipment_cost/locale/fr.po
Normal file
264
modules/account_stock_shipment_cost/locale/fr.po
Normal file
@@ -0,0 +1,264 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Séquence de frais d'expédition"
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "Séquence de frais d'expédition"
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr "Méthode d'allocation"
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr "Facteurs"
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr "Lignes de facture"
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr "Numéro"
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr "Date de comptabilisation"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr "Retours d'expédition"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Expéditions"
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Expédition"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Expédition"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Coût"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Expéditions"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Coût"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr "Expéditions"
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr "La société à laquelle le frais d'expédition est associé."
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr "L'identifiant principal des frais d'expédition."
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr "Configuration comptable Séquence des coûts d'expédition"
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr "Frais d'expédition comptable"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr "Frais d'expédition comptable - Expédition cliente"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr "Frais d'expédition comptable - Retour d'expédition client"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr "Frais d'expédition comptable Affichage"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr "Frais d'expédition comptable Affichage expédition"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr "Comptabiliser les frais d'expédition"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr "Afficher les frais d'expédition"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Tous"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillons"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr "Comptabilisés"
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
"Pour supprimer les frais d'expédition « %(shipment_cost)s », vous devez les "
|
||||
"annuler."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr "Les frais d'expédition « %(shipment_cost)s » n'ont pas d'expédition."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
"L'expédition « %(shipment)s » des frais d'expédition « %(shipment_cost)s » a"
|
||||
" déjà des frais d'expédition du même tiers « %(other)s »."
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr "Comptabiliser"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr "Afficher"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Utilisateur dans les sociétés"
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr "Par expédition"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulé"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr "Comptabilisé"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Expédition"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr "Retour d'expédition"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Frais d'expédition"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr "Comptabiliser"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
260
modules/account_stock_shipment_cost/locale/hu.po
Normal file
260
modules/account_stock_shipment_cost/locale/hu.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/id.po
Normal file
260
modules/account_stock_shipment_cost/locale/id.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr "Perusahaan"
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr "Nomor"
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Urutan"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr "Tutup"
|
||||
260
modules/account_stock_shipment_cost/locale/it.po
Normal file
260
modules/account_stock_shipment_cost/locale/it.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Costo"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Costo"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr "Annullato"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/lo.po
Normal file
260
modules/account_stock_shipment_cost/locale/lo.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/lt.po
Normal file
260
modules/account_stock_shipment_cost/locale/lt.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
264
modules/account_stock_shipment_cost/locale/nl.po
Normal file
264
modules/account_stock_shipment_cost/locale/nl.po
Normal file
@@ -0,0 +1,264 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "sequentie van de verzendkosten"
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr "sequentie van de verzendkosten"
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr "Toewijzingsmethode"
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr "Factoren"
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr "Factuurregels"
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr "Nummer"
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr "Postdatum"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr "Retourzendingen"
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Zendingen"
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr "Staat"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Levering"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "levering"
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Kosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Zendingen"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr "Kosten"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr "Zendingen"
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr "Het bedrijf waaraan de verzendkosten gekoppeld zijn ."
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr "De hoofdidentificatie voor de verzendkosten."
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr "Grootboek configuratie leveringskosten reeks"
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr "Grootboek leveringskosten"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr "Grootboek leveringskosten - Voorraad verzending"
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr "Grootboek leveringskosten - Voorraad retourverzending"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr "Grootboek leveringskosten weergave"
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr "Grootboek weergave leveringskosten"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr "Boek Verzendkosten"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr "Geef verzendkosten weer"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr "Geboekt"
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
"Om de leveringskosten \"%(shipment_cost)s\" te verwijderen, moet deze eerst "
|
||||
"geannuleerd worden."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr "De verzendkosten \"%(shipment_cost)s\" heeft geen verzending."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
"De zending \"%(shipment)s\" van verzendkosten \"%(shipment_cost)s\" heeft "
|
||||
"alreeds verzendkosten van dezelfde relatie \"%(other)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleer"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr "Boek"
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr "Toon"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Gebruiker in het bedrijf"
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr "Per zending"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr "Geannuleerd"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr "Geboekt"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr "Zending"
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr "Retourzending"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Reeks"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr "Verzendkosten"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleer"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr "Boek"
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
260
modules/account_stock_shipment_cost/locale/pl.po
Normal file
260
modules/account_stock_shipment_cost/locale/pl.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/pt.po
Normal file
260
modules/account_stock_shipment_cost/locale/pt.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/ro.po
Normal file
260
modules/account_stock_shipment_cost/locale/ro.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Expedieri"
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr "Expedieri"
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr "Expedieri"
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Secventa"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/ru.po
Normal file
260
modules/account_stock_shipment_cost/locale/ru.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/sl.po
Normal file
260
modules/account_stock_shipment_cost/locale/sl.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr "Številčna serija"
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/tr.po
Normal file
260
modules/account_stock_shipment_cost/locale/tr.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/uk.po
Normal file
260
modules/account_stock_shipment_cost/locale/uk.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
260
modules/account_stock_shipment_cost/locale/zh_CN.po
Normal file
260
modules/account_stock_shipment_cost/locale/zh_CN.po
Normal file
@@ -0,0 +1,260 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.configuration,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.configuration.shipment_cost_sequence,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"field:account.configuration.shipment_cost_sequence,shipment_cost_sequence:"
|
||||
msgid "Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.invoice.line,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,allocation_method:"
|
||||
msgid "Allocation Method"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,factors:"
|
||||
msgid "Factors"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,invoice_lines:"
|
||||
msgid "Invoice Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,number:"
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,posted_date:"
|
||||
msgid "Posted Date"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipment_returns:"
|
||||
msgid "Shipment Returns"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost-stock.shipment.out.return,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show,shipments:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,cost:"
|
||||
msgid "Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.product,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:product.template,shipment_cost:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,shipment_costs:"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,company:"
|
||||
msgid "The company the shipment cost is associated with."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.shipment_cost,number:"
|
||||
msgid "The main identifier for the shipment cost."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.configuration.shipment_cost_sequence,string:"
|
||||
msgid "Account Configuration Shipment Cost Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost,string:"
|
||||
msgid "Account Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost-stock.shipment.out.return,string:"
|
||||
msgid "Account Shipment Cost - Stock Shipment Out Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show,string:"
|
||||
msgid "Account Shipment Cost Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.shipment_cost.show.shipment,string:"
|
||||
msgid "Account Shipment Cost Show Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_shipment_cost_form_shipment"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_post"
|
||||
msgid "Post Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_shipment_cost_show"
|
||||
msgid "Show Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_draft"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_shipment_cost_form_domain_posted"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_delete_cancel"
|
||||
msgid "To delete shipment cost \"%(shipment_cost)s\" you must cancel it."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_no_shipment"
|
||||
msgid "The shipment cost \"%(shipment_cost)s\" has no shipment."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_shipment_cost_post_same_parties"
|
||||
msgid ""
|
||||
"The shipment \"%(shipment)s\" of shipment cost \"%(shipment_cost)s\" has "
|
||||
"already shipment cost from the same party \"%(other)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_cancel_button"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_draft_button"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_post_button"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:shipment_cost_show_button"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_shipment_cost_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence,name:sequence_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.sequence.type,name:sequence_type_shipment_cost"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_shipment_cost"
|
||||
msgid "Shipment Costs"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,allocation_method:"
|
||||
msgid "By Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost,state:"
|
||||
msgid "Posted"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.shipment_cost.show.shipment,shipment:"
|
||||
msgid "Shipment Return"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.configuration:"
|
||||
msgid "Shipment Cost"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,end:"
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.post,show,post:"
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "wizard_button:account.shipment_cost.show,show,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
16
modules/account_stock_shipment_cost/message.xml
Normal file
16
modules/account_stock_shipment_cost/message.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data grouped="1">
|
||||
<record model="ir.message" id="msg_shipment_cost_post_no_shipment">
|
||||
<field name="text">The shipment cost "%(shipment_cost)s" has no shipment.</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_shipment_cost_post_same_parties">
|
||||
<field name="text">The shipment "%(shipment)s" of shipment cost "%(shipment_cost)s" has already shipment cost from the same party "%(other)s".</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_shipment_cost_delete_cancel">
|
||||
<field name="text">To delete shipment cost "%(shipment_cost)s" you must cancel it.</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
18
modules/account_stock_shipment_cost/product.py
Normal file
18
modules/account_stock_shipment_cost/product.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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 trytond.model import fields
|
||||
from trytond.pool import PoolMeta
|
||||
from trytond.pyson import Eval
|
||||
|
||||
|
||||
class Template(metaclass=PoolMeta):
|
||||
__name__ = 'product.template'
|
||||
shipment_cost = fields.Boolean(
|
||||
"Shipment Cost",
|
||||
states={
|
||||
'invisible': Eval('type') != 'service',
|
||||
})
|
||||
|
||||
|
||||
class Product(metaclass=PoolMeta):
|
||||
__name__ = 'product.product'
|
||||
12
modules/account_stock_shipment_cost/product.xml
Normal file
12
modules/account_stock_shipment_cost/product.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="template_view_form">
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit" ref="product.template_view_form"/>
|
||||
<field name="name">template_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
20
modules/account_stock_shipment_cost/stock.py
Normal file
20
modules/account_stock_shipment_cost/stock.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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 trytond.model import fields
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
|
||||
class ShipmentOut(metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.out'
|
||||
|
||||
shipment_costs = fields.Many2Many(
|
||||
'account.shipment_cost-stock.shipment.out',
|
||||
'shipment', 'shipment_cost', "Shipment Costs", readonly=True)
|
||||
|
||||
|
||||
class ShipmentOutReturn(metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.out.return'
|
||||
|
||||
shipment_costs = fields.Many2Many(
|
||||
'account.shipment_cost-stock.shipment.out.return',
|
||||
'shipment', 'shipment_cost', "Shipment Costs", readonly=True)
|
||||
2
modules/account_stock_shipment_cost/tests/__init__.py
Normal file
2
modules/account_stock_shipment_cost/tests/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,246 @@
|
||||
====================================
|
||||
Account Stock Shipment Cost Scenario
|
||||
====================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import (
|
||||
... create_chart, create_fiscalyear, get_accounts)
|
||||
>>> from trytond.modules.account_invoice.tests.tools import (
|
||||
... set_fiscalyear_invoice_sequences)
|
||||
>>> from trytond.modules.account_stock_shipment_cost.exceptions import (
|
||||
... SamePartiesWarning)
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules
|
||||
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules(
|
||||
... 'account_stock_shipment_cost', create_company, create_chart)
|
||||
|
||||
>>> Invoice = Model.get('account.invoice')
|
||||
>>> InvoiceLine = Model.get('account.invoice.line')
|
||||
>>> Location = Model.get('stock.location')
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> ProductCategory = Model.get('product.category')
|
||||
>>> ProductTemplate = Model.get('product.template')
|
||||
>>> ProductUom = Model.get('product.uom')
|
||||
>>> ShipmentOut = Model.get('stock.shipment.out')
|
||||
>>> ShipmentCost = Model.get('account.shipment_cost')
|
||||
>>> Warning = Model.get('res.user.warning')
|
||||
|
||||
Get company::
|
||||
|
||||
>>> company = get_company()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = set_fiscalyear_invoice_sequences(
|
||||
... create_fiscalyear(today=today))
|
||||
>>> fiscalyear.click('create_period')
|
||||
|
||||
Get accounts::
|
||||
|
||||
>>> accounts = get_accounts()
|
||||
|
||||
Create parties::
|
||||
|
||||
>>> customer = Party(name="Customer")
|
||||
>>> customer.save()
|
||||
>>> carrier = Party(name="Carrier")
|
||||
>>> carrier.save()
|
||||
|
||||
Create account category::
|
||||
|
||||
>>> account_category = ProductCategory(name="Account Category")
|
||||
>>> account_category.accounting = True
|
||||
>>> account_category.account_expense = accounts['expense']
|
||||
>>> account_category.account_revenue = accounts['revenue']
|
||||
>>> account_category.save()
|
||||
|
||||
Create products::
|
||||
|
||||
>>> unit, = ProductUom.find([('name', '=', "Unit")])
|
||||
>>> template = ProductTemplate()
|
||||
>>> template.name = "Product"
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'goods'
|
||||
>>> template.list_price = Decimal('100.00')
|
||||
>>> template.account_category = account_category
|
||||
>>> template.save()
|
||||
>>> product, = template.products
|
||||
|
||||
>>> template = ProductTemplate()
|
||||
>>> template.name = "Shipment Cost"
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'service'
|
||||
>>> template.shipment_cost = True
|
||||
>>> template.list_price = Decimal('4.00')
|
||||
>>> template.account_category = account_category
|
||||
>>> template.save()
|
||||
>>> product_shipment_cost, = template.products
|
||||
|
||||
Get stock locations::
|
||||
|
||||
>>> warehouse_loc, = Location.find([('code', '=', 'WH')])
|
||||
>>> customer_loc, = Location.find([('code', '=', 'CUS')])
|
||||
>>> output_loc, = Location.find([('code', '=', 'OUT')])
|
||||
>>> storage_loc, = Location.find([('code', '=', 'STO')])
|
||||
|
||||
Ship twice 10 unit of the product::
|
||||
|
||||
>>> shipment1 = ShipmentOut()
|
||||
>>> shipment1.customer = customer
|
||||
>>> shipment1.cost_edit = True
|
||||
>>> shipment1.cost_used = Decimal('4.00')
|
||||
>>> shipment1.cost_currency_used = company.currency
|
||||
>>> move = shipment1.outgoing_moves.new()
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 10
|
||||
>>> move.from_location = output_loc
|
||||
>>> move.to_location = customer_loc
|
||||
>>> move.unit_price = Decimal('100.00')
|
||||
>>> move.currency = company.currency
|
||||
>>> shipment1.click('wait')
|
||||
>>> shipment1.click('assign_force')
|
||||
>>> shipment1.click('pick')
|
||||
>>> shipment1.click('pack')
|
||||
>>> shipment1.click('do')
|
||||
>>> shipment1.state
|
||||
'done'
|
||||
|
||||
>>> shipment2, = shipment1.duplicate()
|
||||
>>> shipment2.click('wait')
|
||||
>>> shipment2.click('assign_force')
|
||||
>>> shipment2.click('pick')
|
||||
>>> shipment2.click('pack')
|
||||
>>> shipment2.click('do')
|
||||
>>> shipment2.state
|
||||
'done'
|
||||
|
||||
Invoice shipment cost::
|
||||
|
||||
>>> invoice = Invoice(type='in')
|
||||
>>> invoice.party = carrier
|
||||
>>> invoice.invoice_date = today
|
||||
>>> line = invoice.lines.new()
|
||||
>>> line.product = product_shipment_cost
|
||||
>>> line.quantity = 2
|
||||
>>> line.unit_price = Decimal('5.00')
|
||||
>>> invoice.click('post')
|
||||
>>> invoice.state
|
||||
'posted'
|
||||
|
||||
Add shipment cost to both shipments::
|
||||
|
||||
>>> shipment_cost1 = ShipmentCost()
|
||||
>>> shipment_cost1.invoice_lines.extend(
|
||||
... shipment_cost1.invoice_lines.find([]))
|
||||
>>> shipment_cost1.shipments.extend(
|
||||
... shipment_cost1.shipments.find([]))
|
||||
>>> shipment_cost1.save()
|
||||
>>> shipment_cost1.state
|
||||
'draft'
|
||||
>>> bool(shipment_cost1.number)
|
||||
True
|
||||
>>> post_shipment_cost = shipment_cost1.click('post_wizard')
|
||||
>>> post_shipment_cost.form.cost
|
||||
Decimal('10.0000')
|
||||
>>> sorted([s.cost for s in post_shipment_cost.form.shipments])
|
||||
[Decimal('5.0000'), Decimal('5.0000')]
|
||||
>>> post_shipment_cost.execute('post')
|
||||
>>> shipment_cost1.state
|
||||
'posted'
|
||||
>>> bool(shipment_cost1.posted_date)
|
||||
True
|
||||
|
||||
Show shipment cost::
|
||||
|
||||
>>> show_shipment_cost = shipment_cost1.click('show')
|
||||
>>> show_shipment_cost.form.cost
|
||||
Decimal('10.0000')
|
||||
>>> sorted([s.cost for s in show_shipment_cost.form.shipments])
|
||||
[Decimal('5.0000'), Decimal('5.0000')]
|
||||
|
||||
Check shipment cost::
|
||||
|
||||
>>> shipment1.reload()
|
||||
>>> shipment1.cost
|
||||
Decimal('5.0000')
|
||||
>>> shipment2.reload()
|
||||
>>> shipment2.cost
|
||||
Decimal('5.0000')
|
||||
|
||||
Add a second shipment cost to 1 shipment::
|
||||
|
||||
>>> invoice, = invoice.duplicate()
|
||||
>>> invoice.invoice_date = today
|
||||
>>> line, = invoice.lines
|
||||
>>> line.quantity = 1
|
||||
>>> line.unit_price = Decimal('2.00')
|
||||
>>> invoice.click('post')
|
||||
>>> invoice.state
|
||||
'posted'
|
||||
|
||||
>>> shipment_cost2 = ShipmentCost()
|
||||
>>> shipment_cost2.invoice_lines.append(InvoiceLine(line.id))
|
||||
>>> shipment_cost2.shipments.append(ShipmentOut(shipment1.id))
|
||||
>>> shipment_cost2.save()
|
||||
>>> post_shipment_cost = shipment_cost2.click('post_wizard')
|
||||
>>> post_shipment_cost.form.cost
|
||||
Decimal('2.0000')
|
||||
>>> sorted([s.cost for s in post_shipment_cost.form.shipments])
|
||||
[Decimal('2.0000')]
|
||||
>>> try:
|
||||
... post_shipment_cost.execute('post')
|
||||
... except SamePartiesWarning as warning:
|
||||
... Warning(user=config.user, name=warning.name).save()
|
||||
... raise
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
SamePartiesWarning: ...
|
||||
>>> post_shipment_cost.execute('post')
|
||||
>>> shipment_cost2.state
|
||||
'posted'
|
||||
|
||||
Check shipment cost::
|
||||
|
||||
>>> shipment1.reload()
|
||||
>>> shipment1.cost
|
||||
Decimal('7.0000')
|
||||
>>> shipment2.reload()
|
||||
>>> shipment2.cost
|
||||
Decimal('5.0000')
|
||||
|
||||
Can not delete posted shipment cost::
|
||||
|
||||
>>> shipment_cost1.delete()
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
AccessError: ...
|
||||
|
||||
Cancel shipment cost remove the price::
|
||||
|
||||
>>> shipment_cost1.click('cancel')
|
||||
>>> shipment_cost1.state
|
||||
'cancelled'
|
||||
>>> shipment_cost1.posted_date
|
||||
|
||||
Check shipment cost::
|
||||
|
||||
>>> shipment1.reload()
|
||||
>>> shipment1.cost
|
||||
Decimal('2.0000')
|
||||
>>> shipment2.reload()
|
||||
>>> shipment2.cost
|
||||
Decimal('0.0000')
|
||||
|
||||
Can delete cancelled shipment cost::
|
||||
|
||||
>>> shipment_cost1.delete()
|
||||
12
modules/account_stock_shipment_cost/tests/test_module.py
Normal file
12
modules/account_stock_shipment_cost/tests/test_module.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# 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 trytond.tests.test_tryton import ModuleTestCase
|
||||
|
||||
|
||||
class AccountStockShipmentCostTestCase(ModuleTestCase):
|
||||
'Test Account Stock Shipment Cost module'
|
||||
module = 'account_stock_shipment_cost'
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
@@ -0,0 +1,8 @@
|
||||
# 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 trytond.tests.test_tryton import load_doc_tests
|
||||
|
||||
|
||||
def load_tests(*args, **kwargs):
|
||||
return load_doc_tests(__name__, __file__, *args, **kwargs)
|
||||
31
modules/account_stock_shipment_cost/tryton.cfg
Normal file
31
modules/account_stock_shipment_cost/tryton.cfg
Normal file
@@ -0,0 +1,31 @@
|
||||
[tryton]
|
||||
version=7.8.0
|
||||
depends:
|
||||
account
|
||||
account_invoice
|
||||
ir
|
||||
product
|
||||
stock
|
||||
stock_shipment_cost
|
||||
xml:
|
||||
product.xml
|
||||
account.xml
|
||||
message.xml
|
||||
|
||||
[register]
|
||||
model:
|
||||
product.Template
|
||||
product.Product
|
||||
account.Configuration
|
||||
account.ConfigurationShipmentCostSequence
|
||||
account.ShipmentCost
|
||||
account.ShipmentCost_Shipment
|
||||
account.ShipmentCost_ShipmentReturn
|
||||
account.ShipmentCostShow
|
||||
account.ShipmentCostShowShipment
|
||||
account.InvoiceLine
|
||||
stock.ShipmentOut
|
||||
stock.ShipmentOutReturn
|
||||
wizard:
|
||||
account.PostShipmentCost
|
||||
account.ShowShipmentCost
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="/form" position="inside">
|
||||
<separator id="shipment_cost" string="Shipment Cost" colspan="4"/>
|
||||
<label name="shipment_cost_sequence" string="Sequence"/>
|
||||
<field name="shipment_cost_sequence"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="/form/notebook" position="inside">
|
||||
<page name="shipment_cost">
|
||||
<label name="shipment_cost"/>
|
||||
<field name="shipment_cost"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="posted_date"/>
|
||||
<field name="posted_date"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
|
||||
<label name="allocation_method"/>
|
||||
<field name="allocation_method"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<field name="invoice_lines" colspan="4"/>
|
||||
|
||||
<field name="shipments" colspan="2"/>
|
||||
<field name="shipment_returns" colspan="2"/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft" icon="tryton-clear"/>
|
||||
<button name="post_wizard" icon="tryton-ok"/>
|
||||
<button name="show" icon="tryton-search"/>
|
||||
</group>
|
||||
</form>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="posted_date"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="cost"/>
|
||||
<field name="cost"/>
|
||||
|
||||
<field name="shipments" mode="tree" colspan="4"/>
|
||||
</form>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="shipment" expand="1"/>
|
||||
<field name="cost"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="/form/notebook/page/group[@id='checkboxes']" position="inside">
|
||||
<label name="shipment_cost"/>
|
||||
<field name="shipment_cost" xexpand="0" width="25"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user