first commit

This commit is contained in:
root
2026-03-14 09:42:12 +00:00
commit 0adbd20c2c
10991 changed files with 1646955 additions and 0 deletions

View 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.

View File

@@ -0,0 +1,566 @@
# 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 ROUND_DOWN, ROUND_HALF_EVEN, Decimal
from itertools import groupby
from operator import itemgetter
from sql.functions import CharLength
from trytond.i18n import gettext
from trytond.model import (
ChatMixin, Index, MatchMixin, 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 FilterUnusedWarning, NoMoveWarning
def _parents(records):
for record in records:
while record:
yield record
record = record.parent
class Configuration(metaclass=PoolMeta):
__name__ = 'account.configuration'
landed_cost_sequence = fields.MultiValue(fields.Many2One(
'ir.sequence', "Landed Cost Sequence", required=True,
domain=[
('company', 'in',
[Eval('context', {}).get('company', -1), None]),
('sequence_type', '=',
Id('account_stock_landed_cost',
'sequence_type_landed_cost')),
]))
@classmethod
def default_landed_cost_sequence(cls, **pattern):
return cls.multivalue_model(
'landed_cost_sequence').default_landed_cost_sequence()
class ConfigurationLandedCostSequence(ModelSQL, CompanyValueMixin):
__name__ = 'account.configuration.landed_cost_sequence'
landed_cost_sequence = fields.Many2One(
'ir.sequence', "Landed Cost Sequence", required=True,
domain=[
('company', 'in', [Eval('company', -1), None]),
('sequence_type', '=',
Id('account_stock_landed_cost', 'sequence_type_landed_cost')),
])
@classmethod
def default_landed_cost_sequence(cls, **pattern):
pool = Pool()
ModelData = pool.get('ir.model.data')
try:
return ModelData.get_id(
'account_stock_landed_cost', 'sequence_landed_cost')
except KeyError:
return None
class LandedCost(Workflow, ModelSQL, ModelView, MatchMixin, ChatMixin):
__name__ = 'account.landed_cost'
_rec_name = 'number'
number = fields.Char("Number", readonly=True)
company = fields.Many2One('company.company', 'Company', required=True,
states={
'readonly': Eval('state') != 'draft',
})
shipments = fields.Many2Many('account.landed_cost-stock.shipment.in',
'landed_cost', 'shipment', 'Shipments',
states={
'readonly': Eval('state') != 'draft',
},
domain=[
('company', '=', Eval('company', -1)),
('state', 'in', ['received', 'done']),
])
invoice_lines = fields.One2Many('account.invoice.line', 'landed_cost',
'Invoice Lines',
states={
'readonly': Eval('state') != 'draft',
},
add_remove=[
('landed_cost', '=', None),
],
domain=[
('company', '=', Eval('company', -1)),
('invoice.state', 'in', ['posted', 'paid']),
('invoice.type', '=', 'in'),
('product.landed_cost', '=', True),
('type', '=', 'line'),
])
allocation_method = fields.Selection([
('value', 'By Value'),
], 'Allocation Method', required=True,
states={
'readonly': Eval('state') != 'draft',
})
categories = fields.Many2Many(
'account.landed_cost-product.category', 'landed_cost', 'category',
"Categories",
states={
'readonly': Eval('state') != 'draft',
},
help="Apply only to products of these categories.")
products = fields.Many2Many(
'account.landed_cost-product.product', 'landed_cost', 'product',
"Products",
states={
'readonly': Eval('state') != 'draft',
},
help="Apply only to these products.")
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)
@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 = [
('number', 'DESC'),
('id', '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]
@staticmethod
def default_company():
return Transaction().context.get('company')
@staticmethod
def default_allocation_method():
return 'value'
@staticmethod
def default_state():
return 'draft'
@classmethod
@ModelView.button
@Workflow.transition('cancelled')
def cancel(cls, landed_costs):
for landed_cost in landed_costs:
if landed_cost.state == 'posted':
getattr(landed_cost, 'unallocate_cost_by_%s' %
landed_cost.allocation_method)()
cls.write(landed_costs, {
'posted_date': None,
'factors': None,
'state': 'cancelled',
})
@classmethod
@ModelView.button
@Workflow.transition('draft')
def draft(cls, landed_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
def stock_moves(self):
moves = []
for shipment in self.shipments:
for move in shipment.incoming_moves:
if move.state == 'cancelled':
continue
if self._stock_move_filter(move):
moves.append(move)
return moves
def _stock_move_filter(self, move):
if not self.categories and not self.products:
return True
result = False
if self.categories:
result |= bool(
set(self.categories)
& set(_parents(move.product.categories_all)))
if self.products:
result |= bool(move.product in self.products)
return result
def _stock_move_filter_unused(self, moves):
pool = Pool()
Warning = pool.get('res.user.warning')
categories = {
c for m in moves for c in _parents(m.product.categories_all)}
for category in self.categories:
if category not in categories:
key = '%s - %s' % (self, category)
if Warning.check(key):
raise FilterUnusedWarning(
key,
gettext('account_stock_landed_cost'
'.msg_landed_cost_unused_category',
landed_cost=self.rec_name,
category=category.rec_name))
products = {m.product for m in moves}
for product in self.products:
if product not in products:
key = '%s - %s' % (self, product)
if Warning.check(key):
raise FilterUnusedWarning(
key,
gettext('account_stock_landed_cost'
'.msg_landed_cost_unused_product',
landed_cost=self.rec_name,
product=product.rec_name))
def allocate_cost_by_value(self):
self.factors = self._get_factors('value')
self._allocate_cost(self.factors)
def unallocate_cost_by_value(self):
factors = self.factors or self._get_factors('value')
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_value_factors(self):
"Return the factor for each move based on value"
pool = Pool()
Currency = pool.get('currency.currency')
currency = self.company.currency
moves = self.stock_moves()
sum_value = 0
unit_prices = {}
for move in moves:
with Transaction().set_context(date=move.effective_date):
unit_price = Currency.compute(
move.currency, move.unit_price, currency, round=False)
unit_prices[move.id] = unit_price
sum_value += unit_price * Decimal(str(move.quantity))
factors = {}
length = Decimal(len(moves))
for move in moves:
quantity = Decimal(str(move.quantity))
if not sum_value:
factors[str(move.id)] = 1 / length
else:
factors[str(move.id)] = (
quantity * unit_prices[move.id] / sum_value)
return factors
def _costs_to_allocate(self, moves, factors):
pool = Pool()
Move = pool.get('stock.move')
cost = self.cost
costs = []
digit = Move.unit_price.digits[1]
exp = Decimal(str(10.0 ** -digit))
difference = cost
for move in moves:
quantity = Decimal(str(move.quantity))
move_cost = cost * factors[str(move.id)]
unit_landed_cost = round_price(
move_cost / quantity, rounding=ROUND_DOWN)
costs.append({
'unit_landed_cost': unit_landed_cost,
'difference': move_cost - (unit_landed_cost * quantity),
'move': move,
})
difference -= unit_landed_cost * quantity
costs.sort(key=itemgetter('difference'), reverse=True)
for cost in costs:
move = cost['move']
quantity = Decimal(str(move.quantity))
if exp * quantity <= difference:
cost['unit_landed_cost'] += exp
difference -= exp * quantity
if difference < exp:
break
return costs
def _allocate_cost(self, factors, sign=1):
"Allocate cost on moves using factors"
pool = Pool()
Move = pool.get('stock.move')
Currency = pool.get('currency.currency')
assert sign in {1, -1}
currency = self.company.currency
moves = [m for m in self.stock_moves() if m.quantity]
costs = self._costs_to_allocate(moves, factors)
for cost in costs:
move = cost['move']
with Transaction().set_context(date=move.effective_date):
unit_landed_cost = Currency.compute(
currency, cost['unit_landed_cost'],
move.currency, round=False)
unit_landed_cost = round_price(
unit_landed_cost, rounding=ROUND_HALF_EVEN)
if move.unit_landed_cost is None:
move.unit_landed_cost = 0
move.unit_price += unit_landed_cost * sign
move.unit_landed_cost += unit_landed_cost * sign
Move.save(moves)
@classmethod
@ModelView.button_action(
'account_stock_landed_cost.wizard_landed_cost_post')
def post_wizard(cls, landed_costs):
pass
@classmethod
@ModelView.button_action(
'account_stock_landed_cost.wizard_landed_cost_show')
def show(cls, landed_costs):
pass
@classmethod
@Workflow.transition('posted')
def post(cls, landed_costs):
pool = Pool()
Date = pool.get('ir.date')
Warning = pool.get('res.user.warning')
today = Date.today()
for landed_cost in landed_costs:
stock_moves = landed_cost.stock_moves()
if not stock_moves:
key = '%s post no move' % landed_cost
if Warning.check(key):
raise NoMoveWarning(
key,
gettext('account_stock_landed_cost'
'.msg_landed_cost_post_no_stock_move',
landed_cost=landed_cost.rec_name))
landed_cost._stock_move_filter_unused(stock_moves)
getattr(landed_cost, 'allocate_cost_by_%s' %
landed_cost.allocation_method)()
for company, c_landed_costs in groupby(
landed_costs, key=lambda l: l.company):
with Transaction().set_context(company=company.id):
today = Date.today()
for landed_cost in c_landed_costs:
landed_cost.posted_date = today
landed_cost.posted_date = today
# Use save as allocate methods may modify the records
cls.save(landed_costs)
@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(
'landed_cost_sequence', company=company_id):
values['number'] = sequence.get()
return values
@classmethod
def check_modification(
cls, mode, landed_costs, values=None, external=False):
super().check_modification(
mode, landed_costs, values=values, external=external)
if mode == 'delete':
for landed_cost in landed_costs:
if landed_cost.state not in {'cancelled', 'draft'}:
raise AccessError(
gettext('account_stock_landed_cost'
'.msg_landed_cost_delete_cancel',
landed_cost=landed_cost.rec_name))
@classmethod
def copy(cls, landed_costs, default=None):
default = default.copy() if default is not None else {}
default.setdefault('invoice_lines', None)
return super().copy(landed_costs, default=default)
class LandedCost_Shipment(ModelSQL):
__name__ = 'account.landed_cost-stock.shipment.in'
landed_cost = fields.Many2One(
'account.landed_cost', 'Landed Cost',
required=True, ondelete='CASCADE')
shipment = fields.Many2One(
'stock.shipment.in', 'Shipment', required=True, ondelete='CASCADE')
class LandedCost_ProductCategory(ModelSQL):
__name__ = 'account.landed_cost-product.category'
landed_cost = fields.Many2One(
'account.landed_cost', 'Landed Cost',
required=True, ondelete='CASCADE')
category = fields.Many2One(
'product.category', "Category", required=True, ondelete='CASCADE')
class LandedCost_Product(ModelSQL):
__name__ = 'account.landed_cost-product.product'
landed_cost = fields.Many2One(
'account.landed_cost', "Landed Cost",
required=True, ondelete='CASCADE')
product = fields.Many2One(
'product.product', "Product", required=True, ondelete='CASCADE')
class ShowLandedCostMixin(Wizard):
start_state = 'show'
show = StateView('account.landed_cost.show',
'account_stock_landed_cost.landed_cost_show_view_form', [])
@property
def factors(self):
return self.record._get_factors()
def default_show(self, fields):
moves = []
default = {
'cost': round_price(self.record.cost),
'moves': moves,
}
stock_moves = [m for m in self.record.stock_moves() if m.quantity]
costs = self.record._costs_to_allocate(stock_moves, self.factors)
for cost in costs:
moves.append({
'move': cost['move'].id,
'cost': round_price(
cost['unit_landed_cost'], rounding=ROUND_HALF_EVEN),
})
return default
class PostLandedCost(ShowLandedCostMixin):
__name__ = 'account.landed_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 ShowLandedCost(ShowLandedCostMixin):
__name__ = 'account.landed_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 LandedCostShow(ModelView):
__name__ = 'account.landed_cost.show'
cost = fields.Numeric("Cost", digits=price_digits, readonly=True)
moves = fields.One2Many(
'account.landed_cost.show.move', None, "Moves", readonly=True)
class LandedCostShowMove(ModelView):
__name__ = 'account.landed_cost.show.move'
move = fields.Many2One('stock.move', "Move", readonly=True)
cost = fields.Numeric("Cost", digits=price_digits, readonly=True)
class InvoiceLine(metaclass=PoolMeta):
__name__ = 'account.invoice.line'
landed_cost = fields.Many2One(
'account.landed_cost', "Landed Cost", readonly=True,
states={
'invisible': ~Eval('landed_cost'),
})
@classmethod
def __setup__(cls):
super().__setup__()
cls._check_modify_exclude.add('landed_cost')
@classmethod
def copy(cls, lines, default=None):
if default is None:
default = {}
else:
default = default.copy()
default.setdefault('landed_cost', None)
return super().copy(lines, default=default)

View File

@@ -0,0 +1,189 @@
<?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_landed_cost">
<field name="name">Landed Cost</field>
</record>
<record model="ir.sequence.type-res.group"
id="sequence_type_landed_code_group_admin">
<field name="sequence_type" ref="sequence_type_landed_cost"/>
<field name="group" ref="res.group_admin"/>
</record>
<record model="ir.sequence.type-res.group"
id="sequence_type_landed_code_group_account_admin">
<field name="sequence_type" ref="sequence_type_landed_cost"/>
<field name="group" ref="account.group_account_admin"/>
</record>
<record model="ir.sequence" id="sequence_landed_cost">
<field name="name">Landed Cost</field>
<field name="sequence_type" ref="sequence_type_landed_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="landed_cost_view_form">
<field name="model">account.landed_cost</field>
<field name="type">form</field>
<field name="name">landed_cost_form</field>
</record>
<record model="ir.ui.view" id="landed_cost_view_list">
<field name="model">account.landed_cost</field>
<field name="type">tree</field>
<field name="name">landed_cost_list</field>
</record>
<record model="ir.action.act_window" id="act_landed_cost_form">
<field name="name">Landed Costs</field>
<field name="res_model">account.landed_cost</field>
</record>
<record model="ir.action.act_window.view" id="act_landed_cost_form_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="landed_cost_view_list"/>
<field name="act_window" ref="act_landed_cost_form"/>
</record>
<record model="ir.action.act_window.view" id="act_landed_cost_form_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="landed_cost_view_form"/>
<field name="act_window" ref="act_landed_cost_form"/>
</record>
<record model="ir.action.act_window.domain" id="act_landed_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_landed_cost_form"/>
</record>
<record model="ir.action.act_window.domain" id="act_landed_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_landed_cost_form"/>
</record>
<record model="ir.action.act_window.domain" id="act_landed_cost_form_domain_all">
<field name="name">All</field>
<field name="sequence" eval="9999"/>
<field name="domain"/>
<field name="act_window" ref="act_landed_cost_form"/>
</record>
<menuitem
parent="account_invoice.menu_invoices"
action="act_landed_cost_form"
sequence="30"
id="menu_landed_cost"/>
<record model="ir.action.act_window" id="act_landed_cost_form_shipment">
<field name="name">Landed Costs</field>
<field name="res_model">account.landed_cost</field>
<field
name="domain"
eval="[('shipments', 'in', Eval('active_ids'))]"
pyson="1"/>
</record>
<record model="ir.action.act_window.view" id="act_landed_cost_form_shipment_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="landed_cost_view_list"/>
<field name="act_window" ref="act_landed_cost_form_shipment"/>
</record>
<record model="ir.action.act_window.view" id="act_landed_cost_form_shipment_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="landed_cost_view_form"/>
<field name="act_window" ref="act_landed_cost_form_shipment"/>
</record>
<record model="ir.action.keyword" id="act_landed_cost_form_shipment_keyword1">
<field name="keyword">form_relate</field>
<field name="model">stock.shipment.in,-1</field>
<field name="action" ref="act_landed_cost_form_shipment"/>
</record>
<record model="ir.model.access" id="access_landed_cost">
<field name="model">account.landed_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_landed_cost_account">
<field name="model">account.landed_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="landed_cost_cancel_button">
<field name="model">account.landed_cost</field>
<field name="name">cancel</field>
<field name="string">Cancel</field>
</record>
<record model="ir.model.button" id="landed_cost_post_button">
<field name="model">account.landed_cost</field>
<field name="name">post_wizard</field>
<field name="string">Post</field>
<field name="confirm" eval="None"/>
</record>
<record model="ir.model.button" id="landed_cost_show_button">
<field name="model">account.landed_cost</field>
<field name="name">show</field>
<field name="string">Show</field>
</record>
<record model="ir.model.button" id="landed_cost_draft_button">
<field name="model">account.landed_cost</field>
<field name="name">draft</field>
<field name="string">Draft</field>
</record>
<record model="ir.rule.group" id="rule_group_landed_cost_companies">
<field name="name">User in companies</field>
<field name="model">account.landed_cost</field>
<field name="global_p" eval="True"/>
</record>
<record model="ir.rule" id="rule_landed_cost_companies">
<field name="domain"
eval="[('company', 'in', Eval('companies', []))]"
pyson="1"/>
<field name="rule_group" ref="rule_group_landed_cost_companies"/>
</record>
<record model="ir.action.wizard" id="wizard_landed_cost_post">
<field name="name">Post Landed Cost</field>
<field name="wiz_name">account.landed_cost.post</field>
<field name="model">account.landed_cost</field>
</record>
<record model="ir.action.wizard" id="wizard_landed_cost_show">
<field name="name">Show Landed Cost</field>
<field name="wiz_name">account.landed_cost.show</field>
<field name="model">account.landed_cost</field>
</record>
<record model="ir.ui.view" id="landed_cost_show_view_form">
<field name="model">account.landed_cost.show</field>
<field name="type">form</field>
<field name="name">landed_cost_show_form</field>
</record>
<record model="ir.ui.view" id="landed_cost_show_move_view_list">
<field name="model">account.landed_cost.show.move</field>
<field name="type">tree</field>
<field name="name">landed_cost_show_move_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>

View 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 NoMoveWarning(UserWarning):
pass
class FilterUnusedWarning(UserWarning):
pass

View File

@@ -0,0 +1,298 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Фирма"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Фирма"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Редове от фактура"
#, fuzzy
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Номер"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Изпращания"
#, fuzzy
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Щат"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Изпращания"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Проект"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Публикуван"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "По стойност"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Отказан"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Проект"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Публикуван"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Последователност"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,273 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Seqüència de cost de recepció"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Empresa"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Seqüència de cost de recepció"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Mètode d'assignació"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr "Categories"
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Empresa"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr "Factors"
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Línies de factura"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Número"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Data comptabilització"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr "Productes"
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Albarans"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Estat"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Categoria"
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr "Producte"
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Albarà"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr "Cost"
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr "Moviments"
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr "Cost"
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr "Moviment"
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Unitat cost de recepció"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr "Aplica només als productes d'aquetes categories."
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr "Aplica només a aquests productes."
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Configuració de la seqüència de cost de recepció"
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Cost de recepció"
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Cost de recepcio - Categoria de producte"
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Cost de recepció - Producte"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Cost de recepció - Albarà de proveïdor"
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Mostrar cost de recepció"
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Mostrar cost de recepció"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Costos de recepció"
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Costos de recepció"
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Comptabilitza cost de recepció"
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Mostra cost de recepció"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Tot"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Esborrany"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Comptabilitzat"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr "Per suprimir el cost de recepció \"%(landed_cost)s\" l'heu de cancel·lar."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
"El cost de recepció comptabilitzat \"%(landed_cost)s\" no té cap moviment "
"d'existènices."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"La categoria \"%(category)s\" del cost de recepció \"%(landed_cost)s\" no "
"s'utilitza."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"El producte \"%(product)s\" del cost de recepció \"%(landed_cost)s\" no "
"s'utilitza."
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel·la"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Esborrany"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Comptabilitza"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr "Mostra"
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Usuari a les empreses"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Costos de recepció"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Per valor"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancel·lat"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Esborrany"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Comptabilitzats"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Cost de recepció"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Seqüència"
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel·la"
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Comptabilitza"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr "Tanca"

View File

@@ -0,0 +1,287 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr ""
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr ""
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancel"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Posted"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr ""
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,273 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Nummernkreis Einstandskosten"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Unternehmen"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Nummernkreis Einstandskosten"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Zuordnungsmethode"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr "Kategorien"
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Unternehmen"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr "Faktoren"
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Rechnungspositionen"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Nummer"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Festschreibungsdatum"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr "Artikel"
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Lieferungen"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Status"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Kategorie"
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr "Artikel"
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Lieferung"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr "Kosten"
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr "Warenbewegungen"
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr "Kosten"
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr "Warenbewegung"
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Einheit Einstandskosten"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr "Nur auf Artikel dieser Kategorien anwenden."
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr "Nur auf diese Artikel anwenden."
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Buchhaltung Einstellungen Nummernkreis Einstandskosten"
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Buchhaltung Einstandskosten"
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Buchhaltung Einstandskosten - Artikelkategorie"
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Buchhaltung Einstandskosten - Artikel"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Buchhaltung Einstandskosten - Wareneingangslieferung"
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Buchhaltung Einstandskosten anzeigen"
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Buchhaltung Einstandskosten Warenbewegung anzeigen"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Einstandskosten"
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Einstandskosten"
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Einstandskosten festschreiben"
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Einstandskosten anzeigen"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Alle"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Entwurf"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Festgeschrieben"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
"Damit die Einstandskostenposition \"%(landed_cost)s\" gelöscht werden kann, "
"muss sie zuerst annulliert werden."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr "Die Einstandskostenposition \"%(landed_cost)s\" hat keine Warenbewegung."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"Die Kategorie \"%(category)s\" auf Einstandskostenposition "
"\"%(landed_cost)s\" wird nicht genutzt."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"Der Artikel \"%(product)s\" auf Einstandkostenposition \"%(landed_cost)s\" "
"wird nicht genutzt."
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Annullieren"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Entwurf"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Festschreiben"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr "Anzeigen"
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Benutzer in Unternehmen"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Einstandskosten"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Nach Wert"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Annulliert"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Entwurf"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Festgeschrieben"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Einstandskosten"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Nummernkreis"
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Abbrechen"
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Festschreiben"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr "Schließen"

View File

@@ -0,0 +1,273 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Secuencia de coste de recepción"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Empresa"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Secuencia de coste de recepción"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Método de asignación"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr "Categorías"
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Empresa"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr "Factores"
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Líneas de factura"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Número"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Fecha contabilización"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr "Productos"
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Albaranes"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Estado"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Categoría"
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr "Producto"
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Albarán"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr "Coste"
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr "Movimientos"
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr "Coste"
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr "Movimiento"
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Unidad coste de recepción"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr "Aplica solo a los productos de estas categorías."
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr "Aplica solo a estos productos."
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Configuración de la secuencia de coste de recepción"
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Coste de recepción"
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Coste de recepción - Categoría de producto"
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Coste de recepción - Producto"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Coste de recepción - Albarán de proveedor"
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Mostrar coste de recepción"
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Mostrar coste de recepción"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Costes de recepción"
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Costes de recepción"
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Contabilizar coste de recepción"
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Mostrar coste de recepción"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Todo"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Borrador"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Contabilizado"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr "Para eliminar el costo de recepción \"%(landed_cost)s\" debes cancelarlo."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
"El coste de recepción contabilizado \"%(landed_cost)s\" no tiene ningún "
"movimiento de existencias."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"La categoría \"%(category)s\" del coste de recepción \"%(landed_cost)s\" no "
"se utiliza."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"El producto \"%(product)s\" del coste de recepción \"%(landed_cost)s\" no se"
" utiliza."
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancelar"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Borrador"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Contabilizar"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr "Mostrar"
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Usuario en las empresas"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Costes de recepción"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Por valor"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancelado"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Borrador"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Contabilizados"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Coste de recepción"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Secuencia"
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancelar"
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Contabilizar"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr "Cerrar"

View File

@@ -0,0 +1,283 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Secuencia de costo final"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr ""
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Secuencia de costo final"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Costo final"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr ""
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Envíos"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Costo final"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Costo final"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Costo final"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Envíos"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Costo final"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Costo final"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Unidad de costo final"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
#, fuzzy
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Secuencia de cuenta de configuración de costo final"
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Unidad de costo final"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Costo de final - Envío"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Costo de final - Envío"
#, fuzzy
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Costo de final - Envío"
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Costo final"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Costo final"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Costo final"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Costo final"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Costo final"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Costo final"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
#, fuzzy
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Costo final"
#, fuzzy
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Costo final"
#, fuzzy
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Costo final"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Por valor"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Costo final"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr ""
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr ""
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr ""
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,283 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Distributsioonikulu jada"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Ettevõte"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Distributsioonikulu jada"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Jaotamise meetod"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Ettevõte"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Arve read"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Number"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Postituse kuupäev"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Tarned"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Olek"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Tarned"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Ühiku distributsioonikulu"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
#, fuzzy
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Konto seadistused - distributsioonikulu jada"
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Ühiku distributsioonikulu"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Distributsioonikulu - transport"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Distributsioonikulu - transport"
#, fuzzy
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Distributsioonikulu - transport"
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Distributsioonikulu"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Distributsioonikulu"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Distributsioonikulud"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Distributsioonikulud"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Distributsioonikulu"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Distributsioonikulu"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Kõik"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Mustand"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Poistitatud"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Tühista"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Mustand"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Postita"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
#, fuzzy
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Kasutaja ettevõttes"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Distributsioonikulud"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Väärtuse järgi"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Tühistatud"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Mustand"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Postitatud"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Distributsioonikulu"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Järjestus"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Tühista"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Postita"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,282 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "ادامه هزینه Landed"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "شرکت"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "ادامه هزینه Landed"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "روش تخصیص"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "شرکت"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "خطوط صورتحساب"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "شماره"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "تاریخ ارسال"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "محموله ها"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "وضعیت"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "هزینه Landed"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "محموله"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "واحد هزینه Landed"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
#, fuzzy
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "پیکربندی حساب ادامه هزینه Landed"
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "واحد هزینه Landed"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "هزینه Landed - محموله"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "هزینه Landed - محموله"
#, fuzzy
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "هزینه Landed - محموله"
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "هزینه Landed"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "هزینه Landed"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "هزینه های Landed"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "هزینه های Landed"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "هزینه Landed"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "هزینه Landed"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "همه"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "پیش‌نویس"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "ارسال شده"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "هزینه های Landed"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "براساس ارزش"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "لغو شده"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "پیش‌نویس"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "ارسال شده"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "هزینه Landed"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "ادامه"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,287 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr ""
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr ""
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancel"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Posted"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr ""
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,275 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Séquence de coût de débarquement"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Société"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Séquence de coût de débarquement"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Méthode d'allocation"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr "Catégories"
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Société"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr "Facteurs"
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Lignes de facture"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Numéro"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Date de comptabilisation"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr "Produits"
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Expéditions"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "État"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Catégorie"
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr "Produit"
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Expédition"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr "Coût"
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr "Mouvements"
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr "Coût"
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr "Mouvement"
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Unité de coût de débarquement"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr "S'applique seulement aux produits de cette catégorie."
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr "S'applique uniquement à ces produits."
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Configuration comptable Séquence de coût de débarquement"
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Coût de débarquement comptable"
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Coût de débarquement comptable - Catégorie de produit"
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Coût de débarquement comptable - Produit"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Coût de débarquement comptable - Expédition fournisseur"
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Afficher le coût de débarquement comptable"
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Afficher le coût de débarquement comptable Mouvement"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Coût de débarquement"
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Coûts de débarquement"
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Comptabiliser le coût de débarquement"
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Afficher le coût de débarquement"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Tous"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Brouillon"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Comptabilisés"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
"Pour supprimer le coût de débarquement « %(landed_cost)s », vous devez "
"l'annuler."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
"Le coût de débarquement comptabilisé « %(landed_cost)s » n'a pas de "
"mouvement de stock."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"La catégorie « %(category)s » sur le coût de débarquement "
"« %(landed_cost)s » n'est pas utilisée."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"Le produit « %(product)s » sur le coût de débarquement « %(landed_cost)s » "
"n'est pas utilisé."
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Annuler"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Brouillon"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Comptabiliser"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr "Afficher"
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Utilisateur dans les sociétés"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Coût de débarquement"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Par valeur"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Annulé"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Brouillon"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Comptabilisé"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Coût de débarquement"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Séquence"
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Annuler"
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Comptabiliser"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr "Fermer"

View File

@@ -0,0 +1,280 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Cég"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Járulékos költség felosztás"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Felosztás módja"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr "Termékkategóriák"
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Cég"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Számlasorok"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Szám"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Rögzítés dátuma"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr "Termékek"
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Szállítmányok"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Állapot"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Kategória"
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr "Termék"
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Szállítmány"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Rárakódó költség egységár"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Rárakódó költség egységár"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Járulékos költség felosztás"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Járulékos költség felosztás"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Járulékos költség felosztások"
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Járulékos költség felosztások"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Járulékos költség felosztás"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Járulékos költség felosztás"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "összes"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "vázlat"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "lekönyvelt"
#, fuzzy, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
"A „%(landed_cost)s” számú járulékos költség felosztáshoz nem kapcsolódnak "
"készletmozgások."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
"A „%(landed_cost)s” számú járulékos költség felosztáshoz nem kapcsolódnak "
"készletmozgások."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Érvénytelenítés"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Újra vázlatba"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Rögzítés"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Járulékos költség felosztások"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "érték alapján"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "érvénytelen"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "vázlat"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "lekönyvelt"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Járulékos költség"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Sorszám"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Érvénytelenítés"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Rögzítés"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,270 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Perusahaan"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Perusahaan"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Baris Faktur"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Nomor"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Status"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr ""
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr ""
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr ""
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr ""
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr ""
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr ""
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr ""
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr ""
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Rancangan"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Batal"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Rancangan"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
#, fuzzy
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Pengguna di dalam perusahaan"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr ""
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr ""
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Batal"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Rancangan"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Urutan"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Batal"
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr ""
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr "Tutup"

View File

@@ -0,0 +1,290 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Sequenza costo atterrato"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Azienda"
#, fuzzy
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Sequenza costo atterrato"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Costo atterrato"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Metodo di allocazione"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Azienda"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Righe fattura"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Numero"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Data di registrazione"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Spedizioni"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Stato"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Costo atterrato"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Costo atterrato"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Costo di atterraggio"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Consegna"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr "Costo"
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr "Movimenti"
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr "Costo"
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Costo di atterraggio"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Costo di atterraggio"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Costo unitario di atterraggio"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
#, fuzzy
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Sequenza costo atterrato"
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Costo unitario di atterraggio"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Costo di atterraggio - consegna"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Costo di atterraggio - consegna"
#, fuzzy
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Costo di atterraggio - consegna"
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Costo atterrato"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Costo atterrato"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Costo atterrato"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Costo atterrato"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Annulla"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
#, fuzzy
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Per valore"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Annullato"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Bozza"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Registrato"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Costo di atterraggio"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Sequenza"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Annulla"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,296 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "ຫ້ອງການ/ສຳນັກງານ"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "ຫ້ອງການ/ສຳນັກງານ"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "ລາຍການເກັບເງິນ"
#, fuzzy
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "ເລກທີ"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "ສະຖານະ"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "ທັງໝົດ"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "ຮ່າງກຽມ"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "ແຈ້ງແລ້ວ"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "ຍົກເລີກແລ້ວ"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "ຮ່າງກຽມ"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "ແຈ້ງແລ້ວ"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "ລໍາດັບ"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,287 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Organizacija"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Organizacija"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Sąskaitos faktūros eilutės"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancel"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Posted"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr ""
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,273 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Volgorde Landed Cost"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Bedrijf"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Volgorde Landed Cost"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Toewijzingsmethode"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr "Categorieën"
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Bedrijf"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr "Factoren"
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Factuurregels"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Nummer"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Postdatum"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr "Producten"
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Zendingen"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Status"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Categorie"
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr "Product"
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Zending"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr "Kosten"
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr "Boekingen"
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr "Kosten"
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr "Boeking"
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "eenheid Landed Cost"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr "Alleen van toepassing op producten van deze categorie."
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr "Alleen van toepassing op dezeproducten."
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Grootboek configuratie francoprijs reeks"
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Grootboek francoprijs"
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Grootboek francoprijs - Product categorie"
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Grootboek francoprijs - Product"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Grootboek francoprijs - Voorraad inkomende levering"
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Grootboek francoprijs weergave"
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Grootboek francoprijs boeking weergave"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Boek inklaringskosten"
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Geef inklaringskosten weer"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Alle"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Concept"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Geboekt"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
"Om de francoprijs \"%(landed_cost)s\" te verwijderen, moet deze geannuleerd "
"worden."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr "De geboekte landed cost \"%(landed_cost)s\"heeft geen stock beweging."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"De categorie \"%(category)s\"op landed cost \"%(landed_cost)s\" is niet "
"gebruikt."
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
"Het product \"%(product)s\" op landed cost \"%(landed_cost)s\" is niet "
"gebruikt."
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Annuleren"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Concept"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr "Toon"
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr "Gebruiker in bedrijven"
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Op waarde"
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Geannuleerd"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Concept"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Geboekt"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Reeks"
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Annuleer"
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Boek"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr "Sluiten"

View File

@@ -0,0 +1,293 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Firma"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Firma"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Stan"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
#, fuzzy
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Cost"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Anuluj"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Posted"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Sekwencja"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,289 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Sequência de Custo de Recepção"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Empresa"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Sequência de Custo de Recepção"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Método de Alocação"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Empresa"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Linhas da Fatura"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Número"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Data de Confirmação"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Remessas"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Estado"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr "Categoria"
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Remessa"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Unidade de Custo de Recepção"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
#, fuzzy
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Configurações de Contabilidade Sequência de Custo de Recepção"
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Unidade de Custo de Recepção"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Custo de Recepção - Remessa"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Custo de Recepção - Remessa"
#, fuzzy
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Custo de Recepção - Remessa"
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Custo de Recepção"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Custo de Recepção"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Custo de Recepção"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Custo de Recepção"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
#, fuzzy
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Por Valor"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancelado"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Rascunho"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Confirmado"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Custo de Recepção"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Sequência"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,267 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Societate"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Societate"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Expedieri"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr ""
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr ""
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr ""
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr ""
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr ""
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr ""
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr ""
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr ""
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr ""
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr ""
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Secventa"
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr ""
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr ""
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,298 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Учет.орг."
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Учет.орг."
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Строки инвойса"
#, fuzzy
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Номер"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Доставка"
#, fuzzy
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Штат"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Доставка"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "Все"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Черновик"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Проведен"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Отменено"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Черновик"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Проведен"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Последовательность"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,289 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Številčna serija raztovora"
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr "Družba"
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr "Številčna serija raztovora"
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Raztovor"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr "Metoda porazdelitve"
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr "Družba"
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr "Postavke računov"
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr "Številka"
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr "Datum knjiženja"
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr "Pošiljke"
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "Stanje"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Raztovor"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Raztovor"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Raztovor"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr "Pošiljka"
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Raztovor"
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Raztovor"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr "Enota raztovora"
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
#, fuzzy
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr "Konfiguracija številčne serije raztovora"
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Enota raztovora"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Raztovor - Pošiljka"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Raztovor - Pošiljka"
#, fuzzy
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr "Raztovor - Pošiljka"
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Raztovor"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Raztovor"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Raztovor"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Raztovor"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
#, fuzzy
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr "Po vrednosti"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Preklicano"
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "V pripravi"
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Knjiženo"
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Raztovor"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "Številčna serija"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,287 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr ""
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr ""
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "All"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "Cancel"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Posted"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr ""
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,267 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr ""
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr ""
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr ""
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr ""
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr ""
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr ""
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr ""
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr ""
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr ""
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr ""
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr ""
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr ""
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr ""
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr ""
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr ""
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr ""
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr ""
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr ""
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr ""
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr ""
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr ""
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,290 @@
#
msgid ""
msgstr "Content-Type: text/plain; charset=utf-8\n"
msgctxt "field:account.configuration,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
msgctxt "field:account.configuration.landed_cost_sequence,company:"
msgid "Company"
msgstr ""
msgctxt ""
"field:account.configuration.landed_cost_sequence,landed_cost_sequence:"
msgid "Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "field:account.invoice.line,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost,allocation_method:"
msgid "Allocation Method"
msgstr ""
msgctxt "field:account.landed_cost,categories:"
msgid "Categories"
msgstr ""
msgctxt "field:account.landed_cost,company:"
msgid "Company"
msgstr ""
msgctxt "field:account.landed_cost,factors:"
msgid "Factors"
msgstr ""
msgctxt "field:account.landed_cost,invoice_lines:"
msgid "Invoice Lines"
msgstr ""
msgctxt "field:account.landed_cost,number:"
msgid "Number"
msgstr ""
msgctxt "field:account.landed_cost,posted_date:"
msgid "Posted Date"
msgstr ""
msgctxt "field:account.landed_cost,products:"
msgid "Products"
msgstr ""
msgctxt "field:account.landed_cost,shipments:"
msgid "Shipments"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost,state:"
msgid "State"
msgstr "状态"
msgctxt "field:account.landed_cost-product.category,category:"
msgid "Category"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-product.category,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:account.landed_cost-product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-product.product,product:"
msgid "Product"
msgstr ""
#, fuzzy
msgctxt "field:account.landed_cost-stock.shipment.in,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:account.landed_cost-stock.shipment.in,shipment:"
msgid "Shipment"
msgstr ""
msgctxt "field:account.landed_cost.show,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show,moves:"
msgid "Moves"
msgstr ""
msgctxt "field:account.landed_cost.show.move,cost:"
msgid "Cost"
msgstr ""
msgctxt "field:account.landed_cost.show.move,move:"
msgid "Move"
msgstr ""
#, fuzzy
msgctxt "field:product.product,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "field:product.template,landed_cost:"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "field:stock.move,unit_landed_cost:"
msgid "Unit Landed Cost"
msgstr ""
msgctxt "help:account.landed_cost,categories:"
msgid "Apply only to products of these categories."
msgstr ""
msgctxt "help:account.landed_cost,products:"
msgid "Apply only to these products."
msgstr ""
msgctxt "model:account.configuration.landed_cost_sequence,string:"
msgid "Account Configuration Landed Cost Sequence"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost,string:"
msgid "Account Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.category,string:"
msgid "Account Landed Cost - Product Category"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost-product.product,string:"
msgid "Account Landed Cost - Product"
msgstr "Landed Cost"
msgctxt "model:account.landed_cost-stock.shipment.in,string:"
msgid "Account Landed Cost - Stock Shipment In"
msgstr ""
#, fuzzy
msgctxt "model:account.landed_cost.show,string:"
msgid "Account Landed Cost Show"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:account.landed_cost.show.move,string:"
msgid "Account Landed Cost Show Move"
msgstr "Landed Cost"
msgctxt "model:ir.action,name:act_landed_cost_form"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:act_landed_cost_form_shipment"
msgid "Landed Costs"
msgstr "Landed Costs"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_post"
msgid "Post Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "model:ir.action,name:wizard_landed_cost_show"
msgid "Show Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_all"
msgid "All"
msgstr "全部"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_draft"
msgid "Draft"
msgstr "Draft"
msgctxt ""
"model:ir.action.act_window.domain,name:act_landed_cost_form_domain_posted"
msgid "Posted"
msgstr "Posted"
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_delete_cancel"
msgid "To delete landed cost \"%(landed_cost)s\" you must cancel it."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_post_no_stock_move"
msgid "The posted landed cost \"%(landed_cost)s\" has no stock move."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_category"
msgid "The category \"%(category)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
#, python-format
msgctxt "model:ir.message,text:msg_landed_cost_unused_product"
msgid "The product \"%(product)s\" on landed cost \"%(landed_cost)s\" is not used."
msgstr ""
msgctxt "model:ir.model.button,string:landed_cost_cancel_button"
msgid "Cancel"
msgstr "Cancel"
msgctxt "model:ir.model.button,string:landed_cost_draft_button"
msgid "Draft"
msgstr "Draft"
msgctxt "model:ir.model.button,string:landed_cost_post_button"
msgid "Post"
msgstr "Post"
msgctxt "model:ir.model.button,string:landed_cost_show_button"
msgid "Show"
msgstr ""
msgctxt "model:ir.rule.group,name:rule_group_landed_cost_companies"
msgid "User in companies"
msgstr ""
msgctxt "model:ir.sequence,name:sequence_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.sequence.type,name:sequence_type_landed_cost"
msgid "Landed Cost"
msgstr "Landed Cost"
msgctxt "model:ir.ui.menu,name:menu_landed_cost"
msgid "Landed Costs"
msgstr "Landed Costs"
msgctxt "selection:account.landed_cost,allocation_method:"
msgid "By Value"
msgstr ""
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Cancelled"
msgstr "取消"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Draft"
msgstr "Draft"
#, fuzzy
msgctxt "selection:account.landed_cost,state:"
msgid "Posted"
msgstr "Posted"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Landed Cost"
msgstr "Landed Cost"
#, fuzzy
msgctxt "view:account.configuration:"
msgid "Sequence"
msgstr "序列"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,end:"
msgid "Cancel"
msgstr "Cancel"
#, fuzzy
msgctxt "wizard_button:account.landed_cost.post,show,post:"
msgid "Post"
msgstr "Post"
msgctxt "wizard_button:account.landed_cost.show,show,end:"
msgid "Close"
msgstr ""

View File

@@ -0,0 +1,20 @@
<?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_landed_cost_post_no_stock_move">
<field name="text">The posted landed cost "%(landed_cost)s" has no stock move.</field>
</record>
<record model="ir.message" id="msg_landed_cost_unused_category">
<field name="text">The category "%(category)s" on landed cost "%(landed_cost)s" is not used.</field>
</record>
<record model="ir.message" id="msg_landed_cost_unused_product">
<field name="text">The product "%(product)s" on landed cost "%(landed_cost)s" is not used.</field>
</record>
<record model="ir.message" id="msg_landed_cost_delete_cancel">
<field name="text">To delete landed cost "%(landed_cost)s" you must cancel it.</field>
</record>
</data>
</tryton>

View 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'
landed_cost = fields.Boolean(
"Landed Cost",
states={
'invisible': Eval('type') != 'service',
})
class Product(metaclass=PoolMeta):
__name__ = 'product.product'

View 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>

View File

@@ -0,0 +1,31 @@
# 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.modules.product import price_digits
from trytond.pool import PoolMeta
from trytond.pyson import Eval
class Move(metaclass=PoolMeta):
__name__ = 'stock.move'
unit_landed_cost = fields.Numeric(
"Unit Landed Cost", digits=price_digits, readonly=True,
states={
'invisible': ~Eval('unit_landed_cost'),
})
def _compute_unit_price(self, unit_price):
if self.unit_landed_cost:
unit_price -= self.unit_landed_cost
unit_price = super()._compute_unit_price(unit_price)
if self.unit_landed_cost:
unit_price += self.unit_landed_cost
return unit_price
def _compute_component_unit_price(self, unit_price):
if self.unit_landed_cost:
unit_price -= self.unit_landed_cost
unit_price = super()._compute_component_unit_price(unit_price)
if self.unit_landed_cost:
unit_price += self.unit_landed_cost
return unit_price

View 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="stock_move_view_form">
<field name="model">stock.move</field>
<field name="inherit" ref="stock.move_view_form"/>
<field name="name">stock_move_form</field>
</record>
</data>
</tryton>

View 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.

View File

@@ -0,0 +1,227 @@
=========================
Account Stock Landed Cost
=========================
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.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_landed_cost', create_company, create_chart)
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()
>>> payable = accounts['payable']
>>> revenue = accounts['revenue']
>>> expense = accounts['expense']
>>> account_tax = accounts['tax']
Create supplier::
>>> Party = Model.get('party.party')
>>> supplier = Party(name='Supplier')
>>> supplier.save()
Create account category::
>>> ProductCategory = Model.get('product.category')
>>> account_category = ProductCategory(name="Account Category")
>>> account_category.accounting = True
>>> account_category.account_expense = expense
>>> account_category.account_revenue = revenue
>>> account_category.save()
>>> category = ProductCategory(name="Category")
>>> category.save()
Create products::
>>> ProductUom = Model.get('product.uom')
>>> ProductTemplate = Model.get('product.template')
>>> Product = Model.get('product.product')
>>> unit, = ProductUom.find([('name', '=', 'Unit')])
>>> template = ProductTemplate()
>>> template.name = 'Product'
>>> template.default_uom = unit
>>> template.type = 'goods'
>>> template.list_price = Decimal('300')
>>> template.cost_price_method = 'average'
>>> template.account_category = account_category
>>> template.categories.append(ProductCategory(category.id))
>>> product, = template.products
>>> product.cost_price = Decimal('80')
>>> template.save()
>>> product, = template.products
>>> template2, = template.duplicate(default={'categories': None})
>>> product2, = template2.products
>>> template = ProductTemplate()
>>> template.name = 'Landed Cost'
>>> template.default_uom = unit
>>> template.type = 'service'
>>> template.landed_cost = True
>>> template.list_price = Decimal('10')
>>> template.account_category = account_category
>>> product_landed_cost, = template.products
>>> product_landed_cost.cost_price = Decimal('10')
>>> template.save()
>>> product_landed_cost, = template.products
Get stock locations::
>>> Location = Model.get('stock.location')
>>> warehouse_loc, = Location.find([('code', '=', 'WH')])
>>> supplier_loc, = Location.find([('code', '=', 'SUP')])
>>> input_loc, = Location.find([('code', '=', 'IN')])
>>> storage_loc, = Location.find([('code', '=', 'STO')])
Create payment term::
>>> PaymentTerm = Model.get('account.invoice.payment_term')
>>> payment_term = PaymentTerm(name='Term')
>>> line = payment_term.lines.new(type='remainder')
>>> payment_term.save()
Receive 10 unit of the product @ 100::
>>> ShipmentIn = Model.get('stock.shipment.in')
>>> shipment = ShipmentIn()
>>> shipment.planned_date = today
>>> shipment.supplier = supplier
>>> shipment.warehouse = warehouse_loc
>>> move = shipment.incoming_moves.new()
>>> move.product = product
>>> move.quantity = 10
>>> move.from_location = supplier_loc
>>> move.to_location = input_loc
>>> move.unit_price = Decimal('100')
>>> move.currency = company.currency
>>> move = shipment.incoming_moves.new()
>>> move.product = product2
>>> move.quantity = 1
>>> move.from_location = supplier_loc
>>> move.to_location = input_loc
>>> move.unit_price = Decimal('10')
>>> move.currency = company.currency
>>> move_empty = shipment.incoming_moves.new()
>>> move_empty.product = product
>>> move_empty.quantity = 0
>>> move_empty.from_location = supplier_loc
>>> move_empty.to_location = input_loc
>>> move_empty.unit_price = Decimal('100')
>>> move_empty.currency = company.currency
>>> shipment.click('receive')
>>> sorted([m.unit_price for m in shipment.incoming_moves if m.quantity])
[Decimal('10'), Decimal('100')]
Invoice landed cost::
>>> Invoice = Model.get('account.invoice')
>>> invoice = Invoice()
>>> invoice.type = 'in'
>>> invoice.party = supplier
>>> invoice.payment_term = payment_term
>>> invoice.invoice_date = today
>>> line = invoice.lines.new()
>>> line.product = product_landed_cost
>>> line.quantity = 1
>>> line.unit_price = Decimal('10')
>>> invoice.click('post')
Add landed cost::
>>> LandedCost = Model.get('account.landed_cost')
>>> landed_cost = LandedCost()
>>> shipment, = landed_cost.shipments.find([])
>>> landed_cost.shipments.append(shipment)
>>> invoice_line, = landed_cost.invoice_lines.find([])
>>> landed_cost.invoice_lines.append(invoice_line)
>>> landed_cost.allocation_method = 'value'
>>> landed_cost.categories.append(ProductCategory(category.id))
>>> landed_cost.products.append(Product(product.id))
>>> landed_cost.save()
>>> landed_cost.state
'draft'
>>> post_landed_cost = landed_cost.click('post_wizard')
>>> post_landed_cost.form.cost
Decimal('10.0000')
>>> sorted([m.cost for m in post_landed_cost.form.moves])
[Decimal('1.0000')]
>>> post_landed_cost.execute('post')
>>> landed_cost.state
'posted'
>>> bool(landed_cost.posted_date)
True
>>> bool(landed_cost.factors)
True
Show landed cost::
>>> show_landed_cost = landed_cost.click('show')
>>> show_landed_cost.form.cost
Decimal('10.0000')
>>> sorted([m.cost for m in show_landed_cost.form.moves])
[Decimal('1.0000')]
Check move unit price is 101::
>>> shipment.reload()
>>> sorted([m.unit_price for m in shipment.incoming_moves if m.quantity])
[Decimal('10'), Decimal('101.0000')]
Landed cost is cleared when duplicated invoice::
>>> copy_invoice = invoice.duplicate()
>>> landed_cost.reload()
>>> len(landed_cost.invoice_lines)
1
Can not delete posted landed cost::
>>> landed_cost.delete()
Traceback (most recent call last):
...
AccessError: ...
Cancel landed cost reset unit price::
>>> landed_cost.click('cancel')
>>> landed_cost.state
'cancelled'
>>> landed_cost.posted_date
>>> landed_cost.factors
>>> shipment.reload()
>>> sorted([m.unit_price for m in shipment.incoming_moves if m.quantity])
[Decimal('10'), Decimal('100.0000')]
Can delete cancelled landed cost::
>>> landed_cost.delete()

View 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 AccountStockLandedCostTestCase(ModuleTestCase):
'Test Account Stock Landed Cost module'
module = 'account_stock_landed_cost'
del ModuleTestCase

View File

@@ -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)

View File

@@ -0,0 +1,36 @@
[tryton]
version=7.8.0
depends:
account
account_invoice
ir
product
res
stock
extras_depend:
account_invoice_stock
product_kit
xml:
account.xml
product.xml
stock.xml
message.xml
[register]
model:
product.Template
product.Product
account.Configuration
account.ConfigurationLandedCostSequence
account.LandedCost
account.LandedCost_Shipment
account.LandedCost_ProductCategory
account.LandedCost_Product
account.LandedCostShow
account.LandedCostShowMove
account.InvoiceLine
stock.Move
wizard:
account.PostLandedCost
account.ShowLandedCost

View File

@@ -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="landed_cost" string="Landed Cost" colspan="4"/>
<label name="landed_cost_sequence" string="Sequence"/>
<field name="landed_cost_sequence"/>
<newline/>
</xpath>
</data>

View File

@@ -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="landed_cost">
<label name="landed_cost"/>
<field name="landed_cost"/>
</page>
</xpath>
</data>

View File

@@ -0,0 +1,27 @@
<?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" widget="many2many"/>
<field name="shipments" colspan="4"/>
<field name="categories" colspan="2"/>
<field name="products" 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>

View File

@@ -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>

View File

@@ -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="moves" mode="tree" colspan="4"/>
</form>

View File

@@ -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="move" expand="1"/>
<field name="cost"/>
</tree>

View File

@@ -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="//field[@name='cost_price']" position="after">
<label name="unit_landed_cost"/>
<field name="unit_landed_cost"/>
</xpath>
</data>

View File

@@ -0,0 +1,10 @@
<?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="landed_cost"/>
<field name="landed_cost" xexpand="0" width="25"/>
</xpath>
</data>